diff --git a/grammar.js b/grammar.js index 6a0a0a2..585f588 100644 --- a/grammar.js +++ b/grammar.js @@ -495,13 +495,16 @@ module.exports = grammar(Python, { c_parameters: $ => seq("(", optional($._typedargslist), ")"), _typedargslist: $ => - seq( - commaSep1(seq( - $.maybe_typed_name, - optional(seq(":", $.c_type)), - optional(seq("=", choice($.expression, "*"))), - )), - optional(","), + choice( + "...", + seq( + commaSep1(seq( + $.maybe_typed_name, + optional(seq(":", $.c_type)), + optional(seq("=", choice($.expression, "*"))), + )), + optional(","), + ), ), gil_spec: _ => choice(seq("with", choice("gil", "nogil")), "nogil"), diff --git a/src/grammar.json b/src/grammar.json index f71b60e..5782b1b 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -8529,8 +8529,12 @@ ] }, "_typedargslist": { - "type": "SEQ", + "type": "CHOICE", "members": [ + { + "type": "STRING", + "value": "..." + }, { "type": "SEQ", "members": [ @@ -8538,145 +8542,150 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "maybe_typed_name" - }, - { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", + "type": "SYMBOL", + "name": "maybe_typed_name" + }, + { + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": ":" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "c_type" + } + ] }, { - "type": "SYMBOL", - "name": "c_type" + "type": "BLANK" } ] }, { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "=" - }, - { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "expression" + "type": "STRING", + "value": "=" }, { - "type": "STRING", - "value": "*" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "*" + } + ] } ] + }, + { + "type": "BLANK" } ] - }, - { - "type": "BLANK" } ] - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { + }, + { + "type": "REPEAT", + "content": { "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "maybe_typed_name" + "type": "STRING", + "value": "," }, { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", + "type": "SYMBOL", + "name": "maybe_typed_name" + }, + { + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": ":" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "c_type" + } + ] }, { - "type": "SYMBOL", - "name": "c_type" + "type": "BLANK" } ] }, { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "=" - }, - { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "expression" + "type": "STRING", + "value": "=" }, { - "type": "STRING", - "value": "*" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "*" + } + ] } ] + }, + { + "type": "BLANK" } ] - }, - { - "type": "BLANK" } ] } ] } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," + } + ] }, { - "type": "BLANK" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] } ] } diff --git a/src/node-types.json b/src/node-types.json index a5ff414..f59d7e0 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1929,6 +1929,11 @@ } } }, + { + "type": "ellipsis", + "named": true, + "fields": {} + }, { "type": "else_clause", "named": true, @@ -4353,6 +4358,10 @@ "type": ".", "named": false }, + { + "type": "...", + "named": false + }, { "type": "/", "named": false @@ -4605,10 +4614,6 @@ "type": "elif", "named": false }, - { - "type": "ellipsis", - "named": true - }, { "type": "else", "named": false diff --git a/src/parser.c b/src/parser.c index d1a1950..db73fc4 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,9 +5,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 5553 -#define LARGE_STATE_COUNT 935 -#define SYMBOL_COUNT 390 +#define STATE_COUNT 5561 +#define LARGE_STATE_COUNT 978 +#define SYMBOL_COUNT 391 #define ALIAS_COUNT 3 #define TOKEN_COUNT 168 #define EXTERNAL_TOKEN_COUNT 12 @@ -104,7 +104,7 @@ enum ts_symbol_identifiers { anon_sym_CARET_EQ = 86, anon_sym_PIPE_EQ = 87, anon_sym_yield = 88, - sym_ellipsis = 89, + anon_sym_DOT_DOT_DOT = 89, anon_sym_None = 90, sym_escape_sequence = 91, anon_sym_BSLASH = 92, @@ -282,132 +282,133 @@ enum ts_symbol_identifiers { sym_attribute = 264, sym_subscript = 265, sym_slice = 266, - sym_call = 267, - sym_typed_parameter = 268, - sym_type = 269, - sym_splat_type = 270, - sym_generic_type = 271, - sym_union_type = 272, - sym_constrained_type = 273, - sym_member_type = 274, - sym_keyword_argument = 275, - sym_list = 276, - sym_set = 277, - sym_tuple = 278, - sym_dictionary = 279, - sym_pair = 280, - sym_list_comprehension = 281, - sym_dictionary_comprehension = 282, - sym_set_comprehension = 283, - sym_generator_expression = 284, - sym__comprehension_clauses = 285, - sym_parenthesized_expression = 286, - sym__collection_elements = 287, - sym_for_in_clause = 288, - sym_if_clause = 289, - sym_conditional_expression = 290, - sym_concatenated_string = 291, - sym_string = 292, - sym_string_content = 293, - sym_interpolation = 294, - sym__f_expression = 295, - sym__not_escape_sequence = 296, - sym_format_specifier = 297, - sym_none = 298, - sym_await = 299, - sym_positional_separator = 300, - sym_keyword_separator = 301, - sym_run_directive = 302, - sym_external_definition = 303, - sym_property_definition = 304, - sym_include_statement = 305, - sym_def_statement = 306, - sym_cdef_statement = 307, - sym_cvar_def = 308, - sym_cdef_type_declaration = 309, - sym_extern_block = 310, - sym_extern_suite = 311, - sym_ctype_declaration = 312, - sym_cvar_decl = 313, - sym_int_type = 314, - sym_operator_name = 315, - sym__signedness = 316, - sym__longness = 317, - sym_function_pointer_type = 318, - sym_c_type = 319, - sym_c_name = 320, - sym_maybe_typed_name = 321, - sym_type_qualifier = 322, - sym_type_index = 323, - sym_memory_view_index = 324, - sym_ctypedef_statement = 325, - sym_c_function_definition = 326, - sym_template_params = 327, - sym_c_parameters = 328, - sym__typedargslist = 329, - sym_gil_spec = 330, - sym_exception_value = 331, - sym_struct = 332, - sym_struct_suite = 333, - sym_enum = 334, - sym_cppclass = 335, - sym__cppclass_suite = 336, - sym_fused = 337, - sym_storageclass = 338, - sym_new_expression = 339, - sym_sizeof_expression = 340, - sym_cast_expression = 341, - aux_sym_module_repeat1 = 342, - aux_sym__simple_statements_repeat1 = 343, - aux_sym_import_prefix_repeat1 = 344, - aux_sym__import_list_repeat1 = 345, - aux_sym_print_statement_repeat1 = 346, - aux_sym_assert_statement_repeat1 = 347, - aux_sym_if_statement_repeat1 = 348, - aux_sym_match_statement_repeat1 = 349, - aux_sym__match_block_repeat1 = 350, - aux_sym_case_clause_repeat1 = 351, - aux_sym_try_statement_repeat1 = 352, - aux_sym_try_statement_repeat2 = 353, - aux_sym_with_clause_repeat1 = 354, - aux_sym_global_statement_repeat1 = 355, - aux_sym_class_definition_repeat1 = 356, - aux_sym_class_definition_repeat2 = 357, - aux_sym_type_parameter_repeat1 = 358, - aux_sym_argument_list_repeat1 = 359, - aux_sym_decorated_definition_repeat1 = 360, - aux_sym_union_pattern_repeat1 = 361, - aux_sym_dict_pattern_repeat1 = 362, - aux_sym__parameters_repeat1 = 363, - aux_sym__patterns_repeat1 = 364, - aux_sym_comparison_operator_repeat1 = 365, - aux_sym_subscript_repeat1 = 366, - aux_sym_dictionary_repeat1 = 367, - aux_sym__comprehension_clauses_repeat1 = 368, - aux_sym__collection_elements_repeat1 = 369, - aux_sym_for_in_clause_repeat1 = 370, - aux_sym_concatenated_string_repeat1 = 371, - aux_sym_string_repeat1 = 372, - aux_sym_string_content_repeat1 = 373, - aux_sym_format_specifier_repeat1 = 374, - aux_sym_external_definition_repeat1 = 375, - aux_sym_cdef_statement_repeat1 = 376, - aux_sym_cvar_def_repeat1 = 377, - aux_sym_extern_suite_repeat1 = 378, - aux_sym_cvar_decl_repeat1 = 379, - aux_sym_cvar_decl_repeat2 = 380, - aux_sym_function_pointer_type_repeat1 = 381, - aux_sym_c_type_repeat1 = 382, - aux_sym_type_qualifier_repeat1 = 383, - aux_sym_type_index_repeat1 = 384, - aux_sym_type_index_repeat2 = 385, - aux_sym__typedargslist_repeat1 = 386, - aux_sym_struct_suite_repeat1 = 387, - aux_sym__cppclass_suite_repeat1 = 388, - aux_sym_fused_repeat1 = 389, - alias_sym_as_pattern_target = 390, - alias_sym_format_expression = 391, - anon_alias_sym_longlong = 392, + sym_ellipsis = 267, + sym_call = 268, + sym_typed_parameter = 269, + sym_type = 270, + sym_splat_type = 271, + sym_generic_type = 272, + sym_union_type = 273, + sym_constrained_type = 274, + sym_member_type = 275, + sym_keyword_argument = 276, + sym_list = 277, + sym_set = 278, + sym_tuple = 279, + sym_dictionary = 280, + sym_pair = 281, + sym_list_comprehension = 282, + sym_dictionary_comprehension = 283, + sym_set_comprehension = 284, + sym_generator_expression = 285, + sym__comprehension_clauses = 286, + sym_parenthesized_expression = 287, + sym__collection_elements = 288, + sym_for_in_clause = 289, + sym_if_clause = 290, + sym_conditional_expression = 291, + sym_concatenated_string = 292, + sym_string = 293, + sym_string_content = 294, + sym_interpolation = 295, + sym__f_expression = 296, + sym__not_escape_sequence = 297, + sym_format_specifier = 298, + sym_none = 299, + sym_await = 300, + sym_positional_separator = 301, + sym_keyword_separator = 302, + sym_run_directive = 303, + sym_external_definition = 304, + sym_property_definition = 305, + sym_include_statement = 306, + sym_def_statement = 307, + sym_cdef_statement = 308, + sym_cvar_def = 309, + sym_cdef_type_declaration = 310, + sym_extern_block = 311, + sym_extern_suite = 312, + sym_ctype_declaration = 313, + sym_cvar_decl = 314, + sym_int_type = 315, + sym_operator_name = 316, + sym__signedness = 317, + sym__longness = 318, + sym_function_pointer_type = 319, + sym_c_type = 320, + sym_c_name = 321, + sym_maybe_typed_name = 322, + sym_type_qualifier = 323, + sym_type_index = 324, + sym_memory_view_index = 325, + sym_ctypedef_statement = 326, + sym_c_function_definition = 327, + sym_template_params = 328, + sym_c_parameters = 329, + sym__typedargslist = 330, + sym_gil_spec = 331, + sym_exception_value = 332, + sym_struct = 333, + sym_struct_suite = 334, + sym_enum = 335, + sym_cppclass = 336, + sym__cppclass_suite = 337, + sym_fused = 338, + sym_storageclass = 339, + sym_new_expression = 340, + sym_sizeof_expression = 341, + sym_cast_expression = 342, + aux_sym_module_repeat1 = 343, + aux_sym__simple_statements_repeat1 = 344, + aux_sym_import_prefix_repeat1 = 345, + aux_sym__import_list_repeat1 = 346, + aux_sym_print_statement_repeat1 = 347, + aux_sym_assert_statement_repeat1 = 348, + aux_sym_if_statement_repeat1 = 349, + aux_sym_match_statement_repeat1 = 350, + aux_sym__match_block_repeat1 = 351, + aux_sym_case_clause_repeat1 = 352, + aux_sym_try_statement_repeat1 = 353, + aux_sym_try_statement_repeat2 = 354, + aux_sym_with_clause_repeat1 = 355, + aux_sym_global_statement_repeat1 = 356, + aux_sym_class_definition_repeat1 = 357, + aux_sym_class_definition_repeat2 = 358, + aux_sym_type_parameter_repeat1 = 359, + aux_sym_argument_list_repeat1 = 360, + aux_sym_decorated_definition_repeat1 = 361, + aux_sym_union_pattern_repeat1 = 362, + aux_sym_dict_pattern_repeat1 = 363, + aux_sym__parameters_repeat1 = 364, + aux_sym__patterns_repeat1 = 365, + aux_sym_comparison_operator_repeat1 = 366, + aux_sym_subscript_repeat1 = 367, + aux_sym_dictionary_repeat1 = 368, + aux_sym__comprehension_clauses_repeat1 = 369, + aux_sym__collection_elements_repeat1 = 370, + aux_sym_for_in_clause_repeat1 = 371, + aux_sym_concatenated_string_repeat1 = 372, + aux_sym_string_repeat1 = 373, + aux_sym_string_content_repeat1 = 374, + aux_sym_format_specifier_repeat1 = 375, + aux_sym_external_definition_repeat1 = 376, + aux_sym_cdef_statement_repeat1 = 377, + aux_sym_cvar_def_repeat1 = 378, + aux_sym_extern_suite_repeat1 = 379, + aux_sym_cvar_decl_repeat1 = 380, + aux_sym_cvar_decl_repeat2 = 381, + aux_sym_function_pointer_type_repeat1 = 382, + aux_sym_c_type_repeat1 = 383, + aux_sym_type_qualifier_repeat1 = 384, + aux_sym_type_index_repeat1 = 385, + aux_sym_type_index_repeat2 = 386, + aux_sym__typedargslist_repeat1 = 387, + aux_sym_struct_suite_repeat1 = 388, + aux_sym__cppclass_suite_repeat1 = 389, + aux_sym_fused_repeat1 = 390, + alias_sym_as_pattern_target = 391, + alias_sym_format_expression = 392, + anon_alias_sym_longlong = 393, }; static const char * const ts_symbol_names[] = { @@ -500,7 +501,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_CARET_EQ] = "^=", [anon_sym_PIPE_EQ] = "|=", [anon_sym_yield] = "yield", - [sym_ellipsis] = "ellipsis", + [anon_sym_DOT_DOT_DOT] = "...", [anon_sym_None] = "None", [sym_escape_sequence] = "escape_sequence", [anon_sym_BSLASH] = "\\", @@ -678,6 +679,7 @@ static const char * const ts_symbol_names[] = { [sym_attribute] = "attribute", [sym_subscript] = "subscript", [sym_slice] = "slice", + [sym_ellipsis] = "ellipsis", [sym_call] = "call", [sym_typed_parameter] = "typed_parameter", [sym_type] = "type", @@ -896,7 +898,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_CARET_EQ] = anon_sym_CARET_EQ, [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ, [anon_sym_yield] = anon_sym_yield, - [sym_ellipsis] = sym_ellipsis, + [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT, [anon_sym_None] = anon_sym_None, [sym_escape_sequence] = sym_escape_sequence, [anon_sym_BSLASH] = anon_sym_BSLASH, @@ -1074,6 +1076,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_attribute] = sym_attribute, [sym_subscript] = sym_subscript, [sym_slice] = sym_slice, + [sym_ellipsis] = sym_ellipsis, [sym_call] = sym_call, [sym_typed_parameter] = sym_typed_parameter, [sym_type] = sym_type, @@ -1559,9 +1562,9 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym_ellipsis] = { + [anon_sym_DOT_DOT_DOT] = { .visible = true, - .named = true, + .named = false, }, [anon_sym_None] = { .visible = true, @@ -2275,6 +2278,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_ellipsis] = { + .visible = true, + .named = true, + }, [sym_call] = { .visible = true, .named = true, @@ -4330,7 +4337,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [211] = 209, [212] = 207, [213] = 213, - [214] = 213, + [214] = 214, [215] = 215, [216] = 216, [217] = 217, @@ -4338,23 +4345,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [219] = 219, [220] = 220, [221] = 221, - [222] = 222, + [222] = 215, [223] = 223, [224] = 224, [225] = 225, [226] = 226, [227] = 227, [228] = 228, - [229] = 222, + [229] = 229, [230] = 226, [231] = 227, - [232] = 232, + [232] = 213, [233] = 233, [234] = 234, [235] = 235, [236] = 236, [237] = 237, - [238] = 215, + [238] = 238, [239] = 239, [240] = 240, [241] = 241, @@ -4363,13 +4370,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [244] = 216, [245] = 245, [246] = 217, - [247] = 234, + [247] = 235, [248] = 248, [249] = 249, - [250] = 236, + [250] = 237, [251] = 251, [252] = 252, - [253] = 237, + [253] = 238, [254] = 254, [255] = 255, [256] = 256, @@ -4393,14 +4400,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [274] = 243, [275] = 275, [276] = 219, - [277] = 232, - [278] = 233, - [279] = 235, + [277] = 233, + [278] = 234, + [279] = 236, [280] = 280, [281] = 245, [282] = 282, [283] = 220, - [284] = 221, + [284] = 214, [285] = 248, [286] = 249, [287] = 287, @@ -4409,35 +4416,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [290] = 262, [291] = 265, [292] = 292, - [293] = 293, - [294] = 269, - [295] = 251, - [296] = 296, + [293] = 221, + [294] = 294, + [295] = 269, + [296] = 251, [297] = 297, [298] = 298, - [299] = 282, - [300] = 300, + [299] = 299, + [300] = 282, [301] = 301, - [302] = 252, - [303] = 303, - [304] = 287, - [305] = 292, - [306] = 306, + [302] = 302, + [303] = 252, + [304] = 304, + [305] = 287, + [306] = 292, [307] = 307, [308] = 254, - [309] = 296, - [310] = 297, + [309] = 297, + [310] = 298, [311] = 255, - [312] = 298, - [313] = 300, - [314] = 301, + [312] = 299, + [313] = 301, + [314] = 302, [315] = 256, [316] = 257, [317] = 258, [318] = 318, - [319] = 223, - [320] = 318, - [321] = 260, + [319] = 318, + [320] = 260, + [321] = 223, [322] = 224, [323] = 263, [324] = 324, @@ -4451,18 +4458,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [332] = 327, [333] = 219, [334] = 221, - [335] = 222, - [336] = 226, - [337] = 227, + [335] = 226, + [336] = 227, + [337] = 213, [338] = 267, - [339] = 234, - [340] = 228, - [341] = 236, - [342] = 237, + [339] = 235, + [340] = 237, + [341] = 238, + [342] = 228, [343] = 331, [344] = 248, [345] = 249, - [346] = 306, + [346] = 229, [347] = 251, [348] = 252, [349] = 254, @@ -4472,27 +4479,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [353] = 270, [354] = 270, [355] = 225, - [356] = 232, - [357] = 233, + [356] = 233, + [357] = 234, [358] = 259, [359] = 261, [360] = 262, [361] = 265, - [362] = 293, + [362] = 294, [363] = 269, [364] = 287, [365] = 292, - [366] = 296, - [367] = 297, - [368] = 298, - [369] = 300, - [370] = 301, + [366] = 297, + [367] = 298, + [368] = 299, + [369] = 301, + [370] = 302, [371] = 318, [372] = 324, [373] = 326, [374] = 327, [375] = 331, - [376] = 293, + [376] = 294, [377] = 377, [378] = 377, [379] = 379, @@ -4633,7 +4640,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [514] = 514, [515] = 515, [516] = 516, - [517] = 517, + [517] = 437, [518] = 518, [519] = 519, [520] = 520, @@ -4661,7 +4668,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [542] = 542, [543] = 543, [544] = 544, - [545] = 545, + [545] = 396, [546] = 546, [547] = 547, [548] = 548, @@ -4731,7 +4738,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [612] = 612, [613] = 613, [614] = 614, - [615] = 615, + [615] = 398, [616] = 616, [617] = 617, [618] = 618, @@ -4744,688 +4751,688 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [625] = 625, [626] = 626, [627] = 627, - [628] = 440, + [628] = 628, [629] = 629, [630] = 630, - [631] = 398, + [631] = 631, [632] = 632, - [633] = 633, - [634] = 396, + [633] = 398, + [634] = 634, [635] = 635, [636] = 636, [637] = 637, [638] = 638, [639] = 639, - [640] = 441, - [641] = 398, - [642] = 440, - [643] = 440, + [640] = 640, + [641] = 641, + [642] = 642, + [643] = 441, [644] = 398, - [645] = 645, - [646] = 646, + [645] = 437, + [646] = 437, [647] = 647, - [648] = 441, - [649] = 440, - [650] = 646, - [651] = 441, - [652] = 396, - [653] = 440, - [654] = 647, - [655] = 646, - [656] = 398, - [657] = 396, - [658] = 440, - [659] = 396, - [660] = 441, - [661] = 398, - [662] = 441, - [663] = 398, - [664] = 440, - [665] = 441, - [666] = 645, + [648] = 638, + [649] = 437, + [650] = 437, + [651] = 396, + [652] = 638, + [653] = 396, + [654] = 637, + [655] = 441, + [656] = 437, + [657] = 441, + [658] = 396, + [659] = 398, + [660] = 639, + [661] = 441, + [662] = 398, + [663] = 441, + [664] = 441, + [665] = 437, + [666] = 398, [667] = 441, [668] = 668, [669] = 669, [670] = 670, [671] = 671, [672] = 668, - [673] = 673, - [674] = 669, - [675] = 675, - [676] = 676, - [677] = 675, - [678] = 668, - [679] = 673, - [680] = 669, + [673] = 669, + [674] = 674, + [675] = 671, + [676] = 668, + [677] = 669, + [678] = 674, + [679] = 669, + [680] = 674, [681] = 668, - [682] = 673, - [683] = 669, - [684] = 673, - [685] = 673, - [686] = 669, + [682] = 674, + [683] = 668, + [684] = 669, + [685] = 674, + [686] = 686, [687] = 668, - [688] = 673, - [689] = 669, - [690] = 668, - [691] = 673, + [688] = 669, + [689] = 674, + [690] = 690, + [691] = 668, [692] = 669, - [693] = 668, - [694] = 673, + [693] = 674, + [694] = 668, [695] = 669, - [696] = 668, - [697] = 673, - [698] = 668, - [699] = 673, - [700] = 673, - [701] = 673, - [702] = 668, + [696] = 674, + [697] = 668, + [698] = 669, + [699] = 668, + [700] = 669, + [701] = 669, + [702] = 669, [703] = 703, - [704] = 703, - [705] = 705, + [704] = 704, + [705] = 704, [706] = 706, - [707] = 707, - [708] = 708, - [709] = 709, - [710] = 710, - [711] = 705, - [712] = 706, - [713] = 707, - [714] = 708, - [715] = 710, - [716] = 707, - [717] = 703, - [718] = 709, - [719] = 719, + [707] = 706, + [708] = 704, + [709] = 706, + [710] = 703, + [711] = 711, + [712] = 712, + [713] = 713, + [714] = 714, + [715] = 715, + [716] = 716, + [717] = 717, + [718] = 718, + [719] = 711, [720] = 720, - [721] = 721, - [722] = 722, + [721] = 711, + [722] = 717, [723] = 723, - [724] = 724, - [725] = 725, + [724] = 718, + [725] = 711, [726] = 726, - [727] = 727, - [728] = 728, - [729] = 729, - [730] = 724, - [731] = 731, - [732] = 724, - [733] = 720, - [734] = 734, - [735] = 719, + [727] = 714, + [728] = 723, + [729] = 718, + [730] = 712, + [731] = 717, + [732] = 732, + [733] = 733, + [734] = 718, + [735] = 735, [736] = 736, - [737] = 734, - [738] = 738, - [739] = 739, - [740] = 719, - [741] = 724, - [742] = 724, - [743] = 743, - [744] = 724, - [745] = 729, - [746] = 724, - [747] = 724, - [748] = 734, - [749] = 719, - [750] = 736, - [751] = 736, - [752] = 734, - [753] = 719, - [754] = 722, - [755] = 731, - [756] = 738, - [757] = 734, + [737] = 737, + [738] = 718, + [739] = 718, + [740] = 718, + [741] = 741, + [742] = 718, + [743] = 741, + [744] = 744, + [745] = 745, + [746] = 711, + [747] = 747, + [748] = 748, + [749] = 737, + [750] = 737, + [751] = 717, + [752] = 717, + [753] = 735, + [754] = 716, + [755] = 720, + [756] = 744, + [757] = 715, [758] = 758, [759] = 759, [760] = 760, [761] = 761, [762] = 762, - [763] = 763, - [764] = 762, - [765] = 758, - [766] = 766, - [767] = 767, + [763] = 758, + [764] = 764, + [765] = 760, + [766] = 761, + [767] = 764, [768] = 768, - [769] = 769, - [770] = 770, - [771] = 769, - [772] = 772, - [773] = 763, - [774] = 770, - [775] = 775, - [776] = 776, - [777] = 767, - [778] = 768, + [769] = 759, + [770] = 760, + [771] = 761, + [772] = 762, + [773] = 764, + [774] = 768, + [775] = 759, + [776] = 762, + [777] = 758, + [778] = 760, [779] = 761, - [780] = 761, - [781] = 762, - [782] = 763, - [783] = 762, - [784] = 758, - [785] = 766, - [786] = 769, - [787] = 770, - [788] = 761, - [789] = 762, - [790] = 763, - [791] = 763, + [780] = 762, + [781] = 758, + [782] = 764, + [783] = 768, + [784] = 759, + [785] = 760, + [786] = 761, + [787] = 762, + [788] = 758, + [789] = 768, + [790] = 764, + [791] = 768, [792] = 760, - [793] = 766, - [794] = 769, - [795] = 770, - [796] = 761, - [797] = 761, - [798] = 762, - [799] = 763, - [800] = 758, - [801] = 766, - [802] = 769, - [803] = 770, - [804] = 761, - [805] = 762, - [806] = 758, - [807] = 758, - [808] = 766, - [809] = 769, - [810] = 770, + [793] = 761, + [794] = 762, + [795] = 758, + [796] = 764, + [797] = 768, + [798] = 760, + [799] = 761, + [800] = 762, + [801] = 758, + [802] = 760, + [803] = 761, + [804] = 762, + [805] = 758, + [806] = 760, + [807] = 761, + [808] = 762, + [809] = 758, + [810] = 760, [811] = 761, [812] = 762, - [813] = 766, - [814] = 758, - [815] = 766, - [816] = 769, - [817] = 770, - [818] = 758, - [819] = 766, - [820] = 769, - [821] = 770, - [822] = 758, - [823] = 766, - [824] = 769, - [825] = 770, - [826] = 758, - [827] = 766, - [828] = 769, - [829] = 770, - [830] = 769, - [831] = 770, - [832] = 758, - [833] = 766, - [834] = 775, - [835] = 776, - [836] = 772, + [813] = 758, + [814] = 762, + [815] = 758, + [816] = 760, + [817] = 761, + [818] = 764, + [819] = 764, + [820] = 768, + [821] = 759, + [822] = 768, + [823] = 823, + [824] = 759, + [825] = 825, + [826] = 826, + [827] = 827, + [828] = 828, + [829] = 829, + [830] = 830, + [831] = 831, + [832] = 832, + [833] = 833, + [834] = 829, + [835] = 835, + [836] = 736, [837] = 837, - [838] = 838, - [839] = 837, + [838] = 835, + [839] = 827, [840] = 840, - [841] = 841, - [842] = 841, - [843] = 435, - [844] = 844, - [845] = 726, - [846] = 438, - [847] = 847, - [848] = 840, - [849] = 847, - [850] = 850, - [851] = 847, - [852] = 437, - [853] = 844, - [854] = 436, - [855] = 838, - [856] = 856, - [857] = 857, - [858] = 856, - [859] = 859, - [860] = 840, - [861] = 850, - [862] = 850, - [863] = 859, - [864] = 439, - [865] = 844, - [866] = 725, - [867] = 841, - [868] = 838, - [869] = 869, - [870] = 870, - [871] = 438, - [872] = 439, - [873] = 437, - [874] = 874, - [875] = 759, - [876] = 876, - [877] = 877, - [878] = 878, - [879] = 435, - [880] = 877, - [881] = 881, - [882] = 874, - [883] = 870, - [884] = 876, - [885] = 878, - [886] = 436, - [887] = 887, - [888] = 888, - [889] = 889, - [890] = 890, - [891] = 891, - [892] = 438, - [893] = 876, - [894] = 878, - [895] = 435, - [896] = 436, - [897] = 439, - [898] = 438, - [899] = 890, - [900] = 891, - [901] = 437, - [902] = 435, - [903] = 876, - [904] = 904, - [905] = 878, - [906] = 876, - [907] = 436, - [908] = 878, - [909] = 439, - [910] = 759, - [911] = 438, - [912] = 870, - [913] = 437, - [914] = 876, - [915] = 878, - [916] = 759, + [841] = 840, + [842] = 842, + [843] = 843, + [844] = 829, + [845] = 845, + [846] = 831, + [847] = 825, + [848] = 828, + [849] = 837, + [850] = 843, + [851] = 835, + [852] = 845, + [853] = 832, + [854] = 842, + [855] = 826, + [856] = 833, + [857] = 825, + [858] = 826, + [859] = 733, + [860] = 837, + [861] = 831, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 823, + [866] = 438, + [867] = 823, + [868] = 868, + [869] = 864, + [870] = 436, + [871] = 871, + [872] = 823, + [873] = 862, + [874] = 864, + [875] = 440, + [876] = 435, + [877] = 862, + [878] = 868, + [879] = 879, + [880] = 880, + [881] = 864, + [882] = 864, + [883] = 864, + [884] = 862, + [885] = 862, + [886] = 862, + [887] = 862, + [888] = 862, + [889] = 879, + [890] = 868, + [891] = 439, + [892] = 823, + [893] = 864, + [894] = 864, + [895] = 895, + [896] = 896, + [897] = 897, + [898] = 898, + [899] = 440, + [900] = 895, + [901] = 901, + [902] = 902, + [903] = 435, + [904] = 897, + [905] = 436, + [906] = 439, + [907] = 907, + [908] = 895, + [909] = 902, + [910] = 910, + [911] = 911, + [912] = 912, + [913] = 901, + [914] = 863, + [915] = 440, + [916] = 438, [917] = 917, [918] = 918, - [919] = 437, - [920] = 918, - [921] = 759, - [922] = 878, - [923] = 435, - [924] = 888, - [925] = 904, - [926] = 439, - [927] = 876, - [928] = 889, - [929] = 929, - [930] = 887, - [931] = 878, - [932] = 436, - [933] = 876, - [934] = 881, - [935] = 935, - [936] = 936, - [937] = 937, - [938] = 935, + [919] = 435, + [920] = 436, + [921] = 921, + [922] = 922, + [923] = 439, + [924] = 435, + [925] = 436, + [926] = 440, + [927] = 439, + [928] = 438, + [929] = 438, + [930] = 921, + [931] = 897, + [932] = 435, + [933] = 436, + [934] = 895, + [935] = 902, + [936] = 440, + [937] = 439, + [938] = 438, [939] = 939, - [940] = 935, - [941] = 941, + [940] = 871, + [941] = 897, [942] = 942, - [943] = 942, - [944] = 944, - [945] = 944, - [946] = 935, - [947] = 935, - [948] = 869, - [949] = 935, - [950] = 950, + [943] = 895, + [944] = 902, + [945] = 897, + [946] = 895, + [947] = 902, + [948] = 897, + [949] = 895, + [950] = 902, [951] = 951, [952] = 952, - [953] = 942, - [954] = 954, - [955] = 955, - [956] = 935, - [957] = 944, - [958] = 958, - [959] = 942, - [960] = 944, - [961] = 936, - [962] = 942, - [963] = 944, - [964] = 942, - [965] = 935, - [966] = 944, - [967] = 967, - [968] = 942, - [969] = 944, - [970] = 970, - [971] = 971, - [972] = 955, - [973] = 973, - [974] = 974, - [975] = 973, - [976] = 942, - [977] = 942, - [978] = 944, - [979] = 935, - [980] = 967, - [981] = 971, - [982] = 935, + [953] = 897, + [954] = 897, + [955] = 895, + [956] = 902, + [957] = 897, + [958] = 902, + [959] = 917, + [960] = 918, + [961] = 897, + [962] = 895, + [963] = 902, + [964] = 951, + [965] = 952, + [966] = 897, + [967] = 895, + [968] = 902, + [969] = 897, + [970] = 895, + [971] = 902, + [972] = 910, + [973] = 911, + [974] = 912, + [975] = 895, + [976] = 902, + [977] = 922, + [978] = 398, + [979] = 979, + [980] = 980, + [981] = 863, + [982] = 982, [983] = 983, - [984] = 944, - [985] = 942, - [986] = 944, - [987] = 970, - [988] = 935, - [989] = 942, - [990] = 944, - [991] = 942, - [992] = 944, - [993] = 993, - [994] = 917, - [995] = 937, + [984] = 984, + [985] = 984, + [986] = 986, + [987] = 987, + [988] = 871, + [989] = 989, + [990] = 990, + [991] = 991, + [992] = 991, + [993] = 863, + [994] = 398, + [995] = 995, [996] = 996, [997] = 997, [998] = 998, - [999] = 997, - [1000] = 958, - [1001] = 939, - [1002] = 954, - [1003] = 998, - [1004] = 950, - [1005] = 935, - [1006] = 983, - [1007] = 952, - [1008] = 572, - [1009] = 588, - [1010] = 445, - [1011] = 590, - [1012] = 446, - [1013] = 447, + [999] = 639, + [1000] = 1000, + [1001] = 1001, + [1002] = 995, + [1003] = 1003, + [1004] = 1004, + [1005] = 1005, + [1006] = 1006, + [1007] = 1007, + [1008] = 1008, + [1009] = 996, + [1010] = 1010, + [1011] = 1011, + [1012] = 863, + [1013] = 1013, [1014] = 1014, - [1015] = 1015, + [1015] = 986, [1016] = 1016, - [1017] = 1017, - [1018] = 1018, - [1019] = 592, - [1020] = 596, - [1021] = 554, - [1022] = 561, - [1023] = 448, - [1024] = 449, - [1025] = 450, - [1026] = 451, - [1027] = 452, + [1017] = 982, + [1018] = 1004, + [1019] = 1019, + [1020] = 980, + [1021] = 1005, + [1022] = 1022, + [1023] = 1000, + [1024] = 1024, + [1025] = 997, + [1026] = 1026, + [1027] = 1027, [1028] = 1028, - [1029] = 562, - [1030] = 1030, - [1031] = 563, - [1032] = 599, - [1033] = 567, - [1034] = 568, - [1035] = 570, - [1036] = 601, - [1037] = 453, - [1038] = 627, - [1039] = 455, - [1040] = 456, - [1041] = 457, - [1042] = 458, - [1043] = 459, - [1044] = 460, - [1045] = 461, - [1046] = 462, - [1047] = 463, - [1048] = 464, - [1049] = 465, - [1050] = 1050, - [1051] = 466, - [1052] = 467, - [1053] = 468, - [1054] = 469, - [1055] = 564, - [1056] = 470, - [1057] = 471, - [1058] = 571, - [1059] = 539, - [1060] = 1015, - [1061] = 576, - [1062] = 472, - [1063] = 473, - [1064] = 474, - [1065] = 475, - [1066] = 476, - [1067] = 477, - [1068] = 478, - [1069] = 479, - [1070] = 480, - [1071] = 481, - [1072] = 482, - [1073] = 483, - [1074] = 484, - [1075] = 485, - [1076] = 1030, - [1077] = 486, - [1078] = 582, - [1079] = 1079, - [1080] = 565, - [1081] = 544, - [1082] = 583, - [1083] = 487, - [1084] = 488, - [1085] = 489, - [1086] = 490, - [1087] = 491, - [1088] = 492, - [1089] = 493, - [1090] = 584, - [1091] = 589, - [1092] = 1092, - [1093] = 494, - [1094] = 1094, - [1095] = 616, - [1096] = 1028, - [1097] = 1097, - [1098] = 454, - [1099] = 1099, - [1100] = 605, - [1101] = 1014, - [1102] = 566, - [1103] = 1103, - [1104] = 1104, - [1105] = 1105, - [1106] = 547, - [1107] = 617, - [1108] = 495, - [1109] = 496, - [1110] = 1030, - [1111] = 624, - [1112] = 516, - [1113] = 535, - [1114] = 536, - [1115] = 537, - [1116] = 1116, - [1117] = 557, - [1118] = 538, - [1119] = 1050, - [1120] = 552, - [1121] = 569, - [1122] = 540, - [1123] = 1015, - [1124] = 541, - [1125] = 543, - [1126] = 558, - [1127] = 1127, - [1128] = 559, - [1129] = 560, - [1130] = 542, - [1131] = 546, - [1132] = 513, - [1133] = 517, - [1134] = 520, - [1135] = 521, - [1136] = 522, - [1137] = 1137, - [1138] = 523, - [1139] = 530, - [1140] = 591, - [1141] = 593, - [1142] = 594, - [1143] = 595, - [1144] = 597, - [1145] = 497, - [1146] = 598, - [1147] = 917, - [1148] = 1014, - [1149] = 869, - [1150] = 600, - [1151] = 602, - [1152] = 603, - [1153] = 917, - [1154] = 645, - [1155] = 869, - [1156] = 604, - [1157] = 1157, - [1158] = 1158, - [1159] = 1050, - [1160] = 573, - [1161] = 443, - [1162] = 574, - [1163] = 1163, - [1164] = 575, - [1165] = 577, - [1166] = 578, - [1167] = 579, - [1168] = 498, - [1169] = 1163, - [1170] = 1170, - [1171] = 398, - [1172] = 398, - [1173] = 1173, - [1174] = 518, - [1175] = 519, - [1176] = 524, - [1177] = 525, - [1178] = 526, - [1179] = 527, - [1180] = 499, - [1181] = 500, - [1182] = 501, - [1183] = 528, - [1184] = 502, - [1185] = 606, - [1186] = 607, - [1187] = 529, - [1188] = 608, - [1189] = 503, - [1190] = 609, - [1191] = 531, + [1029] = 1013, + [1030] = 983, + [1031] = 989, + [1032] = 989, + [1033] = 1000, + [1034] = 1034, + [1035] = 1034, + [1036] = 980, + [1037] = 987, + [1038] = 998, + [1039] = 1039, + [1040] = 990, + [1041] = 1041, + [1042] = 1042, + [1043] = 1004, + [1044] = 1044, + [1045] = 1027, + [1046] = 871, + [1047] = 1027, + [1048] = 1027, + [1049] = 1027, + [1050] = 1027, + [1051] = 1027, + [1052] = 1027, + [1053] = 1027, + [1054] = 1027, + [1055] = 1027, + [1056] = 1027, + [1057] = 1022, + [1058] = 998, + [1059] = 1026, + [1060] = 1019, + [1061] = 1061, + [1062] = 1062, + [1063] = 871, + [1064] = 1014, + [1065] = 604, + [1066] = 530, + [1067] = 531, + [1068] = 522, + [1069] = 558, + [1070] = 533, + [1071] = 1071, + [1072] = 534, + [1073] = 535, + [1074] = 497, + [1075] = 582, + [1076] = 583, + [1077] = 587, + [1078] = 588, + [1079] = 563, + [1080] = 566, + [1081] = 567, + [1082] = 612, + [1083] = 589, + [1084] = 590, + [1085] = 592, + [1086] = 613, + [1087] = 586, + [1088] = 597, + [1089] = 591, + [1090] = 599, + [1091] = 614, + [1092] = 616, + [1093] = 617, + [1094] = 618, + [1095] = 621, + [1096] = 622, + [1097] = 594, + [1098] = 598, + [1099] = 623, + [1100] = 624, + [1101] = 1042, + [1102] = 625, + [1103] = 494, + [1104] = 626, + [1105] = 619, + [1106] = 485, + [1107] = 454, + [1108] = 568, + [1109] = 523, + [1110] = 546, + [1111] = 627, + [1112] = 571, + [1113] = 628, + [1114] = 629, + [1115] = 600, + [1116] = 601, + [1117] = 602, + [1118] = 499, + [1119] = 603, + [1120] = 605, + [1121] = 503, + [1122] = 611, + [1123] = 606, + [1124] = 483, + [1125] = 486, + [1126] = 506, + [1127] = 501, + [1128] = 448, + [1129] = 524, + [1130] = 449, + [1131] = 450, + [1132] = 451, + [1133] = 507, + [1134] = 508, + [1135] = 452, + [1136] = 539, + [1137] = 509, + [1138] = 513, + [1139] = 532, + [1140] = 564, + [1141] = 565, + [1142] = 871, + [1143] = 1143, + [1144] = 569, + [1145] = 561, + [1146] = 610, + [1147] = 584, + [1148] = 1148, + [1149] = 570, + [1150] = 572, + [1151] = 1151, + [1152] = 504, + [1153] = 453, + [1154] = 630, + [1155] = 510, + [1156] = 1156, + [1157] = 455, + [1158] = 456, + [1159] = 457, + [1160] = 458, + [1161] = 398, + [1162] = 459, + [1163] = 460, + [1164] = 593, + [1165] = 1156, + [1166] = 505, + [1167] = 461, + [1168] = 462, + [1169] = 463, + [1170] = 464, + [1171] = 465, + [1172] = 500, + [1173] = 511, + [1174] = 512, + [1175] = 445, + [1176] = 562, + [1177] = 502, + [1178] = 466, + [1179] = 1179, + [1180] = 495, + [1181] = 551, + [1182] = 467, + [1183] = 863, + [1184] = 585, + [1185] = 555, + [1186] = 468, + [1187] = 549, + [1188] = 541, + [1189] = 469, + [1190] = 548, + [1191] = 487, [1192] = 1192, - [1193] = 548, - [1194] = 549, - [1195] = 504, - [1196] = 550, - [1197] = 505, - [1198] = 551, - [1199] = 555, - [1200] = 1200, - [1201] = 553, - [1202] = 532, - [1203] = 1203, - [1204] = 533, - [1205] = 556, - [1206] = 534, - [1207] = 1028, - [1208] = 610, - [1209] = 611, - [1210] = 612, - [1211] = 613, - [1212] = 614, - [1213] = 615, - [1214] = 506, - [1215] = 507, - [1216] = 508, - [1217] = 1127, - [1218] = 509, - [1219] = 510, - [1220] = 1127, - [1221] = 618, - [1222] = 1127, - [1223] = 1127, - [1224] = 1127, - [1225] = 1127, - [1226] = 1127, - [1227] = 1127, - [1228] = 1127, - [1229] = 1127, - [1230] = 1127, - [1231] = 511, - [1232] = 619, - [1233] = 1137, - [1234] = 620, - [1235] = 1173, - [1236] = 621, - [1237] = 622, - [1238] = 512, - [1239] = 623, - [1240] = 625, - [1241] = 626, - [1242] = 444, - [1243] = 580, - [1244] = 581, - [1245] = 917, - [1246] = 869, - [1247] = 585, - [1248] = 514, - [1249] = 515, - [1250] = 586, - [1251] = 1079, - [1252] = 587, - [1253] = 545, - [1254] = 1254, - [1255] = 1255, - [1256] = 1256, - [1257] = 1257, - [1258] = 1258, - [1259] = 1259, - [1260] = 1260, - [1261] = 1261, - [1262] = 1262, - [1263] = 1263, - [1264] = 869, - [1265] = 1265, - [1266] = 1266, - [1267] = 1267, - [1268] = 1268, - [1269] = 1269, - [1270] = 1270, - [1271] = 1271, - [1272] = 1261, + [1193] = 498, + [1194] = 518, + [1195] = 544, + [1196] = 1192, + [1197] = 552, + [1198] = 514, + [1199] = 543, + [1200] = 515, + [1201] = 1201, + [1202] = 607, + [1203] = 496, + [1204] = 540, + [1205] = 443, + [1206] = 488, + [1207] = 470, + [1208] = 471, + [1209] = 1148, + [1210] = 573, + [1211] = 559, + [1212] = 489, + [1213] = 575, + [1214] = 574, + [1215] = 595, + [1216] = 1216, + [1217] = 556, + [1218] = 576, + [1219] = 577, + [1220] = 579, + [1221] = 1221, + [1222] = 580, + [1223] = 554, + [1224] = 542, + [1225] = 609, + [1226] = 446, + [1227] = 581, + [1228] = 1143, + [1229] = 553, + [1230] = 560, + [1231] = 608, + [1232] = 1071, + [1233] = 447, + [1234] = 578, + [1235] = 596, + [1236] = 490, + [1237] = 1151, + [1238] = 484, + [1239] = 491, + [1240] = 492, + [1241] = 557, + [1242] = 547, + [1243] = 519, + [1244] = 472, + [1245] = 473, + [1246] = 520, + [1247] = 525, + [1248] = 526, + [1249] = 1201, + [1250] = 474, + [1251] = 475, + [1252] = 527, + [1253] = 1216, + [1254] = 476, + [1255] = 528, + [1256] = 620, + [1257] = 477, + [1258] = 478, + [1259] = 493, + [1260] = 479, + [1261] = 521, + [1262] = 529, + [1263] = 480, + [1264] = 444, + [1265] = 516, + [1266] = 536, + [1267] = 537, + [1268] = 538, + [1269] = 481, + [1270] = 482, + [1271] = 550, + [1272] = 1272, [1273] = 1273, [1274] = 1274, - [1275] = 1275, - [1276] = 1262, - [1277] = 1277, + [1275] = 647, + [1276] = 1276, + [1277] = 640, [1278] = 1278, [1279] = 1279, - [1280] = 1280, + [1280] = 632, [1281] = 1281, - [1282] = 1281, + [1282] = 1282, [1283] = 1283, [1284] = 1284, [1285] = 1285, [1286] = 1286, - [1287] = 1265, + [1287] = 1287, [1288] = 1288, - [1289] = 1289, + [1289] = 1272, [1290] = 1290, - [1291] = 1263, - [1292] = 1268, + [1291] = 1291, + [1292] = 1292, [1293] = 1293, - [1294] = 1269, + [1294] = 1294, [1295] = 1295, - [1296] = 1270, - [1297] = 1275, + [1296] = 1296, + [1297] = 1297, [1298] = 1298, - [1299] = 1290, - [1300] = 1295, + [1299] = 639, + [1300] = 1300, [1301] = 1301, [1302] = 1302, - [1303] = 636, + [1303] = 1303, [1304] = 1304, - [1305] = 639, - [1306] = 1306, - [1307] = 1285, - [1308] = 1283, - [1309] = 630, + [1305] = 1305, + [1306] = 1301, + [1307] = 1307, + [1308] = 1308, + [1309] = 1309, [1310] = 1310, [1311] = 1311, [1312] = 1312, @@ -5433,1905 +5440,1905 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1314] = 1314, [1315] = 1315, [1316] = 1316, - [1317] = 1293, + [1317] = 1317, [1318] = 1318, [1319] = 1319, - [1320] = 629, - [1321] = 632, - [1322] = 1310, + [1320] = 1320, + [1321] = 1321, + [1322] = 1322, [1323] = 1323, - [1324] = 1266, - [1325] = 1255, + [1324] = 1324, + [1325] = 1325, [1326] = 1326, - [1327] = 1312, - [1328] = 1311, + [1327] = 1273, + [1328] = 1328, [1329] = 1329, - [1330] = 1274, + [1330] = 1330, [1331] = 1331, - [1332] = 1298, - [1333] = 1286, + [1332] = 1332, + [1333] = 1333, [1334] = 1334, - [1335] = 633, - [1336] = 1260, - [1337] = 1254, - [1338] = 1313, + [1335] = 1335, + [1336] = 1336, + [1337] = 1337, + [1338] = 1338, [1339] = 1339, - [1340] = 1306, - [1341] = 1341, - [1342] = 1342, - [1343] = 1341, - [1344] = 1344, - [1345] = 637, - [1346] = 1346, - [1347] = 1342, - [1348] = 1344, - [1349] = 1349, - [1350] = 1349, - [1351] = 1277, - [1352] = 1278, - [1353] = 1256, - [1354] = 1339, - [1355] = 1316, - [1356] = 1318, - [1357] = 1346, + [1340] = 1286, + [1341] = 1272, + [1342] = 1290, + [1343] = 1291, + [1344] = 1292, + [1345] = 1316, + [1346] = 1298, + [1347] = 1300, + [1348] = 1304, + [1349] = 1301, + [1350] = 1286, + [1351] = 1272, + [1352] = 1290, + [1353] = 1291, + [1354] = 1292, + [1355] = 1298, + [1356] = 1298, + [1357] = 1300, [1358] = 1358, - [1359] = 1359, - [1360] = 1257, + [1359] = 1304, + [1360] = 1301, [1361] = 1361, - [1362] = 1288, - [1363] = 1323, - [1364] = 1280, - [1365] = 1289, - [1366] = 1366, - [1367] = 1367, - [1368] = 1329, - [1369] = 1258, - [1370] = 1370, - [1371] = 1273, - [1372] = 1314, - [1373] = 1370, + [1362] = 1362, + [1363] = 1363, + [1364] = 1286, + [1365] = 1272, + [1366] = 1290, + [1367] = 1291, + [1368] = 1292, + [1369] = 1298, + [1370] = 1300, + [1371] = 1371, + [1372] = 1372, + [1373] = 1304, [1374] = 1374, - [1375] = 1326, - [1376] = 1374, - [1377] = 1359, - [1378] = 1279, - [1379] = 1302, - [1380] = 1259, - [1381] = 1358, - [1382] = 635, - [1383] = 1284, - [1384] = 1361, - [1385] = 398, - [1386] = 917, - [1387] = 638, - [1388] = 1367, - [1389] = 1389, - [1390] = 1390, - [1391] = 1389, - [1392] = 1390, - [1393] = 1319, - [1394] = 1105, - [1395] = 1304, - [1396] = 1366, - [1397] = 1315, - [1398] = 1301, - [1399] = 1334, - [1400] = 1400, - [1401] = 1401, - [1402] = 1402, + [1375] = 1301, + [1376] = 1376, + [1377] = 1377, + [1378] = 1286, + [1379] = 1272, + [1380] = 1290, + [1381] = 1291, + [1382] = 1292, + [1383] = 1298, + [1384] = 1300, + [1385] = 1385, + [1386] = 1304, + [1387] = 1301, + [1388] = 1286, + [1389] = 1272, + [1390] = 1290, + [1391] = 1291, + [1392] = 1292, + [1393] = 1298, + [1394] = 1300, + [1395] = 1395, + [1396] = 1304, + [1397] = 1301, + [1398] = 1398, + [1399] = 1300, + [1400] = 642, + [1401] = 1273, + [1402] = 1324, [1403] = 1403, - [1404] = 1400, - [1405] = 1400, - [1406] = 1406, + [1404] = 1404, + [1405] = 1405, + [1406] = 1286, [1407] = 1407, - [1408] = 1408, - [1409] = 1409, - [1410] = 1410, - [1411] = 1411, - [1412] = 1408, + [1408] = 1272, + [1409] = 1290, + [1410] = 1291, + [1411] = 1292, + [1412] = 1412, [1413] = 1413, [1414] = 1414, - [1415] = 1415, - [1416] = 1416, - [1417] = 1403, - [1418] = 1400, - [1419] = 1406, - [1420] = 1407, + [1415] = 1339, + [1416] = 1398, + [1417] = 1300, + [1418] = 1418, + [1419] = 1276, + [1420] = 1420, [1421] = 1421, [1422] = 1422, - [1423] = 1408, + [1423] = 1301, [1424] = 1424, - [1425] = 1413, - [1426] = 1414, - [1427] = 1415, - [1428] = 1416, - [1429] = 1403, - [1430] = 1400, - [1431] = 1406, + [1425] = 636, + [1426] = 1426, + [1427] = 1427, + [1428] = 1405, + [1429] = 1371, + [1430] = 1430, + [1431] = 1431, [1432] = 1432, - [1433] = 1407, + [1433] = 1433, [1434] = 1434, [1435] = 1435, - [1436] = 1408, + [1436] = 398, [1437] = 1437, - [1438] = 1413, - [1439] = 1414, - [1440] = 1415, - [1441] = 1416, - [1442] = 1403, - [1443] = 1400, - [1444] = 1444, - [1445] = 1406, - [1446] = 1407, - [1447] = 1413, - [1448] = 1448, + [1438] = 1286, + [1439] = 1439, + [1440] = 1440, + [1441] = 1272, + [1442] = 1290, + [1443] = 1291, + [1444] = 1292, + [1445] = 1297, + [1446] = 1446, + [1447] = 1447, + [1448] = 1316, [1449] = 1449, [1450] = 1450, - [1451] = 1451, + [1451] = 1298, [1452] = 1452, - [1453] = 1408, - [1454] = 1413, - [1455] = 1414, - [1456] = 1415, - [1457] = 1416, - [1458] = 1458, - [1459] = 1459, - [1460] = 1460, - [1461] = 1461, - [1462] = 1402, - [1463] = 1400, - [1464] = 1464, - [1465] = 1465, - [1466] = 1464, - [1467] = 1467, - [1468] = 1468, - [1469] = 1414, - [1470] = 1401, - [1471] = 1407, - [1472] = 1415, - [1473] = 1416, - [1474] = 1449, - [1475] = 1475, - [1476] = 1476, - [1477] = 1477, - [1478] = 1477, - [1479] = 1479, - [1480] = 1480, - [1481] = 1481, - [1482] = 1482, - [1483] = 1448, - [1484] = 1484, - [1485] = 1485, - [1486] = 1486, - [1487] = 1487, - [1488] = 1488, - [1489] = 1489, - [1490] = 1490, - [1491] = 1491, - [1492] = 1492, - [1493] = 398, - [1494] = 1408, - [1495] = 1424, - [1496] = 1496, - [1497] = 1497, - [1498] = 1413, - [1499] = 1414, - [1500] = 1415, - [1501] = 1416, - [1502] = 1408, - [1503] = 1424, - [1504] = 1413, - [1505] = 1414, - [1506] = 1415, - [1507] = 1416, - [1508] = 1400, - [1509] = 1407, - [1510] = 1408, - [1511] = 1413, - [1512] = 1414, - [1513] = 1415, - [1514] = 1416, - [1515] = 1403, - [1516] = 1400, - [1517] = 1406, - [1518] = 1407, - [1519] = 1408, - [1520] = 1413, - [1521] = 1414, - [1522] = 1415, - [1523] = 1416, - [1524] = 1524, - [1525] = 1400, - [1526] = 1407, - [1527] = 1408, - [1528] = 1413, - [1529] = 1414, - [1530] = 1416, - [1531] = 1400, - [1532] = 1407, - [1533] = 1408, - [1534] = 1413, - [1535] = 1414, - [1536] = 1415, - [1537] = 1416, - [1538] = 1400, - [1539] = 1407, - [1540] = 1408, - [1541] = 1413, - [1542] = 1414, - [1543] = 1415, - [1544] = 1416, - [1545] = 1400, - [1546] = 1407, - [1547] = 1408, - [1548] = 1413, - [1549] = 1414, - [1550] = 1415, - [1551] = 1416, - [1552] = 1400, - [1553] = 1407, - [1554] = 1448, - [1555] = 1449, - [1556] = 1524, - [1557] = 1464, - [1558] = 1408, - [1559] = 1413, - [1560] = 1414, - [1561] = 1415, - [1562] = 1416, - [1563] = 1406, - [1564] = 1524, - [1565] = 1403, - [1566] = 645, - [1567] = 1400, - [1568] = 1524, - [1569] = 1569, - [1570] = 1406, - [1571] = 1467, - [1572] = 1403, - [1573] = 1573, - [1574] = 1400, - [1575] = 1407, - [1576] = 1424, - [1577] = 1408, - [1578] = 1413, - [1579] = 1414, - [1580] = 1415, - [1581] = 1416, - [1582] = 1400, - [1583] = 1407, - [1584] = 1448, - [1585] = 1449, + [1453] = 1300, + [1454] = 1286, + [1455] = 1439, + [1456] = 1272, + [1457] = 1290, + [1458] = 1291, + [1459] = 1292, + [1460] = 1300, + [1461] = 1301, + [1462] = 1286, + [1463] = 1272, + [1464] = 1290, + [1465] = 1291, + [1466] = 1292, + [1467] = 1298, + [1468] = 1300, + [1469] = 1304, + [1470] = 1301, + [1471] = 1286, + [1472] = 1272, + [1473] = 1290, + [1474] = 1291, + [1475] = 1292, + [1476] = 1316, + [1477] = 1300, + [1478] = 1301, + [1479] = 1286, + [1480] = 1272, + [1481] = 1290, + [1482] = 1291, + [1483] = 1292, + [1484] = 1300, + [1485] = 1301, + [1486] = 1286, + [1487] = 1272, + [1488] = 1290, + [1489] = 1291, + [1490] = 1292, + [1491] = 1300, + [1492] = 1301, + [1493] = 1286, + [1494] = 1272, + [1495] = 1290, + [1496] = 1291, + [1497] = 1292, + [1498] = 1300, + [1499] = 1301, + [1500] = 1286, + [1501] = 1272, + [1502] = 1290, + [1503] = 1291, + [1504] = 1292, + [1505] = 1300, + [1506] = 1301, + [1507] = 1273, + [1508] = 1324, + [1509] = 1509, + [1510] = 1418, + [1511] = 1511, + [1512] = 1512, + [1513] = 1513, + [1514] = 1514, + [1515] = 1515, + [1516] = 1516, + [1517] = 1304, + [1518] = 1518, + [1519] = 1301, + [1520] = 1313, + [1521] = 1521, + [1522] = 1317, + [1523] = 1318, + [1524] = 1319, + [1525] = 1525, + [1526] = 1323, + [1527] = 1325, + [1528] = 1528, + [1529] = 1326, + [1530] = 1328, + [1531] = 1330, + [1532] = 1332, + [1533] = 1335, + [1534] = 1418, + [1535] = 1286, + [1536] = 1372, + [1537] = 1376, + [1538] = 1377, + [1539] = 1439, + [1540] = 1286, + [1541] = 1272, + [1542] = 1290, + [1543] = 1291, + [1544] = 1292, + [1545] = 1300, + [1546] = 1301, + [1547] = 1273, + [1548] = 1324, + [1549] = 631, + [1550] = 1418, + [1551] = 1426, + [1552] = 641, + [1553] = 1427, + [1554] = 1439, + [1555] = 1430, + [1556] = 1431, + [1557] = 1273, + [1558] = 1324, + [1559] = 1432, + [1560] = 1433, + [1561] = 1434, + [1562] = 1435, + [1563] = 1437, + [1564] = 1450, + [1565] = 1452, + [1566] = 1566, + [1567] = 1509, + [1568] = 1511, + [1569] = 1512, + [1570] = 1513, + [1571] = 1514, + [1572] = 1273, + [1573] = 1324, + [1574] = 1525, + [1575] = 1528, + [1576] = 1273, + [1577] = 634, + [1578] = 1578, + [1579] = 1579, + [1580] = 1580, + [1581] = 1273, + [1582] = 1582, + [1583] = 1583, + [1584] = 1584, + [1585] = 1440, [1586] = 1586, [1587] = 1587, - [1588] = 1464, + [1588] = 1588, [1589] = 1589, - [1590] = 1448, - [1591] = 1449, - [1592] = 1406, - [1593] = 1593, - [1594] = 1407, - [1595] = 1595, - [1596] = 1596, - [1597] = 1597, + [1590] = 1590, + [1591] = 635, + [1592] = 1592, + [1593] = 1515, + [1594] = 1594, + [1595] = 1273, + [1596] = 1281, + [1597] = 1282, [1598] = 1598, - [1599] = 1448, - [1600] = 1449, - [1601] = 1601, - [1602] = 1451, - [1603] = 1407, - [1604] = 1448, - [1605] = 1605, - [1606] = 1606, - [1607] = 1408, - [1608] = 1413, - [1609] = 1414, - [1610] = 1415, - [1611] = 1416, - [1612] = 1448, - [1613] = 1524, - [1614] = 1448, - [1615] = 1403, - [1616] = 1400, - [1617] = 1461, - [1618] = 1448, - [1619] = 1448, - [1620] = 1448, - [1621] = 1406, - [1622] = 1403, - [1623] = 1407, - [1624] = 1448, - [1625] = 1448, - [1626] = 1448, - [1627] = 1448, - [1628] = 1448, - [1629] = 1401, - [1630] = 1421, - [1631] = 1437, - [1632] = 1598, - [1633] = 1601, - [1634] = 1476, - [1635] = 1487, - [1636] = 1488, - [1637] = 1452, - [1638] = 1459, - [1639] = 1460, - [1640] = 1490, - [1641] = 1491, - [1642] = 1492, - [1643] = 1496, - [1644] = 1497, - [1645] = 1411, - [1646] = 1422, - [1647] = 1432, - [1648] = 1434, - [1649] = 1475, - [1650] = 1401, - [1651] = 1437, - [1652] = 1598, - [1653] = 1601, - [1654] = 1476, - [1655] = 1487, - [1656] = 1488, - [1657] = 1452, - [1658] = 1459, - [1659] = 1460, - [1660] = 1490, - [1661] = 1491, - [1662] = 1492, - [1663] = 1496, - [1664] = 1497, - [1665] = 1411, - [1666] = 1422, - [1667] = 1432, - [1668] = 1434, - [1669] = 1475, - [1670] = 1401, - [1671] = 1476, - [1672] = 1401, - [1673] = 1401, - [1674] = 1401, - [1675] = 1401, - [1676] = 1401, - [1677] = 1401, - [1678] = 1401, - [1679] = 1401, - [1680] = 1401, - [1681] = 1401, - [1682] = 1401, - [1683] = 1401, - [1684] = 1593, - [1685] = 1587, - [1686] = 1401, - [1687] = 1479, - [1688] = 1410, - [1689] = 1408, - [1690] = 1413, - [1691] = 1595, - [1692] = 1408, - [1693] = 1413, - [1694] = 1414, - [1695] = 1415, - [1696] = 1416, - [1697] = 1524, - [1698] = 1414, - [1699] = 1400, - [1700] = 1415, - [1701] = 1407, - [1702] = 1416, - [1703] = 1408, - [1704] = 1413, - [1705] = 1414, - [1706] = 1415, - [1707] = 1416, - [1708] = 1407, - [1709] = 1448, - [1710] = 1424, - [1711] = 1448, - [1712] = 1401, - [1713] = 1401, - [1714] = 1408, - [1715] = 1413, - [1716] = 1414, - [1717] = 1415, - [1718] = 1416, - [1719] = 1400, - [1720] = 1407, - [1721] = 1448, - [1722] = 1415, + [1599] = 1273, + [1600] = 1516, + [1601] = 1273, + [1602] = 1272, + [1603] = 1273, + [1604] = 1307, + [1605] = 1273, + [1606] = 1308, + [1607] = 1273, + [1608] = 1309, + [1609] = 1273, + [1610] = 1311, + [1611] = 1273, + [1612] = 1290, + [1613] = 1273, + [1614] = 1295, + [1615] = 1314, + [1616] = 1315, + [1617] = 1578, + [1618] = 1295, + [1619] = 1413, + [1620] = 1424, + [1621] = 1284, + [1622] = 1293, + [1623] = 1358, + [1624] = 1420, + [1625] = 1421, + [1626] = 1586, + [1627] = 1594, + [1628] = 1598, + [1629] = 1285, + [1630] = 1287, + [1631] = 1288, + [1632] = 1294, + [1633] = 1296, + [1634] = 1331, + [1635] = 1334, + [1636] = 1337, + [1637] = 1338, + [1638] = 1407, + [1639] = 1295, + [1640] = 1424, + [1641] = 1284, + [1642] = 1293, + [1643] = 1358, + [1644] = 1420, + [1645] = 1421, + [1646] = 1586, + [1647] = 1594, + [1648] = 1598, + [1649] = 1285, + [1650] = 1287, + [1651] = 1288, + [1652] = 1294, + [1653] = 1296, + [1654] = 1331, + [1655] = 1334, + [1656] = 1337, + [1657] = 1338, + [1658] = 1407, + [1659] = 1295, + [1660] = 1358, + [1661] = 1295, + [1662] = 1291, + [1663] = 1295, + [1664] = 1295, + [1665] = 1579, + [1666] = 1295, + [1667] = 1295, + [1668] = 1295, + [1669] = 1580, + [1670] = 1295, + [1671] = 1292, + [1672] = 1295, + [1673] = 1582, + [1674] = 1295, + [1675] = 1295, + [1676] = 1295, + [1677] = 1295, + [1678] = 1521, + [1679] = 1583, + [1680] = 1385, + [1681] = 1295, + [1682] = 1304, + [1683] = 1587, + [1684] = 1588, + [1685] = 1592, + [1686] = 1589, + [1687] = 1312, + [1688] = 1361, + [1689] = 1362, + [1690] = 1363, + [1691] = 1446, + [1692] = 1286, + [1693] = 1272, + [1694] = 1290, + [1695] = 1291, + [1696] = 1292, + [1697] = 1316, + [1698] = 1300, + [1699] = 1374, + [1700] = 1301, + [1701] = 1590, + [1702] = 1286, + [1703] = 1272, + [1704] = 1290, + [1705] = 1291, + [1706] = 1292, + [1707] = 1300, + [1708] = 1301, + [1709] = 1273, + [1710] = 1439, + [1711] = 1273, + [1712] = 1295, + [1713] = 1295, + [1714] = 1422, + [1715] = 1518, + [1716] = 1286, + [1717] = 1290, + [1718] = 1291, + [1719] = 1292, + [1720] = 1300, + [1721] = 1301, + [1722] = 1316, [1723] = 398, - [1724] = 645, - [1725] = 645, + [1724] = 639, + [1725] = 639, [1726] = 398, [1727] = 441, [1728] = 1728, [1729] = 1729, - [1730] = 1730, - [1731] = 1730, - [1732] = 725, - [1733] = 726, + [1730] = 736, + [1731] = 1731, + [1732] = 1731, + [1733] = 733, [1734] = 1734, - [1735] = 1735, - [1736] = 1735, - [1737] = 1734, - [1738] = 726, - [1739] = 725, + [1735] = 1734, + [1736] = 1736, + [1737] = 1736, + [1738] = 736, + [1739] = 733, [1740] = 1740, [1741] = 1741, [1742] = 1740, [1743] = 1743, - [1744] = 1741, + [1744] = 1744, [1745] = 1745, [1746] = 1746, - [1747] = 1747, - [1748] = 1743, - [1749] = 1749, - [1750] = 1749, - [1751] = 1740, - [1752] = 1749, + [1747] = 1745, + [1748] = 1744, + [1749] = 1743, + [1750] = 1744, + [1751] = 1743, + [1752] = 1752, [1753] = 1753, - [1754] = 1754, - [1755] = 1753, - [1756] = 1753, + [1754] = 1752, + [1755] = 1752, + [1756] = 1752, [1757] = 1757, [1758] = 1758, - [1759] = 1753, - [1760] = 1757, + [1759] = 1752, + [1760] = 1752, [1761] = 1761, - [1762] = 1753, - [1763] = 1753, - [1764] = 1764, - [1765] = 1765, + [1762] = 1762, + [1763] = 1763, + [1764] = 1762, + [1765] = 1761, [1766] = 1766, - [1767] = 1765, + [1767] = 1767, [1768] = 1768, [1769] = 1769, - [1770] = 1770, + [1770] = 1768, [1771] = 1771, - [1772] = 1772, + [1772] = 1768, [1773] = 1773, - [1774] = 1774, - [1775] = 1775, + [1774] = 1768, + [1775] = 1768, [1776] = 1776, [1777] = 1777, [1778] = 1778, [1779] = 1779, - [1780] = 1772, + [1780] = 1780, [1781] = 1781, - [1782] = 1777, + [1782] = 1782, [1783] = 1783, - [1784] = 1783, - [1785] = 1764, - [1786] = 1786, - [1787] = 1787, - [1788] = 1786, - [1789] = 1787, - [1790] = 1787, - [1791] = 1787, - [1792] = 1786, - [1793] = 1787, - [1794] = 1787, - [1795] = 1787, - [1796] = 1787, + [1784] = 1778, + [1785] = 1776, + [1786] = 1768, + [1787] = 1780, + [1788] = 1788, + [1789] = 1768, + [1790] = 1779, + [1791] = 1791, + [1792] = 1792, + [1793] = 1768, + [1794] = 1794, + [1795] = 1795, + [1796] = 1796, [1797] = 1797, - [1798] = 1798, - [1799] = 1797, + [1798] = 1795, + [1799] = 1799, [1800] = 1800, [1801] = 1801, [1802] = 1802, - [1803] = 1797, - [1804] = 1801, - [1805] = 1802, - [1806] = 1806, - [1807] = 1807, - [1808] = 1808, + [1803] = 1803, + [1804] = 1794, + [1805] = 1805, + [1806] = 1795, + [1807] = 1796, + [1808] = 1803, [1809] = 1809, [1810] = 1810, - [1811] = 1808, - [1812] = 1809, - [1813] = 1813, - [1814] = 1814, - [1815] = 1808, - [1816] = 1809, - [1817] = 1806, - [1818] = 1807, - [1819] = 1808, - [1820] = 1809, - [1821] = 1808, - [1822] = 1797, - [1823] = 1809, - [1824] = 1800, - [1825] = 1800, - [1826] = 1801, - [1827] = 1802, - [1828] = 1806, - [1829] = 1807, - [1830] = 1813, - [1831] = 1814, - [1832] = 1808, - [1833] = 1808, + [1811] = 1797, + [1812] = 1801, + [1813] = 1802, + [1814] = 1797, + [1815] = 1809, + [1816] = 1810, + [1817] = 1799, + [1818] = 1809, + [1819] = 1810, + [1820] = 1797, + [1821] = 1800, + [1822] = 1809, + [1823] = 1801, + [1824] = 1802, + [1825] = 1803, + [1826] = 1794, + [1827] = 1805, + [1828] = 1795, + [1829] = 1796, + [1830] = 1809, + [1831] = 1810, + [1832] = 1809, + [1833] = 1810, [1834] = 1809, - [1835] = 1809, - [1836] = 1801, - [1837] = 1802, - [1838] = 1808, - [1839] = 1808, - [1840] = 1808, - [1841] = 1806, - [1842] = 1808, - [1843] = 1807, - [1844] = 1808, - [1845] = 1813, - [1846] = 1808, - [1847] = 1808, + [1835] = 1810, + [1836] = 1796, + [1837] = 1809, + [1838] = 1810, + [1839] = 1809, + [1840] = 1810, + [1841] = 1805, + [1842] = 1803, + [1843] = 1809, + [1844] = 1795, + [1845] = 1796, + [1846] = 1800, + [1847] = 1809, [1848] = 1809, - [1849] = 1808, - [1850] = 1808, - [1851] = 1851, - [1852] = 1851, - [1853] = 1814, - [1854] = 1854, - [1855] = 1813, - [1856] = 1856, - [1857] = 1809, - [1858] = 1810, - [1859] = 1808, - [1860] = 1814, - [1861] = 1810, - [1862] = 1797, - [1863] = 1856, - [1864] = 1797, + [1849] = 1809, + [1850] = 1809, + [1851] = 1809, + [1852] = 1852, + [1853] = 1802, + [1854] = 1794, + [1855] = 1805, + [1856] = 1800, + [1857] = 1800, + [1858] = 1801, + [1859] = 1802, + [1860] = 1803, + [1861] = 1794, + [1862] = 1805, + [1863] = 1795, + [1864] = 1796, [1865] = 1800, - [1866] = 1801, - [1867] = 1810, - [1868] = 1800, - [1869] = 1802, - [1870] = 1806, + [1866] = 1852, + [1867] = 1801, + [1868] = 1802, + [1869] = 1803, + [1870] = 1794, [1871] = 1801, - [1872] = 1814, - [1873] = 1802, - [1874] = 1807, - [1875] = 1806, - [1876] = 1807, - [1877] = 1813, - [1878] = 1813, - [1879] = 1814, - [1880] = 1814, - [1881] = 1797, - [1882] = 1800, - [1883] = 1801, - [1884] = 1802, - [1885] = 1806, - [1886] = 1807, - [1887] = 1813, - [1888] = 1814, - [1889] = 1851, - [1890] = 1797, - [1891] = 1797, - [1892] = 1800, - [1893] = 1854, - [1894] = 1801, - [1895] = 1802, - [1896] = 1806, - [1897] = 1800, - [1898] = 1802, - [1899] = 1806, - [1900] = 1807, - [1901] = 1813, - [1902] = 1814, - [1903] = 1807, - [1904] = 1813, - [1905] = 1800, + [1872] = 1805, + [1873] = 1795, + [1874] = 1800, + [1875] = 1801, + [1876] = 1802, + [1877] = 1802, + [1878] = 1803, + [1879] = 1800, + [1880] = 1794, + [1881] = 1803, + [1882] = 1805, + [1883] = 1795, + [1884] = 1796, + [1885] = 1794, + [1886] = 1810, + [1887] = 1805, + [1888] = 1809, + [1889] = 1852, + [1890] = 1796, + [1891] = 1800, + [1892] = 1801, + [1893] = 1803, + [1894] = 1794, + [1895] = 1805, + [1896] = 1795, + [1897] = 1796, + [1898] = 1801, + [1899] = 1809, + [1900] = 1900, + [1901] = 1901, + [1902] = 1902, + [1903] = 1902, + [1904] = 1900, + [1905] = 1902, [1906] = 1906, - [1907] = 1906, + [1907] = 1907, [1908] = 1908, [1909] = 1909, - [1910] = 1909, - [1911] = 1911, + [1910] = 1907, + [1911] = 1908, [1912] = 1912, - [1913] = 1913, - [1914] = 1913, - [1915] = 1912, - [1916] = 1911, + [1913] = 1909, + [1914] = 1914, + [1915] = 1914, + [1916] = 1906, [1917] = 1917, [1918] = 1918, [1919] = 1919, - [1920] = 1920, - [1921] = 1919, + [1920] = 1917, + [1921] = 1921, [1922] = 1922, - [1923] = 1923, - [1924] = 1920, - [1925] = 1917, - [1926] = 1918, - [1927] = 1923, - [1928] = 1922, + [1923] = 1922, + [1924] = 1924, + [1925] = 1919, + [1926] = 1924, + [1927] = 1921, + [1928] = 1918, [1929] = 1929, [1930] = 1930, [1931] = 1931, [1932] = 1932, [1933] = 1933, - [1934] = 1728, - [1935] = 1935, + [1934] = 1934, + [1935] = 1728, [1936] = 1936, [1937] = 1937, - [1938] = 1918, + [1938] = 1921, [1939] = 1939, [1940] = 1940, [1941] = 1941, - [1942] = 1942, + [1942] = 1921, [1943] = 1943, - [1944] = 1918, - [1945] = 1936, + [1944] = 1944, + [1945] = 1921, [1946] = 1946, - [1947] = 1918, - [1948] = 1948, + [1947] = 1947, + [1948] = 1936, [1949] = 1949, - [1950] = 1918, + [1950] = 1950, [1951] = 1951, - [1952] = 1952, - [1953] = 1918, - [1954] = 1954, - [1955] = 1918, - [1956] = 1956, - [1957] = 1957, - [1958] = 1918, - [1959] = 1918, - [1960] = 1918, - [1961] = 1918, - [1962] = 1918, - [1963] = 1963, - [1964] = 1964, + [1952] = 1921, + [1953] = 1921, + [1954] = 1921, + [1955] = 1955, + [1956] = 1921, + [1957] = 1921, + [1958] = 1958, + [1959] = 1959, + [1960] = 1921, + [1961] = 1961, + [1962] = 1921, + [1963] = 1921, + [1964] = 1777, [1965] = 1965, [1966] = 1966, - [1967] = 1918, - [1968] = 1933, + [1967] = 1967, + [1968] = 1968, [1969] = 1969, [1970] = 1970, [1971] = 1971, - [1972] = 1972, + [1972] = 1932, [1973] = 1973, [1974] = 1974, [1975] = 1975, - [1976] = 1976, + [1976] = 1929, [1977] = 1977, [1978] = 1978, - [1979] = 1935, + [1979] = 1979, [1980] = 1980, [1981] = 1981, [1982] = 1982, - [1983] = 1778, - [1984] = 1933, + [1983] = 1983, + [1984] = 1984, [1985] = 1985, [1986] = 1986, - [1987] = 1930, - [1988] = 1988, - [1989] = 1918, - [1990] = 1770, - [1991] = 1991, - [1992] = 1771, - [1993] = 1993, + [1987] = 1987, + [1988] = 1931, + [1989] = 1989, + [1990] = 1781, + [1991] = 1788, + [1992] = 1791, + [1993] = 1932, [1994] = 1994, [1995] = 1995, - [1996] = 1935, + [1996] = 1996, [1997] = 1997, - [1998] = 1768, - [1999] = 1773, + [1998] = 1792, + [1999] = 1999, [2000] = 2000, - [2001] = 1774, + [2001] = 1771, [2002] = 2002, [2003] = 2003, - [2004] = 2004, - [2005] = 1781, - [2006] = 2006, - [2007] = 1929, - [2008] = 2008, - [2009] = 2009, + [2004] = 1929, + [2005] = 1921, + [2006] = 1934, + [2007] = 2007, + [2008] = 1782, + [2009] = 1783, [2010] = 2010, - [2011] = 1929, + [2011] = 2011, [2012] = 2012, [2013] = 2013, - [2014] = 1931, - [2015] = 1775, - [2016] = 1930, - [2017] = 2017, - [2018] = 2018, - [2019] = 1766, - [2020] = 1931, + [2014] = 2014, + [2015] = 2015, + [2016] = 2016, + [2017] = 1769, + [2018] = 1933, + [2019] = 1934, + [2020] = 2020, [2021] = 2021, - [2022] = 2022, - [2023] = 2023, - [2024] = 2024, - [2025] = 1940, - [2026] = 1946, - [2027] = 1929, - [2028] = 1933, - [2029] = 1918, - [2030] = 1943, - [2031] = 1935, - [2032] = 1937, - [2033] = 1942, - [2034] = 1929, - [2035] = 1931, - [2036] = 1949, - [2037] = 1933, - [2038] = 1941, - [2039] = 1937, - [2040] = 1952, - [2041] = 1949, - [2042] = 1931, - [2043] = 1918, - [2044] = 1939, - [2045] = 1943, - [2046] = 1918, - [2047] = 1930, - [2048] = 1951, - [2049] = 1940, - [2050] = 1939, - [2051] = 1942, - [2052] = 1948, - [2053] = 1935, - [2054] = 1918, - [2055] = 1930, - [2056] = 1930, - [2057] = 1941, - [2058] = 1929, - [2059] = 1951, - [2060] = 1935, - [2061] = 1933, - [2062] = 1948, - [2063] = 1946, - [2064] = 1931, - [2065] = 1918, - [2066] = 1952, - [2067] = 1946, - [2068] = 2068, - [2069] = 1956, - [2070] = 1954, - [2071] = 1951, - [2072] = 2072, - [2073] = 2073, - [2074] = 1951, - [2075] = 1948, - [2076] = 1951, - [2077] = 1937, - [2078] = 1942, - [2079] = 1948, - [2080] = 1949, - [2081] = 1940, - [2082] = 1939, - [2083] = 1943, - [2084] = 1952, - [2085] = 1930, - [2086] = 1935, - [2087] = 1963, - [2088] = 2068, - [2089] = 2089, - [2090] = 2090, - [2091] = 1946, - [2092] = 1757, - [2093] = 1957, - [2094] = 1941, - [2095] = 1946, - [2096] = 1937, - [2097] = 1942, - [2098] = 1949, - [2099] = 1940, - [2100] = 1937, - [2101] = 1942, - [2102] = 1948, + [2022] = 1933, + [2023] = 1921, + [2024] = 1931, + [2025] = 2025, + [2026] = 1921, + [2027] = 1931, + [2028] = 1929, + [2029] = 1931, + [2030] = 1921, + [2031] = 1921, + [2032] = 1939, + [2033] = 1944, + [2034] = 1946, + [2035] = 1944, + [2036] = 1946, + [2037] = 1947, + [2038] = 1940, + [2039] = 1941, + [2040] = 1949, + [2041] = 1937, + [2042] = 1939, + [2043] = 1947, + [2044] = 1940, + [2045] = 1934, + [2046] = 1931, + [2047] = 1949, + [2048] = 1950, + [2049] = 1937, + [2050] = 1932, + [2051] = 1929, + [2052] = 1932, + [2053] = 1951, + [2054] = 1943, + [2055] = 1950, + [2056] = 1929, + [2057] = 1933, + [2058] = 1921, + [2059] = 1943, + [2060] = 1934, + [2061] = 1934, + [2062] = 1951, + [2063] = 1933, + [2064] = 1933, + [2065] = 1932, + [2066] = 1921, + [2067] = 1941, + [2068] = 1944, + [2069] = 1961, + [2070] = 1939, + [2071] = 1959, + [2072] = 1950, + [2073] = 1943, + [2074] = 1946, + [2075] = 1763, + [2076] = 1939, + [2077] = 1959, + [2078] = 1951, + [2079] = 1946, + [2080] = 2080, + [2081] = 1961, + [2082] = 2082, + [2083] = 1947, + [2084] = 1940, + [2085] = 1951, + [2086] = 2086, + [2087] = 1941, + [2088] = 1949, + [2089] = 1950, + [2090] = 1947, + [2091] = 2091, + [2092] = 1944, + [2093] = 1955, + [2094] = 1958, + [2095] = 1937, + [2096] = 1929, + [2097] = 1762, + [2098] = 1955, + [2099] = 1958, + [2100] = 1943, + [2101] = 1941, + [2102] = 1951, [2103] = 1949, - [2104] = 1940, - [2105] = 1939, - [2106] = 1943, - [2107] = 1952, + [2104] = 2104, + [2105] = 1934, + [2106] = 2091, + [2107] = 1946, [2108] = 1939, - [2109] = 1943, - [2110] = 1933, - [2111] = 2068, - [2112] = 1956, - [2113] = 1954, - [2114] = 1952, - [2115] = 1957, - [2116] = 1931, - [2117] = 1758, - [2118] = 2118, - [2119] = 1941, - [2120] = 1929, - [2121] = 1941, - [2122] = 1963, - [2123] = 1991, - [2124] = 1977, - [2125] = 1978, - [2126] = 1757, - [2127] = 1988, - [2128] = 2009, - [2129] = 2006, - [2130] = 1768, - [2131] = 2024, - [2132] = 1775, - [2133] = 1985, - [2134] = 2024, - [2135] = 1964, - [2136] = 2118, - [2137] = 2000, - [2138] = 2012, - [2139] = 1957, - [2140] = 2072, - [2141] = 2073, - [2142] = 2000, - [2143] = 1778, - [2144] = 1975, - [2145] = 1957, - [2146] = 2012, - [2147] = 2021, - [2148] = 1993, - [2149] = 2002, - [2150] = 1974, - [2151] = 1964, - [2152] = 1975, - [2153] = 1773, - [2154] = 1774, - [2155] = 1775, - [2156] = 2018, - [2157] = 1766, - [2158] = 1768, - [2159] = 2022, - [2160] = 2004, - [2161] = 1973, - [2162] = 1976, - [2163] = 2017, - [2164] = 1771, - [2165] = 1781, - [2166] = 1930, - [2167] = 1935, - [2168] = 1965, - [2169] = 1951, - [2170] = 1973, - [2171] = 1933, - [2172] = 1966, - [2173] = 2017, - [2174] = 2018, - [2175] = 1965, - [2176] = 2022, - [2177] = 1778, - [2178] = 1969, - [2179] = 1981, - [2180] = 1982, - [2181] = 1994, - [2182] = 1995, - [2183] = 1986, - [2184] = 2008, - [2185] = 1957, - [2186] = 1768, - [2187] = 1956, - [2188] = 1758, - [2189] = 1771, - [2190] = 1781, - [2191] = 1969, - [2192] = 1931, - [2193] = 2013, - [2194] = 1956, - [2195] = 1954, - [2196] = 1937, - [2197] = 1954, - [2198] = 2010, - [2199] = 1766, - [2200] = 1976, - [2201] = 1966, - [2202] = 2003, - [2203] = 1971, - [2204] = 1942, - [2205] = 1929, - [2206] = 1949, - [2207] = 1971, - [2208] = 1940, - [2209] = 1939, - [2210] = 1757, - [2211] = 1766, - [2212] = 1943, - [2213] = 1952, - [2214] = 2002, - [2215] = 2008, - [2216] = 1980, - [2217] = 1778, - [2218] = 1974, - [2219] = 1773, - [2220] = 1774, - [2221] = 1775, - [2222] = 1771, - [2223] = 1781, - [2224] = 1778, - [2225] = 2013, - [2226] = 1773, - [2227] = 1774, - [2228] = 1775, - [2229] = 1768, - [2230] = 1985, - [2231] = 1771, - [2232] = 1781, - [2233] = 2072, - [2234] = 2073, - [2235] = 1941, - [2236] = 1970, - [2237] = 1946, - [2238] = 1980, - [2239] = 1972, - [2240] = 1977, - [2241] = 2004, - [2242] = 1978, - [2243] = 1970, - [2244] = 1972, - [2245] = 1994, - [2246] = 1981, - [2247] = 1982, - [2248] = 2021, - [2249] = 1993, - [2250] = 1758, - [2251] = 1995, - [2252] = 1963, - [2253] = 1770, - [2254] = 1986, - [2255] = 1997, - [2256] = 1956, - [2257] = 1764, - [2258] = 1954, - [2259] = 1988, - [2260] = 1765, - [2261] = 1963, - [2262] = 1772, - [2263] = 1770, - [2264] = 1948, - [2265] = 1783, - [2266] = 2010, - [2267] = 1774, - [2268] = 2003, - [2269] = 1991, - [2270] = 2009, - [2271] = 1773, - [2272] = 1766, - [2273] = 1918, - [2274] = 1963, - [2275] = 1770, - [2276] = 1997, - [2277] = 2006, - [2278] = 1995, - [2279] = 1770, - [2280] = 1774, - [2281] = 2118, - [2282] = 1956, - [2283] = 1954, - [2284] = 1775, - [2285] = 1977, - [2286] = 1978, - [2287] = 1988, - [2288] = 2009, - [2289] = 2006, - [2290] = 1991, - [2291] = 1973, - [2292] = 1941, - [2293] = 2024, - [2294] = 1946, - [2295] = 2000, - [2296] = 2012, - [2297] = 1973, - [2298] = 1771, - [2299] = 1781, - [2300] = 1970, - [2301] = 1972, - [2302] = 2010, - [2303] = 1976, - [2304] = 2017, - [2305] = 1970, - [2306] = 2002, - [2307] = 1985, - [2308] = 1972, - [2309] = 2018, - [2310] = 1981, - [2311] = 1982, - [2312] = 1994, - [2313] = 2022, - [2314] = 1997, - [2315] = 1764, - [2316] = 1995, - [2317] = 1765, - [2318] = 1986, - [2319] = 1772, - [2320] = 1965, - [2321] = 1966, - [2322] = 1969, - [2323] = 2008, - [2324] = 1783, - [2325] = 2010, - [2326] = 2003, - [2327] = 1991, - [2328] = 2017, - [2329] = 2013, - [2330] = 2021, - [2331] = 2003, - [2332] = 1971, - [2333] = 1965, - [2334] = 1948, - [2335] = 1974, - [2336] = 1766, - [2337] = 1776, - [2338] = 1964, - [2339] = 1980, - [2340] = 1768, - [2341] = 2004, - [2342] = 1970, - [2343] = 1972, - [2344] = 1994, - [2345] = 2006, - [2346] = 1986, - [2347] = 1977, - [2348] = 1976, - [2349] = 1978, - [2350] = 1988, - [2351] = 1966, - [2352] = 2009, - [2353] = 1971, - [2354] = 1994, - [2355] = 1995, - [2356] = 1986, - [2357] = 1766, - [2358] = 1980, - [2359] = 1977, - [2360] = 1978, - [2361] = 1988, - [2362] = 2009, - [2363] = 2006, - [2364] = 2024, - [2365] = 1969, - [2366] = 2024, - [2367] = 2000, - [2368] = 1778, - [2369] = 2012, - [2370] = 1773, - [2371] = 1768, - [2372] = 2002, - [2373] = 2012, - [2374] = 1974, - [2375] = 1964, - [2376] = 1975, - [2377] = 1774, - [2378] = 2378, - [2379] = 1976, - [2380] = 2002, - [2381] = 2018, - [2382] = 2022, - [2383] = 1775, - [2384] = 1771, - [2385] = 1781, - [2386] = 1966, - [2387] = 1971, - [2388] = 2089, - [2389] = 2090, - [2390] = 2008, - [2391] = 1778, - [2392] = 1974, + [2109] = 1931, + [2110] = 1937, + [2111] = 1947, + [2112] = 1943, + [2113] = 1932, + [2114] = 1940, + [2115] = 2115, + [2116] = 1941, + [2117] = 1949, + [2118] = 1937, + [2119] = 1933, + [2120] = 1944, + [2121] = 1950, + [2122] = 2091, + [2123] = 1940, + [2124] = 1970, + [2125] = 2086, + [2126] = 2115, + [2127] = 1996, + [2128] = 2016, + [2129] = 2016, + [2130] = 1997, + [2131] = 2025, + [2132] = 1777, + [2133] = 2025, + [2134] = 2000, + [2135] = 2000, + [2136] = 1979, + [2137] = 1981, + [2138] = 2003, + [2139] = 1982, + [2140] = 2007, + [2141] = 1781, + [2142] = 2003, + [2143] = 1788, + [2144] = 1791, + [2145] = 1994, + [2146] = 2007, + [2147] = 1995, + [2148] = 1782, + [2149] = 1783, + [2150] = 1994, + [2151] = 1769, + [2152] = 1929, + [2153] = 2002, + [2154] = 1995, + [2155] = 1777, + [2156] = 1986, + [2157] = 1921, + [2158] = 1763, + [2159] = 1781, + [2160] = 1777, + [2161] = 1788, + [2162] = 1791, + [2163] = 1782, + [2164] = 1983, + [2165] = 1783, + [2166] = 1986, + [2167] = 1983, + [2168] = 2021, + [2169] = 1978, + [2170] = 1955, + [2171] = 1985, + [2172] = 1776, + [2173] = 1980, + [2174] = 1778, + [2175] = 2021, + [2176] = 1955, + [2177] = 1958, + [2178] = 1961, + [2179] = 1959, + [2180] = 1931, + [2181] = 1779, + [2182] = 1771, + [2183] = 1989, + [2184] = 1999, + [2185] = 1771, + [2186] = 1782, + [2187] = 1783, + [2188] = 1965, + [2189] = 1967, + [2190] = 1951, + [2191] = 1973, + [2192] = 1792, + [2193] = 1932, + [2194] = 1763, + [2195] = 2015, + [2196] = 1771, + [2197] = 1982, + [2198] = 1769, + [2199] = 1777, + [2200] = 1780, + [2201] = 1981, + [2202] = 1781, + [2203] = 1788, + [2204] = 1791, + [2205] = 1782, + [2206] = 1783, + [2207] = 2011, + [2208] = 1769, + [2209] = 1958, + [2210] = 1781, + [2211] = 1792, + [2212] = 1975, + [2213] = 2012, + [2214] = 1788, + [2215] = 1950, + [2216] = 2020, + [2217] = 1943, + [2218] = 1791, + [2219] = 1969, + [2220] = 1762, + [2221] = 1966, + [2222] = 2013, + [2223] = 1987, + [2224] = 1968, + [2225] = 2020, + [2226] = 1970, + [2227] = 1974, + [2228] = 1977, + [2229] = 1973, + [2230] = 1961, + [2231] = 1979, + [2232] = 2115, + [2233] = 2080, + [2234] = 2011, + [2235] = 1959, + [2236] = 1762, + [2237] = 2012, + [2238] = 1958, + [2239] = 2013, + [2240] = 1996, + [2241] = 1997, + [2242] = 2014, + [2243] = 2014, + [2244] = 2015, + [2245] = 1939, + [2246] = 1969, + [2247] = 1792, + [2248] = 1971, + [2249] = 1792, + [2250] = 1977, + [2251] = 1985, + [2252] = 1984, + [2253] = 1987, + [2254] = 1934, + [2255] = 1771, + [2256] = 2002, + [2257] = 1984, + [2258] = 1961, + [2259] = 1978, + [2260] = 1980, + [2261] = 1989, + [2262] = 1966, + [2263] = 1967, + [2264] = 1968, + [2265] = 2080, + [2266] = 1999, + [2267] = 1971, + [2268] = 1959, + [2269] = 1974, + [2270] = 1933, + [2271] = 1965, + [2272] = 1975, + [2273] = 1944, + [2274] = 1946, + [2275] = 1947, + [2276] = 1940, + [2277] = 1941, + [2278] = 1949, + [2279] = 1937, + [2280] = 1955, + [2281] = 2003, + [2282] = 1951, + [2283] = 1792, + [2284] = 1996, + [2285] = 1997, + [2286] = 1792, + [2287] = 1975, + [2288] = 2007, + [2289] = 2086, + [2290] = 2002, + [2291] = 1996, + [2292] = 1997, + [2293] = 1986, + [2294] = 1983, + [2295] = 2021, + [2296] = 1771, + [2297] = 1994, + [2298] = 1995, + [2299] = 1763, + [2300] = 1986, + [2301] = 1983, + [2302] = 2021, + [2303] = 1985, + [2304] = 1776, + [2305] = 1778, + [2306] = 1779, + [2307] = 1762, + [2308] = 1792, + [2309] = 2015, + [2310] = 1978, + [2311] = 1780, + [2312] = 2020, + [2313] = 1980, + [2314] = 1969, + [2315] = 1987, + [2316] = 1777, + [2317] = 1981, + [2318] = 1781, + [2319] = 1788, + [2320] = 1791, + [2321] = 1782, + [2322] = 1783, + [2323] = 2002, + [2324] = 1978, + [2325] = 1980, + [2326] = 1975, + [2327] = 1773, + [2328] = 1989, + [2329] = 1999, + [2330] = 1965, + [2331] = 1989, + [2332] = 1999, + [2333] = 1966, + [2334] = 1965, + [2335] = 1968, + [2336] = 1970, + [2337] = 1974, + [2338] = 1977, + [2339] = 1979, + [2340] = 1975, + [2341] = 1996, + [2342] = 1997, + [2343] = 1966, + [2344] = 2344, + [2345] = 1968, + [2346] = 1970, + [2347] = 1974, + [2348] = 1977, + [2349] = 1979, + [2350] = 1967, + [2351] = 1971, + [2352] = 1982, + [2353] = 2082, + [2354] = 2104, + [2355] = 1769, + [2356] = 1955, + [2357] = 1958, + [2358] = 1973, + [2359] = 1950, + [2360] = 1943, + [2361] = 2011, + [2362] = 2012, + [2363] = 2013, + [2364] = 2014, + [2365] = 2015, + [2366] = 1984, + [2367] = 2016, + [2368] = 2025, + [2369] = 1939, + [2370] = 2000, + [2371] = 1981, + [2372] = 1986, + [2373] = 1983, + [2374] = 2021, + [2375] = 1985, + [2376] = 2003, + [2377] = 2007, + [2378] = 1776, + [2379] = 1982, + [2380] = 1778, + [2381] = 1780, + [2382] = 2382, + [2383] = 2020, + [2384] = 1969, + [2385] = 1987, + [2386] = 1994, + [2387] = 1995, + [2388] = 2020, + [2389] = 1973, + [2390] = 1969, + [2391] = 2011, + [2392] = 2012, [2393] = 2013, - [2394] = 1964, - [2395] = 1975, - [2396] = 2396, - [2397] = 2021, - [2398] = 2021, - [2399] = 1993, - [2400] = 1993, - [2401] = 1957, - [2402] = 1985, - [2403] = 1981, - [2404] = 1982, - [2405] = 1997, - [2406] = 1997, - [2407] = 1764, - [2408] = 1765, - [2409] = 1764, - [2410] = 1770, - [2411] = 1772, - [2412] = 1757, - [2413] = 1768, - [2414] = 1773, - [2415] = 1765, - [2416] = 1783, - [2417] = 2010, - [2418] = 1951, - [2419] = 2003, - [2420] = 1991, - [2421] = 1937, - [2422] = 1942, - [2423] = 1772, - [2424] = 1768, - [2425] = 1949, - [2426] = 1985, - [2427] = 1940, - [2428] = 1939, - [2429] = 1943, - [2430] = 1952, - [2431] = 1980, - [2432] = 2432, - [2433] = 1993, - [2434] = 1975, - [2435] = 2004, - [2436] = 1981, - [2437] = 1982, - [2438] = 1758, - [2439] = 1768, - [2440] = 1973, - [2441] = 2017, - [2442] = 1965, - [2443] = 1969, - [2444] = 2008, - [2445] = 2013, - [2446] = 2018, - [2447] = 2022, - [2448] = 2004, - [2449] = 1783, - [2450] = 1963, - [2451] = 1770, - [2452] = 2378, - [2453] = 2000, - [2454] = 1971, - [2455] = 1770, - [2456] = 2010, - [2457] = 1773, - [2458] = 2003, - [2459] = 1991, - [2460] = 2021, - [2461] = 2073, - [2462] = 2017, - [2463] = 2072, - [2464] = 2073, - [2465] = 2013, - [2466] = 1993, - [2467] = 1766, - [2468] = 1935, - [2469] = 2004, - [2470] = 1774, - [2471] = 1957, - [2472] = 1970, - [2473] = 1972, - [2474] = 1994, - [2475] = 1772, - [2476] = 1965, - [2477] = 1995, - [2478] = 1986, - [2479] = 2006, - [2480] = 1969, + [2394] = 2014, + [2395] = 1944, + [2396] = 1946, + [2397] = 2397, + [2398] = 1947, + [2399] = 1940, + [2400] = 1941, + [2401] = 1949, + [2402] = 1937, + [2403] = 2002, + [2404] = 2397, + [2405] = 1959, + [2406] = 1769, + [2407] = 1978, + [2408] = 1980, + [2409] = 1989, + [2410] = 1999, + [2411] = 1965, + [2412] = 1961, + [2413] = 1967, + [2414] = 1971, + [2415] = 1982, + [2416] = 1984, + [2417] = 2016, + [2418] = 1792, + [2419] = 2025, + [2420] = 1973, + [2421] = 2011, + [2422] = 2012, + [2423] = 2013, + [2424] = 2014, + [2425] = 2015, + [2426] = 1984, + [2427] = 1985, + [2428] = 1776, + [2429] = 1778, + [2430] = 1779, + [2431] = 2016, + [2432] = 1780, + [2433] = 1987, + [2434] = 1966, + [2435] = 1967, + [2436] = 1968, + [2437] = 1970, + [2438] = 1971, + [2439] = 1974, + [2440] = 2025, + [2441] = 1977, + [2442] = 1979, + [2443] = 2000, + [2444] = 1981, + [2445] = 1792, + [2446] = 2003, + [2447] = 2007, + [2448] = 1771, + [2449] = 1777, + [2450] = 1781, + [2451] = 1788, + [2452] = 1791, + [2453] = 1782, + [2454] = 1783, + [2455] = 1994, + [2456] = 1995, + [2457] = 2000, + [2458] = 1769, + [2459] = 1779, + [2460] = 1959, + [2461] = 2020, + [2462] = 1969, + [2463] = 1987, + [2464] = 1779, + [2465] = 2002, + [2466] = 1961, + [2467] = 1978, + [2468] = 1980, + [2469] = 2115, + [2470] = 1989, + [2471] = 1999, + [2472] = 1965, + [2473] = 1776, + [2474] = 1967, + [2475] = 1971, + [2476] = 1982, + [2477] = 1975, + [2478] = 2080, + [2479] = 2115, + [2480] = 2080, [2481] = 1778, - [2482] = 2073, - [2483] = 1976, - [2484] = 1966, - [2485] = 1974, - [2486] = 1771, - [2487] = 1781, - [2488] = 2072, - [2489] = 2072, - [2490] = 1985, - [2491] = 1956, - [2492] = 1954, - [2493] = 2008, - [2494] = 1783, - [2495] = 1768, - [2496] = 1980, - [2497] = 1977, - [2498] = 1978, - [2499] = 1988, - [2500] = 2009, - [2501] = 2024, - [2502] = 1764, - [2503] = 2000, - [2504] = 1765, - [2505] = 2012, - [2506] = 2002, - [2507] = 1964, - [2508] = 1975, - [2509] = 1981, - [2510] = 1776, - [2511] = 1982, - [2512] = 1997, - [2513] = 2018, - [2514] = 1973, - [2515] = 2022, - [2516] = 1963, - [2517] = 1775, - [2518] = 2004, - [2519] = 1768, - [2520] = 1986, - [2521] = 1981, - [2522] = 2013, - [2523] = 1982, - [2524] = 1997, - [2525] = 1764, - [2526] = 1768, - [2527] = 2527, - [2528] = 1977, - [2529] = 1978, - [2530] = 1969, - [2531] = 1973, - [2532] = 2532, - [2533] = 2527, - [2534] = 1766, - [2535] = 2002, - [2536] = 1773, - [2537] = 1776, - [2538] = 1976, - [2539] = 2008, - [2540] = 2000, - [2541] = 1966, - [2542] = 2432, - [2543] = 1770, - [2544] = 1783, - [2545] = 1964, - [2546] = 2527, - [2547] = 1975, - [2548] = 1971, - [2549] = 1774, - [2550] = 1778, - [2551] = 1988, - [2552] = 2527, - [2553] = 1775, - [2554] = 2527, - [2555] = 2003, - [2556] = 1985, - [2557] = 2018, - [2558] = 1768, - [2559] = 1972, - [2560] = 2527, - [2561] = 2009, - [2562] = 2021, - [2563] = 1993, - [2564] = 2006, - [2565] = 2527, - [2566] = 2566, - [2567] = 1768, - [2568] = 2022, - [2569] = 2527, - [2570] = 2527, - [2571] = 1991, - [2572] = 2527, - [2573] = 2566, - [2574] = 1781, - [2575] = 2527, - [2576] = 2566, - [2577] = 1778, - [2578] = 1765, - [2579] = 2527, - [2580] = 1974, - [2581] = 2527, - [2582] = 1766, - [2583] = 1773, - [2584] = 2527, - [2585] = 1994, - [2586] = 1774, - [2587] = 2527, - [2588] = 2527, - [2589] = 2010, - [2590] = 2590, - [2591] = 1775, - [2592] = 2527, - [2593] = 1980, - [2594] = 1770, - [2595] = 2017, - [2596] = 1995, - [2597] = 1965, - [2598] = 2012, - [2599] = 1771, - [2600] = 1781, - [2601] = 2527, - [2602] = 1970, - [2603] = 2527, - [2604] = 1768, - [2605] = 1772, - [2606] = 2527, - [2607] = 2024, - [2608] = 1771, - [2609] = 2609, - [2610] = 2610, - [2611] = 2611, - [2612] = 2612, - [2613] = 2613, - [2614] = 2614, - [2615] = 2615, - [2616] = 2616, + [2482] = 1973, + [2483] = 2011, + [2484] = 2012, + [2485] = 2013, + [2486] = 2014, + [2487] = 1984, + [2488] = 2115, + [2489] = 2016, + [2490] = 2025, + [2491] = 2000, + [2492] = 2003, + [2493] = 2007, + [2494] = 1994, + [2495] = 1995, + [2496] = 1985, + [2497] = 1773, + [2498] = 1955, + [2499] = 1958, + [2500] = 1771, + [2501] = 2015, + [2502] = 1996, + [2503] = 1777, + [2504] = 1981, + [2505] = 1781, + [2506] = 1788, + [2507] = 1791, + [2508] = 1782, + [2509] = 1783, + [2510] = 1997, + [2511] = 1792, + [2512] = 1933, + [2513] = 1966, + [2514] = 1968, + [2515] = 1970, + [2516] = 1974, + [2517] = 1977, + [2518] = 1979, + [2519] = 1769, + [2520] = 1780, + [2521] = 1986, + [2522] = 1983, + [2523] = 2021, + [2524] = 2080, + [2525] = 1994, + [2526] = 1788, + [2527] = 1791, + [2528] = 2528, + [2529] = 2528, + [2530] = 2528, + [2531] = 1782, + [2532] = 1783, + [2533] = 1792, + [2534] = 1986, + [2535] = 2535, + [2536] = 1780, + [2537] = 2020, + [2538] = 1792, + [2539] = 2344, + [2540] = 2021, + [2541] = 1996, + [2542] = 1997, + [2543] = 2543, + [2544] = 1792, + [2545] = 2528, + [2546] = 2543, + [2547] = 1773, + [2548] = 2002, + [2549] = 2528, + [2550] = 1978, + [2551] = 1980, + [2552] = 1969, + [2553] = 1987, + [2554] = 2543, + [2555] = 2528, + [2556] = 2528, + [2557] = 1985, + [2558] = 1776, + [2559] = 1779, + [2560] = 2528, + [2561] = 2015, + [2562] = 1989, + [2563] = 1999, + [2564] = 1965, + [2565] = 1967, + [2566] = 1971, + [2567] = 1982, + [2568] = 1966, + [2569] = 1968, + [2570] = 1771, + [2571] = 1970, + [2572] = 2528, + [2573] = 1781, + [2574] = 1788, + [2575] = 1791, + [2576] = 1782, + [2577] = 1783, + [2578] = 1974, + [2579] = 1973, + [2580] = 1977, + [2581] = 2011, + [2582] = 1769, + [2583] = 2583, + [2584] = 2012, + [2585] = 2013, + [2586] = 2014, + [2587] = 2528, + [2588] = 1979, + [2589] = 2528, + [2590] = 1984, + [2591] = 1778, + [2592] = 2528, + [2593] = 2016, + [2594] = 2528, + [2595] = 2025, + [2596] = 1769, + [2597] = 1777, + [2598] = 2000, + [2599] = 2528, + [2600] = 2003, + [2601] = 2007, + [2602] = 2528, + [2603] = 2528, + [2604] = 2528, + [2605] = 1792, + [2606] = 1771, + [2607] = 1995, + [2608] = 2528, + [2609] = 1981, + [2610] = 2528, + [2611] = 2528, + [2612] = 1983, + [2613] = 1781, + [2614] = 1975, + [2615] = 1792, + [2616] = 1777, [2617] = 2617, [2618] = 2618, - [2619] = 2619, + [2619] = 2618, [2620] = 2620, - [2621] = 2610, - [2622] = 2614, + [2621] = 2621, + [2622] = 2622, [2623] = 2623, - [2624] = 2624, - [2625] = 2611, - [2626] = 2612, - [2627] = 2616, - [2628] = 2617, - [2629] = 2618, - [2630] = 2619, - [2631] = 2620, - [2632] = 2610, - [2633] = 2623, - [2634] = 2624, - [2635] = 2623, - [2636] = 2624, - [2637] = 2611, - [2638] = 2612, - [2639] = 2613, - [2640] = 2616, - [2641] = 2617, - [2642] = 2618, - [2643] = 2619, - [2644] = 2623, - [2645] = 2624, - [2646] = 2611, - [2647] = 2612, - [2648] = 2613, - [2649] = 2616, - [2650] = 2617, - [2651] = 2618, - [2652] = 2619, - [2653] = 2613, - [2654] = 2654, - [2655] = 2655, - [2656] = 2656, - [2657] = 2657, - [2658] = 2654, - [2659] = 436, - [2660] = 2660, - [2661] = 438, - [2662] = 2662, - [2663] = 2656, - [2664] = 2657, - [2665] = 2656, + [2624] = 2622, + [2625] = 2623, + [2626] = 2626, + [2627] = 2627, + [2628] = 2628, + [2629] = 2629, + [2630] = 2630, + [2631] = 2631, + [2632] = 2621, + [2633] = 2629, + [2634] = 2634, + [2635] = 2626, + [2636] = 2626, + [2637] = 2637, + [2638] = 2630, + [2639] = 2628, + [2640] = 2618, + [2641] = 2622, + [2642] = 2623, + [2643] = 2630, + [2644] = 2631, + [2645] = 2621, + [2646] = 2634, + [2647] = 2629, + [2648] = 2630, + [2649] = 2618, + [2650] = 2626, + [2651] = 2651, + [2652] = 2627, + [2653] = 2628, + [2654] = 2621, + [2655] = 2637, + [2656] = 2637, + [2657] = 2622, + [2658] = 2623, + [2659] = 2629, + [2660] = 2628, + [2661] = 2627, + [2662] = 2627, + [2663] = 2663, + [2664] = 2664, + [2665] = 2665, [2666] = 2666, - [2667] = 439, - [2668] = 2660, - [2669] = 2662, - [2670] = 2657, - [2671] = 2671, - [2672] = 437, - [2673] = 2671, - [2674] = 2662, - [2675] = 2655, - [2676] = 2654, - [2677] = 2671, + [2667] = 2665, + [2668] = 2668, + [2669] = 2669, + [2670] = 2670, + [2671] = 438, + [2672] = 2663, + [2673] = 2673, + [2674] = 2669, + [2675] = 2675, + [2676] = 2673, + [2677] = 439, [2678] = 2678, - [2679] = 2679, - [2680] = 435, - [2681] = 2681, - [2682] = 2660, - [2683] = 591, - [2684] = 459, - [2685] = 460, - [2686] = 461, - [2687] = 462, - [2688] = 463, - [2689] = 464, - [2690] = 465, - [2691] = 472, - [2692] = 473, - [2693] = 474, - [2694] = 475, - [2695] = 476, - [2696] = 477, - [2697] = 478, - [2698] = 479, - [2699] = 480, - [2700] = 481, - [2701] = 487, - [2702] = 488, - [2703] = 489, - [2704] = 490, - [2705] = 491, - [2706] = 494, + [2679] = 440, + [2680] = 2666, + [2681] = 436, + [2682] = 2664, + [2683] = 2664, + [2684] = 2665, + [2685] = 2666, + [2686] = 2669, + [2687] = 2678, + [2688] = 435, + [2689] = 2663, + [2690] = 2673, + [2691] = 583, + [2692] = 505, + [2693] = 2693, + [2694] = 487, + [2695] = 2693, + [2696] = 2696, + [2697] = 2697, + [2698] = 488, + [2699] = 489, + [2700] = 2700, + [2701] = 566, + [2702] = 490, + [2703] = 2703, + [2704] = 491, + [2705] = 2705, + [2706] = 2706, [2707] = 2707, - [2708] = 585, - [2709] = 2709, - [2710] = 586, - [2711] = 587, - [2712] = 588, - [2713] = 590, - [2714] = 2714, - [2715] = 2715, - [2716] = 2716, - [2717] = 2717, - [2718] = 2718, - [2719] = 2719, - [2720] = 513, - [2721] = 1963, - [2722] = 1957, - [2723] = 517, - [2724] = 520, - [2725] = 521, - [2726] = 2726, - [2727] = 522, - [2728] = 523, - [2729] = 2726, - [2730] = 530, - [2731] = 505, - [2732] = 593, - [2733] = 594, - [2734] = 595, - [2735] = 2735, - [2736] = 2707, - [2737] = 2714, - [2738] = 2715, - [2739] = 458, - [2740] = 2719, - [2741] = 515, - [2742] = 443, - [2743] = 531, - [2744] = 532, - [2745] = 610, - [2746] = 611, - [2747] = 2726, - [2748] = 612, - [2749] = 543, - [2750] = 613, - [2751] = 545, - [2752] = 614, - [2753] = 615, - [2754] = 2735, - [2755] = 618, - [2756] = 619, - [2757] = 620, - [2758] = 621, - [2759] = 2735, - [2760] = 622, - [2761] = 2707, - [2762] = 623, - [2763] = 625, - [2764] = 2714, - [2765] = 2715, - [2766] = 626, - [2767] = 2718, - [2768] = 2719, - [2769] = 551, - [2770] = 555, - [2771] = 580, - [2772] = 2735, - [2773] = 2714, - [2774] = 2715, - [2775] = 581, - [2776] = 2718, - [2777] = 2719, - [2778] = 453, - [2779] = 627, - [2780] = 568, - [2781] = 570, - [2782] = 455, - [2783] = 576, - [2784] = 456, - [2785] = 2785, - [2786] = 457, - [2787] = 2709, - [2788] = 544, - [2789] = 2709, - [2790] = 553, - [2791] = 561, - [2792] = 564, - [2793] = 565, - [2794] = 2718, - [2795] = 508, - [2796] = 482, - [2797] = 2797, - [2798] = 495, - [2799] = 496, - [2800] = 497, - [2801] = 483, - [2802] = 484, - [2803] = 498, - [2804] = 499, - [2805] = 500, - [2806] = 579, - [2807] = 501, - [2808] = 502, - [2809] = 503, - [2810] = 504, - [2811] = 485, - [2812] = 486, - [2813] = 597, + [2708] = 2696, + [2709] = 2697, + [2710] = 513, + [2711] = 518, + [2712] = 546, + [2713] = 494, + [2714] = 521, + [2715] = 522, + [2716] = 523, + [2717] = 524, + [2718] = 532, + [2719] = 593, + [2720] = 515, + [2721] = 443, + [2722] = 2693, + [2723] = 2706, + [2724] = 2706, + [2725] = 2707, + [2726] = 595, + [2727] = 596, + [2728] = 597, + [2729] = 2729, + [2730] = 2696, + [2731] = 2697, + [2732] = 2707, + [2733] = 2706, + [2734] = 2707, + [2735] = 582, + [2736] = 567, + [2737] = 572, + [2738] = 531, + [2739] = 533, + [2740] = 587, + [2741] = 588, + [2742] = 570, + [2743] = 612, + [2744] = 613, + [2745] = 614, + [2746] = 616, + [2747] = 2697, + [2748] = 617, + [2749] = 544, + [2750] = 547, + [2751] = 618, + [2752] = 2705, + [2753] = 621, + [2754] = 622, + [2755] = 623, + [2756] = 624, + [2757] = 2757, + [2758] = 2729, + [2759] = 590, + [2760] = 578, + [2761] = 592, + [2762] = 625, + [2763] = 2763, + [2764] = 626, + [2765] = 627, + [2766] = 628, + [2767] = 453, + [2768] = 630, + [2769] = 455, + [2770] = 456, + [2771] = 457, + [2772] = 458, + [2773] = 2757, + [2774] = 459, + [2775] = 460, + [2776] = 461, + [2777] = 462, + [2778] = 463, + [2779] = 464, + [2780] = 465, + [2781] = 2757, + [2782] = 553, + [2783] = 557, + [2784] = 2729, + [2785] = 555, + [2786] = 2696, + [2787] = 1959, + [2788] = 472, + [2789] = 473, + [2790] = 1961, + [2791] = 474, + [2792] = 563, + [2793] = 475, + [2794] = 2705, + [2795] = 476, + [2796] = 477, + [2797] = 478, + [2798] = 479, + [2799] = 480, + [2800] = 481, + [2801] = 2729, + [2802] = 589, + [2803] = 493, + [2804] = 599, + [2805] = 498, + [2806] = 499, + [2807] = 600, + [2808] = 2808, + [2809] = 602, + [2810] = 603, + [2811] = 605, + [2812] = 606, + [2813] = 607, [2814] = 2814, - [2815] = 598, - [2816] = 600, - [2817] = 602, - [2818] = 470, - [2819] = 603, - [2820] = 604, - [2821] = 471, - [2822] = 606, - [2823] = 506, - [2824] = 607, - [2825] = 608, - [2826] = 466, - [2827] = 467, - [2828] = 609, - [2829] = 507, - [2830] = 509, - [2831] = 510, - [2832] = 511, - [2833] = 512, - [2834] = 514, - [2835] = 592, - [2836] = 518, - [2837] = 519, - [2838] = 524, - [2839] = 525, - [2840] = 526, - [2841] = 527, - [2842] = 528, - [2843] = 529, - [2844] = 468, - [2845] = 533, - [2846] = 534, - [2847] = 2847, - [2848] = 535, - [2849] = 536, - [2850] = 537, - [2851] = 538, - [2852] = 540, - [2853] = 596, - [2854] = 541, - [2855] = 578, - [2856] = 599, - [2857] = 601, - [2858] = 2814, - [2859] = 1935, - [2860] = 492, - [2861] = 605, - [2862] = 493, - [2863] = 469, - [2864] = 444, - [2865] = 617, - [2866] = 445, - [2867] = 548, - [2868] = 549, + [2815] = 609, + [2816] = 610, + [2817] = 611, + [2818] = 519, + [2819] = 520, + [2820] = 525, + [2821] = 526, + [2822] = 527, + [2823] = 528, + [2824] = 529, + [2825] = 530, + [2826] = 500, + [2827] = 534, + [2828] = 535, + [2829] = 501, + [2830] = 502, + [2831] = 549, + [2832] = 554, + [2833] = 503, + [2834] = 504, + [2835] = 536, + [2836] = 537, + [2837] = 538, + [2838] = 539, + [2839] = 454, + [2840] = 541, + [2841] = 542, + [2842] = 492, + [2843] = 2843, + [2844] = 548, + [2845] = 573, + [2846] = 584, + [2847] = 543, + [2848] = 483, + [2849] = 574, + [2850] = 1934, + [2851] = 486, + [2852] = 568, + [2853] = 506, + [2854] = 507, + [2855] = 508, + [2856] = 509, + [2857] = 629, + [2858] = 445, + [2859] = 446, + [2860] = 447, + [2861] = 2861, + [2862] = 485, + [2863] = 449, + [2864] = 450, + [2865] = 451, + [2866] = 452, + [2867] = 571, + [2868] = 484, [2869] = 550, - [2870] = 624, - [2871] = 556, - [2872] = 446, - [2873] = 447, - [2874] = 2874, - [2875] = 562, - [2876] = 563, - [2877] = 567, - [2878] = 448, - [2879] = 449, - [2880] = 450, - [2881] = 451, - [2882] = 452, - [2883] = 2883, - [2884] = 516, - [2885] = 571, - [2886] = 572, - [2887] = 582, - [2888] = 583, - [2889] = 584, - [2890] = 589, - [2891] = 616, - [2892] = 454, - [2893] = 2814, - [2894] = 539, - [2895] = 542, - [2896] = 547, - [2897] = 552, - [2898] = 1930, - [2899] = 554, - [2900] = 557, - [2901] = 558, - [2902] = 559, - [2903] = 560, - [2904] = 566, - [2905] = 569, - [2906] = 573, - [2907] = 574, - [2908] = 575, - [2909] = 577, - [2910] = 546, - [2911] = 635, - [2912] = 630, - [2913] = 2913, - [2914] = 637, - [2915] = 2915, - [2916] = 2913, - [2917] = 2915, - [2918] = 638, - [2919] = 629, - [2920] = 2915, - [2921] = 636, - [2922] = 639, - [2923] = 2913, - [2924] = 2915, - [2925] = 2913, - [2926] = 633, - [2927] = 632, - [2928] = 2928, - [2929] = 2928, - [2930] = 2928, - [2931] = 2931, - [2932] = 1957, - [2933] = 2933, - [2934] = 1976, - [2935] = 1997, - [2936] = 1991, - [2937] = 1966, - [2938] = 2938, - [2939] = 2939, - [2940] = 2940, - [2941] = 1963, - [2942] = 1935, - [2943] = 1930, - [2944] = 1935, - [2945] = 1930, - [2946] = 1935, - [2947] = 1930, - [2948] = 1935, - [2949] = 1930, - [2950] = 1783, - [2951] = 1768, - [2952] = 1951, - [2953] = 1773, - [2954] = 2954, - [2955] = 1774, - [2956] = 1775, - [2957] = 1771, - [2958] = 1935, - [2959] = 1935, - [2960] = 2960, - [2961] = 2961, - [2962] = 2962, - [2963] = 2962, - [2964] = 1930, - [2965] = 1781, - [2966] = 1766, - [2967] = 1770, - [2968] = 1930, - [2969] = 1764, - [2970] = 1778, - [2971] = 1765, - [2972] = 2962, - [2973] = 2962, - [2974] = 1770, - [2975] = 1772, - [2976] = 2432, - [2977] = 1768, - [2978] = 1969, - [2979] = 2979, - [2980] = 2013, - [2981] = 1770, - [2982] = 2960, - [2983] = 2006, - [2984] = 2961, - [2985] = 1974, - [2986] = 2979, - [2987] = 1973, - [2988] = 1965, - [2989] = 2008, - [2990] = 2017, - [2991] = 1768, - [2992] = 2992, - [2993] = 1772, - [2994] = 2994, + [2870] = 551, + [2871] = 552, + [2872] = 594, + [2873] = 598, + [2874] = 510, + [2875] = 511, + [2876] = 512, + [2877] = 466, + [2878] = 575, + [2879] = 467, + [2880] = 576, + [2881] = 577, + [2882] = 579, + [2883] = 468, + [2884] = 514, + [2885] = 580, + [2886] = 469, + [2887] = 470, + [2888] = 495, + [2889] = 471, + [2890] = 601, + [2891] = 558, + [2892] = 496, + [2893] = 497, + [2894] = 581, + [2895] = 604, + [2896] = 556, + [2897] = 586, + [2898] = 1933, + [2899] = 2843, + [2900] = 608, + [2901] = 620, + [2902] = 444, + [2903] = 2903, + [2904] = 516, + [2905] = 591, + [2906] = 540, + [2907] = 559, + [2908] = 619, + [2909] = 585, + [2910] = 560, + [2911] = 2843, + [2912] = 561, + [2913] = 562, + [2914] = 482, + [2915] = 564, + [2916] = 565, + [2917] = 569, + [2918] = 448, + [2919] = 2919, + [2920] = 631, + [2921] = 632, + [2922] = 2922, + [2923] = 2919, + [2924] = 2922, + [2925] = 636, + [2926] = 2919, + [2927] = 635, + [2928] = 2919, + [2929] = 642, + [2930] = 647, + [2931] = 634, + [2932] = 640, + [2933] = 2922, + [2934] = 641, + [2935] = 2922, + [2936] = 2936, + [2937] = 2936, + [2938] = 2936, + [2939] = 1961, + [2940] = 1987, + [2941] = 1967, + [2942] = 2942, + [2943] = 1971, + [2944] = 2944, + [2945] = 2945, + [2946] = 1985, + [2947] = 2947, + [2948] = 1959, + [2949] = 2949, + [2950] = 1933, + [2951] = 1934, + [2952] = 1934, + [2953] = 1933, + [2954] = 1934, + [2955] = 1933, + [2956] = 1933, + [2957] = 1934, + [2958] = 1791, + [2959] = 1780, + [2960] = 1933, + [2961] = 2344, + [2962] = 1792, + [2963] = 2963, + [2964] = 2964, + [2965] = 1951, + [2966] = 2966, + [2967] = 1934, + [2968] = 2963, + [2969] = 2969, + [2970] = 1771, + [2971] = 1777, + [2972] = 1781, + [2973] = 1788, + [2974] = 1782, + [2975] = 1783, + [2976] = 1933, + [2977] = 1769, + [2978] = 1792, + [2979] = 2963, + [2980] = 1769, + [2981] = 2963, + [2982] = 1776, + [2983] = 1778, + [2984] = 1779, + [2985] = 1934, + [2986] = 1968, + [2987] = 1792, + [2988] = 2015, + [2989] = 1979, + [2990] = 1977, + [2991] = 2964, + [2992] = 1769, + [2993] = 2993, + [2994] = 1970, [2995] = 2995, - [2996] = 2996, - [2997] = 2997, - [2998] = 2998, - [2999] = 2999, - [3000] = 3000, + [2996] = 1981, + [2997] = 1966, + [2998] = 1974, + [2999] = 2966, + [3000] = 2995, [3001] = 3001, - [3002] = 3002, + [3002] = 1779, [3003] = 3003, [3004] = 3004, - [3005] = 2996, + [3005] = 3005, [3006] = 3006, - [3007] = 3007, - [3008] = 2992, - [3009] = 3009, + [3007] = 3001, + [3008] = 3006, + [3009] = 1776, [3010] = 3010, - [3011] = 1935, - [3012] = 2432, - [3013] = 1783, - [3014] = 2996, - [3015] = 3001, - [3016] = 2992, - [3017] = 1764, - [3018] = 3004, - [3019] = 1930, - [3020] = 1765, - [3021] = 1764, - [3022] = 1941, - [3023] = 1764, - [3024] = 3024, - [3025] = 1946, + [3011] = 3011, + [3012] = 1778, + [3013] = 3006, + [3014] = 1933, + [3015] = 2344, + [3016] = 3016, + [3017] = 3017, + [3018] = 3018, + [3019] = 3019, + [3020] = 3004, + [3021] = 3021, + [3022] = 3004, + [3023] = 3019, + [3024] = 1780, + [3025] = 3025, [3026] = 3026, [3027] = 3027, - [3028] = 3024, - [3029] = 3029, - [3030] = 3030, - [3031] = 1765, + [3028] = 1934, + [3029] = 1778, + [3030] = 1776, + [3031] = 3031, [3032] = 3032, - [3033] = 1772, - [3034] = 2432, - [3035] = 1783, + [3033] = 3033, + [3034] = 1950, + [3035] = 3035, [3036] = 3036, - [3037] = 3027, - [3038] = 3038, - [3039] = 3038, - [3040] = 1937, - [3041] = 1942, - [3042] = 1949, + [3037] = 3037, + [3038] = 1943, + [3039] = 3039, + [3040] = 3032, + [3041] = 3041, + [3042] = 3042, [3043] = 1940, - [3044] = 1939, - [3045] = 1943, - [3046] = 1952, - [3047] = 3032, - [3048] = 3032, - [3049] = 3049, - [3050] = 3029, - [3051] = 3051, - [3052] = 3052, - [3053] = 3032, - [3054] = 3032, - [3055] = 3032, - [3056] = 3056, - [3057] = 3051, - [3058] = 3032, - [3059] = 3059, - [3060] = 3032, - [3061] = 3032, - [3062] = 3062, - [3063] = 3032, - [3064] = 3052, - [3065] = 3032, - [3066] = 3056, - [3067] = 3067, + [3044] = 3031, + [3045] = 3045, + [3046] = 3046, + [3047] = 3031, + [3048] = 2344, + [3049] = 3031, + [3050] = 1941, + [3051] = 3031, + [3052] = 3031, + [3053] = 3031, + [3054] = 3039, + [3055] = 3033, + [3056] = 3031, + [3057] = 3057, + [3058] = 3046, + [3059] = 3031, + [3060] = 3060, + [3061] = 1949, + [3062] = 3031, + [3063] = 1937, + [3064] = 3035, + [3065] = 3065, + [3066] = 1780, + [3067] = 3031, [3068] = 3068, - [3069] = 3038, - [3070] = 3070, - [3071] = 3068, - [3072] = 3072, + [3069] = 3069, + [3070] = 1944, + [3071] = 3046, + [3072] = 3031, [3073] = 3073, - [3074] = 3072, - [3075] = 1765, - [3076] = 3062, - [3077] = 2432, - [3078] = 3073, - [3079] = 1772, - [3080] = 2979, - [3081] = 3070, - [3082] = 1783, - [3083] = 3083, - [3084] = 3038, - [3085] = 3032, - [3086] = 3086, + [3074] = 1778, + [3075] = 3036, + [3076] = 1776, + [3077] = 2995, + [3078] = 3046, + [3079] = 3065, + [3080] = 1779, + [3081] = 1779, + [3082] = 1780, + [3083] = 3068, + [3084] = 1947, + [3085] = 3045, + [3086] = 3041, [3087] = 3087, [3088] = 3088, [3089] = 3089, - [3090] = 3090, - [3091] = 3086, - [3092] = 3000, - [3093] = 3093, + [3090] = 1946, + [3091] = 3060, + [3092] = 2344, + [3093] = 3042, [3094] = 3094, [3095] = 3095, [3096] = 3096, - [3097] = 3097, + [3097] = 3096, [3098] = 3098, [3099] = 3099, - [3100] = 3100, - [3101] = 3101, + [3100] = 3095, + [3101] = 3096, [3102] = 3102, [3103] = 3103, - [3104] = 3098, + [3104] = 3096, [3105] = 3105, - [3106] = 3090, - [3107] = 3107, - [3108] = 2995, + [3106] = 3106, + [3107] = 3105, + [3108] = 3096, [3109] = 3109, - [3110] = 3098, - [3111] = 3111, - [3112] = 3086, - [3113] = 3094, - [3114] = 3101, - [3115] = 3098, - [3116] = 3103, - [3117] = 3097, - [3118] = 3109, - [3119] = 3098, - [3120] = 3003, - [3121] = 3086, - [3122] = 3094, + [3110] = 3106, + [3111] = 3096, + [3112] = 3112, + [3113] = 3109, + [3114] = 3096, + [3115] = 3115, + [3116] = 3096, + [3117] = 3096, + [3118] = 3096, + [3119] = 3119, + [3120] = 3096, + [3121] = 3096, + [3122] = 3096, [3123] = 3123, - [3124] = 3101, - [3125] = 3098, - [3126] = 3103, - [3127] = 3097, - [3128] = 3086, - [3129] = 3094, - [3130] = 3094, - [3131] = 3103, - [3132] = 3097, - [3133] = 3086, - [3134] = 3094, + [3124] = 3095, + [3125] = 3095, + [3126] = 3126, + [3127] = 3103, + [3128] = 3128, + [3129] = 3003, + [3130] = 3096, + [3131] = 3098, + [3132] = 3095, + [3133] = 3096, + [3134] = 3098, [3135] = 3103, - [3136] = 3086, - [3137] = 3094, - [3138] = 3103, - [3139] = 3086, - [3140] = 3094, + [3136] = 3126, + [3137] = 3137, + [3138] = 3106, + [3139] = 3139, + [3140] = 3140, [3141] = 3103, - [3142] = 3086, - [3143] = 3094, - [3144] = 3103, - [3145] = 3094, - [3146] = 3094, - [3147] = 3094, - [3148] = 3094, - [3149] = 1951, - [3150] = 3094, - [3151] = 3094, - [3152] = 3094, - [3153] = 3094, - [3154] = 3094, - [3155] = 3094, - [3156] = 3094, - [3157] = 3101, - [3158] = 3097, - [3159] = 3105, - [3160] = 3095, - [3161] = 3111, - [3162] = 3003, - [3163] = 3097, - [3164] = 3105, - [3165] = 3095, - [3166] = 3111, - [3167] = 3101, - [3168] = 3168, - [3169] = 3169, - [3170] = 3170, - [3171] = 3171, - [3172] = 3172, - [3173] = 3173, - [3174] = 3174, - [3175] = 3175, + [3142] = 3105, + [3143] = 3137, + [3144] = 3098, + [3145] = 3106, + [3146] = 3095, + [3147] = 3147, + [3148] = 3098, + [3149] = 3095, + [3150] = 3096, + [3151] = 3103, + [3152] = 3106, + [3153] = 3026, + [3154] = 3027, + [3155] = 1951, + [3156] = 3095, + [3157] = 3096, + [3158] = 3158, + [3159] = 3098, + [3160] = 3106, + [3161] = 3126, + [3162] = 3105, + [3163] = 3139, + [3164] = 3137, + [3165] = 3139, + [3166] = 3096, + [3167] = 3099, + [3168] = 3003, + [3169] = 3105, + [3170] = 3095, + [3171] = 3096, + [3172] = 3096, + [3173] = 3106, + [3174] = 3105, + [3175] = 3106, [3176] = 3176, - [3177] = 3177, + [3177] = 1951, [3178] = 3178, [3179] = 3179, - [3180] = 1951, - [3181] = 3178, - [3182] = 3067, - [3183] = 3183, + [3180] = 3180, + [3181] = 1951, + [3182] = 3182, + [3183] = 3102, [3184] = 3184, - [3185] = 3169, + [3185] = 3185, [3186] = 3186, - [3187] = 3177, + [3187] = 3187, [3188] = 3188, [3189] = 3189, [3190] = 3190, [3191] = 3191, - [3192] = 1951, - [3193] = 3193, - [3194] = 3123, + [3192] = 3192, + [3193] = 2995, + [3194] = 3194, [3195] = 3195, [3196] = 3196, [3197] = 3197, - [3198] = 3198, + [3198] = 3069, [3199] = 3199, - [3200] = 1951, - [3201] = 3067, - [3202] = 2979, - [3203] = 3203, + [3200] = 3200, + [3201] = 3201, + [3202] = 1951, + [3203] = 3195, [3204] = 3204, - [3205] = 3203, - [3206] = 3195, + [3205] = 3069, + [3206] = 3191, [3207] = 3207, [3208] = 3208, - [3209] = 3209, + [3209] = 3204, [3210] = 3210, - [3211] = 3186, - [3212] = 3212, - [3213] = 3212, + [3211] = 3211, + [3212] = 3196, + [3213] = 3213, [3214] = 3214, - [3215] = 3183, + [3215] = 3215, [3216] = 3216, [3217] = 3217, [3218] = 3218, @@ -7342,801 +7349,801 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3223] = 3223, [3224] = 3224, [3225] = 3225, - [3226] = 3214, + [3226] = 3226, [3227] = 3227, - [3228] = 3204, - [3229] = 3229, - [3230] = 3195, + [3228] = 3228, + [3229] = 3226, + [3230] = 3230, [3231] = 3231, - [3232] = 3210, - [3233] = 3227, - [3234] = 3229, - [3235] = 3186, - [3236] = 3225, - [3237] = 3217, - [3238] = 3183, - [3239] = 3239, - [3240] = 3218, - [3241] = 3109, + [3232] = 3232, + [3233] = 3213, + [3234] = 3234, + [3235] = 3216, + [3236] = 3217, + [3237] = 3218, + [3238] = 3180, + [3239] = 3099, + [3240] = 3197, + [3241] = 3194, [3242] = 3242, - [3243] = 3242, - [3244] = 3221, - [3245] = 3216, + [3243] = 3231, + [3244] = 3214, + [3245] = 3196, [3246] = 3246, - [3247] = 3179, - [3248] = 3209, - [3249] = 3179, - [3250] = 3220, - [3251] = 3207, - [3252] = 3252, - [3253] = 3246, - [3254] = 3224, - [3255] = 3255, - [3256] = 1951, - [3257] = 3183, - [3258] = 3258, - [3259] = 1991, + [3247] = 3220, + [3248] = 3232, + [3249] = 3242, + [3250] = 3250, + [3251] = 3246, + [3252] = 3222, + [3253] = 3253, + [3254] = 3223, + [3255] = 3224, + [3256] = 3180, + [3257] = 1951, + [3258] = 3197, + [3259] = 3194, [3260] = 3260, - [3261] = 3261, - [3262] = 3262, - [3263] = 3239, - [3264] = 3264, - [3265] = 3265, - [3266] = 3169, - [3267] = 1976, - [3268] = 3268, - [3269] = 3179, - [3270] = 3222, - [3271] = 3223, - [3272] = 3272, - [3273] = 1997, + [3261] = 3250, + [3262] = 3211, + [3263] = 3253, + [3264] = 3234, + [3265] = 3230, + [3266] = 3266, + [3267] = 3195, + [3268] = 3266, + [3269] = 3269, + [3270] = 3191, + [3271] = 1987, + [3272] = 3214, + [3273] = 3273, [3274] = 3274, - [3275] = 3208, - [3276] = 1966, - [3277] = 3277, - [3278] = 3261, - [3279] = 3177, - [3280] = 3260, + [3275] = 3275, + [3276] = 3276, + [3277] = 3221, + [3278] = 3278, + [3279] = 3279, + [3280] = 3278, [3281] = 3281, - [3282] = 3282, - [3283] = 3274, - [3284] = 3264, + [3282] = 3225, + [3283] = 1985, + [3284] = 1967, [3285] = 3285, - [3286] = 3178, - [3287] = 3258, - [3288] = 3272, - [3289] = 3210, - [3290] = 3262, - [3291] = 3003, - [3292] = 3252, - [3293] = 3285, - [3294] = 3186, - [3295] = 3231, - [3296] = 3296, - [3297] = 3212, - [3298] = 3298, - [3299] = 3186, - [3300] = 3179, - [3301] = 3301, - [3302] = 3302, - [3303] = 3303, + [3286] = 3273, + [3287] = 3197, + [3288] = 3194, + [3289] = 3003, + [3290] = 3196, + [3291] = 3291, + [3292] = 3292, + [3293] = 1971, + [3294] = 3279, + [3295] = 3204, + [3296] = 3227, + [3297] = 3285, + [3298] = 3215, + [3299] = 3299, + [3300] = 3299, + [3301] = 3228, + [3302] = 3274, + [3303] = 3292, [3304] = 3304, - [3305] = 3305, - [3306] = 3183, - [3307] = 2017, - [3308] = 1951, - [3309] = 3301, + [3305] = 3246, + [3306] = 3306, + [3307] = 3232, + [3308] = 3308, + [3309] = 3309, [3310] = 3310, - [3311] = 3264, - [3312] = 3265, - [3313] = 1965, - [3314] = 3186, - [3315] = 1969, - [3316] = 3285, - [3317] = 3317, - [3318] = 3261, - [3319] = 3319, - [3320] = 3296, - [3321] = 3195, - [3322] = 3109, - [3323] = 3323, - [3324] = 3214, - [3325] = 3325, - [3326] = 3282, - [3327] = 3327, + [3311] = 3197, + [3312] = 3194, + [3313] = 3310, + [3314] = 3314, + [3315] = 3196, + [3316] = 3316, + [3317] = 1966, + [3318] = 3318, + [3319] = 3197, + [3320] = 3194, + [3321] = 3321, + [3322] = 3322, + [3323] = 3314, + [3324] = 3292, + [3325] = 3266, + [3326] = 3326, + [3327] = 3276, [3328] = 3328, [3329] = 3329, [3330] = 3330, - [3331] = 3221, + [3331] = 3196, [3332] = 3332, - [3333] = 3265, - [3334] = 3277, - [3335] = 3335, - [3336] = 3281, - [3337] = 3282, - [3338] = 3195, - [3339] = 3296, + [3333] = 3299, + [3334] = 3291, + [3335] = 3242, + [3336] = 3336, + [3337] = 3337, + [3338] = 3338, + [3339] = 3310, [3340] = 3340, - [3341] = 3258, - [3342] = 3342, - [3343] = 3067, - [3344] = 3344, - [3345] = 3345, + [3341] = 3099, + [3342] = 3314, + [3343] = 3343, + [3344] = 3269, + [3345] = 3291, [3346] = 3346, [3347] = 3347, - [3348] = 3348, - [3349] = 3179, - [3350] = 3183, - [3351] = 3351, - [3352] = 3352, - [3353] = 1973, - [3354] = 3246, - [3355] = 3332, - [3356] = 3277, - [3357] = 3209, - [3358] = 2013, - [3359] = 3301, - [3360] = 3281, - [3361] = 2008, - [3362] = 3319, - [3363] = 3363, - [3364] = 3317, - [3365] = 3365, - [3366] = 3323, - [3367] = 3335, - [3368] = 3332, - [3369] = 3329, - [3370] = 3330, + [3348] = 1968, + [3349] = 3069, + [3350] = 3350, + [3351] = 1977, + [3352] = 1970, + [3353] = 3281, + [3354] = 1951, + [3355] = 1979, + [3356] = 3356, + [3357] = 1974, + [3358] = 3220, + [3359] = 3306, + [3360] = 3360, + [3361] = 3269, + [3362] = 3362, + [3363] = 3180, + [3364] = 3276, + [3365] = 3231, + [3366] = 3279, + [3367] = 3367, + [3368] = 3281, + [3369] = 3180, + [3370] = 3370, [3371] = 3371, [3372] = 3372, - [3373] = 3373, + [3373] = 3273, [3374] = 3374, - [3375] = 3375, - [3376] = 3365, - [3377] = 3377, + [3375] = 3304, + [3376] = 3308, + [3377] = 3337, [3378] = 3378, [3379] = 3379, - [3380] = 3298, - [3381] = 3381, - [3382] = 3382, - [3383] = 3373, - [3384] = 3384, - [3385] = 3335, - [3386] = 3386, - [3387] = 3327, - [3388] = 3351, - [3389] = 3169, + [3380] = 3380, + [3381] = 3336, + [3382] = 3371, + [3383] = 3338, + [3384] = 3372, + [3385] = 3346, + [3386] = 3321, + [3387] = 3329, + [3388] = 3388, + [3389] = 3389, [3390] = 3390, - [3391] = 3375, - [3392] = 3260, - [3393] = 3347, - [3394] = 3394, - [3395] = 3395, - [3396] = 3302, - [3397] = 3384, + [3391] = 3391, + [3392] = 3337, + [3393] = 3393, + [3394] = 3285, + [3395] = 3306, + [3396] = 3346, + [3397] = 3378, [3398] = 3398, - [3399] = 3329, - [3400] = 3342, - [3401] = 3401, - [3402] = 3345, - [3403] = 3403, - [3404] = 3277, - [3405] = 3302, + [3399] = 3321, + [3400] = 3400, + [3401] = 3278, + [3402] = 3402, + [3403] = 3338, + [3404] = 3404, + [3405] = 3405, [3406] = 3406, - [3407] = 3375, - [3408] = 3178, - [3409] = 3304, - [3410] = 3347, - [3411] = 3372, - [3412] = 3401, - [3413] = 3330, - [3414] = 3374, - [3415] = 3375, - [3416] = 3394, - [3417] = 3305, - [3418] = 3319, - [3419] = 3382, - [3420] = 3420, - [3421] = 3375, - [3422] = 3395, - [3423] = 3406, - [3424] = 3274, - [3425] = 3375, - [3426] = 3375, - [3427] = 3340, - [3428] = 3346, + [3407] = 3407, + [3408] = 3329, + [3409] = 3388, + [3410] = 3410, + [3411] = 3411, + [3412] = 3412, + [3413] = 3413, + [3414] = 3389, + [3415] = 3390, + [3416] = 3391, + [3417] = 3393, + [3418] = 3418, + [3419] = 3406, + [3420] = 3291, + [3421] = 3204, + [3422] = 3407, + [3423] = 3367, + [3424] = 3195, + [3425] = 3400, + [3426] = 3356, + [3427] = 3309, + [3428] = 3191, [3429] = 3429, - [3430] = 3375, - [3431] = 3304, - [3432] = 3281, - [3433] = 3348, - [3434] = 3429, - [3435] = 3351, - [3436] = 3340, - [3437] = 3328, - [3438] = 3342, - [3439] = 3305, - [3440] = 3403, - [3441] = 3420, - [3442] = 3262, - [3443] = 3317, - [3444] = 3444, - [3445] = 3310, - [3446] = 3446, - [3447] = 3298, - [3448] = 3323, - [3449] = 3177, - [3450] = 3386, - [3451] = 3303, - [3452] = 3303, - [3453] = 3327, - [3454] = 3378, - [3455] = 3381, - [3456] = 3310, - [3457] = 3348, - [3458] = 3210, - [3459] = 3282, - [3460] = 3325, - [3461] = 3390, - [3462] = 3398, - [3463] = 3325, - [3464] = 3265, - [3465] = 3346, - [3466] = 3328, - [3467] = 3363, - [3468] = 3371, - [3469] = 3446, - [3470] = 3345, - [3471] = 3304, - [3472] = 3472, - [3473] = 3473, - [3474] = 3474, - [3475] = 3281, - [3476] = 3476, - [3477] = 3303, - [3478] = 3478, - [3479] = 3363, - [3480] = 3277, - [3481] = 3285, + [3430] = 3411, + [3431] = 3412, + [3432] = 3413, + [3433] = 3281, + [3434] = 3332, + [3435] = 3214, + [3436] = 3343, + [3437] = 3347, + [3438] = 3350, + [3439] = 3429, + [3440] = 3322, + [3441] = 3370, + [3442] = 3326, + [3443] = 3276, + [3444] = 3328, + [3445] = 3330, + [3446] = 3370, + [3447] = 3318, + [3448] = 3360, + [3449] = 3362, + [3450] = 3356, + [3451] = 3370, + [3452] = 3374, + [3453] = 3304, + [3454] = 3379, + [3455] = 3308, + [3456] = 3370, + [3457] = 3380, + [3458] = 3370, + [3459] = 3370, + [3460] = 3398, + [3461] = 3370, + [3462] = 3405, + [3463] = 3367, + [3464] = 3309, + [3465] = 3410, + [3466] = 3336, + [3467] = 3332, + [3468] = 3343, + [3469] = 3347, + [3470] = 3350, + [3471] = 3322, + [3472] = 3326, + [3473] = 3328, + [3474] = 3330, + [3475] = 3318, + [3476] = 3360, + [3477] = 3362, + [3478] = 3269, + [3479] = 3479, + [3480] = 3479, + [3481] = 3481, [3482] = 3482, - [3483] = 3323, - [3484] = 3335, - [3485] = 3485, - [3486] = 3340, - [3487] = 3346, - [3488] = 3348, - [3489] = 3351, - [3490] = 3490, - [3491] = 3310, - [3492] = 3319, - [3493] = 3282, - [3494] = 3325, - [3495] = 3328, - [3496] = 3485, - [3497] = 3497, - [3498] = 3498, - [3499] = 3302, - [3500] = 3474, - [3501] = 3305, - [3502] = 3329, - [3503] = 3317, - [3504] = 3261, - [3505] = 3485, - [3506] = 3327, - [3507] = 3473, - [3508] = 3497, - [3509] = 3498, - [3510] = 3330, - [3511] = 3473, - [3512] = 3474, - [3513] = 3485, - [3514] = 3474, - [3515] = 3497, - [3516] = 3498, - [3517] = 3474, - [3518] = 3497, - [3519] = 3476, - [3520] = 3485, - [3521] = 3497, - [3522] = 3498, - [3523] = 3474, - [3524] = 3485, - [3525] = 3497, - [3526] = 3498, - [3527] = 3474, - [3528] = 3485, - [3529] = 3281, - [3530] = 3497, - [3531] = 3485, - [3532] = 3497, - [3533] = 3485, - [3534] = 3497, - [3535] = 3474, - [3536] = 3472, - [3537] = 3476, - [3538] = 3472, - [3539] = 3485, - [3540] = 3472, - [3541] = 3298, - [3542] = 3347, - [3543] = 3264, - [3544] = 3472, - [3545] = 3472, - [3546] = 3472, - [3547] = 3277, - [3548] = 3472, - [3549] = 3497, - [3550] = 3498, - [3551] = 3551, - [3552] = 3498, - [3553] = 3265, - [3554] = 3485, - [3555] = 3497, - [3556] = 3498, - [3557] = 3258, - [3558] = 3342, - [3559] = 3345, - [3560] = 3265, - [3561] = 3282, - [3562] = 3330, - [3563] = 3303, - [3564] = 3564, - [3565] = 3274, - [3566] = 3310, - [3567] = 3303, - [3568] = 3345, - [3569] = 3319, - [3570] = 3325, - [3571] = 3260, - [3572] = 3347, - [3573] = 3328, - [3574] = 3379, - [3575] = 3323, - [3576] = 3317, - [3577] = 3340, - [3578] = 3564, - [3579] = 3262, - [3580] = 3342, - [3581] = 3345, - [3582] = 3347, - [3583] = 3583, - [3584] = 1975, - [3585] = 3323, - [3586] = 2018, - [3587] = 3346, - [3588] = 3335, - [3589] = 3348, - [3590] = 3590, - [3591] = 3591, - [3592] = 3444, - [3593] = 3340, - [3594] = 3346, - [3595] = 3329, - [3596] = 3329, - [3597] = 3330, - [3598] = 3348, - [3599] = 3351, - [3600] = 3332, - [3601] = 3302, - [3602] = 3444, - [3603] = 3214, - [3604] = 3304, - [3605] = 3305, - [3606] = 3377, - [3607] = 3298, - [3608] = 3335, - [3609] = 3212, - [3610] = 3298, - [3611] = 2022, - [3612] = 3327, - [3613] = 3327, - [3614] = 3246, - [3615] = 3377, - [3616] = 3209, - [3617] = 3342, + [3483] = 3483, + [3484] = 3360, + [3485] = 3479, + [3486] = 3328, + [3487] = 3362, + [3488] = 3356, + [3489] = 3479, + [3490] = 3481, + [3491] = 3482, + [3492] = 3483, + [3493] = 3479, + [3494] = 3330, + [3495] = 3481, + [3496] = 3482, + [3497] = 3374, + [3498] = 3483, + [3499] = 3499, + [3500] = 3479, + [3501] = 3481, + [3502] = 3481, + [3503] = 3482, + [3504] = 3482, + [3505] = 3483, + [3506] = 3291, + [3507] = 3479, + [3508] = 3304, + [3509] = 3279, + [3510] = 3322, + [3511] = 3309, + [3512] = 3481, + [3513] = 3482, + [3514] = 3308, + [3515] = 3515, + [3516] = 3516, + [3517] = 3483, + [3518] = 3479, + [3519] = 3481, + [3520] = 3479, + [3521] = 3481, + [3522] = 3479, + [3523] = 3479, + [3524] = 3299, + [3525] = 3481, + [3526] = 3336, + [3527] = 3516, + [3528] = 3338, + [3529] = 3332, + [3530] = 3482, + [3531] = 3346, + [3532] = 3291, + [3533] = 3343, + [3534] = 3321, + [3535] = 3535, + [3536] = 3266, + [3537] = 3329, + [3538] = 3269, + [3539] = 3515, + [3540] = 3337, + [3541] = 3499, + [3542] = 3542, + [3543] = 3483, + [3544] = 3515, + [3545] = 3281, + [3546] = 3347, + [3547] = 3269, + [3548] = 3499, + [3549] = 3515, + [3550] = 3516, + [3551] = 3350, + [3552] = 3515, + [3553] = 3483, + [3554] = 3515, + [3555] = 3367, + [3556] = 3515, + [3557] = 3483, + [3558] = 3281, + [3559] = 3515, + [3560] = 3276, + [3561] = 3482, + [3562] = 3326, + [3563] = 3318, + [3564] = 3292, + [3565] = 3276, + [3566] = 3481, + [3567] = 3567, + [3568] = 3568, + [3569] = 3481, + [3570] = 1968, + [3571] = 3304, + [3572] = 2007, + [3573] = 1994, + [3574] = 3285, + [3575] = 3318, + [3576] = 3576, + [3577] = 3577, + [3578] = 3308, + [3579] = 1995, + [3580] = 3220, + [3581] = 3306, + [3582] = 3402, + [3583] = 3367, + [3584] = 3418, + [3585] = 3360, + [3586] = 3232, + [3587] = 3360, + [3588] = 3242, + [3589] = 3328, + [3590] = 3362, + [3591] = 3304, + [3592] = 3404, + [3593] = 3336, + [3594] = 3338, + [3595] = 3332, + [3596] = 3418, + [3597] = 3367, + [3598] = 3308, + [3599] = 3322, + [3600] = 3346, + [3601] = 3362, + [3602] = 3231, + [3603] = 3309, + [3604] = 3343, + [3605] = 3329, + [3606] = 3347, + [3607] = 3356, + [3608] = 3273, + [3609] = 3330, + [3610] = 3328, + [3611] = 3321, + [3612] = 3402, + [3613] = 3309, + [3614] = 3350, + [3615] = 3336, + [3616] = 3616, + [3617] = 2016, [3618] = 3618, - [3619] = 3221, - [3620] = 3310, - [3621] = 3319, - [3622] = 3325, - [3623] = 3328, - [3624] = 3379, - [3625] = 3625, - [3626] = 3305, - [3627] = 2000, - [3628] = 1973, - [3629] = 2012, - [3630] = 2017, - [3631] = 1965, - [3632] = 1969, - [3633] = 2008, - [3634] = 1964, - [3635] = 2013, - [3636] = 3302, - [3637] = 3317, - [3638] = 3304, - [3639] = 3351, - [3640] = 2012, - [3641] = 3641, - [3642] = 2008, - [3643] = 3641, - [3644] = 3644, + [3619] = 3329, + [3620] = 3326, + [3621] = 3337, + [3622] = 3338, + [3623] = 3278, + [3624] = 3337, + [3625] = 3332, + [3626] = 3322, + [3627] = 3347, + [3628] = 3330, + [3629] = 3350, + [3630] = 2025, + [3631] = 3618, + [3632] = 3326, + [3633] = 3321, + [3634] = 3318, + [3635] = 3635, + [3636] = 2003, + [3637] = 3246, + [3638] = 3343, + [3639] = 1966, + [3640] = 3356, + [3641] = 1970, + [3642] = 1974, + [3643] = 1977, + [3644] = 1979, [3645] = 3645, - [3646] = 3590, - [3647] = 3644, - [3648] = 3648, - [3649] = 3444, - [3650] = 1991, - [3651] = 1965, + [3646] = 3346, + [3647] = 3404, + [3648] = 1967, + [3649] = 1966, + [3650] = 1977, + [3651] = 3651, [3652] = 3652, - [3653] = 3653, + [3653] = 1968, [3654] = 3654, [3655] = 3655, [3656] = 3656, - [3657] = 1966, - [3658] = 3644, - [3659] = 1965, - [3660] = 3645, - [3661] = 3661, - [3662] = 3662, - [3663] = 3652, - [3664] = 2008, - [3665] = 3655, - [3666] = 1969, - [3667] = 3648, - [3668] = 1973, - [3669] = 2008, - [3670] = 3654, - [3671] = 3379, - [3672] = 1969, - [3673] = 2013, + [3657] = 1970, + [3658] = 1971, + [3659] = 3659, + [3660] = 3660, + [3661] = 1974, + [3662] = 3577, + [3663] = 1979, + [3664] = 3659, + [3665] = 3665, + [3666] = 3666, + [3667] = 3667, + [3668] = 3668, + [3669] = 3669, + [3670] = 3660, + [3671] = 1966, + [3672] = 3654, + [3673] = 1968, [3674] = 3674, - [3675] = 3656, - [3676] = 1976, - [3677] = 2013, - [3678] = 3678, - [3679] = 3662, - [3680] = 2013, - [3681] = 3681, - [3682] = 1997, - [3683] = 2017, - [3684] = 1964, - [3685] = 1975, - [3686] = 2018, - [3687] = 2022, - [3688] = 3688, - [3689] = 1973, - [3690] = 3656, - [3691] = 3377, - [3692] = 3681, - [3693] = 1973, + [3675] = 1970, + [3676] = 1974, + [3677] = 1977, + [3678] = 3668, + [3679] = 1979, + [3680] = 3652, + [3681] = 1966, + [3682] = 3655, + [3683] = 3656, + [3684] = 1968, + [3685] = 1970, + [3686] = 1974, + [3687] = 3659, + [3688] = 3660, + [3689] = 3665, + [3690] = 3666, + [3691] = 3667, + [3692] = 3668, + [3693] = 3669, [3694] = 3654, - [3695] = 3661, - [3696] = 3652, - [3697] = 3363, - [3698] = 1973, - [3699] = 3645, - [3700] = 3661, - [3701] = 2013, - [3702] = 2017, - [3703] = 3681, - [3704] = 3648, - [3705] = 3678, - [3706] = 1965, - [3707] = 1969, - [3708] = 2017, - [3709] = 3709, - [3710] = 1965, - [3711] = 1969, - [3712] = 3641, - [3713] = 2008, - [3714] = 3662, - [3715] = 3590, - [3716] = 2017, - [3717] = 3678, - [3718] = 3653, - [3719] = 2000, - [3720] = 1975, - [3721] = 1973, - [3722] = 3709, + [3695] = 3695, + [3696] = 1977, + [3697] = 3652, + [3698] = 3655, + [3699] = 3656, + [3700] = 3669, + [3701] = 3665, + [3702] = 3374, + [3703] = 2016, + [3704] = 2025, + [3705] = 2003, + [3706] = 2007, + [3707] = 1994, + [3708] = 1995, + [3709] = 3402, + [3710] = 3666, + [3711] = 3651, + [3712] = 3404, + [3713] = 3667, + [3714] = 3418, + [3715] = 3715, + [3716] = 3695, + [3717] = 1966, + [3718] = 1968, + [3719] = 1970, + [3720] = 1974, + [3721] = 1977, + [3722] = 1979, [3723] = 3723, - [3724] = 2017, - [3725] = 1964, - [3726] = 3726, - [3727] = 1965, - [3728] = 2017, - [3729] = 3723, - [3730] = 3730, + [3724] = 1985, + [3725] = 1987, + [3726] = 3577, + [3727] = 1979, + [3728] = 3674, + [3729] = 3729, + [3730] = 3635, [3731] = 3731, [3732] = 3732, - [3733] = 3723, - [3734] = 3734, - [3735] = 3723, - [3736] = 1969, - [3737] = 3723, - [3738] = 1965, + [3733] = 3733, + [3734] = 3731, + [3735] = 3735, + [3736] = 3736, + [3737] = 3737, + [3738] = 3577, [3739] = 3739, - [3740] = 1969, + [3740] = 3723, [3741] = 3741, - [3742] = 3730, + [3742] = 3742, [3743] = 3743, - [3744] = 2000, + [3744] = 3744, [3745] = 3745, [3746] = 3746, - [3747] = 3747, - [3748] = 3741, - [3749] = 3749, - [3750] = 2012, + [3747] = 3737, + [3748] = 3746, + [3749] = 3745, + [3750] = 3729, [3751] = 3751, - [3752] = 3625, - [3753] = 3723, - [3754] = 3743, - [3755] = 3723, - [3756] = 3756, - [3757] = 2013, + [3752] = 3739, + [3753] = 3743, + [3754] = 3745, + [3755] = 3755, + [3756] = 3732, + [3757] = 3757, [3758] = 3758, - [3759] = 3759, - [3760] = 3726, - [3761] = 3761, - [3762] = 3739, - [3763] = 2018, - [3764] = 3747, - [3765] = 2022, - [3766] = 3674, - [3767] = 2013, - [3768] = 3730, - [3769] = 2008, - [3770] = 3743, - [3771] = 3747, - [3772] = 3772, + [3759] = 3745, + [3760] = 3760, + [3761] = 3729, + [3762] = 3736, + [3763] = 1979, + [3764] = 3764, + [3765] = 3733, + [3766] = 3723, + [3767] = 3745, + [3768] = 1966, + [3769] = 1968, + [3770] = 1970, + [3771] = 1974, + [3772] = 3745, [3773] = 3773, [3774] = 3774, - [3775] = 3746, - [3776] = 3674, + [3775] = 3741, + [3776] = 3745, [3777] = 3777, [3778] = 3778, - [3779] = 3746, - [3780] = 3732, - [3781] = 3732, - [3782] = 3782, - [3783] = 1973, - [3784] = 3723, - [3785] = 2008, - [3786] = 3782, - [3787] = 3590, - [3788] = 3788, - [3789] = 3731, - [3790] = 3741, - [3791] = 3778, - [3792] = 3759, - [3793] = 3777, - [3794] = 3723, - [3795] = 3778, - [3796] = 3796, - [3797] = 3797, - [3798] = 3798, - [3799] = 3723, - [3800] = 1973, - [3801] = 2017, - [3802] = 1965, - [3803] = 1969, - [3804] = 2008, - [3805] = 2013, - [3806] = 3726, - [3807] = 3723, - [3808] = 3808, - [3809] = 3809, - [3810] = 3810, - [3811] = 3788, - [3812] = 3739, - [3813] = 3674, - [3814] = 3777, - [3815] = 3788, - [3816] = 3796, - [3817] = 3731, - [3818] = 3818, - [3819] = 3749, - [3820] = 3723, - [3821] = 3796, - [3822] = 3822, - [3823] = 3823, + [3779] = 1977, + [3780] = 3737, + [3781] = 3735, + [3782] = 3739, + [3783] = 1977, + [3784] = 3745, + [3785] = 3755, + [3786] = 3751, + [3787] = 3787, + [3788] = 1979, + [3789] = 3751, + [3790] = 3723, + [3791] = 3745, + [3792] = 3792, + [3793] = 3793, + [3794] = 2016, + [3795] = 1966, + [3796] = 2025, + [3797] = 3746, + [3798] = 2003, + [3799] = 2007, + [3800] = 1994, + [3801] = 1995, + [3802] = 3732, + [3803] = 3803, + [3804] = 3804, + [3805] = 3755, + [3806] = 3806, + [3807] = 1968, + [3808] = 3745, + [3809] = 1970, + [3810] = 1974, + [3811] = 3745, + [3812] = 3733, + [3813] = 3804, + [3814] = 3741, + [3815] = 3806, + [3816] = 3773, + [3817] = 1966, + [3818] = 1968, + [3819] = 1970, + [3820] = 1974, + [3821] = 1977, + [3822] = 3735, + [3823] = 1979, [3824] = 3824, - [3825] = 3825, - [3826] = 3826, - [3827] = 3827, + [3825] = 3731, + [3826] = 3806, + [3827] = 3736, [3828] = 3828, - [3829] = 3829, + [3829] = 3745, [3830] = 3830, [3831] = 3831, [3832] = 3832, [3833] = 3833, [3834] = 3834, - [3835] = 3835, + [3835] = 3830, [3836] = 3836, [3837] = 3837, [3838] = 3838, [3839] = 3839, - [3840] = 3833, + [3840] = 3840, [3841] = 3841, - [3842] = 3833, + [3842] = 3842, [3843] = 3843, - [3844] = 3828, - [3845] = 3829, + [3844] = 3844, + [3845] = 3845, [3846] = 3846, [3847] = 3847, [3848] = 3848, [3849] = 3849, - [3850] = 3850, - [3851] = 3625, + [3850] = 3824, + [3851] = 3851, [3852] = 3852, [3853] = 3853, - [3854] = 3830, - [3855] = 3809, + [3854] = 3839, + [3855] = 3855, [3856] = 3856, - [3857] = 3618, + [3857] = 3840, [3858] = 3858, - [3859] = 3583, - [3860] = 3860, - [3861] = 3833, - [3862] = 3862, - [3863] = 3863, - [3864] = 3864, - [3865] = 3836, + [3859] = 3859, + [3860] = 3841, + [3861] = 3842, + [3862] = 3855, + [3863] = 3856, + [3864] = 3843, + [3865] = 3844, [3866] = 3866, - [3867] = 3867, - [3868] = 3837, - [3869] = 3869, - [3870] = 3870, - [3871] = 3828, - [3872] = 3850, - [3873] = 3838, - [3874] = 3829, - [3875] = 3823, - [3876] = 3834, - [3877] = 3830, + [3867] = 3855, + [3868] = 3856, + [3869] = 3824, + [3870] = 3845, + [3871] = 3871, + [3872] = 3831, + [3873] = 3866, + [3874] = 3832, + [3875] = 3875, + [3876] = 3833, + [3877] = 3875, [3878] = 3878, - [3879] = 3849, - [3880] = 3852, - [3881] = 3870, - [3882] = 3878, - [3883] = 3809, - [3884] = 3841, - [3885] = 3853, - [3886] = 3826, + [3879] = 3878, + [3880] = 3834, + [3881] = 3881, + [3882] = 3882, + [3883] = 3616, + [3884] = 3878, + [3885] = 3885, + [3886] = 3886, [3887] = 3887, [3888] = 3888, - [3889] = 3826, - [3890] = 3831, - [3891] = 3833, - [3892] = 1963, + [3889] = 3889, + [3890] = 3890, + [3891] = 3891, + [3892] = 3881, [3893] = 3893, - [3894] = 3825, - [3895] = 3827, + [3894] = 3894, + [3895] = 3895, [3896] = 3896, [3897] = 3897, - [3898] = 3866, + [3898] = 3898, [3899] = 3899, - [3900] = 3848, - [3901] = 3901, - [3902] = 3856, - [3903] = 3903, - [3904] = 3625, - [3905] = 3833, - [3906] = 3866, - [3907] = 3860, - [3908] = 3908, - [3909] = 3835, - [3910] = 3887, - [3911] = 3831, - [3912] = 3849, - [3913] = 3913, - [3914] = 3863, - [3915] = 3888, - [3916] = 3916, - [3917] = 3916, - [3918] = 3896, - [3919] = 3919, - [3920] = 3878, - [3921] = 3921, - [3922] = 3919, - [3923] = 3839, - [3924] = 3860, - [3925] = 3583, - [3926] = 3908, - [3927] = 3825, - [3928] = 3827, - [3929] = 3618, - [3930] = 3858, - [3931] = 3913, + [3900] = 3882, + [3901] = 3846, + [3902] = 3831, + [3903] = 3832, + [3904] = 3833, + [3905] = 3834, + [3906] = 3830, + [3907] = 3836, + [3908] = 3837, + [3909] = 3847, + [3910] = 3848, + [3911] = 3849, + [3912] = 3912, + [3913] = 3839, + [3914] = 3840, + [3915] = 3841, + [3916] = 3842, + [3917] = 3843, + [3918] = 3844, + [3919] = 3893, + [3920] = 3846, + [3921] = 3847, + [3922] = 3577, + [3923] = 3849, + [3924] = 3852, + [3925] = 3894, + [3926] = 3866, + [3927] = 3852, + [3928] = 3875, + [3929] = 3891, + [3930] = 3895, + [3931] = 3875, [3932] = 3896, - [3933] = 3888, - [3934] = 3921, - [3935] = 3896, - [3936] = 3003, - [3937] = 3848, - [3938] = 3833, - [3939] = 3896, - [3940] = 3916, - [3941] = 3843, - [3942] = 3919, - [3943] = 3921, - [3944] = 3944, - [3945] = 1957, - [3946] = 3946, - [3947] = 3833, - [3948] = 3870, - [3949] = 3949, - [3950] = 3824, - [3951] = 3862, - [3952] = 3852, - [3953] = 3853, - [3954] = 3625, + [3933] = 3897, + [3934] = 3836, + [3935] = 3898, + [3936] = 3866, + [3937] = 1959, + [3938] = 3616, + [3939] = 3837, + [3940] = 3875, + [3941] = 3899, + [3942] = 3942, + [3943] = 3866, + [3944] = 3635, + [3945] = 3945, + [3946] = 3875, + [3947] = 1961, + [3948] = 3948, + [3949] = 3576, + [3950] = 3866, + [3951] = 3875, + [3952] = 3635, + [3953] = 3953, + [3954] = 3866, [3955] = 3866, - [3956] = 3887, - [3957] = 3856, - [3958] = 3908, - [3959] = 3959, - [3960] = 3837, - [3961] = 3583, - [3962] = 3847, - [3963] = 3838, - [3964] = 3618, - [3965] = 3833, - [3966] = 3896, - [3967] = 3896, - [3968] = 3913, - [3969] = 3869, - [3970] = 3843, - [3971] = 3809, - [3972] = 3863, - [3973] = 3590, - [3974] = 3897, - [3975] = 3864, - [3976] = 3836, - [3977] = 3822, - [3978] = 3839, - [3979] = 3896, - [3980] = 3862, - [3981] = 3858, - [3982] = 3949, - [3983] = 3869, - [3984] = 3850, + [3956] = 3875, + [3957] = 3886, + [3958] = 3887, + [3959] = 3888, + [3960] = 3635, + [3961] = 3889, + [3962] = 3886, + [3963] = 3890, + [3964] = 3875, + [3965] = 3875, + [3966] = 3887, + [3967] = 3888, + [3968] = 3875, + [3969] = 3969, + [3970] = 3576, + [3971] = 3889, + [3972] = 3890, + [3973] = 3973, + [3974] = 3974, + [3975] = 3948, + [3976] = 3824, + [3977] = 3891, + [3978] = 3978, + [3979] = 3891, + [3980] = 3851, + [3981] = 3871, + [3982] = 3948, + [3983] = 3616, + [3984] = 3978, [3985] = 3985, - [3986] = 3823, - [3987] = 3987, - [3988] = 3833, - [3989] = 3835, - [3990] = 3841, - [3991] = 3985, - [3992] = 3822, - [3993] = 3834, - [3994] = 3994, - [3995] = 3833, - [3996] = 3996, - [3997] = 3997, - [3998] = 3998, - [3999] = 3998, - [4000] = 1973, - [4001] = 2017, - [4002] = 1965, - [4003] = 4003, - [4004] = 1969, - [4005] = 3832, - [4006] = 4006, - [4007] = 4007, - [4008] = 2008, + [3986] = 3986, + [3987] = 3885, + [3988] = 3576, + [3989] = 3893, + [3990] = 3894, + [3991] = 3895, + [3992] = 3896, + [3993] = 3897, + [3994] = 3898, + [3995] = 3973, + [3996] = 3899, + [3997] = 3003, + [3998] = 3881, + [3999] = 3974, + [4000] = 3882, + [4001] = 4001, + [4002] = 3845, + [4003] = 3848, + [4004] = 4004, + [4005] = 4005, + [4006] = 1966, + [4007] = 4001, + [4008] = 4008, [4009] = 4009, - [4010] = 2013, + [4010] = 4010, [4011] = 4011, - [4012] = 4012, - [4013] = 3893, + [4012] = 3744, + [4013] = 4013, [4014] = 4014, [4015] = 4015, [4016] = 4016, [4017] = 4017, [4018] = 4018, [4019] = 4019, - [4020] = 3996, + [4020] = 4020, [4021] = 4021, [4022] = 4022, [4023] = 4023, @@ -8144,1171 +8151,1171 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4025] = 4025, [4026] = 4026, [4027] = 4027, - [4028] = 4028, - [4029] = 3832, + [4028] = 4020, + [4029] = 4029, [4030] = 4030, - [4031] = 4031, - [4032] = 4028, - [4033] = 4026, - [4034] = 4027, - [4035] = 4035, - [4036] = 3772, - [4037] = 4037, + [4031] = 1968, + [4032] = 4001, + [4033] = 1970, + [4034] = 4034, + [4035] = 4004, + [4036] = 4036, + [4037] = 4024, [4038] = 4038, [4039] = 4039, - [4040] = 4040, - [4041] = 3000, - [4042] = 4006, + [4040] = 3969, + [4041] = 4041, + [4042] = 4042, [4043] = 4043, - [4044] = 3832, - [4045] = 4009, + [4044] = 4044, + [4045] = 4045, [4046] = 4046, [4047] = 4047, - [4048] = 4048, - [4049] = 4043, - [4050] = 4012, - [4051] = 4051, + [4048] = 4014, + [4049] = 4015, + [4050] = 1974, + [4051] = 1977, [4052] = 4052, [4053] = 4053, [4054] = 4054, - [4055] = 4055, + [4055] = 4039, [4056] = 4056, - [4057] = 4057, - [4058] = 4030, - [4059] = 4035, + [4057] = 4022, + [4058] = 4020, + [4059] = 4013, [4060] = 4060, [4061] = 4061, - [4062] = 3998, - [4063] = 4063, - [4064] = 4030, - [4065] = 4065, - [4066] = 4066, - [4067] = 3709, - [4068] = 4035, + [4062] = 4034, + [4063] = 4016, + [4064] = 3576, + [4065] = 3744, + [4066] = 3027, + [4067] = 3674, + [4068] = 4068, [4069] = 4069, - [4070] = 3772, - [4071] = 3067, - [4072] = 4072, - [4073] = 3709, - [4074] = 4074, - [4075] = 4075, - [4076] = 3772, - [4077] = 4077, - [4078] = 4051, - [4079] = 2995, - [4080] = 3709, - [4081] = 4081, - [4082] = 4082, - [4083] = 4019, - [4084] = 4084, - [4085] = 4003, - [4086] = 4086, - [4087] = 4087, - [4088] = 4055, - [4089] = 4089, - [4090] = 4009, + [4070] = 4070, + [4071] = 4011, + [4072] = 3026, + [4073] = 4073, + [4074] = 4052, + [4075] = 4034, + [4076] = 4019, + [4077] = 4016, + [4078] = 4013, + [4079] = 4019, + [4080] = 3674, + [4081] = 4005, + [4082] = 4004, + [4083] = 4083, + [4084] = 4018, + [4085] = 4015, + [4086] = 4011, + [4087] = 4001, + [4088] = 4018, + [4089] = 3969, + [4090] = 3969, [4091] = 4091, [4092] = 4092, [4093] = 4093, [4094] = 4094, - [4095] = 4037, - [4096] = 3797, - [4097] = 4037, - [4098] = 3772, - [4099] = 4086, - [4100] = 3583, + [4095] = 4095, + [4096] = 4096, + [4097] = 4097, + [4098] = 4098, + [4099] = 4099, + [4100] = 4029, [4101] = 4101, - [4102] = 4039, + [4102] = 4027, [4103] = 4103, - [4104] = 4084, - [4105] = 4084, - [4106] = 4006, - [4107] = 4082, - [4108] = 4043, - [4109] = 4109, - [4110] = 4110, + [4104] = 3744, + [4105] = 4105, + [4106] = 4106, + [4107] = 4107, + [4108] = 4108, + [4109] = 3674, + [4110] = 3674, [4111] = 4111, - [4112] = 4112, - [4113] = 3996, - [4114] = 4057, - [4115] = 4115, - [4116] = 4116, - [4117] = 3893, - [4118] = 4051, - [4119] = 3618, - [4120] = 4120, - [4121] = 4026, - [4122] = 4027, - [4123] = 1973, - [4124] = 2017, - [4125] = 1965, - [4126] = 1969, - [4127] = 2008, - [4128] = 2013, - [4129] = 4012, - [4130] = 3893, - [4131] = 4131, - [4132] = 4057, - [4133] = 3709, + [4112] = 4025, + [4113] = 4030, + [4114] = 3069, + [4115] = 4092, + [4116] = 4022, + [4117] = 4069, + [4118] = 4014, + [4119] = 4030, + [4120] = 1979, + [4121] = 4027, + [4122] = 4122, + [4123] = 4123, + [4124] = 4124, + [4125] = 1966, + [4126] = 1968, + [4127] = 1970, + [4128] = 1974, + [4129] = 1977, + [4130] = 4130, + [4131] = 1979, + [4132] = 4132, + [4133] = 4133, [4134] = 4134, [4135] = 4135, - [4136] = 3062, + [4136] = 4136, [4137] = 4137, - [4138] = 4060, - [4139] = 4139, - [4140] = 4140, - [4141] = 4066, + [4138] = 4025, + [4139] = 3616, + [4140] = 3744, + [4141] = 3764, [4142] = 4142, - [4143] = 3027, - [4144] = 4139, - [4145] = 4142, - [4146] = 4047, + [4143] = 4143, + [4144] = 4144, + [4145] = 4145, + [4146] = 4053, [4147] = 4147, - [4148] = 4016, - [4149] = 4149, + [4148] = 4148, + [4149] = 3042, [4150] = 4150, - [4151] = 4151, + [4151] = 4123, [4152] = 4152, - [4153] = 4137, - [4154] = 4152, - [4155] = 4054, - [4156] = 4056, - [4157] = 4151, + [4153] = 4153, + [4154] = 4154, + [4155] = 4155, + [4156] = 4156, + [4157] = 4157, [4158] = 4158, - [4159] = 4159, + [4159] = 4144, [4160] = 4160, [4161] = 4161, - [4162] = 4111, - [4163] = 3073, + [4162] = 4162, + [4163] = 4163, [4164] = 4164, - [4165] = 4038, - [4166] = 4137, - [4167] = 4167, - [4168] = 4168, - [4169] = 4151, + [4165] = 4165, + [4166] = 4144, + [4167] = 4101, + [4168] = 4154, + [4169] = 4122, [4170] = 4170, [4171] = 4171, [4172] = 4172, - [4173] = 4173, - [4174] = 4151, + [4173] = 4163, + [4174] = 4174, [4175] = 4175, [4176] = 4176, [4177] = 4177, - [4178] = 4160, - [4179] = 4179, - [4180] = 4180, - [4181] = 4181, - [4182] = 4151, + [4178] = 4133, + [4179] = 3065, + [4180] = 4170, + [4181] = 4172, + [4182] = 4154, [4183] = 4183, [4184] = 4184, - [4185] = 4031, - [4186] = 4151, + [4185] = 4185, + [4186] = 3068, [4187] = 4187, [4188] = 4188, - [4189] = 4139, - [4190] = 4190, - [4191] = 4140, - [4192] = 4151, - [4193] = 4142, - [4194] = 4194, - [4195] = 4195, - [4196] = 4151, - [4197] = 4152, - [4198] = 4159, - [4199] = 4151, - [4200] = 4103, - [4201] = 4201, - [4202] = 4151, - [4203] = 4151, + [4189] = 4189, + [4190] = 4175, + [4191] = 4191, + [4192] = 4172, + [4193] = 4154, + [4194] = 4132, + [4195] = 4189, + [4196] = 4196, + [4197] = 4096, + [4198] = 4183, + [4199] = 3033, + [4200] = 4200, + [4201] = 4147, + [4202] = 4157, + [4203] = 4203, [4204] = 4204, - [4205] = 4111, - [4206] = 4151, - [4207] = 4207, - [4208] = 3997, + [4205] = 4160, + [4206] = 4154, + [4207] = 4154, + [4208] = 4208, [4209] = 4209, - [4210] = 4052, - [4211] = 4053, - [4212] = 4212, - [4213] = 4151, - [4214] = 4177, - [4215] = 4151, - [4216] = 4195, - [4217] = 4151, - [4218] = 4172, + [4210] = 4187, + [4211] = 4191, + [4212] = 4154, + [4213] = 4170, + [4214] = 4187, + [4215] = 4215, + [4216] = 4209, + [4217] = 4135, + [4218] = 4218, [4219] = 4219, - [4220] = 4151, - [4221] = 4180, - [4222] = 4222, - [4223] = 4137, - [4224] = 4224, - [4225] = 4224, - [4226] = 4226, - [4227] = 4204, - [4228] = 4194, - [4229] = 4147, - [4230] = 4168, - [4231] = 4159, - [4232] = 4232, - [4233] = 4233, - [4234] = 4222, - [4235] = 4176, - [4236] = 4236, - [4237] = 4237, - [4238] = 4236, - [4239] = 4239, - [4240] = 4240, - [4241] = 4175, + [4220] = 4220, + [4221] = 4136, + [4222] = 4189, + [4223] = 4154, + [4224] = 4137, + [4225] = 4225, + [4226] = 4209, + [4227] = 4227, + [4228] = 4228, + [4229] = 4196, + [4230] = 4154, + [4231] = 4154, + [4232] = 4154, + [4233] = 4154, + [4234] = 3855, + [4235] = 4154, + [4236] = 4101, + [4237] = 4154, + [4238] = 4238, + [4239] = 4174, + [4240] = 4122, + [4241] = 4241, [4242] = 4242, - [4243] = 4140, + [4243] = 4145, [4244] = 4244, - [4245] = 4092, - [4246] = 4240, - [4247] = 4091, - [4248] = 4093, - [4249] = 4094, - [4250] = 4147, - [4251] = 4251, - [4252] = 4188, - [4253] = 4253, - [4254] = 4254, - [4255] = 4255, - [4256] = 4201, - [4257] = 3825, - [4258] = 4258, - [4259] = 3068, - [4260] = 4260, - [4261] = 4168, - [4262] = 4219, - [4263] = 4181, - [4264] = 4047, + [4245] = 4245, + [4246] = 4133, + [4247] = 4123, + [4248] = 4132, + [4249] = 4208, + [4250] = 4156, + [4251] = 4174, + [4252] = 4204, + [4253] = 4208, + [4254] = 4154, + [4255] = 4219, + [4256] = 4171, + [4257] = 4257, + [4258] = 4094, + [4259] = 4259, + [4260] = 4101, + [4261] = 4261, + [4262] = 4122, + [4263] = 4133, + [4264] = 4264, [4265] = 4265, - [4266] = 4180, - [4267] = 4267, - [4268] = 4268, - [4269] = 4054, - [4270] = 4270, + [4266] = 4266, + [4267] = 4043, + [4268] = 4123, + [4269] = 4132, + [4270] = 4183, [4271] = 4271, [4272] = 4272, - [4273] = 4273, - [4274] = 3997, - [4275] = 4237, - [4276] = 4159, + [4273] = 4094, + [4274] = 4274, + [4275] = 4275, + [4276] = 4276, [4277] = 4277, - [4278] = 4267, - [4279] = 4177, - [4280] = 4280, - [4281] = 4281, - [4282] = 4047, - [4283] = 4237, - [4284] = 4284, - [4285] = 4285, - [4286] = 4204, - [4287] = 4267, - [4288] = 4060, - [4289] = 4111, - [4290] = 4056, - [4291] = 4160, + [4278] = 4261, + [4279] = 4279, + [4280] = 4147, + [4281] = 4171, + [4282] = 4163, + [4283] = 4021, + [4284] = 4154, + [4285] = 4097, + [4286] = 4098, + [4287] = 4244, + [4288] = 4184, + [4289] = 4289, + [4290] = 4021, + [4291] = 4044, [4292] = 4292, - [4293] = 4293, + [4293] = 4103, [4294] = 4294, - [4295] = 4054, - [4296] = 4151, - [4297] = 4151, - [4298] = 4151, - [4299] = 4066, - [4300] = 4056, - [4301] = 4270, - [4302] = 4302, - [4303] = 4060, - [4304] = 4201, - [4305] = 4066, - [4306] = 4016, - [4307] = 4273, - [4308] = 4195, - [4309] = 4270, - [4310] = 4038, - [4311] = 4175, - [4312] = 4093, - [4313] = 4273, - [4314] = 4219, - [4315] = 4151, - [4316] = 4316, - [4317] = 4317, + [4295] = 4184, + [4296] = 4044, + [4297] = 4259, + [4298] = 4298, + [4299] = 4145, + [4300] = 4162, + [4301] = 4162, + [4302] = 4257, + [4303] = 4174, + [4304] = 4191, + [4305] = 4196, + [4306] = 4154, + [4307] = 4157, + [4308] = 4096, + [4309] = 4208, + [4310] = 4154, + [4311] = 4154, + [4312] = 4312, + [4313] = 4313, + [4314] = 4245, + [4315] = 4156, + [4316] = 4175, + [4317] = 4094, [4318] = 4318, - [4319] = 4244, + [4319] = 4272, [4320] = 4320, - [4321] = 4242, - [4322] = 4093, - [4323] = 4323, + [4321] = 4321, + [4322] = 4136, + [4323] = 4154, [4324] = 4324, [4325] = 4325, - [4326] = 4326, - [4327] = 4327, - [4328] = 4207, - [4329] = 4329, - [4330] = 4233, - [4331] = 4331, + [4326] = 4161, + [4327] = 4203, + [4328] = 4328, + [4329] = 4225, + [4330] = 4143, + [4331] = 4238, [4332] = 4332, - [4333] = 4212, - [4334] = 4334, - [4335] = 4251, - [4336] = 4158, - [4337] = 4326, - [4338] = 4167, - [4339] = 4184, - [4340] = 4207, - [4341] = 4341, - [4342] = 4212, - [4343] = 4094, - [4344] = 4344, - [4345] = 4179, - [4346] = 4253, - [4347] = 4226, - [4348] = 4254, - [4349] = 4226, - [4350] = 4255, - [4351] = 4351, - [4352] = 4171, - [4353] = 4179, - [4354] = 4354, - [4355] = 4355, - [4356] = 4135, - [4357] = 4357, - [4358] = 4358, - [4359] = 4135, + [4333] = 4241, + [4334] = 4274, + [4335] = 4277, + [4336] = 4265, + [4337] = 4276, + [4338] = 4338, + [4339] = 4339, + [4340] = 4148, + [4341] = 4150, + [4342] = 4152, + [4343] = 4153, + [4344] = 4161, + [4345] = 4165, + [4346] = 4176, + [4347] = 4177, + [4348] = 4242, + [4349] = 4265, + [4350] = 4266, + [4351] = 3292, + [4352] = 4277, + [4353] = 4279, + [4354] = 4318, + [4355] = 4165, + [4356] = 4228, + [4357] = 4176, + [4358] = 4177, + [4359] = 4276, [4360] = 4360, [4361] = 4361, - [4362] = 4362, - [4363] = 4363, - [4364] = 4332, + [4362] = 4361, + [4363] = 4325, + [4364] = 4364, [4365] = 4365, - [4366] = 4292, - [4367] = 4363, - [4368] = 4368, - [4369] = 4173, + [4366] = 4225, + [4367] = 4367, + [4368] = 4143, + [4369] = 4053, [4370] = 4370, - [4371] = 2995, - [4372] = 4183, - [4373] = 4158, - [4374] = 4172, - [4375] = 4167, - [4376] = 4327, - [4377] = 4370, - [4378] = 4258, - [4379] = 4184, - [4380] = 4326, - [4381] = 4232, - [4382] = 4260, - [4383] = 4325, - [4384] = 4325, - [4385] = 4207, - [4386] = 4386, - [4387] = 4212, - [4388] = 4292, + [4371] = 4371, + [4372] = 4238, + [4373] = 4373, + [4374] = 4097, + [4375] = 4375, + [4376] = 4376, + [4377] = 4325, + [4378] = 4241, + [4379] = 4379, + [4380] = 4380, + [4381] = 4367, + [4382] = 4218, + [4383] = 4383, + [4384] = 4384, + [4385] = 4385, + [4386] = 4098, + [4387] = 4274, + [4388] = 4388, [4389] = 4389, - [4390] = 4226, - [4391] = 4171, - [4392] = 4392, - [4393] = 4173, - [4394] = 4233, + [4390] = 4390, + [4391] = 4276, + [4392] = 4385, + [4393] = 4225, + [4394] = 4394, [4395] = 4395, - [4396] = 4239, - [4397] = 4242, - [4398] = 4398, - [4399] = 4244, - [4400] = 4183, - [4401] = 4251, - [4402] = 4344, - [4403] = 4253, - [4404] = 4332, - [4405] = 4232, - [4406] = 4406, - [4407] = 4255, - [4408] = 4260, - [4409] = 4253, - [4410] = 4254, - [4411] = 4411, - [4412] = 4244, - [4413] = 4271, - [4414] = 4414, - [4415] = 4363, - [4416] = 4271, - [4417] = 4395, - [4418] = 4302, - [4419] = 4419, - [4420] = 4420, - [4421] = 4341, - [4422] = 4422, - [4423] = 4406, - [4424] = 4370, - [4425] = 4363, - [4426] = 4358, - [4427] = 4354, - [4428] = 4091, - [4429] = 3264, - [4430] = 4331, - [4431] = 4332, - [4432] = 4251, - [4433] = 4355, - [4434] = 4434, - [4435] = 4355, - [4436] = 4158, - [4437] = 4437, - [4438] = 4438, - [4439] = 4233, - [4440] = 4331, - [4441] = 4239, - [4442] = 4442, - [4443] = 4167, + [4396] = 4396, + [4397] = 4397, + [4398] = 4328, + [4399] = 4399, + [4400] = 4367, + [4401] = 4401, + [4402] = 4143, + [4403] = 4135, + [4404] = 4404, + [4405] = 4405, + [4406] = 4238, + [4407] = 4385, + [4408] = 4408, + [4409] = 4409, + [4410] = 4136, + [4411] = 4241, + [4412] = 4153, + [4413] = 4361, + [4414] = 4227, + [4415] = 4415, + [4416] = 4318, + [4417] = 4218, + [4418] = 4242, + [4419] = 4265, + [4420] = 4384, + [4421] = 4421, + [4422] = 4266, + [4423] = 4423, + [4424] = 4424, + [4425] = 4425, + [4426] = 3026, + [4427] = 4427, + [4428] = 4219, + [4429] = 4277, + [4430] = 4220, + [4431] = 4320, + [4432] = 4148, + [4433] = 4150, + [4434] = 4152, + [4435] = 4153, + [4436] = 4271, + [4437] = 4383, + [4438] = 4328, + [4439] = 4423, + [4440] = 4219, + [4441] = 4279, + [4442] = 4220, + [4443] = 4394, [4444] = 4444, - [4445] = 4355, - [4446] = 4446, - [4447] = 4317, - [4448] = 4285, - [4449] = 4449, - [4450] = 4135, - [4451] = 4171, - [4452] = 4173, - [4453] = 4183, - [4454] = 4454, - [4455] = 4232, - [4456] = 4260, - [4457] = 4331, + [4445] = 4324, + [4446] = 4161, + [4447] = 4165, + [4448] = 4176, + [4449] = 4177, + [4450] = 4421, + [4451] = 4451, + [4452] = 4360, + [4453] = 4453, + [4454] = 4415, + [4455] = 4274, + [4456] = 4266, + [4457] = 4324, [4458] = 4458, - [4459] = 4294, - [4460] = 4460, - [4461] = 4172, - [4462] = 4271, - [4463] = 4239, - [4464] = 4464, - [4465] = 4031, - [4466] = 4406, - [4467] = 4334, - [4468] = 4468, - [4469] = 4469, - [4470] = 4323, - [4471] = 4292, - [4472] = 4472, - [4473] = 4255, - [4474] = 4179, - [4475] = 4052, - [4476] = 3000, - [4477] = 4053, - [4478] = 4184, - [4479] = 4317, - [4480] = 4242, - [4481] = 4254, - [4482] = 4482, - [4483] = 4483, - [4484] = 4484, + [4459] = 4228, + [4460] = 4279, + [4461] = 4461, + [4462] = 4462, + [4463] = 4394, + [4464] = 4425, + [4465] = 4465, + [4466] = 4466, + [4467] = 4242, + [4468] = 4425, + [4469] = 4380, + [4470] = 4394, + [4471] = 4148, + [4472] = 4424, + [4473] = 4218, + [4474] = 4137, + [4475] = 3027, + [4476] = 4476, + [4477] = 4318, + [4478] = 4453, + [4479] = 4479, + [4480] = 4150, + [4481] = 4383, + [4482] = 4220, + [4483] = 4152, + [4484] = 4383, [4485] = 4485, - [4486] = 4486, - [4487] = 4487, + [4486] = 4228, + [4487] = 4328, [4488] = 4488, - [4489] = 4489, - [4490] = 4482, - [4491] = 4491, - [4492] = 4492, - [4493] = 4493, + [4489] = 4325, + [4490] = 4490, + [4491] = 4397, + [4492] = 4401, + [4493] = 4444, [4494] = 4494, [4495] = 4495, - [4496] = 4329, + [4496] = 4496, [4497] = 4497, - [4498] = 4498, + [4498] = 3027, [4499] = 4499, - [4500] = 4092, + [4500] = 4500, [4501] = 4501, [4502] = 4502, [4503] = 4503, - [4504] = 4492, - [4505] = 4493, + [4504] = 4504, + [4505] = 4505, [4506] = 4506, [4507] = 4507, [4508] = 4508, [4509] = 4509, - [4510] = 4460, - [4511] = 4464, - [4512] = 4318, + [4510] = 4510, + [4511] = 4511, + [4512] = 4512, [4513] = 4513, [4514] = 4514, [4515] = 4515, - [4516] = 4506, - [4517] = 4517, + [4516] = 4516, + [4517] = 4514, [4518] = 4518, [4519] = 4519, - [4520] = 4507, + [4520] = 4520, [4521] = 4521, - [4522] = 4522, - [4523] = 4523, + [4522] = 4497, + [4523] = 4500, [4524] = 4524, - [4525] = 4525, + [4525] = 4507, [4526] = 4526, - [4527] = 4483, - [4528] = 4485, - [4529] = 4486, + [4527] = 4511, + [4528] = 4528, + [4529] = 4529, [4530] = 4530, - [4531] = 4491, - [4532] = 4494, - [4533] = 4502, + [4531] = 4531, + [4532] = 4532, + [4533] = 4530, [4534] = 4534, [4535] = 4535, [4536] = 4536, [4537] = 4537, - [4538] = 439, - [4539] = 4103, - [4540] = 4540, + [4538] = 4538, + [4539] = 4535, + [4540] = 4536, [4541] = 4541, - [4542] = 4534, - [4543] = 4543, - [4544] = 4508, + [4542] = 4521, + [4543] = 4537, + [4544] = 4544, [4545] = 4545, - [4546] = 4495, - [4547] = 4547, - [4548] = 4548, + [4546] = 4538, + [4547] = 4532, + [4548] = 4541, [4549] = 4549, [4550] = 4550, - [4551] = 4487, - [4552] = 4482, - [4553] = 4120, + [4551] = 4544, + [4552] = 4545, + [4553] = 4553, [4554] = 4554, [4555] = 4555, - [4556] = 4092, + [4556] = 4556, [4557] = 4557, [4558] = 4558, - [4559] = 4489, - [4560] = 4545, - [4561] = 4523, - [4562] = 4555, - [4563] = 4563, + [4559] = 4559, + [4560] = 4499, + [4561] = 4504, + [4562] = 4505, + [4563] = 4520, [4564] = 4564, - [4565] = 4565, - [4566] = 4566, - [4567] = 4567, + [4565] = 4526, + [4566] = 4554, + [4567] = 4515, [4568] = 4568, [4569] = 4569, [4570] = 4570, - [4571] = 4460, - [4572] = 4525, - [4573] = 4464, - [4574] = 4318, - [4575] = 4575, - [4576] = 4563, - [4577] = 4547, + [4571] = 4571, + [4572] = 4572, + [4573] = 4461, + [4574] = 4574, + [4575] = 4516, + [4576] = 4060, + [4577] = 4577, [4578] = 4578, - [4579] = 4548, - [4580] = 4570, + [4579] = 4557, + [4580] = 4549, [4581] = 4581, - [4582] = 4578, - [4583] = 4549, - [4584] = 4584, - [4585] = 4550, - [4586] = 4586, - [4587] = 4587, - [4588] = 4584, - [4589] = 4589, - [4590] = 436, - [4591] = 4591, - [4592] = 4586, - [4593] = 4593, + [4582] = 4550, + [4583] = 4559, + [4584] = 4569, + [4585] = 4499, + [4586] = 4504, + [4587] = 4505, + [4588] = 4588, + [4589] = 4520, + [4590] = 4590, + [4591] = 4526, + [4592] = 4501, + [4593] = 4570, [4594] = 4594, - [4595] = 4595, - [4596] = 4596, + [4595] = 4530, + [4596] = 4496, [4597] = 4597, - [4598] = 2995, + [4598] = 4588, [4599] = 4599, - [4600] = 4540, - [4601] = 4601, - [4602] = 4581, - [4603] = 4603, - [4604] = 4604, - [4605] = 4586, + [4600] = 4494, + [4601] = 4571, + [4602] = 4602, + [4603] = 4518, + [4604] = 4572, + [4605] = 4494, [4606] = 4606, [4607] = 4607, - [4608] = 4595, + [4608] = 4608, [4609] = 4609, - [4610] = 4610, - [4611] = 4103, - [4612] = 4609, - [4613] = 4536, - [4614] = 4587, - [4615] = 4554, - [4616] = 4487, - [4617] = 4513, - [4618] = 4570, - [4619] = 4489, - [4620] = 4514, - [4621] = 4521, - [4622] = 4515, - [4623] = 4587, - [4624] = 4517, - [4625] = 4519, - [4626] = 4626, - [4627] = 4497, - [4628] = 4610, - [4629] = 4534, - [4630] = 4630, - [4631] = 4554, - [4632] = 4115, - [4633] = 4564, - [4634] = 4570, - [4635] = 4589, - [4636] = 4636, - [4637] = 4570, - [4638] = 4578, - [4639] = 4584, - [4640] = 4586, - [4641] = 4587, - [4642] = 4642, - [4643] = 4589, - [4644] = 4437, - [4645] = 4578, - [4646] = 4593, - [4647] = 4594, - [4648] = 4648, - [4649] = 4596, - [4650] = 4578, - [4651] = 4651, - [4652] = 4581, - [4653] = 4514, - [4654] = 4604, + [4610] = 4569, + [4611] = 4570, + [4612] = 4612, + [4613] = 4571, + [4614] = 4574, + [4615] = 4572, + [4616] = 4521, + [4617] = 4506, + [4618] = 4532, + [4619] = 4574, + [4620] = 4549, + [4621] = 4550, + [4622] = 4558, + [4623] = 4568, + [4624] = 4581, + [4625] = 4625, + [4626] = 4008, + [4627] = 4627, + [4628] = 4577, + [4629] = 4495, + [4630] = 4502, + [4631] = 4497, + [4632] = 4500, + [4633] = 4507, + [4634] = 4634, + [4635] = 4511, + [4636] = 4594, + [4637] = 4637, + [4638] = 4638, + [4639] = 4558, + [4640] = 4554, + [4641] = 4568, + [4642] = 4577, + [4643] = 3266, + [4644] = 4588, + [4645] = 4645, + [4646] = 4501, + [4647] = 4647, + [4648] = 4594, + [4649] = 4496, + [4650] = 4597, + [4651] = 4010, + [4652] = 4556, + [4653] = 4494, + [4654] = 4654, [4655] = 4606, [4656] = 4607, - [4657] = 4657, - [4658] = 4604, - [4659] = 4442, - [4660] = 4565, - [4661] = 4661, - [4662] = 4566, - [4663] = 4663, - [4664] = 4570, - [4665] = 4578, - [4666] = 4584, - [4667] = 4526, - [4668] = 4584, - [4669] = 4586, + [4657] = 4581, + [4658] = 4599, + [4659] = 4608, + [4660] = 4535, + [4661] = 4521, + [4662] = 4662, + [4663] = 4532, + [4664] = 4549, + [4665] = 4550, + [4666] = 4536, + [4667] = 4667, + [4668] = 4668, + [4669] = 4602, [4670] = 4670, - [4671] = 4587, - [4672] = 4567, - [4673] = 4673, - [4674] = 4589, - [4675] = 4515, - [4676] = 4523, - [4677] = 4593, - [4678] = 4594, - [4679] = 4586, - [4680] = 4596, - [4681] = 4681, - [4682] = 4575, - [4683] = 4581, - [4684] = 4604, - [4685] = 4555, + [4671] = 4671, + [4672] = 4672, + [4673] = 4588, + [4674] = 4537, + [4675] = 4501, + [4676] = 4458, + [4677] = 4594, + [4678] = 4678, + [4679] = 4496, + [4680] = 4680, + [4681] = 4597, + [4682] = 4494, + [4683] = 4654, + [4684] = 4519, + [4685] = 4685, [4686] = 4606, [4687] = 4607, [4688] = 4688, - [4689] = 4483, + [4689] = 4608, [4690] = 4690, - [4691] = 4103, - [4692] = 4587, - [4693] = 4570, + [4691] = 4647, + [4692] = 4692, + [4693] = 4521, [4694] = 4694, - [4695] = 4578, - [4696] = 4499, - [4697] = 4584, - [4698] = 4586, - [4699] = 4587, + [4695] = 4532, + [4696] = 4549, + [4697] = 4550, + [4698] = 440, + [4699] = 4538, [4700] = 4700, - [4701] = 4589, - [4702] = 4593, - [4703] = 4594, - [4704] = 4513, - [4705] = 4521, - [4706] = 4596, - [4707] = 4707, - [4708] = 4591, - [4709] = 4581, - [4710] = 4604, - [4711] = 4599, + [4701] = 4496, + [4702] = 4702, + [4703] = 4692, + [4704] = 4588, + [4705] = 4694, + [4706] = 4501, + [4707] = 4594, + [4708] = 4496, + [4709] = 4541, + [4710] = 4597, + [4711] = 4494, [4712] = 4606, [4713] = 4607, - [4714] = 4563, - [4715] = 4715, - [4716] = 4485, - [4717] = 4717, - [4718] = 4518, - [4719] = 4570, - [4720] = 4578, - [4721] = 4584, - [4722] = 4586, - [4723] = 4518, - [4724] = 4587, - [4725] = 4593, - [4726] = 4589, - [4727] = 4589, - [4728] = 4501, - [4729] = 4594, - [4730] = 4730, - [4731] = 4593, - [4732] = 4594, - [4733] = 4596, - [4734] = 4581, - [4735] = 4486, - [4736] = 4604, - [4737] = 4596, + [4714] = 439, + [4715] = 4608, + [4716] = 4662, + [4717] = 4521, + [4718] = 4103, + [4719] = 4532, + [4720] = 4549, + [4721] = 4550, + [4722] = 4544, + [4723] = 4597, + [4724] = 4545, + [4725] = 4588, + [4726] = 4726, + [4727] = 4588, + [4728] = 4728, + [4729] = 4729, + [4730] = 4501, + [4731] = 4594, + [4732] = 4496, + [4733] = 4597, + [4734] = 4734, + [4735] = 4494, + [4736] = 4736, + [4737] = 4737, [4738] = 4606, [4739] = 4607, [4740] = 4740, - [4741] = 4564, - [4742] = 4742, - [4743] = 4586, - [4744] = 4565, - [4745] = 4593, - [4746] = 4594, - [4747] = 4740, - [4748] = 4596, - [4749] = 4566, - [4750] = 4567, - [4751] = 4581, - [4752] = 4604, - [4753] = 4491, - [4754] = 4550, - [4755] = 4607, - [4756] = 4464, - [4757] = 4757, - [4758] = 4575, - [4759] = 4514, - [4760] = 4487, - [4761] = 4593, - [4762] = 4594, - [4763] = 4596, - [4764] = 4764, - [4765] = 4540, - [4766] = 4581, - [4767] = 4604, - [4768] = 4606, - [4769] = 4607, - [4770] = 4569, - [4771] = 4694, - [4772] = 4772, - [4773] = 4593, - [4774] = 4594, - [4775] = 4593, - [4776] = 4594, - [4777] = 4492, - [4778] = 4596, - [4779] = 4494, - [4780] = 4581, - [4781] = 4596, - [4782] = 4604, - [4783] = 4593, - [4784] = 4606, - [4785] = 4607, - [4786] = 4515, - [4787] = 4787, - [4788] = 4568, - [4789] = 4789, - [4790] = 4420, - [4791] = 4596, - [4792] = 4792, - [4793] = 4606, - [4794] = 4607, + [4741] = 4608, + [4742] = 4729, + [4743] = 4461, + [4744] = 4744, + [4745] = 4521, + [4746] = 4746, + [4747] = 4532, + [4748] = 4748, + [4749] = 4549, + [4750] = 4550, + [4751] = 4728, + [4752] = 4752, + [4753] = 4753, + [4754] = 4754, + [4755] = 4606, + [4756] = 4043, + [4757] = 4607, + [4758] = 4496, + [4759] = 4759, + [4760] = 4606, + [4761] = 4607, + [4762] = 4762, + [4763] = 4608, + [4764] = 4521, + [4765] = 4532, + [4766] = 4608, + [4767] = 4549, + [4768] = 4550, + [4769] = 4769, + [4770] = 435, + [4771] = 4771, + [4772] = 4606, + [4773] = 4607, + [4774] = 4608, + [4775] = 4775, + [4776] = 4776, + [4777] = 4521, + [4778] = 4017, + [4779] = 4532, + [4780] = 4549, + [4781] = 4550, + [4782] = 4497, + [4783] = 4588, + [4784] = 4734, + [4785] = 4501, + [4786] = 4606, + [4787] = 4607, + [4788] = 4788, + [4789] = 4608, + [4790] = 4521, + [4791] = 4532, + [4792] = 4549, + [4793] = 4550, + [4794] = 4500, [4795] = 4795, - [4796] = 4606, - [4797] = 4797, - [4798] = 4594, - [4799] = 4799, - [4800] = 4800, - [4801] = 4502, - [4802] = 4040, - [4803] = 4046, - [4804] = 4589, - [4805] = 435, - [4806] = 4048, - [4807] = 4517, - [4808] = 4764, - [4809] = 4493, - [4810] = 4810, - [4811] = 4811, - [4812] = 4651, - [4813] = 4810, - [4814] = 4540, - [4815] = 4607, - [4816] = 3258, - [4817] = 4519, - [4818] = 4484, - [4819] = 4819, - [4820] = 3261, - [4821] = 4821, - [4822] = 4822, - [4823] = 4823, - [4824] = 4792, - [4825] = 4517, - [4826] = 4581, - [4827] = 4530, - [4828] = 4604, - [4829] = 2995, - [4830] = 4795, - [4831] = 4831, - [4832] = 4495, - [4833] = 4606, - [4834] = 4607, - [4835] = 4835, - [4836] = 4797, - [4837] = 437, - [4838] = 4838, - [4839] = 4839, - [4840] = 4558, - [4841] = 4603, - [4842] = 4842, - [4843] = 4843, - [4844] = 4842, + [4796] = 4594, + [4797] = 4496, + [4798] = 4608, + [4799] = 4549, + [4800] = 4550, + [4801] = 4737, + [4802] = 4802, + [4803] = 4688, + [4804] = 4744, + [4805] = 4597, + [4806] = 4806, + [4807] = 4752, + [4808] = 4808, + [4809] = 4809, + [4810] = 4397, + [4811] = 4753, + [4812] = 4401, + [4813] = 4444, + [4814] = 4507, + [4815] = 4554, + [4816] = 4494, + [4817] = 4365, + [4818] = 4404, + [4819] = 4808, + [4820] = 4820, + [4821] = 4627, + [4822] = 4809, + [4823] = 4495, + [4824] = 4824, + [4825] = 4461, + [4826] = 4599, + [4827] = 4602, + [4828] = 4828, + [4829] = 4508, + [4830] = 4511, + [4831] = 3279, + [4832] = 4647, + [4833] = 4594, + [4834] = 4528, + [4835] = 4612, + [4836] = 4627, + [4837] = 4597, + [4838] = 4564, + [4839] = 4806, + [4840] = 4840, + [4841] = 3065, + [4842] = 4678, + [4843] = 4606, + [4844] = 4607, [4845] = 4845, - [4846] = 4688, - [4847] = 4497, - [4848] = 4651, - [4849] = 4810, - [4850] = 4850, + [4846] = 4846, + [4847] = 4847, + [4848] = 4848, + [4849] = 4608, + [4850] = 4510, [4851] = 4851, - [4852] = 4360, - [4853] = 4484, - [4854] = 4843, - [4855] = 4581, - [4856] = 4596, - [4857] = 4688, - [4858] = 4858, - [4859] = 4522, - [4860] = 4822, - [4861] = 4604, - [4862] = 4595, - [4863] = 4530, - [4864] = 4606, - [4865] = 4609, - [4866] = 4831, - [4867] = 4607, - [4868] = 4868, + [4852] = 4555, + [4853] = 4853, + [4854] = 4854, + [4855] = 4401, + [4856] = 4512, + [4857] = 4857, + [4858] = 4612, + [4859] = 4859, + [4860] = 4860, + [4861] = 4861, + [4862] = 4534, + [4863] = 4578, + [4864] = 4671, + [4865] = 4590, + [4866] = 4528, + [4867] = 4806, + [4868] = 4103, [4869] = 4869, - [4870] = 4648, - [4871] = 4610, - [4872] = 4872, - [4873] = 4707, - [4874] = 4469, - [4875] = 4414, - [4876] = 4506, - [4877] = 4843, - [4878] = 4835, - [4879] = 4879, - [4880] = 4534, - [4881] = 4507, - [4882] = 4882, - [4883] = 4883, - [4884] = 4595, - [4885] = 4609, - [4886] = 3285, - [4887] = 4610, - [4888] = 4508, - [4889] = 4715, - [4890] = 4879, - [4891] = 4519, - [4892] = 4892, - [4893] = 4845, - [4894] = 4845, - [4895] = 4488, - [4896] = 4896, - [4897] = 4799, - [4898] = 4795, - [4899] = 4899, - [4900] = 4900, - [4901] = 4489, - [4902] = 4902, - [4903] = 4903, - [4904] = 4799, - [4905] = 4568, - [4906] = 4906, - [4907] = 4899, - [4908] = 4900, - [4909] = 3062, - [4910] = 4524, - [4911] = 4902, - [4912] = 4789, - [4913] = 4742, - [4914] = 438, - [4915] = 4903, - [4916] = 4797, - [4917] = 4569, - [4918] = 4869, - [4919] = 4093, - [4920] = 4014, - [4921] = 4017, - [4922] = 4018, - [4923] = 4923, - [4924] = 4899, - [4925] = 4584, - [4926] = 4545, - [4927] = 4927, - [4928] = 4525, - [4929] = 4929, - [4930] = 4103, - [4931] = 4931, - [4932] = 4900, - [4933] = 4499, - [4934] = 4717, - [4935] = 4935, - [4936] = 4936, - [4937] = 4879, - [4938] = 4822, - [4939] = 4902, - [4940] = 4092, - [4941] = 4717, - [4942] = 4903, - [4943] = 4838, - [4944] = 4923, - [4945] = 4537, - [4946] = 4787, - [4947] = 4360, - [4948] = 4360, - [4949] = 4811, - [4950] = 4787, - [4951] = 4811, - [4952] = 4819, - [4953] = 4819, - [4954] = 4850, - [4955] = 4858, - [4956] = 4547, - [4957] = 4850, - [4958] = 4868, - [4959] = 4858, - [4960] = 4548, - [4961] = 4892, - [4962] = 4831, - [4963] = 4868, - [4964] = 4549, - [4965] = 4501, - [4966] = 4092, - [4967] = 4892, - [4968] = 4968, - [4969] = 4526, - [4970] = 4606, - [4971] = 4971, - [4972] = 4972, - [4973] = 4973, - [4974] = 4974, - [4975] = 4975, - [4976] = 4150, + [4870] = 4678, + [4871] = 4824, + [4872] = 4612, + [4873] = 4634, + [4874] = 4637, + [4875] = 3299, + [4876] = 4490, + [4877] = 4877, + [4878] = 4878, + [4879] = 4700, + [4880] = 4762, + [4881] = 4667, + [4882] = 4503, + [4883] = 4854, + [4884] = 4884, + [4885] = 4885, + [4886] = 4886, + [4887] = 4519, + [4888] = 4888, + [4889] = 4606, + [4890] = 4607, + [4891] = 4521, + [4892] = 4884, + [4893] = 4532, + [4894] = 4894, + [4895] = 4549, + [4896] = 4550, + [4897] = 4808, + [4898] = 4809, + [4899] = 4861, + [4900] = 4609, + [4901] = 4106, + [4902] = 4107, + [4903] = 4108, + [4904] = 4103, + [4905] = 4558, + [4906] = 4568, + [4907] = 4625, + [4908] = 4908, + [4909] = 4581, + [4910] = 436, + [4911] = 438, + [4912] = 4654, + [4913] = 4043, + [4914] = 3027, + [4915] = 4043, + [4916] = 4495, + [4917] = 4692, + [4918] = 4894, + [4919] = 4608, + [4920] = 4728, + [4921] = 4503, + [4922] = 4501, + [4923] = 4734, + [4924] = 4737, + [4925] = 4925, + [4926] = 4136, + [4927] = 4134, + [4928] = 4479, + [4929] = 4744, + [4930] = 4485, + [4931] = 4752, + [4932] = 4845, + [4933] = 4557, + [4934] = 4740, + [4935] = 4609, + [4936] = 4513, + [4937] = 4937, + [4938] = 4043, + [4939] = 4846, + [4940] = 4690, + [4941] = 4590, + [4942] = 4502, + [4943] = 4564, + [4944] = 4559, + [4945] = 4847, + [4946] = 4824, + [4947] = 4847, + [4948] = 4506, + [4949] = 4925, + [4950] = 4508, + [4951] = 4877, + [4952] = 4502, + [4953] = 4510, + [4954] = 4512, + [4955] = 4775, + [4956] = 4886, + [4957] = 4908, + [4958] = 4465, + [4959] = 4861, + [4960] = 4534, + [4961] = 4513, + [4962] = 4578, + [4963] = 4851, + [4964] = 4514, + [4965] = 4828, + [4966] = 4966, + [4967] = 4634, + [4968] = 4637, + [4969] = 4515, + [4970] = 4516, + [4971] = 4490, + [4972] = 4667, + [4973] = 4103, + [4974] = 4518, + [4975] = 4700, + [4976] = 4976, [4977] = 4977, - [4978] = 4978, - [4979] = 4927, - [4980] = 4977, - [4981] = 4981, + [4978] = 4762, + [4979] = 4979, + [4980] = 4980, + [4981] = 4164, [4982] = 4982, [4983] = 4983, - [4984] = 4977, + [4984] = 4984, [4985] = 4985, - [4986] = 4986, + [4986] = 4985, [4987] = 4987, [4988] = 4988, - [4989] = 4989, - [4990] = 4986, - [4991] = 4882, + [4989] = 4983, + [4990] = 4983, + [4991] = 4991, [4992] = 4992, [4993] = 4993, - [4994] = 4977, - [4995] = 4987, + [4994] = 4983, + [4995] = 4995, [4996] = 4996, - [4997] = 4977, - [4998] = 4998, - [4999] = 4986, - [5000] = 5000, - [5001] = 3062, + [4997] = 4997, + [4998] = 4983, + [4999] = 4999, + [5000] = 4983, + [5001] = 5001, [5002] = 5002, - [5003] = 4981, - [5004] = 4011, - [5005] = 4998, + [5003] = 5003, + [5004] = 5004, + [5005] = 5005, [5006] = 5006, [5007] = 5007, - [5008] = 5008, - [5009] = 4935, - [5010] = 5010, - [5011] = 4982, - [5012] = 3027, - [5013] = 5013, + [5008] = 4983, + [5009] = 3042, + [5010] = 4983, + [5011] = 5011, + [5012] = 5004, + [5013] = 4164, [5014] = 5014, - [5015] = 4998, + [5015] = 5015, [5016] = 5016, - [5017] = 4986, + [5017] = 4996, [5018] = 5018, - [5019] = 5019, - [5020] = 4987, - [5021] = 5016, - [5022] = 5019, - [5023] = 4730, + [5019] = 5011, + [5020] = 5020, + [5021] = 5021, + [5022] = 4984, + [5023] = 3065, [5024] = 5024, - [5025] = 4985, + [5025] = 5025, [5026] = 5026, - [5027] = 4982, + [5027] = 5027, [5028] = 5028, - [5029] = 5029, - [5030] = 4977, + [5029] = 4983, + [5030] = 5030, [5031] = 5031, - [5032] = 3073, + [5032] = 5011, [5033] = 5033, [5034] = 5034, [5035] = 5035, - [5036] = 5036, - [5037] = 5007, + [5036] = 5011, + [5037] = 5037, [5038] = 5038, [5039] = 5039, - [5040] = 4987, + [5040] = 4991, [5041] = 5041, - [5042] = 3073, - [5043] = 4150, + [5042] = 5042, + [5043] = 4996, [5044] = 5044, - [5045] = 5045, - [5046] = 4986, - [5047] = 5047, + [5045] = 4996, + [5046] = 5025, + [5047] = 3033, [5048] = 5048, - [5049] = 5014, + [5049] = 5031, [5050] = 5050, - [5051] = 5010, + [5051] = 4995, [5052] = 5052, - [5053] = 5053, + [5053] = 5030, [5054] = 5054, - [5055] = 5055, - [5056] = 5056, - [5057] = 5041, + [5055] = 4748, + [5056] = 5042, + [5057] = 5004, [5058] = 5058, [5059] = 5059, - [5060] = 4987, - [5061] = 4977, + [5060] = 5060, + [5061] = 5027, [5062] = 5062, - [5063] = 4981, - [5064] = 5016, - [5065] = 5019, - [5066] = 5041, - [5067] = 5024, - [5068] = 4977, - [5069] = 4977, - [5070] = 4977, - [5071] = 4977, - [5072] = 4977, - [5073] = 4977, - [5074] = 4977, + [5063] = 5001, + [5064] = 5003, + [5065] = 5042, + [5066] = 5066, + [5067] = 4983, + [5068] = 4983, + [5069] = 4983, + [5070] = 4983, + [5071] = 4983, + [5072] = 4983, + [5073] = 4983, + [5074] = 5074, [5075] = 5075, - [5076] = 5026, + [5076] = 5011, [5077] = 5077, [5078] = 5078, - [5079] = 5079, - [5080] = 5052, - [5081] = 4982, - [5082] = 5082, - [5083] = 4977, - [5084] = 4977, - [5085] = 5033, - [5086] = 5086, - [5087] = 4150, - [5088] = 4987, + [5079] = 5035, + [5080] = 5041, + [5081] = 5042, + [5082] = 5021, + [5083] = 5048, + [5084] = 4996, + [5085] = 5050, + [5086] = 4995, + [5087] = 5050, + [5088] = 5054, [5089] = 5089, - [5090] = 5036, - [5091] = 5048, - [5092] = 5092, - [5093] = 5014, - [5094] = 5050, - [5095] = 5095, - [5096] = 5052, - [5097] = 5053, - [5098] = 5024, - [5099] = 5056, - [5100] = 5058, + [5090] = 5058, + [5091] = 3068, + [5092] = 5060, + [5093] = 5027, + [5094] = 5094, + [5095] = 5066, + [5096] = 5096, + [5097] = 5097, + [5098] = 4983, + [5099] = 5042, + [5100] = 5042, [5101] = 5101, - [5102] = 5045, - [5103] = 5079, - [5104] = 4977, - [5105] = 5105, - [5106] = 5038, - [5107] = 4977, - [5108] = 5108, - [5109] = 5109, - [5110] = 5110, - [5111] = 5111, - [5112] = 5086, - [5113] = 4986, - [5114] = 5114, - [5115] = 5114, - [5116] = 4986, - [5117] = 5117, - [5118] = 4993, + [5102] = 5102, + [5103] = 5103, + [5104] = 4056, + [5105] = 4999, + [5106] = 3068, + [5107] = 5107, + [5108] = 4983, + [5109] = 5054, + [5110] = 5002, + [5111] = 4164, + [5112] = 5112, + [5113] = 5113, + [5114] = 5038, + [5115] = 5115, + [5116] = 4996, + [5117] = 5011, + [5118] = 3042, [5119] = 5119, - [5120] = 5007, - [5121] = 4978, - [5122] = 5008, - [5123] = 5123, + [5120] = 5120, + [5121] = 5121, + [5122] = 5122, + [5123] = 5115, [5124] = 5124, - [5125] = 4978, + [5125] = 3033, [5126] = 5126, - [5127] = 5127, - [5128] = 5008, - [5129] = 5129, - [5130] = 4985, - [5131] = 3068, - [5132] = 5033, - [5133] = 4131, - [5134] = 5053, + [5127] = 5028, + [5128] = 5128, + [5129] = 5003, + [5130] = 5130, + [5131] = 5131, + [5132] = 5028, + [5133] = 5115, + [5134] = 5134, [5135] = 5135, - [5136] = 5010, - [5137] = 4977, - [5138] = 5138, - [5139] = 5110, - [5140] = 5092, - [5141] = 5056, - [5142] = 5124, - [5143] = 4982, - [5144] = 5129, - [5145] = 5145, - [5146] = 5146, - [5147] = 4981, - [5148] = 4971, + [5136] = 5136, + [5137] = 4983, + [5138] = 454, + [5139] = 5139, + [5140] = 5062, + [5141] = 5135, + [5142] = 5135, + [5143] = 4999, + [5144] = 5144, + [5145] = 5002, + [5146] = 5060, + [5147] = 5058, + [5148] = 4966, [5149] = 5149, - [5150] = 5082, - [5151] = 5151, - [5152] = 5152, + [5150] = 5015, + [5151] = 5004, + [5152] = 4976, [5153] = 5153, - [5154] = 5110, - [5155] = 5155, - [5156] = 5124, - [5157] = 4975, - [5158] = 5050, - [5159] = 4971, - [5160] = 5160, - [5161] = 454, - [5162] = 4977, - [5163] = 5163, - [5164] = 4985, - [5165] = 5110, - [5166] = 5048, - [5167] = 4988, - [5168] = 4988, - [5169] = 5124, - [5170] = 4989, - [5171] = 5114, - [5172] = 5172, - [5173] = 5000, - [5174] = 5058, - [5175] = 4986, - [5176] = 3027, - [5177] = 5047, - [5178] = 5055, - [5179] = 5039, - [5180] = 5075, - [5181] = 3068, - [5182] = 5182, - [5183] = 4989, - [5184] = 4982, - [5185] = 5185, - [5186] = 5039, - [5187] = 5187, + [5154] = 5144, + [5155] = 5074, + [5156] = 5015, + [5157] = 5096, + [5158] = 4985, + [5159] = 5103, + [5160] = 5096, + [5161] = 5161, + [5162] = 5153, + [5163] = 4999, + [5164] = 5002, + [5165] = 4996, + [5166] = 5066, + [5167] = 5074, + [5168] = 5021, + [5169] = 5103, + [5170] = 4038, + [5171] = 5033, + [5172] = 4983, + [5173] = 5030, + [5174] = 5174, + [5175] = 5001, + [5176] = 5028, + [5177] = 5039, + [5178] = 5059, + [5179] = 4524, + [5180] = 5174, + [5181] = 5048, + [5182] = 4996, + [5183] = 5119, + [5184] = 5184, + [5185] = 5131, + [5186] = 5007, + [5187] = 5033, [5188] = 5188, - [5189] = 5189, + [5189] = 5035, [5190] = 5190, - [5191] = 5191, - [5192] = 5192, + [5191] = 4987, + [5192] = 5041, [5193] = 5193, [5194] = 5194, [5195] = 5195, @@ -9317,358 +9324,366 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5198] = 5198, [5199] = 5199, [5200] = 5200, - [5201] = 5198, + [5201] = 5195, [5202] = 5202, - [5203] = 5194, - [5204] = 5198, + [5203] = 5203, + [5204] = 5203, [5205] = 5205, - [5206] = 5194, + [5206] = 5206, [5207] = 5207, [5208] = 5208, - [5209] = 5209, + [5209] = 5197, [5210] = 5210, [5211] = 5211, [5212] = 5212, [5213] = 5213, [5214] = 5214, [5215] = 5215, - [5216] = 5189, + [5216] = 5216, [5217] = 5217, [5218] = 5218, - [5219] = 5193, + [5219] = 5212, [5220] = 5220, [5221] = 5221, - [5222] = 5218, - [5223] = 5223, + [5222] = 5222, + [5223] = 5203, [5224] = 5224, [5225] = 5225, [5226] = 5226, - [5227] = 5197, - [5228] = 5226, - [5229] = 5229, - [5230] = 5194, + [5227] = 5217, + [5228] = 5228, + [5229] = 4759, + [5230] = 5230, [5231] = 5231, [5232] = 5232, [5233] = 5233, - [5234] = 5234, - [5235] = 5225, - [5236] = 5200, + [5234] = 5217, + [5235] = 5235, + [5236] = 5236, [5237] = 5237, [5238] = 5238, [5239] = 5239, [5240] = 5240, - [5241] = 5225, - [5242] = 5242, - [5243] = 5202, - [5244] = 5194, + [5241] = 5241, + [5242] = 5205, + [5243] = 5206, + [5244] = 5244, [5245] = 5245, [5246] = 5246, - [5247] = 5194, - [5248] = 5197, - [5249] = 5249, - [5250] = 5221, - [5251] = 5251, - [5252] = 5252, - [5253] = 5215, - [5254] = 5254, - [5255] = 5193, - [5256] = 5256, - [5257] = 5193, + [5247] = 5218, + [5248] = 5248, + [5249] = 5212, + [5250] = 5235, + [5251] = 5218, + [5252] = 5214, + [5253] = 5253, + [5254] = 5235, + [5255] = 5255, + [5256] = 5195, + [5257] = 5257, [5258] = 5258, - [5259] = 5259, - [5260] = 5259, - [5261] = 5261, + [5259] = 5214, + [5260] = 5237, + [5261] = 4860, [5262] = 5262, - [5263] = 5196, - [5264] = 5264, - [5265] = 5265, - [5266] = 5212, + [5263] = 5218, + [5264] = 5205, + [5265] = 5241, + [5266] = 5262, [5267] = 5267, [5268] = 5268, [5269] = 5269, [5270] = 5270, - [5271] = 5207, - [5272] = 5261, - [5273] = 5208, - [5274] = 5189, - [5275] = 5209, - [5276] = 5246, - [5277] = 5277, - [5278] = 5194, + [5271] = 5198, + [5272] = 5272, + [5273] = 5273, + [5274] = 5274, + [5275] = 5275, + [5276] = 5220, + [5277] = 5273, + [5278] = 5278, [5279] = 5279, [5280] = 5280, - [5281] = 5246, - [5282] = 5202, - [5283] = 5283, + [5281] = 5255, + [5282] = 5197, + [5283] = 5233, [5284] = 5284, - [5285] = 5285, - [5286] = 5286, - [5287] = 5188, - [5288] = 5246, - [5289] = 5190, - [5290] = 5197, - [5291] = 4509, - [5292] = 5246, - [5293] = 5194, - [5294] = 5267, - [5295] = 5295, - [5296] = 5262, - [5297] = 5207, - [5298] = 5208, + [5285] = 5225, + [5286] = 5213, + [5287] = 5287, + [5288] = 5288, + [5289] = 5217, + [5290] = 5213, + [5291] = 5291, + [5292] = 5292, + [5293] = 5293, + [5294] = 5294, + [5295] = 5196, + [5296] = 5274, + [5297] = 5198, + [5298] = 5213, [5299] = 5299, - [5300] = 5213, - [5301] = 5214, - [5302] = 5199, + [5300] = 5236, + [5301] = 5235, + [5302] = 5293, [5303] = 5303, - [5304] = 5246, - [5305] = 5305, - [5306] = 5210, - [5307] = 5220, - [5308] = 5223, - [5309] = 5224, - [5310] = 5246, - [5311] = 5194, - [5312] = 5312, - [5313] = 5313, - [5314] = 5225, - [5315] = 5200, + [5304] = 5224, + [5305] = 5215, + [5306] = 5216, + [5307] = 5197, + [5308] = 5221, + [5309] = 5222, + [5310] = 5195, + [5311] = 5197, + [5312] = 5218, + [5313] = 5293, + [5314] = 5314, + [5315] = 5228, [5316] = 5231, [5317] = 5232, - [5318] = 5240, - [5319] = 5319, - [5320] = 5193, + [5318] = 5217, + [5319] = 5257, + [5320] = 5197, [5321] = 5321, - [5322] = 5237, - [5323] = 5238, - [5324] = 5202, - [5325] = 5242, - [5326] = 5218, + [5322] = 5322, + [5323] = 5213, + [5324] = 5239, + [5325] = 5240, + [5326] = 5212, [5327] = 5327, - [5328] = 5249, - [5329] = 5329, - [5330] = 5242, + [5328] = 5258, + [5329] = 5214, + [5330] = 5245, [5331] = 5246, - [5332] = 5246, - [5333] = 5194, - [5334] = 5246, - [5335] = 5194, - [5336] = 5270, + [5332] = 5220, + [5333] = 5217, + [5334] = 5334, + [5335] = 5221, + [5336] = 5214, [5337] = 5197, - [5338] = 5192, - [5339] = 5197, - [5340] = 5202, - [5341] = 5194, - [5342] = 5240, - [5343] = 5249, - [5344] = 5319, - [5345] = 5218, - [5346] = 5196, - [5347] = 5347, - [5348] = 5321, + [5338] = 5275, + [5339] = 5213, + [5340] = 5255, + [5341] = 5341, + [5342] = 5203, + [5343] = 5343, + [5344] = 5278, + [5345] = 5232, + [5346] = 5220, + [5347] = 5273, + [5348] = 5257, [5349] = 5349, - [5350] = 5187, - [5351] = 5351, - [5352] = 5319, - [5353] = 5223, - [5354] = 5224, - [5355] = 5355, - [5356] = 5196, - [5357] = 5189, - [5358] = 5193, - [5359] = 5359, - [5360] = 5221, - [5361] = 5239, - [5362] = 5225, - [5363] = 5215, - [5364] = 5364, - [5365] = 5264, - [5366] = 5246, + [5350] = 5213, + [5351] = 5197, + [5352] = 5213, + [5353] = 5284, + [5354] = 5255, + [5355] = 5217, + [5356] = 5213, + [5357] = 5257, + [5358] = 5226, + [5359] = 5241, + [5360] = 5220, + [5361] = 5278, + [5362] = 5224, + [5363] = 5293, + [5364] = 5273, + [5365] = 5365, + [5366] = 5366, [5367] = 5197, - [5368] = 5286, - [5369] = 5198, - [5370] = 5194, - [5371] = 5210, - [5372] = 4642, - [5373] = 5373, - [5374] = 5374, - [5375] = 5202, - [5376] = 5246, - [5377] = 5377, - [5378] = 5347, - [5379] = 5258, - [5380] = 5197, - [5381] = 5210, - [5382] = 5218, - [5383] = 5239, - [5384] = 5226, - [5385] = 5385, - [5386] = 5188, - [5387] = 5286, - [5388] = 5374, - [5389] = 5389, - [5390] = 5390, - [5391] = 5198, - [5392] = 5237, + [5368] = 5197, + [5369] = 5197, + [5370] = 5217, + [5371] = 5213, + [5372] = 5372, + [5373] = 5199, + [5374] = 5206, + [5375] = 5203, + [5376] = 5241, + [5377] = 5215, + [5378] = 5216, + [5379] = 5379, + [5380] = 5380, + [5381] = 5343, + [5382] = 5272, + [5383] = 5383, + [5384] = 5235, + [5385] = 5213, + [5386] = 5267, + [5387] = 5387, + [5388] = 5388, + [5389] = 5349, + [5390] = 5224, + [5391] = 5287, + [5392] = 5293, [5393] = 5393, - [5394] = 5261, - [5395] = 5191, - [5396] = 5238, - [5397] = 5239, - [5398] = 5398, - [5399] = 5226, + [5394] = 5239, + [5395] = 5294, + [5396] = 5396, + [5397] = 5210, + [5398] = 5212, + [5399] = 5197, [5400] = 5400, - [5401] = 5189, - [5402] = 5229, - [5403] = 5194, - [5404] = 5295, - [5405] = 5351, - [5406] = 5377, - [5407] = 5245, + [5401] = 5401, + [5402] = 5402, + [5403] = 5222, + [5404] = 5197, + [5405] = 5405, + [5406] = 5210, + [5407] = 5288, [5408] = 5408, - [5409] = 5373, - [5410] = 5258, - [5411] = 5217, - [5412] = 5256, - [5413] = 5259, - [5414] = 5218, + [5409] = 5409, + [5410] = 5211, + [5411] = 5203, + [5412] = 5380, + [5413] = 5322, + [5414] = 5257, [5415] = 5415, - [5416] = 5198, - [5417] = 5417, - [5418] = 5242, - [5419] = 5231, - [5420] = 5218, - [5421] = 5239, - [5422] = 5232, - [5423] = 5234, - [5424] = 5269, - [5425] = 5285, - [5426] = 5264, - [5427] = 5198, - [5428] = 5242, - [5429] = 5233, - [5430] = 5430, + [5416] = 5214, + [5417] = 5224, + [5418] = 5273, + [5419] = 5393, + [5420] = 5420, + [5421] = 5268, + [5422] = 5422, + [5423] = 5423, + [5424] = 5195, + [5425] = 5415, + [5426] = 5213, + [5427] = 5210, + [5428] = 5349, + [5429] = 5231, + [5430] = 5245, [5431] = 5431, - [5432] = 5283, - [5433] = 5215, - [5434] = 5251, - [5435] = 5435, - [5436] = 5436, - [5437] = 5240, - [5438] = 5249, - [5439] = 5212, + [5432] = 5269, + [5433] = 5303, + [5434] = 5213, + [5435] = 5388, + [5436] = 5262, + [5437] = 5437, + [5438] = 5438, + [5439] = 5214, [5440] = 5267, - [5441] = 5441, - [5442] = 5312, - [5443] = 5246, + [5441] = 5217, + [5442] = 5442, + [5443] = 5443, [5444] = 5444, - [5445] = 5329, - [5446] = 5446, - [5447] = 5447, - [5448] = 5240, - [5449] = 5194, - [5450] = 5197, - [5451] = 5270, - [5452] = 5225, - [5453] = 5197, - [5454] = 5454, - [5455] = 5261, - [5456] = 5385, - [5457] = 5457, - [5458] = 5220, - [5459] = 5194, - [5460] = 5202, - [5461] = 5196, - [5462] = 5218, - [5463] = 5463, - [5464] = 5249, - [5465] = 5242, - [5466] = 5193, - [5467] = 5447, - [5468] = 5194, - [5469] = 5189, - [5470] = 5313, - [5471] = 5197, - [5472] = 5389, - [5473] = 5385, - [5474] = 5270, - [5475] = 5279, - [5476] = 5476, - [5477] = 5280, - [5478] = 5193, - [5479] = 5246, - [5480] = 5194, - [5481] = 5447, - [5482] = 5209, - [5483] = 5197, - [5484] = 5225, - [5485] = 5246, - [5486] = 5194, - [5487] = 5240, - [5488] = 5488, - [5489] = 5226, - [5490] = 5351, - [5491] = 5249, - [5492] = 5240, - [5493] = 5493, - [5494] = 5285, - [5495] = 5249, - [5496] = 5496, - [5497] = 5277, - [5498] = 5242, - [5499] = 5200, - [5500] = 5196, - [5501] = 5189, - [5502] = 5351, - [5503] = 5351, - [5504] = 5351, - [5505] = 5351, - [5506] = 5351, - [5507] = 5252, - [5508] = 5408, - [5509] = 5265, - [5510] = 5193, - [5511] = 5268, - [5512] = 5198, - [5513] = 5435, - [5514] = 5195, - [5515] = 5198, - [5516] = 5254, - [5517] = 5277, - [5518] = 5279, - [5519] = 5246, - [5520] = 5364, - [5521] = 5280, - [5522] = 5198, - [5523] = 5417, - [5524] = 5393, - [5525] = 5200, - [5526] = 5225, - [5527] = 5198, - [5528] = 5246, - [5529] = 5415, - [5530] = 5249, - [5531] = 5196, - [5532] = 5189, - [5533] = 5215, - [5534] = 5246, - [5535] = 5283, - [5536] = 5242, - [5537] = 5430, - [5538] = 5190, - [5539] = 5431, - [5540] = 5213, - [5541] = 5214, - [5542] = 5196, - [5543] = 5543, - [5544] = 5187, - [5545] = 5393, - [5546] = 5546, - [5547] = 5202, - [5548] = 5246, - [5549] = 5194, - [5550] = 5199, - [5551] = 5246, - [5552] = 5240, + [5445] = 5220, + [5446] = 5200, + [5447] = 5213, + [5448] = 5291, + [5449] = 5272, + [5450] = 5257, + [5451] = 5396, + [5452] = 5203, + [5453] = 5240, + [5454] = 5255, + [5455] = 5455, + [5456] = 5197, + [5457] = 5455, + [5458] = 5205, + [5459] = 5241, + [5460] = 5460, + [5461] = 5274, + [5462] = 5275, + [5463] = 5387, + [5464] = 5212, + [5465] = 5220, + [5466] = 5420, + [5467] = 5213, + [5468] = 5214, + [5469] = 5469, + [5470] = 5217, + [5471] = 5195, + [5472] = 5278, + [5473] = 5473, + [5474] = 5224, + [5475] = 5212, + [5476] = 5220, + [5477] = 5442, + [5478] = 5257, + [5479] = 5241, + [5480] = 5443, + [5481] = 5213, + [5482] = 5482, + [5483] = 5334, + [5484] = 5293, + [5485] = 5431, + [5486] = 5233, + [5487] = 5197, + [5488] = 5213, + [5489] = 5273, + [5490] = 5197, + [5491] = 5217, + [5492] = 5197, + [5493] = 5197, + [5494] = 5213, + [5495] = 5217, + [5496] = 5228, + [5497] = 5257, + [5498] = 5322, + [5499] = 5241, + [5500] = 5327, + [5501] = 5501, + [5502] = 5303, + [5503] = 5224, + [5504] = 5293, + [5505] = 5244, + [5506] = 5225, + [5507] = 5224, + [5508] = 5273, + [5509] = 5293, + [5510] = 5322, + [5511] = 5322, + [5512] = 5322, + [5513] = 5322, + [5514] = 5322, + [5515] = 5515, + [5516] = 5460, + [5517] = 5422, + [5518] = 5273, + [5519] = 5423, + [5520] = 5226, + [5521] = 5334, + [5522] = 5246, + [5523] = 5473, + [5524] = 5405, + [5525] = 5525, + [5526] = 5321, + [5527] = 5206, + [5528] = 5203, + [5529] = 5529, + [5530] = 5294, + [5531] = 5437, + [5532] = 5292, + [5533] = 5287, + [5534] = 5288, + [5535] = 5203, + [5536] = 5213, + [5537] = 5299, + [5538] = 5203, + [5539] = 5482, + [5540] = 5401, + [5541] = 5195, + [5542] = 5195, + [5543] = 5273, + [5544] = 5544, + [5545] = 5196, + [5546] = 5237, + [5547] = 5241, + [5548] = 5291, + [5549] = 5529, + [5550] = 5212, + [5551] = 5197, + [5552] = 5321, + [5553] = 5292, + [5554] = 5515, + [5555] = 5253, + [5556] = 5197, + [5557] = 5213, + [5558] = 5206, + [5559] = 5203, + [5560] = 5258, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -11120,7 +11135,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 161: - ACCEPT_TOKEN(sym_ellipsis); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 162: ACCEPT_TOKEN(sym_escape_sequence); @@ -12937,7 +12952,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [226] = {.lex_state = 66, .external_lex_state = 4}, [227] = {.lex_state = 66, .external_lex_state = 4}, [228] = {.lex_state = 66, .external_lex_state = 4}, - [229] = {.lex_state = 66, .external_lex_state = 4}, + [229] = {.lex_state = 6, .external_lex_state = 5}, [230] = {.lex_state = 66, .external_lex_state = 4}, [231] = {.lex_state = 66, .external_lex_state = 4}, [232] = {.lex_state = 66, .external_lex_state = 4}, @@ -13014,7 +13029,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [303] = {.lex_state = 66, .external_lex_state = 4}, [304] = {.lex_state = 66, .external_lex_state = 4}, [305] = {.lex_state = 66, .external_lex_state = 4}, - [306] = {.lex_state = 6, .external_lex_state = 5}, + [306] = {.lex_state = 66, .external_lex_state = 4}, [307] = {.lex_state = 66, .external_lex_state = 4}, [308] = {.lex_state = 66, .external_lex_state = 4}, [309] = {.lex_state = 66, .external_lex_state = 4}, @@ -13145,10 +13160,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [434] = {.lex_state = 66, .external_lex_state = 6}, [435] = {.lex_state = 66, .external_lex_state = 3}, [436] = {.lex_state = 66, .external_lex_state = 3}, - [437] = {.lex_state = 66, .external_lex_state = 3}, + [437] = {.lex_state = 7, .external_lex_state = 5}, [438] = {.lex_state = 66, .external_lex_state = 3}, [439] = {.lex_state = 66, .external_lex_state = 3}, - [440] = {.lex_state = 7, .external_lex_state = 5}, + [440] = {.lex_state = 66, .external_lex_state = 3}, [441] = {.lex_state = 8, .external_lex_state = 5}, [442] = {.lex_state = 8, .external_lex_state = 5}, [443] = {.lex_state = 66, .external_lex_state = 3}, @@ -13225,7 +13240,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [514] = {.lex_state = 66, .external_lex_state = 3}, [515] = {.lex_state = 66, .external_lex_state = 3}, [516] = {.lex_state = 66, .external_lex_state = 3}, - [517] = {.lex_state = 66, .external_lex_state = 3}, + [517] = {.lex_state = 7, .external_lex_state = 7}, [518] = {.lex_state = 66, .external_lex_state = 3}, [519] = {.lex_state = 66, .external_lex_state = 3}, [520] = {.lex_state = 66, .external_lex_state = 3}, @@ -13253,7 +13268,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [542] = {.lex_state = 66, .external_lex_state = 3}, [543] = {.lex_state = 66, .external_lex_state = 3}, [544] = {.lex_state = 66, .external_lex_state = 3}, - [545] = {.lex_state = 66, .external_lex_state = 3}, + [545] = {.lex_state = 7, .external_lex_state = 7}, [546] = {.lex_state = 66, .external_lex_state = 3}, [547] = {.lex_state = 66, .external_lex_state = 3}, [548] = {.lex_state = 66, .external_lex_state = 3}, @@ -13323,7 +13338,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [612] = {.lex_state = 66, .external_lex_state = 3}, [613] = {.lex_state = 66, .external_lex_state = 3}, [614] = {.lex_state = 66, .external_lex_state = 3}, - [615] = {.lex_state = 66, .external_lex_state = 3}, + [615] = {.lex_state = 8, .external_lex_state = 7}, [616] = {.lex_state = 66, .external_lex_state = 3}, [617] = {.lex_state = 66, .external_lex_state = 3}, [618] = {.lex_state = 66, .external_lex_state = 3}, @@ -13336,127 +13351,127 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [625] = {.lex_state = 66, .external_lex_state = 3}, [626] = {.lex_state = 66, .external_lex_state = 3}, [627] = {.lex_state = 66, .external_lex_state = 3}, - [628] = {.lex_state = 7, .external_lex_state = 7}, + [628] = {.lex_state = 66, .external_lex_state = 3}, [629] = {.lex_state = 66, .external_lex_state = 3}, [630] = {.lex_state = 66, .external_lex_state = 3}, - [631] = {.lex_state = 8, .external_lex_state = 7}, + [631] = {.lex_state = 66, .external_lex_state = 3}, [632] = {.lex_state = 66, .external_lex_state = 3}, - [633] = {.lex_state = 66, .external_lex_state = 3}, - [634] = {.lex_state = 7, .external_lex_state = 7}, + [633] = {.lex_state = 9, .external_lex_state = 5}, + [634] = {.lex_state = 66, .external_lex_state = 3}, [635] = {.lex_state = 66, .external_lex_state = 3}, [636] = {.lex_state = 66, .external_lex_state = 3}, - [637] = {.lex_state = 66, .external_lex_state = 3}, - [638] = {.lex_state = 66, .external_lex_state = 3}, - [639] = {.lex_state = 66, .external_lex_state = 3}, - [640] = {.lex_state = 8, .external_lex_state = 7}, - [641] = {.lex_state = 8, .external_lex_state = 2}, - [642] = {.lex_state = 7, .external_lex_state = 2}, - [643] = {.lex_state = 7, .external_lex_state = 7}, - [644] = {.lex_state = 9, .external_lex_state = 5}, - [645] = {.lex_state = 9, .external_lex_state = 5}, + [637] = {.lex_state = 7, .external_lex_state = 6}, + [638] = {.lex_state = 7, .external_lex_state = 7}, + [639] = {.lex_state = 9, .external_lex_state = 5}, + [640] = {.lex_state = 66, .external_lex_state = 3}, + [641] = {.lex_state = 66, .external_lex_state = 3}, + [642] = {.lex_state = 66, .external_lex_state = 3}, + [643] = {.lex_state = 8, .external_lex_state = 7}, + [644] = {.lex_state = 8, .external_lex_state = 2}, + [645] = {.lex_state = 7, .external_lex_state = 2}, [646] = {.lex_state = 7, .external_lex_state = 7}, - [647] = {.lex_state = 7, .external_lex_state = 6}, - [648] = {.lex_state = 8, .external_lex_state = 7}, - [649] = {.lex_state = 7, .external_lex_state = 6}, - [650] = {.lex_state = 7, .external_lex_state = 8}, - [651] = {.lex_state = 8, .external_lex_state = 2}, + [647] = {.lex_state = 66, .external_lex_state = 3}, + [648] = {.lex_state = 7, .external_lex_state = 6}, + [649] = {.lex_state = 7, .external_lex_state = 8}, + [650] = {.lex_state = 7, .external_lex_state = 6}, + [651] = {.lex_state = 7, .external_lex_state = 6}, [652] = {.lex_state = 7, .external_lex_state = 8}, [653] = {.lex_state = 7, .external_lex_state = 8}, [654] = {.lex_state = 7, .external_lex_state = 6}, - [655] = {.lex_state = 7, .external_lex_state = 6}, - [656] = {.lex_state = 8, .external_lex_state = 8}, - [657] = {.lex_state = 7, .external_lex_state = 2}, - [658] = {.lex_state = 7, .external_lex_state = 8}, - [659] = {.lex_state = 7, .external_lex_state = 6}, - [660] = {.lex_state = 7, .external_lex_state = 6}, - [661] = {.lex_state = 9, .external_lex_state = 2}, - [662] = {.lex_state = 7, .external_lex_state = 8}, - [663] = {.lex_state = 7, .external_lex_state = 6}, + [655] = {.lex_state = 8, .external_lex_state = 2}, + [656] = {.lex_state = 7, .external_lex_state = 8}, + [657] = {.lex_state = 8, .external_lex_state = 7}, + [658] = {.lex_state = 7, .external_lex_state = 2}, + [659] = {.lex_state = 8, .external_lex_state = 8}, + [660] = {.lex_state = 9, .external_lex_state = 2}, + [661] = {.lex_state = 8, .external_lex_state = 8}, + [662] = {.lex_state = 7, .external_lex_state = 6}, + [663] = {.lex_state = 7, .external_lex_state = 8}, [664] = {.lex_state = 7, .external_lex_state = 6}, - [665] = {.lex_state = 8, .external_lex_state = 8}, + [665] = {.lex_state = 7, .external_lex_state = 6}, [666] = {.lex_state = 9, .external_lex_state = 2}, [667] = {.lex_state = 7, .external_lex_state = 6}, [668] = {.lex_state = 66, .external_lex_state = 6}, - [669] = {.lex_state = 5, .external_lex_state = 7}, + [669] = {.lex_state = 66, .external_lex_state = 8}, [670] = {.lex_state = 66, .external_lex_state = 2}, - [671] = {.lex_state = 66, .external_lex_state = 2}, + [671] = {.lex_state = 66, .external_lex_state = 6}, [672] = {.lex_state = 66, .external_lex_state = 6}, [673] = {.lex_state = 66, .external_lex_state = 8}, [674] = {.lex_state = 5, .external_lex_state = 7}, [675] = {.lex_state = 66, .external_lex_state = 6}, - [676] = {.lex_state = 66, .external_lex_state = 2}, - [677] = {.lex_state = 66, .external_lex_state = 6}, - [678] = {.lex_state = 66, .external_lex_state = 6}, + [676] = {.lex_state = 66, .external_lex_state = 6}, + [677] = {.lex_state = 66, .external_lex_state = 8}, + [678] = {.lex_state = 5, .external_lex_state = 7}, [679] = {.lex_state = 66, .external_lex_state = 8}, [680] = {.lex_state = 5, .external_lex_state = 7}, [681] = {.lex_state = 66, .external_lex_state = 6}, - [682] = {.lex_state = 66, .external_lex_state = 8}, - [683] = {.lex_state = 5, .external_lex_state = 7}, + [682] = {.lex_state = 5, .external_lex_state = 7}, + [683] = {.lex_state = 66, .external_lex_state = 6}, [684] = {.lex_state = 66, .external_lex_state = 8}, - [685] = {.lex_state = 66, .external_lex_state = 8}, - [686] = {.lex_state = 5, .external_lex_state = 7}, + [685] = {.lex_state = 5, .external_lex_state = 7}, + [686] = {.lex_state = 66, .external_lex_state = 2}, [687] = {.lex_state = 66, .external_lex_state = 6}, [688] = {.lex_state = 66, .external_lex_state = 8}, [689] = {.lex_state = 5, .external_lex_state = 7}, - [690] = {.lex_state = 66, .external_lex_state = 6}, - [691] = {.lex_state = 66, .external_lex_state = 8}, - [692] = {.lex_state = 5, .external_lex_state = 7}, - [693] = {.lex_state = 66, .external_lex_state = 6}, - [694] = {.lex_state = 66, .external_lex_state = 8}, - [695] = {.lex_state = 5, .external_lex_state = 7}, - [696] = {.lex_state = 66, .external_lex_state = 6}, - [697] = {.lex_state = 66, .external_lex_state = 8}, - [698] = {.lex_state = 66, .external_lex_state = 6}, - [699] = {.lex_state = 66, .external_lex_state = 8}, + [690] = {.lex_state = 66, .external_lex_state = 2}, + [691] = {.lex_state = 66, .external_lex_state = 6}, + [692] = {.lex_state = 66, .external_lex_state = 8}, + [693] = {.lex_state = 5, .external_lex_state = 7}, + [694] = {.lex_state = 66, .external_lex_state = 6}, + [695] = {.lex_state = 66, .external_lex_state = 8}, + [696] = {.lex_state = 5, .external_lex_state = 7}, + [697] = {.lex_state = 66, .external_lex_state = 6}, + [698] = {.lex_state = 66, .external_lex_state = 8}, + [699] = {.lex_state = 66, .external_lex_state = 6}, [700] = {.lex_state = 66, .external_lex_state = 8}, [701] = {.lex_state = 66, .external_lex_state = 8}, - [702] = {.lex_state = 66, .external_lex_state = 6}, - [703] = {.lex_state = 5, .external_lex_state = 8}, + [702] = {.lex_state = 66, .external_lex_state = 8}, + [703] = {.lex_state = 66, .external_lex_state = 2}, [704] = {.lex_state = 5, .external_lex_state = 8}, - [705] = {.lex_state = 67, .external_lex_state = 9}, - [706] = {.lex_state = 68, .external_lex_state = 2}, + [705] = {.lex_state = 5, .external_lex_state = 8}, + [706] = {.lex_state = 5, .external_lex_state = 8}, [707] = {.lex_state = 5, .external_lex_state = 8}, - [708] = {.lex_state = 66, .external_lex_state = 2}, - [709] = {.lex_state = 67, .external_lex_state = 10}, - [710] = {.lex_state = 68, .external_lex_state = 3}, - [711] = {.lex_state = 67, .external_lex_state = 10}, - [712] = {.lex_state = 68, .external_lex_state = 3}, - [713] = {.lex_state = 5, .external_lex_state = 8}, - [714] = {.lex_state = 66, .external_lex_state = 2}, + [708] = {.lex_state = 5, .external_lex_state = 8}, + [709] = {.lex_state = 5, .external_lex_state = 8}, + [710] = {.lex_state = 66, .external_lex_state = 2}, + [711] = {.lex_state = 5, .external_lex_state = 2}, + [712] = {.lex_state = 67, .external_lex_state = 9}, + [713] = {.lex_state = 5, .external_lex_state = 2}, + [714] = {.lex_state = 67, .external_lex_state = 9}, [715] = {.lex_state = 68, .external_lex_state = 2}, - [716] = {.lex_state = 5, .external_lex_state = 8}, - [717] = {.lex_state = 5, .external_lex_state = 8}, - [718] = {.lex_state = 67, .external_lex_state = 9}, + [716] = {.lex_state = 5, .external_lex_state = 2}, + [717] = {.lex_state = 5, .external_lex_state = 2}, + [718] = {.lex_state = 5, .external_lex_state = 6}, [719] = {.lex_state = 5, .external_lex_state = 2}, [720] = {.lex_state = 5, .external_lex_state = 2}, [721] = {.lex_state = 5, .external_lex_state = 2}, [722] = {.lex_state = 5, .external_lex_state = 2}, - [723] = {.lex_state = 5, .external_lex_state = 2}, + [723] = {.lex_state = 68, .external_lex_state = 2}, [724] = {.lex_state = 5, .external_lex_state = 6}, - [725] = {.lex_state = 10, .external_lex_state = 5}, - [726] = {.lex_state = 10, .external_lex_state = 5}, - [727] = {.lex_state = 5, .external_lex_state = 2}, - [728] = {.lex_state = 66, .external_lex_state = 6}, - [729] = {.lex_state = 66, .external_lex_state = 6}, - [730] = {.lex_state = 5, .external_lex_state = 6}, + [725] = {.lex_state = 5, .external_lex_state = 2}, + [726] = {.lex_state = 5, .external_lex_state = 2}, + [727] = {.lex_state = 67, .external_lex_state = 10}, + [728] = {.lex_state = 68, .external_lex_state = 3}, + [729] = {.lex_state = 5, .external_lex_state = 6}, + [730] = {.lex_state = 67, .external_lex_state = 10}, [731] = {.lex_state = 5, .external_lex_state = 2}, - [732] = {.lex_state = 5, .external_lex_state = 6}, - [733] = {.lex_state = 5, .external_lex_state = 2}, - [734] = {.lex_state = 5, .external_lex_state = 2}, + [732] = {.lex_state = 66, .external_lex_state = 6}, + [733] = {.lex_state = 10, .external_lex_state = 5}, + [734] = {.lex_state = 5, .external_lex_state = 6}, [735] = {.lex_state = 5, .external_lex_state = 2}, - [736] = {.lex_state = 5, .external_lex_state = 2}, + [736] = {.lex_state = 10, .external_lex_state = 5}, [737] = {.lex_state = 5, .external_lex_state = 2}, - [738] = {.lex_state = 5, .external_lex_state = 2}, - [739] = {.lex_state = 5, .external_lex_state = 2}, - [740] = {.lex_state = 5, .external_lex_state = 2}, - [741] = {.lex_state = 5, .external_lex_state = 6}, + [738] = {.lex_state = 5, .external_lex_state = 6}, + [739] = {.lex_state = 5, .external_lex_state = 6}, + [740] = {.lex_state = 5, .external_lex_state = 6}, + [741] = {.lex_state = 66, .external_lex_state = 6}, [742] = {.lex_state = 5, .external_lex_state = 6}, - [743] = {.lex_state = 5, .external_lex_state = 6}, - [744] = {.lex_state = 5, .external_lex_state = 6}, - [745] = {.lex_state = 66, .external_lex_state = 6}, - [746] = {.lex_state = 5, .external_lex_state = 6}, - [747] = {.lex_state = 5, .external_lex_state = 6}, - [748] = {.lex_state = 5, .external_lex_state = 2}, + [743] = {.lex_state = 66, .external_lex_state = 6}, + [744] = {.lex_state = 5, .external_lex_state = 2}, + [745] = {.lex_state = 5, .external_lex_state = 2}, + [746] = {.lex_state = 5, .external_lex_state = 2}, + [747] = {.lex_state = 5, .external_lex_state = 2}, + [748] = {.lex_state = 5, .external_lex_state = 6}, [749] = {.lex_state = 5, .external_lex_state = 2}, [750] = {.lex_state = 5, .external_lex_state = 2}, [751] = {.lex_state = 5, .external_lex_state = 2}, @@ -13465,296 +13480,296 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [754] = {.lex_state = 5, .external_lex_state = 2}, [755] = {.lex_state = 5, .external_lex_state = 2}, [756] = {.lex_state = 5, .external_lex_state = 2}, - [757] = {.lex_state = 5, .external_lex_state = 2}, + [757] = {.lex_state = 68, .external_lex_state = 3}, [758] = {.lex_state = 5, .external_lex_state = 6}, - [759] = {.lex_state = 66, .external_lex_state = 7}, - [760] = {.lex_state = 66, .external_lex_state = 2}, - [761] = {.lex_state = 66, .external_lex_state = 6}, - [762] = {.lex_state = 66, .external_lex_state = 8}, - [763] = {.lex_state = 66, .external_lex_state = 6}, - [764] = {.lex_state = 66, .external_lex_state = 8}, + [759] = {.lex_state = 66, .external_lex_state = 6}, + [760] = {.lex_state = 5, .external_lex_state = 6}, + [761] = {.lex_state = 5, .external_lex_state = 6}, + [762] = {.lex_state = 5, .external_lex_state = 6}, + [763] = {.lex_state = 5, .external_lex_state = 6}, + [764] = {.lex_state = 66, .external_lex_state = 6}, [765] = {.lex_state = 5, .external_lex_state = 6}, [766] = {.lex_state = 5, .external_lex_state = 6}, - [767] = {.lex_state = 67, .external_lex_state = 9}, - [768] = {.lex_state = 68, .external_lex_state = 2}, - [769] = {.lex_state = 5, .external_lex_state = 6}, + [767] = {.lex_state = 66, .external_lex_state = 6}, + [768] = {.lex_state = 66, .external_lex_state = 8}, + [769] = {.lex_state = 66, .external_lex_state = 6}, [770] = {.lex_state = 5, .external_lex_state = 6}, [771] = {.lex_state = 5, .external_lex_state = 6}, - [772] = {.lex_state = 66, .external_lex_state = 3}, + [772] = {.lex_state = 5, .external_lex_state = 6}, [773] = {.lex_state = 66, .external_lex_state = 6}, - [774] = {.lex_state = 5, .external_lex_state = 6}, - [775] = {.lex_state = 66, .external_lex_state = 3}, - [776] = {.lex_state = 66, .external_lex_state = 3}, - [777] = {.lex_state = 67, .external_lex_state = 10}, - [778] = {.lex_state = 68, .external_lex_state = 3}, - [779] = {.lex_state = 66, .external_lex_state = 6}, - [780] = {.lex_state = 66, .external_lex_state = 6}, - [781] = {.lex_state = 66, .external_lex_state = 8}, + [774] = {.lex_state = 66, .external_lex_state = 8}, + [775] = {.lex_state = 66, .external_lex_state = 6}, + [776] = {.lex_state = 5, .external_lex_state = 6}, + [777] = {.lex_state = 5, .external_lex_state = 6}, + [778] = {.lex_state = 5, .external_lex_state = 6}, + [779] = {.lex_state = 5, .external_lex_state = 6}, + [780] = {.lex_state = 5, .external_lex_state = 6}, + [781] = {.lex_state = 5, .external_lex_state = 6}, [782] = {.lex_state = 66, .external_lex_state = 6}, [783] = {.lex_state = 66, .external_lex_state = 8}, - [784] = {.lex_state = 5, .external_lex_state = 6}, + [784] = {.lex_state = 66, .external_lex_state = 6}, [785] = {.lex_state = 5, .external_lex_state = 6}, [786] = {.lex_state = 5, .external_lex_state = 6}, [787] = {.lex_state = 5, .external_lex_state = 6}, - [788] = {.lex_state = 66, .external_lex_state = 6}, + [788] = {.lex_state = 5, .external_lex_state = 6}, [789] = {.lex_state = 66, .external_lex_state = 8}, [790] = {.lex_state = 66, .external_lex_state = 6}, - [791] = {.lex_state = 66, .external_lex_state = 6}, - [792] = {.lex_state = 66, .external_lex_state = 3}, + [791] = {.lex_state = 66, .external_lex_state = 8}, + [792] = {.lex_state = 5, .external_lex_state = 6}, [793] = {.lex_state = 5, .external_lex_state = 6}, [794] = {.lex_state = 5, .external_lex_state = 6}, [795] = {.lex_state = 5, .external_lex_state = 6}, [796] = {.lex_state = 66, .external_lex_state = 6}, - [797] = {.lex_state = 66, .external_lex_state = 6}, - [798] = {.lex_state = 66, .external_lex_state = 8}, - [799] = {.lex_state = 66, .external_lex_state = 6}, + [797] = {.lex_state = 66, .external_lex_state = 8}, + [798] = {.lex_state = 5, .external_lex_state = 6}, + [799] = {.lex_state = 5, .external_lex_state = 6}, [800] = {.lex_state = 5, .external_lex_state = 6}, [801] = {.lex_state = 5, .external_lex_state = 6}, [802] = {.lex_state = 5, .external_lex_state = 6}, [803] = {.lex_state = 5, .external_lex_state = 6}, - [804] = {.lex_state = 66, .external_lex_state = 6}, - [805] = {.lex_state = 66, .external_lex_state = 8}, + [804] = {.lex_state = 5, .external_lex_state = 6}, + [805] = {.lex_state = 5, .external_lex_state = 6}, [806] = {.lex_state = 5, .external_lex_state = 6}, [807] = {.lex_state = 5, .external_lex_state = 6}, [808] = {.lex_state = 5, .external_lex_state = 6}, [809] = {.lex_state = 5, .external_lex_state = 6}, [810] = {.lex_state = 5, .external_lex_state = 6}, - [811] = {.lex_state = 66, .external_lex_state = 6}, - [812] = {.lex_state = 66, .external_lex_state = 8}, + [811] = {.lex_state = 5, .external_lex_state = 6}, + [812] = {.lex_state = 5, .external_lex_state = 6}, [813] = {.lex_state = 5, .external_lex_state = 6}, [814] = {.lex_state = 5, .external_lex_state = 6}, [815] = {.lex_state = 5, .external_lex_state = 6}, [816] = {.lex_state = 5, .external_lex_state = 6}, [817] = {.lex_state = 5, .external_lex_state = 6}, - [818] = {.lex_state = 5, .external_lex_state = 6}, - [819] = {.lex_state = 5, .external_lex_state = 6}, - [820] = {.lex_state = 5, .external_lex_state = 6}, - [821] = {.lex_state = 5, .external_lex_state = 6}, - [822] = {.lex_state = 5, .external_lex_state = 6}, - [823] = {.lex_state = 5, .external_lex_state = 6}, - [824] = {.lex_state = 5, .external_lex_state = 6}, - [825] = {.lex_state = 5, .external_lex_state = 6}, - [826] = {.lex_state = 5, .external_lex_state = 6}, - [827] = {.lex_state = 5, .external_lex_state = 6}, - [828] = {.lex_state = 5, .external_lex_state = 6}, - [829] = {.lex_state = 5, .external_lex_state = 6}, - [830] = {.lex_state = 5, .external_lex_state = 6}, - [831] = {.lex_state = 5, .external_lex_state = 6}, - [832] = {.lex_state = 5, .external_lex_state = 6}, - [833] = {.lex_state = 5, .external_lex_state = 6}, - [834] = {.lex_state = 66, .external_lex_state = 2}, - [835] = {.lex_state = 66, .external_lex_state = 2}, - [836] = {.lex_state = 66, .external_lex_state = 2}, - [837] = {.lex_state = 66, .external_lex_state = 2}, + [818] = {.lex_state = 66, .external_lex_state = 6}, + [819] = {.lex_state = 66, .external_lex_state = 6}, + [820] = {.lex_state = 66, .external_lex_state = 8}, + [821] = {.lex_state = 66, .external_lex_state = 6}, + [822] = {.lex_state = 66, .external_lex_state = 8}, + [823] = {.lex_state = 66, .external_lex_state = 7}, + [824] = {.lex_state = 66, .external_lex_state = 6}, + [825] = {.lex_state = 66, .external_lex_state = 7}, + [826] = {.lex_state = 66, .external_lex_state = 7}, + [827] = {.lex_state = 66, .external_lex_state = 3}, + [828] = {.lex_state = 67, .external_lex_state = 10}, + [829] = {.lex_state = 66, .external_lex_state = 8}, + [830] = {.lex_state = 5, .external_lex_state = 2}, + [831] = {.lex_state = 66, .external_lex_state = 6}, + [832] = {.lex_state = 66, .external_lex_state = 2}, + [833] = {.lex_state = 68, .external_lex_state = 3}, + [834] = {.lex_state = 66, .external_lex_state = 7}, + [835] = {.lex_state = 66, .external_lex_state = 8}, + [836] = {.lex_state = 10, .external_lex_state = 2}, + [837] = {.lex_state = 66, .external_lex_state = 8}, [838] = {.lex_state = 66, .external_lex_state = 7}, - [839] = {.lex_state = 66, .external_lex_state = 3}, - [840] = {.lex_state = 66, .external_lex_state = 8}, - [841] = {.lex_state = 66, .external_lex_state = 8}, - [842] = {.lex_state = 66, .external_lex_state = 7}, + [839] = {.lex_state = 66, .external_lex_state = 2}, + [840] = {.lex_state = 66, .external_lex_state = 3}, + [841] = {.lex_state = 66, .external_lex_state = 2}, + [842] = {.lex_state = 66, .external_lex_state = 2}, [843] = {.lex_state = 66, .external_lex_state = 2}, [844] = {.lex_state = 66, .external_lex_state = 6}, - [845] = {.lex_state = 10, .external_lex_state = 2}, - [846] = {.lex_state = 66, .external_lex_state = 2}, + [845] = {.lex_state = 66, .external_lex_state = 2}, + [846] = {.lex_state = 66, .external_lex_state = 8}, [847] = {.lex_state = 66, .external_lex_state = 6}, - [848] = {.lex_state = 66, .external_lex_state = 6}, - [849] = {.lex_state = 66, .external_lex_state = 8}, - [850] = {.lex_state = 66, .external_lex_state = 8}, - [851] = {.lex_state = 66, .external_lex_state = 7}, + [848] = {.lex_state = 67, .external_lex_state = 9}, + [849] = {.lex_state = 66, .external_lex_state = 6}, + [850] = {.lex_state = 66, .external_lex_state = 3}, + [851] = {.lex_state = 66, .external_lex_state = 6}, [852] = {.lex_state = 66, .external_lex_state = 2}, - [853] = {.lex_state = 66, .external_lex_state = 8}, - [854] = {.lex_state = 66, .external_lex_state = 2}, + [853] = {.lex_state = 66, .external_lex_state = 2}, + [854] = {.lex_state = 66, .external_lex_state = 3}, [855] = {.lex_state = 66, .external_lex_state = 6}, - [856] = {.lex_state = 66, .external_lex_state = 2}, - [857] = {.lex_state = 5, .external_lex_state = 2}, - [858] = {.lex_state = 66, .external_lex_state = 2}, - [859] = {.lex_state = 66, .external_lex_state = 2}, + [856] = {.lex_state = 68, .external_lex_state = 2}, + [857] = {.lex_state = 66, .external_lex_state = 8}, + [858] = {.lex_state = 66, .external_lex_state = 8}, + [859] = {.lex_state = 10, .external_lex_state = 2}, [860] = {.lex_state = 66, .external_lex_state = 7}, - [861] = {.lex_state = 66, .external_lex_state = 6}, - [862] = {.lex_state = 66, .external_lex_state = 7}, - [863] = {.lex_state = 66, .external_lex_state = 2}, - [864] = {.lex_state = 66, .external_lex_state = 2}, - [865] = {.lex_state = 66, .external_lex_state = 7}, - [866] = {.lex_state = 10, .external_lex_state = 2}, - [867] = {.lex_state = 66, .external_lex_state = 6}, - [868] = {.lex_state = 66, .external_lex_state = 8}, - [869] = {.lex_state = 66, .external_lex_state = 7}, + [861] = {.lex_state = 66, .external_lex_state = 7}, + [862] = {.lex_state = 5, .external_lex_state = 7}, + [863] = {.lex_state = 66, .external_lex_state = 7}, + [864] = {.lex_state = 5, .external_lex_state = 7}, + [865] = {.lex_state = 66, .external_lex_state = 6}, + [866] = {.lex_state = 66, .external_lex_state = 2}, + [867] = {.lex_state = 66, .external_lex_state = 8}, + [868] = {.lex_state = 66, .external_lex_state = 2}, + [869] = {.lex_state = 5, .external_lex_state = 7}, [870] = {.lex_state = 66, .external_lex_state = 2}, - [871] = {.lex_state = 67, .external_lex_state = 9}, - [872] = {.lex_state = 68, .external_lex_state = 2}, - [873] = {.lex_state = 68, .external_lex_state = 2}, - [874] = {.lex_state = 68, .external_lex_state = 3}, - [875] = {.lex_state = 66, .external_lex_state = 5}, - [876] = {.lex_state = 5, .external_lex_state = 7}, - [877] = {.lex_state = 67, .external_lex_state = 9}, - [878] = {.lex_state = 5, .external_lex_state = 7}, - [879] = {.lex_state = 68, .external_lex_state = 2}, - [880] = {.lex_state = 67, .external_lex_state = 10}, - [881] = {.lex_state = 67, .external_lex_state = 9}, - [882] = {.lex_state = 68, .external_lex_state = 2}, - [883] = {.lex_state = 66, .external_lex_state = 2}, + [871] = {.lex_state = 66, .external_lex_state = 7}, + [872] = {.lex_state = 66, .external_lex_state = 5}, + [873] = {.lex_state = 5, .external_lex_state = 7}, + [874] = {.lex_state = 5, .external_lex_state = 7}, + [875] = {.lex_state = 66, .external_lex_state = 2}, + [876] = {.lex_state = 66, .external_lex_state = 2}, + [877] = {.lex_state = 5, .external_lex_state = 7}, + [878] = {.lex_state = 66, .external_lex_state = 2}, + [879] = {.lex_state = 66, .external_lex_state = 3}, + [880] = {.lex_state = 66, .external_lex_state = 5}, + [881] = {.lex_state = 5, .external_lex_state = 7}, + [882] = {.lex_state = 5, .external_lex_state = 7}, + [883] = {.lex_state = 5, .external_lex_state = 7}, [884] = {.lex_state = 5, .external_lex_state = 7}, [885] = {.lex_state = 5, .external_lex_state = 7}, - [886] = {.lex_state = 68, .external_lex_state = 2}, - [887] = {.lex_state = 67, .external_lex_state = 9}, - [888] = {.lex_state = 67, .external_lex_state = 10}, - [889] = {.lex_state = 68, .external_lex_state = 3}, - [890] = {.lex_state = 67, .external_lex_state = 9}, - [891] = {.lex_state = 68, .external_lex_state = 2}, - [892] = {.lex_state = 68, .external_lex_state = 2}, + [886] = {.lex_state = 5, .external_lex_state = 7}, + [887] = {.lex_state = 5, .external_lex_state = 7}, + [888] = {.lex_state = 5, .external_lex_state = 7}, + [889] = {.lex_state = 66, .external_lex_state = 2}, + [890] = {.lex_state = 66, .external_lex_state = 2}, + [891] = {.lex_state = 66, .external_lex_state = 2}, + [892] = {.lex_state = 66, .external_lex_state = 7}, [893] = {.lex_state = 5, .external_lex_state = 7}, [894] = {.lex_state = 5, .external_lex_state = 7}, - [895] = {.lex_state = 67, .external_lex_state = 10}, - [896] = {.lex_state = 67, .external_lex_state = 10}, - [897] = {.lex_state = 67, .external_lex_state = 10}, - [898] = {.lex_state = 67, .external_lex_state = 10}, - [899] = {.lex_state = 67, .external_lex_state = 10}, - [900] = {.lex_state = 68, .external_lex_state = 3}, + [895] = {.lex_state = 66, .external_lex_state = 8}, + [896] = {.lex_state = 5, .external_lex_state = 2}, + [897] = {.lex_state = 66, .external_lex_state = 8}, + [898] = {.lex_state = 66, .external_lex_state = 8}, + [899] = {.lex_state = 67, .external_lex_state = 9}, + [900] = {.lex_state = 66, .external_lex_state = 8}, [901] = {.lex_state = 67, .external_lex_state = 10}, - [902] = {.lex_state = 68, .external_lex_state = 3}, - [903] = {.lex_state = 5, .external_lex_state = 7}, - [904] = {.lex_state = 67, .external_lex_state = 10}, - [905] = {.lex_state = 5, .external_lex_state = 7}, - [906] = {.lex_state = 5, .external_lex_state = 7}, - [907] = {.lex_state = 68, .external_lex_state = 3}, - [908] = {.lex_state = 5, .external_lex_state = 7}, - [909] = {.lex_state = 68, .external_lex_state = 3}, - [910] = {.lex_state = 66, .external_lex_state = 8}, - [911] = {.lex_state = 68, .external_lex_state = 3}, - [912] = {.lex_state = 66, .external_lex_state = 2}, - [913] = {.lex_state = 68, .external_lex_state = 3}, - [914] = {.lex_state = 5, .external_lex_state = 7}, - [915] = {.lex_state = 5, .external_lex_state = 7}, - [916] = {.lex_state = 66, .external_lex_state = 6}, - [917] = {.lex_state = 66, .external_lex_state = 7}, - [918] = {.lex_state = 68, .external_lex_state = 2}, - [919] = {.lex_state = 67, .external_lex_state = 9}, - [920] = {.lex_state = 68, .external_lex_state = 3}, - [921] = {.lex_state = 66, .external_lex_state = 7}, - [922] = {.lex_state = 5, .external_lex_state = 7}, - [923] = {.lex_state = 67, .external_lex_state = 9}, - [924] = {.lex_state = 67, .external_lex_state = 9}, - [925] = {.lex_state = 67, .external_lex_state = 9}, - [926] = {.lex_state = 67, .external_lex_state = 9}, - [927] = {.lex_state = 5, .external_lex_state = 7}, - [928] = {.lex_state = 68, .external_lex_state = 2}, - [929] = {.lex_state = 66, .external_lex_state = 5}, - [930] = {.lex_state = 67, .external_lex_state = 10}, - [931] = {.lex_state = 5, .external_lex_state = 7}, - [932] = {.lex_state = 67, .external_lex_state = 9}, - [933] = {.lex_state = 5, .external_lex_state = 7}, - [934] = {.lex_state = 67, .external_lex_state = 10}, + [902] = {.lex_state = 66, .external_lex_state = 8}, + [903] = {.lex_state = 67, .external_lex_state = 9}, + [904] = {.lex_state = 66, .external_lex_state = 8}, + [905] = {.lex_state = 67, .external_lex_state = 9}, + [906] = {.lex_state = 67, .external_lex_state = 9}, + [907] = {.lex_state = 66, .external_lex_state = 8}, + [908] = {.lex_state = 66, .external_lex_state = 8}, + [909] = {.lex_state = 66, .external_lex_state = 8}, + [910] = {.lex_state = 67, .external_lex_state = 10}, + [911] = {.lex_state = 67, .external_lex_state = 10}, + [912] = {.lex_state = 68, .external_lex_state = 3}, + [913] = {.lex_state = 67, .external_lex_state = 9}, + [914] = {.lex_state = 66, .external_lex_state = 5}, + [915] = {.lex_state = 68, .external_lex_state = 2}, + [916] = {.lex_state = 68, .external_lex_state = 2}, + [917] = {.lex_state = 67, .external_lex_state = 10}, + [918] = {.lex_state = 68, .external_lex_state = 3}, + [919] = {.lex_state = 68, .external_lex_state = 2}, + [920] = {.lex_state = 68, .external_lex_state = 2}, + [921] = {.lex_state = 67, .external_lex_state = 10}, + [922] = {.lex_state = 68, .external_lex_state = 3}, + [923] = {.lex_state = 68, .external_lex_state = 2}, + [924] = {.lex_state = 67, .external_lex_state = 10}, + [925] = {.lex_state = 67, .external_lex_state = 10}, + [926] = {.lex_state = 67, .external_lex_state = 10}, + [927] = {.lex_state = 67, .external_lex_state = 10}, + [928] = {.lex_state = 67, .external_lex_state = 10}, + [929] = {.lex_state = 67, .external_lex_state = 9}, + [930] = {.lex_state = 67, .external_lex_state = 9}, + [931] = {.lex_state = 66, .external_lex_state = 8}, + [932] = {.lex_state = 68, .external_lex_state = 3}, + [933] = {.lex_state = 68, .external_lex_state = 3}, + [934] = {.lex_state = 66, .external_lex_state = 8}, [935] = {.lex_state = 66, .external_lex_state = 8}, - [936] = {.lex_state = 66, .external_lex_state = 3}, - [937] = {.lex_state = 66, .external_lex_state = 2}, - [938] = {.lex_state = 66, .external_lex_state = 8}, - [939] = {.lex_state = 66, .external_lex_state = 2}, - [940] = {.lex_state = 66, .external_lex_state = 8}, + [936] = {.lex_state = 68, .external_lex_state = 3}, + [937] = {.lex_state = 68, .external_lex_state = 3}, + [938] = {.lex_state = 68, .external_lex_state = 3}, + [939] = {.lex_state = 66, .external_lex_state = 8}, + [940] = {.lex_state = 66, .external_lex_state = 5}, [941] = {.lex_state = 66, .external_lex_state = 8}, - [942] = {.lex_state = 66, .external_lex_state = 8}, + [942] = {.lex_state = 66, .external_lex_state = 5}, [943] = {.lex_state = 66, .external_lex_state = 8}, [944] = {.lex_state = 66, .external_lex_state = 8}, [945] = {.lex_state = 66, .external_lex_state = 8}, [946] = {.lex_state = 66, .external_lex_state = 8}, [947] = {.lex_state = 66, .external_lex_state = 8}, - [948] = {.lex_state = 66, .external_lex_state = 5}, + [948] = {.lex_state = 66, .external_lex_state = 8}, [949] = {.lex_state = 66, .external_lex_state = 8}, - [950] = {.lex_state = 66, .external_lex_state = 2}, - [951] = {.lex_state = 66, .external_lex_state = 8}, - [952] = {.lex_state = 66, .external_lex_state = 3}, + [950] = {.lex_state = 66, .external_lex_state = 8}, + [951] = {.lex_state = 67, .external_lex_state = 10}, + [952] = {.lex_state = 68, .external_lex_state = 3}, [953] = {.lex_state = 66, .external_lex_state = 8}, - [954] = {.lex_state = 66, .external_lex_state = 2}, - [955] = {.lex_state = 66, .external_lex_state = 2}, + [954] = {.lex_state = 66, .external_lex_state = 8}, + [955] = {.lex_state = 66, .external_lex_state = 8}, [956] = {.lex_state = 66, .external_lex_state = 8}, [957] = {.lex_state = 66, .external_lex_state = 8}, - [958] = {.lex_state = 66, .external_lex_state = 3}, - [959] = {.lex_state = 66, .external_lex_state = 8}, - [960] = {.lex_state = 66, .external_lex_state = 8}, - [961] = {.lex_state = 66, .external_lex_state = 2}, + [958] = {.lex_state = 66, .external_lex_state = 8}, + [959] = {.lex_state = 67, .external_lex_state = 9}, + [960] = {.lex_state = 68, .external_lex_state = 2}, + [961] = {.lex_state = 66, .external_lex_state = 8}, [962] = {.lex_state = 66, .external_lex_state = 8}, [963] = {.lex_state = 66, .external_lex_state = 8}, - [964] = {.lex_state = 66, .external_lex_state = 8}, - [965] = {.lex_state = 66, .external_lex_state = 8}, + [964] = {.lex_state = 67, .external_lex_state = 9}, + [965] = {.lex_state = 68, .external_lex_state = 2}, [966] = {.lex_state = 66, .external_lex_state = 8}, - [967] = {.lex_state = 66, .external_lex_state = 3}, + [967] = {.lex_state = 66, .external_lex_state = 8}, [968] = {.lex_state = 66, .external_lex_state = 8}, [969] = {.lex_state = 66, .external_lex_state = 8}, - [970] = {.lex_state = 66, .external_lex_state = 2}, - [971] = {.lex_state = 66, .external_lex_state = 2}, - [972] = {.lex_state = 66, .external_lex_state = 3}, - [973] = {.lex_state = 66, .external_lex_state = 2}, - [974] = {.lex_state = 66, .external_lex_state = 8}, - [975] = {.lex_state = 66, .external_lex_state = 3}, + [970] = {.lex_state = 66, .external_lex_state = 8}, + [971] = {.lex_state = 66, .external_lex_state = 8}, + [972] = {.lex_state = 67, .external_lex_state = 9}, + [973] = {.lex_state = 67, .external_lex_state = 9}, + [974] = {.lex_state = 68, .external_lex_state = 2}, + [975] = {.lex_state = 66, .external_lex_state = 8}, [976] = {.lex_state = 66, .external_lex_state = 8}, - [977] = {.lex_state = 66, .external_lex_state = 8}, - [978] = {.lex_state = 66, .external_lex_state = 8}, - [979] = {.lex_state = 66, .external_lex_state = 8}, + [977] = {.lex_state = 68, .external_lex_state = 2}, + [978] = {.lex_state = 11, .external_lex_state = 6}, + [979] = {.lex_state = 66, .external_lex_state = 2}, [980] = {.lex_state = 66, .external_lex_state = 2}, - [981] = {.lex_state = 66, .external_lex_state = 3}, - [982] = {.lex_state = 66, .external_lex_state = 8}, + [981] = {.lex_state = 66, .external_lex_state = 6}, + [982] = {.lex_state = 66, .external_lex_state = 2}, [983] = {.lex_state = 66, .external_lex_state = 3}, - [984] = {.lex_state = 66, .external_lex_state = 8}, - [985] = {.lex_state = 66, .external_lex_state = 8}, - [986] = {.lex_state = 66, .external_lex_state = 8}, + [984] = {.lex_state = 66, .external_lex_state = 3}, + [985] = {.lex_state = 66, .external_lex_state = 2}, + [986] = {.lex_state = 66, .external_lex_state = 3}, [987] = {.lex_state = 66, .external_lex_state = 3}, [988] = {.lex_state = 66, .external_lex_state = 8}, - [989] = {.lex_state = 66, .external_lex_state = 8}, - [990] = {.lex_state = 66, .external_lex_state = 8}, - [991] = {.lex_state = 66, .external_lex_state = 8}, - [992] = {.lex_state = 66, .external_lex_state = 8}, - [993] = {.lex_state = 66, .external_lex_state = 5}, - [994] = {.lex_state = 66, .external_lex_state = 5}, + [989] = {.lex_state = 66, .external_lex_state = 2}, + [990] = {.lex_state = 66, .external_lex_state = 3}, + [991] = {.lex_state = 66, .external_lex_state = 2}, + [992] = {.lex_state = 66, .external_lex_state = 3}, + [993] = {.lex_state = 66, .external_lex_state = 7}, + [994] = {.lex_state = 11, .external_lex_state = 7}, [995] = {.lex_state = 66, .external_lex_state = 3}, - [996] = {.lex_state = 5, .external_lex_state = 2}, - [997] = {.lex_state = 66, .external_lex_state = 3}, + [996] = {.lex_state = 66, .external_lex_state = 3}, + [997] = {.lex_state = 66, .external_lex_state = 2}, [998] = {.lex_state = 66, .external_lex_state = 2}, - [999] = {.lex_state = 66, .external_lex_state = 2}, + [999] = {.lex_state = 11, .external_lex_state = 7}, [1000] = {.lex_state = 66, .external_lex_state = 2}, - [1001] = {.lex_state = 66, .external_lex_state = 3}, - [1002] = {.lex_state = 66, .external_lex_state = 3}, - [1003] = {.lex_state = 66, .external_lex_state = 3}, - [1004] = {.lex_state = 66, .external_lex_state = 3}, - [1005] = {.lex_state = 66, .external_lex_state = 8}, - [1006] = {.lex_state = 66, .external_lex_state = 2}, - [1007] = {.lex_state = 66, .external_lex_state = 2}, - [1008] = {.lex_state = 66, .external_lex_state = 2}, + [1001] = {.lex_state = 66, .external_lex_state = 6}, + [1002] = {.lex_state = 66, .external_lex_state = 2}, + [1003] = {.lex_state = 66, .external_lex_state = 2}, + [1004] = {.lex_state = 66, .external_lex_state = 2}, + [1005] = {.lex_state = 66, .external_lex_state = 2}, + [1006] = {.lex_state = 66, .external_lex_state = 5}, + [1007] = {.lex_state = 66, .external_lex_state = 8}, + [1008] = {.lex_state = 66, .external_lex_state = 5}, [1009] = {.lex_state = 66, .external_lex_state = 2}, - [1010] = {.lex_state = 66, .external_lex_state = 2}, - [1011] = {.lex_state = 66, .external_lex_state = 2}, - [1012] = {.lex_state = 66, .external_lex_state = 2}, + [1010] = {.lex_state = 66, .external_lex_state = 5}, + [1011] = {.lex_state = 66, .external_lex_state = 8}, + [1012] = {.lex_state = 66, .external_lex_state = 8}, [1013] = {.lex_state = 66, .external_lex_state = 2}, [1014] = {.lex_state = 66, .external_lex_state = 2}, [1015] = {.lex_state = 66, .external_lex_state = 2}, [1016] = {.lex_state = 66, .external_lex_state = 8}, - [1017] = {.lex_state = 66, .external_lex_state = 2}, - [1018] = {.lex_state = 66, .external_lex_state = 8}, + [1017] = {.lex_state = 66, .external_lex_state = 3}, + [1018] = {.lex_state = 66, .external_lex_state = 2}, [1019] = {.lex_state = 66, .external_lex_state = 2}, [1020] = {.lex_state = 66, .external_lex_state = 2}, - [1021] = {.lex_state = 66, .external_lex_state = 2}, + [1021] = {.lex_state = 66, .external_lex_state = 3}, [1022] = {.lex_state = 66, .external_lex_state = 2}, [1023] = {.lex_state = 66, .external_lex_state = 2}, - [1024] = {.lex_state = 66, .external_lex_state = 2}, - [1025] = {.lex_state = 66, .external_lex_state = 2}, + [1024] = {.lex_state = 66, .external_lex_state = 6}, + [1025] = {.lex_state = 66, .external_lex_state = 3}, [1026] = {.lex_state = 66, .external_lex_state = 2}, [1027] = {.lex_state = 66, .external_lex_state = 2}, - [1028] = {.lex_state = 66, .external_lex_state = 2}, - [1029] = {.lex_state = 66, .external_lex_state = 2}, + [1028] = {.lex_state = 66, .external_lex_state = 8}, + [1029] = {.lex_state = 66, .external_lex_state = 3}, [1030] = {.lex_state = 66, .external_lex_state = 2}, [1031] = {.lex_state = 66, .external_lex_state = 2}, [1032] = {.lex_state = 66, .external_lex_state = 2}, [1033] = {.lex_state = 66, .external_lex_state = 2}, [1034] = {.lex_state = 66, .external_lex_state = 2}, - [1035] = {.lex_state = 66, .external_lex_state = 2}, + [1035] = {.lex_state = 66, .external_lex_state = 3}, [1036] = {.lex_state = 66, .external_lex_state = 2}, [1037] = {.lex_state = 66, .external_lex_state = 2}, [1038] = {.lex_state = 66, .external_lex_state = 2}, - [1039] = {.lex_state = 66, .external_lex_state = 2}, + [1039] = {.lex_state = 66, .external_lex_state = 5}, [1040] = {.lex_state = 66, .external_lex_state = 2}, [1041] = {.lex_state = 66, .external_lex_state = 2}, - [1042] = {.lex_state = 66, .external_lex_state = 2}, + [1042] = {.lex_state = 11, .external_lex_state = 6}, [1043] = {.lex_state = 66, .external_lex_state = 2}, - [1044] = {.lex_state = 66, .external_lex_state = 2}, + [1044] = {.lex_state = 66, .external_lex_state = 8}, [1045] = {.lex_state = 66, .external_lex_state = 2}, - [1046] = {.lex_state = 66, .external_lex_state = 2}, + [1046] = {.lex_state = 66, .external_lex_state = 6}, [1047] = {.lex_state = 66, .external_lex_state = 2}, [1048] = {.lex_state = 66, .external_lex_state = 2}, [1049] = {.lex_state = 66, .external_lex_state = 2}, @@ -13768,11 +13783,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1057] = {.lex_state = 66, .external_lex_state = 2}, [1058] = {.lex_state = 66, .external_lex_state = 2}, [1059] = {.lex_state = 66, .external_lex_state = 2}, - [1060] = {.lex_state = 66, .external_lex_state = 2}, - [1061] = {.lex_state = 66, .external_lex_state = 2}, - [1062] = {.lex_state = 66, .external_lex_state = 2}, - [1063] = {.lex_state = 66, .external_lex_state = 2}, - [1064] = {.lex_state = 66, .external_lex_state = 2}, + [1060] = {.lex_state = 66, .external_lex_state = 3}, + [1061] = {.lex_state = 66, .external_lex_state = 5}, + [1062] = {.lex_state = 66, .external_lex_state = 5}, + [1063] = {.lex_state = 66, .external_lex_state = 7}, + [1064] = {.lex_state = 66, .external_lex_state = 3}, [1065] = {.lex_state = 66, .external_lex_state = 2}, [1066] = {.lex_state = 66, .external_lex_state = 2}, [1067] = {.lex_state = 66, .external_lex_state = 2}, @@ -13802,18 +13817,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1091] = {.lex_state = 66, .external_lex_state = 2}, [1092] = {.lex_state = 66, .external_lex_state = 2}, [1093] = {.lex_state = 66, .external_lex_state = 2}, - [1094] = {.lex_state = 66, .external_lex_state = 6}, + [1094] = {.lex_state = 66, .external_lex_state = 2}, [1095] = {.lex_state = 66, .external_lex_state = 2}, [1096] = {.lex_state = 66, .external_lex_state = 2}, - [1097] = {.lex_state = 66, .external_lex_state = 8}, + [1097] = {.lex_state = 66, .external_lex_state = 2}, [1098] = {.lex_state = 66, .external_lex_state = 2}, [1099] = {.lex_state = 66, .external_lex_state = 2}, [1100] = {.lex_state = 66, .external_lex_state = 2}, - [1101] = {.lex_state = 66, .external_lex_state = 2}, + [1101] = {.lex_state = 11, .external_lex_state = 2}, [1102] = {.lex_state = 66, .external_lex_state = 2}, - [1103] = {.lex_state = 66, .external_lex_state = 5}, - [1104] = {.lex_state = 66, .external_lex_state = 6}, - [1105] = {.lex_state = 11, .external_lex_state = 6}, + [1103] = {.lex_state = 66, .external_lex_state = 2}, + [1104] = {.lex_state = 66, .external_lex_state = 2}, + [1105] = {.lex_state = 66, .external_lex_state = 2}, [1106] = {.lex_state = 66, .external_lex_state = 2}, [1107] = {.lex_state = 66, .external_lex_state = 2}, [1108] = {.lex_state = 66, .external_lex_state = 2}, @@ -13824,7 +13839,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1113] = {.lex_state = 66, .external_lex_state = 2}, [1114] = {.lex_state = 66, .external_lex_state = 2}, [1115] = {.lex_state = 66, .external_lex_state = 2}, - [1116] = {.lex_state = 66, .external_lex_state = 5}, + [1116] = {.lex_state = 66, .external_lex_state = 2}, [1117] = {.lex_state = 66, .external_lex_state = 2}, [1118] = {.lex_state = 66, .external_lex_state = 2}, [1119] = {.lex_state = 66, .external_lex_state = 2}, @@ -13855,32 +13870,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1144] = {.lex_state = 66, .external_lex_state = 2}, [1145] = {.lex_state = 66, .external_lex_state = 2}, [1146] = {.lex_state = 66, .external_lex_state = 2}, - [1147] = {.lex_state = 66, .external_lex_state = 6}, + [1147] = {.lex_state = 66, .external_lex_state = 2}, [1148] = {.lex_state = 66, .external_lex_state = 2}, - [1149] = {.lex_state = 66, .external_lex_state = 6}, + [1149] = {.lex_state = 66, .external_lex_state = 2}, [1150] = {.lex_state = 66, .external_lex_state = 2}, [1151] = {.lex_state = 66, .external_lex_state = 2}, [1152] = {.lex_state = 66, .external_lex_state = 2}, - [1153] = {.lex_state = 66, .external_lex_state = 8}, - [1154] = {.lex_state = 11, .external_lex_state = 7}, - [1155] = {.lex_state = 66, .external_lex_state = 8}, + [1153] = {.lex_state = 66, .external_lex_state = 2}, + [1154] = {.lex_state = 66, .external_lex_state = 2}, + [1155] = {.lex_state = 66, .external_lex_state = 2}, [1156] = {.lex_state = 66, .external_lex_state = 2}, - [1157] = {.lex_state = 66, .external_lex_state = 5}, - [1158] = {.lex_state = 66, .external_lex_state = 5}, + [1157] = {.lex_state = 66, .external_lex_state = 2}, + [1158] = {.lex_state = 66, .external_lex_state = 2}, [1159] = {.lex_state = 66, .external_lex_state = 2}, [1160] = {.lex_state = 66, .external_lex_state = 2}, - [1161] = {.lex_state = 66, .external_lex_state = 2}, + [1161] = {.lex_state = 11, .external_lex_state = 2}, [1162] = {.lex_state = 66, .external_lex_state = 2}, [1163] = {.lex_state = 66, .external_lex_state = 2}, [1164] = {.lex_state = 66, .external_lex_state = 2}, - [1165] = {.lex_state = 66, .external_lex_state = 2}, + [1165] = {.lex_state = 66, .external_lex_state = 3}, [1166] = {.lex_state = 66, .external_lex_state = 2}, [1167] = {.lex_state = 66, .external_lex_state = 2}, [1168] = {.lex_state = 66, .external_lex_state = 2}, - [1169] = {.lex_state = 66, .external_lex_state = 3}, - [1170] = {.lex_state = 66, .external_lex_state = 8}, - [1171] = {.lex_state = 11, .external_lex_state = 6}, - [1172] = {.lex_state = 11, .external_lex_state = 7}, + [1169] = {.lex_state = 66, .external_lex_state = 2}, + [1170] = {.lex_state = 66, .external_lex_state = 2}, + [1171] = {.lex_state = 66, .external_lex_state = 2}, + [1172] = {.lex_state = 66, .external_lex_state = 2}, [1173] = {.lex_state = 66, .external_lex_state = 2}, [1174] = {.lex_state = 66, .external_lex_state = 2}, [1175] = {.lex_state = 66, .external_lex_state = 2}, @@ -13900,7 +13915,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1189] = {.lex_state = 66, .external_lex_state = 2}, [1190] = {.lex_state = 66, .external_lex_state = 2}, [1191] = {.lex_state = 66, .external_lex_state = 2}, - [1192] = {.lex_state = 66, .external_lex_state = 5}, + [1192] = {.lex_state = 66, .external_lex_state = 2}, [1193] = {.lex_state = 66, .external_lex_state = 2}, [1194] = {.lex_state = 66, .external_lex_state = 2}, [1195] = {.lex_state = 66, .external_lex_state = 2}, @@ -13908,10 +13923,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1197] = {.lex_state = 66, .external_lex_state = 2}, [1198] = {.lex_state = 66, .external_lex_state = 2}, [1199] = {.lex_state = 66, .external_lex_state = 2}, - [1200] = {.lex_state = 66, .external_lex_state = 5}, + [1200] = {.lex_state = 66, .external_lex_state = 2}, [1201] = {.lex_state = 66, .external_lex_state = 2}, [1202] = {.lex_state = 66, .external_lex_state = 2}, - [1203] = {.lex_state = 66, .external_lex_state = 8}, + [1203] = {.lex_state = 66, .external_lex_state = 2}, [1204] = {.lex_state = 66, .external_lex_state = 2}, [1205] = {.lex_state = 66, .external_lex_state = 2}, [1206] = {.lex_state = 66, .external_lex_state = 2}, @@ -13945,7 +13960,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1234] = {.lex_state = 66, .external_lex_state = 2}, [1235] = {.lex_state = 66, .external_lex_state = 2}, [1236] = {.lex_state = 66, .external_lex_state = 2}, - [1237] = {.lex_state = 66, .external_lex_state = 2}, + [1237] = {.lex_state = 66, .external_lex_state = 3}, [1238] = {.lex_state = 66, .external_lex_state = 2}, [1239] = {.lex_state = 66, .external_lex_state = 2}, [1240] = {.lex_state = 66, .external_lex_state = 2}, @@ -13953,119 +13968,119 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1242] = {.lex_state = 66, .external_lex_state = 2}, [1243] = {.lex_state = 66, .external_lex_state = 2}, [1244] = {.lex_state = 66, .external_lex_state = 2}, - [1245] = {.lex_state = 66, .external_lex_state = 7}, - [1246] = {.lex_state = 66, .external_lex_state = 7}, + [1245] = {.lex_state = 66, .external_lex_state = 2}, + [1246] = {.lex_state = 66, .external_lex_state = 2}, [1247] = {.lex_state = 66, .external_lex_state = 2}, [1248] = {.lex_state = 66, .external_lex_state = 2}, [1249] = {.lex_state = 66, .external_lex_state = 2}, [1250] = {.lex_state = 66, .external_lex_state = 2}, - [1251] = {.lex_state = 66, .external_lex_state = 3}, + [1251] = {.lex_state = 66, .external_lex_state = 2}, [1252] = {.lex_state = 66, .external_lex_state = 2}, [1253] = {.lex_state = 66, .external_lex_state = 2}, - [1254] = {.lex_state = 66, .external_lex_state = 3}, + [1254] = {.lex_state = 66, .external_lex_state = 2}, [1255] = {.lex_state = 66, .external_lex_state = 2}, [1256] = {.lex_state = 66, .external_lex_state = 2}, [1257] = {.lex_state = 66, .external_lex_state = 2}, [1258] = {.lex_state = 66, .external_lex_state = 2}, - [1259] = {.lex_state = 66, .external_lex_state = 3}, + [1259] = {.lex_state = 66, .external_lex_state = 2}, [1260] = {.lex_state = 66, .external_lex_state = 2}, - [1261] = {.lex_state = 66, .external_lex_state = 3}, + [1261] = {.lex_state = 66, .external_lex_state = 2}, [1262] = {.lex_state = 66, .external_lex_state = 2}, [1263] = {.lex_state = 66, .external_lex_state = 2}, [1264] = {.lex_state = 66, .external_lex_state = 2}, - [1265] = {.lex_state = 66, .external_lex_state = 3}, - [1266] = {.lex_state = 66, .external_lex_state = 3}, + [1265] = {.lex_state = 66, .external_lex_state = 2}, + [1266] = {.lex_state = 66, .external_lex_state = 2}, [1267] = {.lex_state = 66, .external_lex_state = 2}, [1268] = {.lex_state = 66, .external_lex_state = 2}, - [1269] = {.lex_state = 66, .external_lex_state = 3}, - [1270] = {.lex_state = 66, .external_lex_state = 3}, + [1269] = {.lex_state = 66, .external_lex_state = 2}, + [1270] = {.lex_state = 66, .external_lex_state = 2}, [1271] = {.lex_state = 66, .external_lex_state = 2}, [1272] = {.lex_state = 66, .external_lex_state = 2}, [1273] = {.lex_state = 66, .external_lex_state = 2}, [1274] = {.lex_state = 66, .external_lex_state = 2}, - [1275] = {.lex_state = 66, .external_lex_state = 3}, + [1275] = {.lex_state = 66, .external_lex_state = 2}, [1276] = {.lex_state = 66, .external_lex_state = 3}, [1277] = {.lex_state = 66, .external_lex_state = 2}, [1278] = {.lex_state = 66, .external_lex_state = 2}, - [1279] = {.lex_state = 66, .external_lex_state = 3}, - [1280] = {.lex_state = 66, .external_lex_state = 3}, + [1279] = {.lex_state = 66, .external_lex_state = 2}, + [1280] = {.lex_state = 66, .external_lex_state = 2}, [1281] = {.lex_state = 66, .external_lex_state = 2}, - [1282] = {.lex_state = 66, .external_lex_state = 3}, - [1283] = {.lex_state = 66, .external_lex_state = 3}, - [1284] = {.lex_state = 66, .external_lex_state = 3}, - [1285] = {.lex_state = 66, .external_lex_state = 3}, + [1282] = {.lex_state = 66, .external_lex_state = 2}, + [1283] = {.lex_state = 66, .external_lex_state = 2}, + [1284] = {.lex_state = 66, .external_lex_state = 2}, + [1285] = {.lex_state = 66, .external_lex_state = 2}, [1286] = {.lex_state = 66, .external_lex_state = 2}, [1287] = {.lex_state = 66, .external_lex_state = 2}, - [1288] = {.lex_state = 66, .external_lex_state = 3}, + [1288] = {.lex_state = 66, .external_lex_state = 2}, [1289] = {.lex_state = 66, .external_lex_state = 2}, [1290] = {.lex_state = 66, .external_lex_state = 2}, - [1291] = {.lex_state = 66, .external_lex_state = 3}, - [1292] = {.lex_state = 66, .external_lex_state = 3}, + [1291] = {.lex_state = 66, .external_lex_state = 2}, + [1292] = {.lex_state = 66, .external_lex_state = 2}, [1293] = {.lex_state = 66, .external_lex_state = 2}, [1294] = {.lex_state = 66, .external_lex_state = 2}, - [1295] = {.lex_state = 66, .external_lex_state = 3}, + [1295] = {.lex_state = 66, .external_lex_state = 2}, [1296] = {.lex_state = 66, .external_lex_state = 2}, [1297] = {.lex_state = 66, .external_lex_state = 2}, [1298] = {.lex_state = 66, .external_lex_state = 2}, - [1299] = {.lex_state = 66, .external_lex_state = 3}, + [1299] = {.lex_state = 11, .external_lex_state = 2}, [1300] = {.lex_state = 66, .external_lex_state = 2}, - [1301] = {.lex_state = 66, .external_lex_state = 3}, - [1302] = {.lex_state = 66, .external_lex_state = 3}, + [1301] = {.lex_state = 66, .external_lex_state = 2}, + [1302] = {.lex_state = 66, .external_lex_state = 2}, [1303] = {.lex_state = 66, .external_lex_state = 2}, - [1304] = {.lex_state = 66, .external_lex_state = 3}, + [1304] = {.lex_state = 66, .external_lex_state = 2}, [1305] = {.lex_state = 66, .external_lex_state = 2}, - [1306] = {.lex_state = 66, .external_lex_state = 3}, + [1306] = {.lex_state = 66, .external_lex_state = 2}, [1307] = {.lex_state = 66, .external_lex_state = 2}, [1308] = {.lex_state = 66, .external_lex_state = 2}, [1309] = {.lex_state = 66, .external_lex_state = 2}, - [1310] = {.lex_state = 66, .external_lex_state = 3}, - [1311] = {.lex_state = 66, .external_lex_state = 3}, + [1310] = {.lex_state = 66, .external_lex_state = 2}, + [1311] = {.lex_state = 66, .external_lex_state = 2}, [1312] = {.lex_state = 66, .external_lex_state = 2}, - [1313] = {.lex_state = 66, .external_lex_state = 3}, - [1314] = {.lex_state = 66, .external_lex_state = 3}, - [1315] = {.lex_state = 66, .external_lex_state = 3}, - [1316] = {.lex_state = 66, .external_lex_state = 3}, - [1317] = {.lex_state = 66, .external_lex_state = 3}, + [1313] = {.lex_state = 66, .external_lex_state = 2}, + [1314] = {.lex_state = 66, .external_lex_state = 2}, + [1315] = {.lex_state = 66, .external_lex_state = 2}, + [1316] = {.lex_state = 66, .external_lex_state = 2}, + [1317] = {.lex_state = 66, .external_lex_state = 2}, [1318] = {.lex_state = 66, .external_lex_state = 2}, - [1319] = {.lex_state = 66, .external_lex_state = 3}, + [1319] = {.lex_state = 66, .external_lex_state = 2}, [1320] = {.lex_state = 66, .external_lex_state = 2}, [1321] = {.lex_state = 66, .external_lex_state = 2}, [1322] = {.lex_state = 66, .external_lex_state = 2}, - [1323] = {.lex_state = 66, .external_lex_state = 3}, + [1323] = {.lex_state = 66, .external_lex_state = 2}, [1324] = {.lex_state = 66, .external_lex_state = 2}, - [1325] = {.lex_state = 66, .external_lex_state = 3}, + [1325] = {.lex_state = 66, .external_lex_state = 2}, [1326] = {.lex_state = 66, .external_lex_state = 2}, [1327] = {.lex_state = 66, .external_lex_state = 2}, [1328] = {.lex_state = 66, .external_lex_state = 2}, - [1329] = {.lex_state = 66, .external_lex_state = 3}, - [1330] = {.lex_state = 66, .external_lex_state = 3}, + [1329] = {.lex_state = 66, .external_lex_state = 2}, + [1330] = {.lex_state = 66, .external_lex_state = 2}, [1331] = {.lex_state = 66, .external_lex_state = 2}, - [1332] = {.lex_state = 66, .external_lex_state = 3}, - [1333] = {.lex_state = 66, .external_lex_state = 3}, + [1332] = {.lex_state = 66, .external_lex_state = 2}, + [1333] = {.lex_state = 66, .external_lex_state = 2}, [1334] = {.lex_state = 66, .external_lex_state = 2}, [1335] = {.lex_state = 66, .external_lex_state = 2}, - [1336] = {.lex_state = 66, .external_lex_state = 3}, + [1336] = {.lex_state = 66, .external_lex_state = 2}, [1337] = {.lex_state = 66, .external_lex_state = 2}, [1338] = {.lex_state = 66, .external_lex_state = 2}, [1339] = {.lex_state = 66, .external_lex_state = 2}, [1340] = {.lex_state = 66, .external_lex_state = 2}, - [1341] = {.lex_state = 66, .external_lex_state = 3}, - [1342] = {.lex_state = 66, .external_lex_state = 3}, + [1341] = {.lex_state = 66, .external_lex_state = 2}, + [1342] = {.lex_state = 66, .external_lex_state = 2}, [1343] = {.lex_state = 66, .external_lex_state = 2}, - [1344] = {.lex_state = 66, .external_lex_state = 3}, + [1344] = {.lex_state = 66, .external_lex_state = 2}, [1345] = {.lex_state = 66, .external_lex_state = 2}, [1346] = {.lex_state = 66, .external_lex_state = 2}, [1347] = {.lex_state = 66, .external_lex_state = 2}, [1348] = {.lex_state = 66, .external_lex_state = 2}, [1349] = {.lex_state = 66, .external_lex_state = 2}, - [1350] = {.lex_state = 66, .external_lex_state = 3}, - [1351] = {.lex_state = 66, .external_lex_state = 3}, - [1352] = {.lex_state = 66, .external_lex_state = 3}, + [1350] = {.lex_state = 66, .external_lex_state = 2}, + [1351] = {.lex_state = 66, .external_lex_state = 2}, + [1352] = {.lex_state = 66, .external_lex_state = 2}, [1353] = {.lex_state = 66, .external_lex_state = 2}, - [1354] = {.lex_state = 66, .external_lex_state = 3}, + [1354] = {.lex_state = 66, .external_lex_state = 2}, [1355] = {.lex_state = 66, .external_lex_state = 2}, [1356] = {.lex_state = 66, .external_lex_state = 2}, - [1357] = {.lex_state = 66, .external_lex_state = 3}, + [1357] = {.lex_state = 66, .external_lex_state = 2}, [1358] = {.lex_state = 66, .external_lex_state = 2}, [1359] = {.lex_state = 66, .external_lex_state = 2}, [1360] = {.lex_state = 66, .external_lex_state = 2}, @@ -14073,17 +14088,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1362] = {.lex_state = 66, .external_lex_state = 2}, [1363] = {.lex_state = 66, .external_lex_state = 2}, [1364] = {.lex_state = 66, .external_lex_state = 2}, - [1365] = {.lex_state = 66, .external_lex_state = 3}, - [1366] = {.lex_state = 66, .external_lex_state = 3}, - [1367] = {.lex_state = 66, .external_lex_state = 3}, + [1365] = {.lex_state = 66, .external_lex_state = 2}, + [1366] = {.lex_state = 66, .external_lex_state = 2}, + [1367] = {.lex_state = 66, .external_lex_state = 2}, [1368] = {.lex_state = 66, .external_lex_state = 2}, - [1369] = {.lex_state = 66, .external_lex_state = 3}, + [1369] = {.lex_state = 66, .external_lex_state = 2}, [1370] = {.lex_state = 66, .external_lex_state = 2}, - [1371] = {.lex_state = 66, .external_lex_state = 3}, + [1371] = {.lex_state = 66, .external_lex_state = 2}, [1372] = {.lex_state = 66, .external_lex_state = 2}, - [1373] = {.lex_state = 66, .external_lex_state = 3}, - [1374] = {.lex_state = 66, .external_lex_state = 3}, - [1375] = {.lex_state = 66, .external_lex_state = 3}, + [1373] = {.lex_state = 66, .external_lex_state = 2}, + [1374] = {.lex_state = 66, .external_lex_state = 2}, + [1375] = {.lex_state = 66, .external_lex_state = 2}, [1376] = {.lex_state = 66, .external_lex_state = 2}, [1377] = {.lex_state = 66, .external_lex_state = 2}, [1378] = {.lex_state = 66, .external_lex_state = 2}, @@ -14092,22 +14107,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1381] = {.lex_state = 66, .external_lex_state = 2}, [1382] = {.lex_state = 66, .external_lex_state = 2}, [1383] = {.lex_state = 66, .external_lex_state = 2}, - [1384] = {.lex_state = 66, .external_lex_state = 3}, - [1385] = {.lex_state = 11, .external_lex_state = 2}, + [1384] = {.lex_state = 66, .external_lex_state = 2}, + [1385] = {.lex_state = 66, .external_lex_state = 2}, [1386] = {.lex_state = 66, .external_lex_state = 2}, [1387] = {.lex_state = 66, .external_lex_state = 2}, [1388] = {.lex_state = 66, .external_lex_state = 2}, - [1389] = {.lex_state = 66, .external_lex_state = 3}, - [1390] = {.lex_state = 66, .external_lex_state = 3}, + [1389] = {.lex_state = 66, .external_lex_state = 2}, + [1390] = {.lex_state = 66, .external_lex_state = 2}, [1391] = {.lex_state = 66, .external_lex_state = 2}, [1392] = {.lex_state = 66, .external_lex_state = 2}, [1393] = {.lex_state = 66, .external_lex_state = 2}, - [1394] = {.lex_state = 11, .external_lex_state = 2}, + [1394] = {.lex_state = 66, .external_lex_state = 2}, [1395] = {.lex_state = 66, .external_lex_state = 2}, [1396] = {.lex_state = 66, .external_lex_state = 2}, [1397] = {.lex_state = 66, .external_lex_state = 2}, [1398] = {.lex_state = 66, .external_lex_state = 2}, - [1399] = {.lex_state = 66, .external_lex_state = 3}, + [1399] = {.lex_state = 66, .external_lex_state = 2}, [1400] = {.lex_state = 66, .external_lex_state = 2}, [1401] = {.lex_state = 66, .external_lex_state = 2}, [1402] = {.lex_state = 66, .external_lex_state = 2}, @@ -14144,16 +14159,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1433] = {.lex_state = 66, .external_lex_state = 2}, [1434] = {.lex_state = 66, .external_lex_state = 2}, [1435] = {.lex_state = 66, .external_lex_state = 2}, - [1436] = {.lex_state = 66, .external_lex_state = 2}, + [1436] = {.lex_state = 11, .external_lex_state = 2}, [1437] = {.lex_state = 66, .external_lex_state = 2}, [1438] = {.lex_state = 66, .external_lex_state = 2}, [1439] = {.lex_state = 66, .external_lex_state = 2}, - [1440] = {.lex_state = 66, .external_lex_state = 2}, + [1440] = {.lex_state = 66, .external_lex_state = 3}, [1441] = {.lex_state = 66, .external_lex_state = 2}, [1442] = {.lex_state = 66, .external_lex_state = 2}, [1443] = {.lex_state = 66, .external_lex_state = 2}, [1444] = {.lex_state = 66, .external_lex_state = 2}, - [1445] = {.lex_state = 66, .external_lex_state = 2}, + [1445] = {.lex_state = 66, .external_lex_state = 3}, [1446] = {.lex_state = 66, .external_lex_state = 2}, [1447] = {.lex_state = 66, .external_lex_state = 2}, [1448] = {.lex_state = 66, .external_lex_state = 2}, @@ -14201,7 +14216,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1490] = {.lex_state = 66, .external_lex_state = 2}, [1491] = {.lex_state = 66, .external_lex_state = 2}, [1492] = {.lex_state = 66, .external_lex_state = 2}, - [1493] = {.lex_state = 11, .external_lex_state = 2}, + [1493] = {.lex_state = 66, .external_lex_state = 2}, [1494] = {.lex_state = 66, .external_lex_state = 2}, [1495] = {.lex_state = 66, .external_lex_state = 2}, [1496] = {.lex_state = 66, .external_lex_state = 2}, @@ -14221,32 +14236,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1510] = {.lex_state = 66, .external_lex_state = 2}, [1511] = {.lex_state = 66, .external_lex_state = 2}, [1512] = {.lex_state = 66, .external_lex_state = 2}, - [1513] = {.lex_state = 66, .external_lex_state = 2}, - [1514] = {.lex_state = 66, .external_lex_state = 2}, - [1515] = {.lex_state = 66, .external_lex_state = 2}, - [1516] = {.lex_state = 66, .external_lex_state = 2}, + [1513] = {.lex_state = 66, .external_lex_state = 3}, + [1514] = {.lex_state = 66, .external_lex_state = 3}, + [1515] = {.lex_state = 66, .external_lex_state = 3}, + [1516] = {.lex_state = 66, .external_lex_state = 3}, [1517] = {.lex_state = 66, .external_lex_state = 2}, - [1518] = {.lex_state = 66, .external_lex_state = 2}, + [1518] = {.lex_state = 66, .external_lex_state = 3}, [1519] = {.lex_state = 66, .external_lex_state = 2}, - [1520] = {.lex_state = 66, .external_lex_state = 2}, + [1520] = {.lex_state = 66, .external_lex_state = 3}, [1521] = {.lex_state = 66, .external_lex_state = 2}, - [1522] = {.lex_state = 66, .external_lex_state = 2}, - [1523] = {.lex_state = 66, .external_lex_state = 2}, - [1524] = {.lex_state = 66, .external_lex_state = 2}, + [1522] = {.lex_state = 66, .external_lex_state = 3}, + [1523] = {.lex_state = 66, .external_lex_state = 3}, + [1524] = {.lex_state = 66, .external_lex_state = 3}, [1525] = {.lex_state = 66, .external_lex_state = 2}, - [1526] = {.lex_state = 66, .external_lex_state = 2}, - [1527] = {.lex_state = 66, .external_lex_state = 2}, + [1526] = {.lex_state = 66, .external_lex_state = 3}, + [1527] = {.lex_state = 66, .external_lex_state = 3}, [1528] = {.lex_state = 66, .external_lex_state = 2}, - [1529] = {.lex_state = 66, .external_lex_state = 2}, - [1530] = {.lex_state = 66, .external_lex_state = 2}, - [1531] = {.lex_state = 66, .external_lex_state = 2}, - [1532] = {.lex_state = 66, .external_lex_state = 2}, - [1533] = {.lex_state = 66, .external_lex_state = 2}, + [1529] = {.lex_state = 66, .external_lex_state = 3}, + [1530] = {.lex_state = 66, .external_lex_state = 3}, + [1531] = {.lex_state = 66, .external_lex_state = 3}, + [1532] = {.lex_state = 66, .external_lex_state = 3}, + [1533] = {.lex_state = 66, .external_lex_state = 3}, [1534] = {.lex_state = 66, .external_lex_state = 2}, [1535] = {.lex_state = 66, .external_lex_state = 2}, - [1536] = {.lex_state = 66, .external_lex_state = 2}, - [1537] = {.lex_state = 66, .external_lex_state = 2}, - [1538] = {.lex_state = 66, .external_lex_state = 2}, + [1536] = {.lex_state = 66, .external_lex_state = 3}, + [1537] = {.lex_state = 66, .external_lex_state = 3}, + [1538] = {.lex_state = 66, .external_lex_state = 3}, [1539] = {.lex_state = 66, .external_lex_state = 2}, [1540] = {.lex_state = 66, .external_lex_state = 2}, [1541] = {.lex_state = 66, .external_lex_state = 2}, @@ -14259,72 +14274,72 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1548] = {.lex_state = 66, .external_lex_state = 2}, [1549] = {.lex_state = 66, .external_lex_state = 2}, [1550] = {.lex_state = 66, .external_lex_state = 2}, - [1551] = {.lex_state = 66, .external_lex_state = 2}, + [1551] = {.lex_state = 66, .external_lex_state = 3}, [1552] = {.lex_state = 66, .external_lex_state = 2}, - [1553] = {.lex_state = 66, .external_lex_state = 2}, + [1553] = {.lex_state = 66, .external_lex_state = 3}, [1554] = {.lex_state = 66, .external_lex_state = 2}, - [1555] = {.lex_state = 66, .external_lex_state = 2}, - [1556] = {.lex_state = 66, .external_lex_state = 2}, + [1555] = {.lex_state = 66, .external_lex_state = 3}, + [1556] = {.lex_state = 66, .external_lex_state = 3}, [1557] = {.lex_state = 66, .external_lex_state = 2}, [1558] = {.lex_state = 66, .external_lex_state = 2}, - [1559] = {.lex_state = 66, .external_lex_state = 2}, - [1560] = {.lex_state = 66, .external_lex_state = 2}, - [1561] = {.lex_state = 66, .external_lex_state = 2}, - [1562] = {.lex_state = 66, .external_lex_state = 2}, - [1563] = {.lex_state = 66, .external_lex_state = 2}, - [1564] = {.lex_state = 66, .external_lex_state = 2}, - [1565] = {.lex_state = 66, .external_lex_state = 2}, - [1566] = {.lex_state = 11, .external_lex_state = 2}, - [1567] = {.lex_state = 66, .external_lex_state = 2}, - [1568] = {.lex_state = 66, .external_lex_state = 2}, - [1569] = {.lex_state = 66, .external_lex_state = 2}, + [1559] = {.lex_state = 66, .external_lex_state = 3}, + [1560] = {.lex_state = 66, .external_lex_state = 3}, + [1561] = {.lex_state = 66, .external_lex_state = 3}, + [1562] = {.lex_state = 66, .external_lex_state = 3}, + [1563] = {.lex_state = 66, .external_lex_state = 3}, + [1564] = {.lex_state = 66, .external_lex_state = 3}, + [1565] = {.lex_state = 66, .external_lex_state = 3}, + [1566] = {.lex_state = 66, .external_lex_state = 2}, + [1567] = {.lex_state = 66, .external_lex_state = 3}, + [1568] = {.lex_state = 66, .external_lex_state = 3}, + [1569] = {.lex_state = 66, .external_lex_state = 3}, [1570] = {.lex_state = 66, .external_lex_state = 2}, [1571] = {.lex_state = 66, .external_lex_state = 2}, [1572] = {.lex_state = 66, .external_lex_state = 2}, [1573] = {.lex_state = 66, .external_lex_state = 2}, - [1574] = {.lex_state = 66, .external_lex_state = 2}, - [1575] = {.lex_state = 66, .external_lex_state = 2}, + [1574] = {.lex_state = 66, .external_lex_state = 3}, + [1575] = {.lex_state = 66, .external_lex_state = 3}, [1576] = {.lex_state = 66, .external_lex_state = 2}, [1577] = {.lex_state = 66, .external_lex_state = 2}, - [1578] = {.lex_state = 66, .external_lex_state = 2}, - [1579] = {.lex_state = 66, .external_lex_state = 2}, - [1580] = {.lex_state = 66, .external_lex_state = 2}, + [1578] = {.lex_state = 66, .external_lex_state = 3}, + [1579] = {.lex_state = 66, .external_lex_state = 3}, + [1580] = {.lex_state = 66, .external_lex_state = 3}, [1581] = {.lex_state = 66, .external_lex_state = 2}, - [1582] = {.lex_state = 66, .external_lex_state = 2}, - [1583] = {.lex_state = 66, .external_lex_state = 2}, + [1582] = {.lex_state = 66, .external_lex_state = 3}, + [1583] = {.lex_state = 66, .external_lex_state = 3}, [1584] = {.lex_state = 66, .external_lex_state = 2}, [1585] = {.lex_state = 66, .external_lex_state = 2}, [1586] = {.lex_state = 66, .external_lex_state = 2}, - [1587] = {.lex_state = 66, .external_lex_state = 2}, - [1588] = {.lex_state = 66, .external_lex_state = 2}, - [1589] = {.lex_state = 66, .external_lex_state = 2}, - [1590] = {.lex_state = 66, .external_lex_state = 2}, + [1587] = {.lex_state = 66, .external_lex_state = 3}, + [1588] = {.lex_state = 66, .external_lex_state = 3}, + [1589] = {.lex_state = 66, .external_lex_state = 3}, + [1590] = {.lex_state = 66, .external_lex_state = 3}, [1591] = {.lex_state = 66, .external_lex_state = 2}, [1592] = {.lex_state = 66, .external_lex_state = 2}, [1593] = {.lex_state = 66, .external_lex_state = 2}, [1594] = {.lex_state = 66, .external_lex_state = 2}, [1595] = {.lex_state = 66, .external_lex_state = 2}, - [1596] = {.lex_state = 66, .external_lex_state = 2}, - [1597] = {.lex_state = 66, .external_lex_state = 2}, + [1596] = {.lex_state = 66, .external_lex_state = 3}, + [1597] = {.lex_state = 66, .external_lex_state = 3}, [1598] = {.lex_state = 66, .external_lex_state = 2}, [1599] = {.lex_state = 66, .external_lex_state = 2}, [1600] = {.lex_state = 66, .external_lex_state = 2}, [1601] = {.lex_state = 66, .external_lex_state = 2}, [1602] = {.lex_state = 66, .external_lex_state = 2}, [1603] = {.lex_state = 66, .external_lex_state = 2}, - [1604] = {.lex_state = 66, .external_lex_state = 2}, + [1604] = {.lex_state = 66, .external_lex_state = 3}, [1605] = {.lex_state = 66, .external_lex_state = 2}, - [1606] = {.lex_state = 66, .external_lex_state = 2}, + [1606] = {.lex_state = 66, .external_lex_state = 3}, [1607] = {.lex_state = 66, .external_lex_state = 2}, - [1608] = {.lex_state = 66, .external_lex_state = 2}, + [1608] = {.lex_state = 66, .external_lex_state = 3}, [1609] = {.lex_state = 66, .external_lex_state = 2}, - [1610] = {.lex_state = 66, .external_lex_state = 2}, + [1610] = {.lex_state = 66, .external_lex_state = 3}, [1611] = {.lex_state = 66, .external_lex_state = 2}, [1612] = {.lex_state = 66, .external_lex_state = 2}, [1613] = {.lex_state = 66, .external_lex_state = 2}, [1614] = {.lex_state = 66, .external_lex_state = 2}, - [1615] = {.lex_state = 66, .external_lex_state = 2}, - [1616] = {.lex_state = 66, .external_lex_state = 2}, + [1615] = {.lex_state = 66, .external_lex_state = 3}, + [1616] = {.lex_state = 66, .external_lex_state = 3}, [1617] = {.lex_state = 66, .external_lex_state = 2}, [1618] = {.lex_state = 66, .external_lex_state = 2}, [1619] = {.lex_state = 66, .external_lex_state = 2}, @@ -14396,9 +14411,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1685] = {.lex_state = 66, .external_lex_state = 2}, [1686] = {.lex_state = 66, .external_lex_state = 2}, [1687] = {.lex_state = 66, .external_lex_state = 2}, - [1688] = {.lex_state = 66, .external_lex_state = 2}, - [1689] = {.lex_state = 66, .external_lex_state = 2}, - [1690] = {.lex_state = 66, .external_lex_state = 2}, + [1688] = {.lex_state = 66, .external_lex_state = 3}, + [1689] = {.lex_state = 66, .external_lex_state = 3}, + [1690] = {.lex_state = 66, .external_lex_state = 3}, [1691] = {.lex_state = 66, .external_lex_state = 2}, [1692] = {.lex_state = 66, .external_lex_state = 2}, [1693] = {.lex_state = 66, .external_lex_state = 2}, @@ -14407,7 +14422,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1696] = {.lex_state = 66, .external_lex_state = 2}, [1697] = {.lex_state = 66, .external_lex_state = 2}, [1698] = {.lex_state = 66, .external_lex_state = 2}, - [1699] = {.lex_state = 66, .external_lex_state = 2}, + [1699] = {.lex_state = 66, .external_lex_state = 3}, [1700] = {.lex_state = 66, .external_lex_state = 2}, [1701] = {.lex_state = 66, .external_lex_state = 2}, [1702] = {.lex_state = 66, .external_lex_state = 2}, @@ -14438,75 +14453,75 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1727] = {.lex_state = 11, .external_lex_state = 2}, [1728] = {.lex_state = 12, .external_lex_state = 11}, [1729] = {.lex_state = 12, .external_lex_state = 11}, - [1730] = {.lex_state = 13, .external_lex_state = 12}, + [1730] = {.lex_state = 66, .external_lex_state = 7}, [1731] = {.lex_state = 13, .external_lex_state = 12}, - [1732] = {.lex_state = 66, .external_lex_state = 7}, + [1732] = {.lex_state = 13, .external_lex_state = 12}, [1733] = {.lex_state = 66, .external_lex_state = 7}, [1734] = {.lex_state = 12, .external_lex_state = 11}, - [1735] = {.lex_state = 12, .external_lex_state = 5}, + [1735] = {.lex_state = 12, .external_lex_state = 11}, [1736] = {.lex_state = 12, .external_lex_state = 5}, - [1737] = {.lex_state = 12, .external_lex_state = 11}, + [1737] = {.lex_state = 12, .external_lex_state = 5}, [1738] = {.lex_state = 66, .external_lex_state = 2}, [1739] = {.lex_state = 66, .external_lex_state = 2}, - [1740] = {.lex_state = 66, .external_lex_state = 2}, - [1741] = {.lex_state = 66, .external_lex_state = 6}, - [1742] = {.lex_state = 66, .external_lex_state = 2}, - [1743] = {.lex_state = 66, .external_lex_state = 8}, - [1744] = {.lex_state = 66, .external_lex_state = 8}, - [1745] = {.lex_state = 12, .external_lex_state = 11}, + [1740] = {.lex_state = 66, .external_lex_state = 8}, + [1741] = {.lex_state = 66, .external_lex_state = 5}, + [1742] = {.lex_state = 66, .external_lex_state = 6}, + [1743] = {.lex_state = 66, .external_lex_state = 2}, + [1744] = {.lex_state = 66, .external_lex_state = 2}, + [1745] = {.lex_state = 66, .external_lex_state = 8}, [1746] = {.lex_state = 66, .external_lex_state = 5}, - [1747] = {.lex_state = 66, .external_lex_state = 5}, - [1748] = {.lex_state = 66, .external_lex_state = 6}, + [1747] = {.lex_state = 66, .external_lex_state = 6}, + [1748] = {.lex_state = 66, .external_lex_state = 2}, [1749] = {.lex_state = 66, .external_lex_state = 2}, [1750] = {.lex_state = 66, .external_lex_state = 2}, [1751] = {.lex_state = 66, .external_lex_state = 2}, [1752] = {.lex_state = 66, .external_lex_state = 2}, - [1753] = {.lex_state = 66, .external_lex_state = 2}, - [1754] = {.lex_state = 66, .external_lex_state = 6}, + [1753] = {.lex_state = 66, .external_lex_state = 6}, + [1754] = {.lex_state = 66, .external_lex_state = 2}, [1755] = {.lex_state = 66, .external_lex_state = 2}, [1756] = {.lex_state = 66, .external_lex_state = 2}, - [1757] = {.lex_state = 12, .external_lex_state = 11}, + [1757] = {.lex_state = 66, .external_lex_state = 6}, [1758] = {.lex_state = 12, .external_lex_state = 11}, [1759] = {.lex_state = 66, .external_lex_state = 2}, - [1760] = {.lex_state = 12, .external_lex_state = 11}, - [1761] = {.lex_state = 66, .external_lex_state = 6}, - [1762] = {.lex_state = 66, .external_lex_state = 2}, - [1763] = {.lex_state = 66, .external_lex_state = 2}, - [1764] = {.lex_state = 14, .external_lex_state = 11}, - [1765] = {.lex_state = 14, .external_lex_state = 11}, - [1766] = {.lex_state = 14, .external_lex_state = 11}, - [1767] = {.lex_state = 14, .external_lex_state = 11}, - [1768] = {.lex_state = 14, .external_lex_state = 11}, - [1769] = {.lex_state = 66, .external_lex_state = 6}, - [1770] = {.lex_state = 14, .external_lex_state = 11}, + [1760] = {.lex_state = 66, .external_lex_state = 2}, + [1761] = {.lex_state = 66, .external_lex_state = 2}, + [1762] = {.lex_state = 12, .external_lex_state = 11}, + [1763] = {.lex_state = 12, .external_lex_state = 11}, + [1764] = {.lex_state = 12, .external_lex_state = 11}, + [1765] = {.lex_state = 66, .external_lex_state = 6}, + [1766] = {.lex_state = 66, .external_lex_state = 6}, + [1767] = {.lex_state = 66, .external_lex_state = 6}, + [1768] = {.lex_state = 66, .external_lex_state = 2}, + [1769] = {.lex_state = 14, .external_lex_state = 11}, + [1770] = {.lex_state = 66, .external_lex_state = 2}, [1771] = {.lex_state = 14, .external_lex_state = 11}, - [1772] = {.lex_state = 14, .external_lex_state = 11}, + [1772] = {.lex_state = 66, .external_lex_state = 2}, [1773] = {.lex_state = 14, .external_lex_state = 11}, - [1774] = {.lex_state = 14, .external_lex_state = 11}, - [1775] = {.lex_state = 14, .external_lex_state = 11}, + [1774] = {.lex_state = 66, .external_lex_state = 2}, + [1775] = {.lex_state = 66, .external_lex_state = 2}, [1776] = {.lex_state = 14, .external_lex_state = 11}, - [1777] = {.lex_state = 66, .external_lex_state = 6}, + [1777] = {.lex_state = 14, .external_lex_state = 11}, [1778] = {.lex_state = 14, .external_lex_state = 11}, - [1779] = {.lex_state = 66, .external_lex_state = 6}, + [1779] = {.lex_state = 14, .external_lex_state = 11}, [1780] = {.lex_state = 14, .external_lex_state = 11}, [1781] = {.lex_state = 14, .external_lex_state = 11}, - [1782] = {.lex_state = 66, .external_lex_state = 2}, + [1782] = {.lex_state = 14, .external_lex_state = 11}, [1783] = {.lex_state = 14, .external_lex_state = 11}, [1784] = {.lex_state = 14, .external_lex_state = 11}, [1785] = {.lex_state = 14, .external_lex_state = 11}, [1786] = {.lex_state = 66, .external_lex_state = 2}, - [1787] = {.lex_state = 66, .external_lex_state = 2}, - [1788] = {.lex_state = 66, .external_lex_state = 2}, + [1787] = {.lex_state = 14, .external_lex_state = 11}, + [1788] = {.lex_state = 14, .external_lex_state = 11}, [1789] = {.lex_state = 66, .external_lex_state = 2}, - [1790] = {.lex_state = 66, .external_lex_state = 2}, - [1791] = {.lex_state = 66, .external_lex_state = 2}, - [1792] = {.lex_state = 66, .external_lex_state = 2}, + [1790] = {.lex_state = 14, .external_lex_state = 11}, + [1791] = {.lex_state = 14, .external_lex_state = 11}, + [1792] = {.lex_state = 14, .external_lex_state = 11}, [1793] = {.lex_state = 66, .external_lex_state = 2}, [1794] = {.lex_state = 66, .external_lex_state = 2}, [1795] = {.lex_state = 66, .external_lex_state = 2}, [1796] = {.lex_state = 66, .external_lex_state = 2}, [1797] = {.lex_state = 66, .external_lex_state = 2}, - [1798] = {.lex_state = 66, .external_lex_state = 3}, + [1798] = {.lex_state = 66, .external_lex_state = 2}, [1799] = {.lex_state = 66, .external_lex_state = 2}, [1800] = {.lex_state = 66, .external_lex_state = 2}, [1801] = {.lex_state = 66, .external_lex_state = 2}, @@ -14559,19 +14574,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1848] = {.lex_state = 66, .external_lex_state = 2}, [1849] = {.lex_state = 66, .external_lex_state = 2}, [1850] = {.lex_state = 66, .external_lex_state = 2}, - [1851] = {.lex_state = 66, .external_lex_state = 3}, - [1852] = {.lex_state = 66, .external_lex_state = 3}, + [1851] = {.lex_state = 66, .external_lex_state = 2}, + [1852] = {.lex_state = 66, .external_lex_state = 2}, [1853] = {.lex_state = 66, .external_lex_state = 2}, [1854] = {.lex_state = 66, .external_lex_state = 2}, [1855] = {.lex_state = 66, .external_lex_state = 2}, - [1856] = {.lex_state = 66, .external_lex_state = 12}, + [1856] = {.lex_state = 66, .external_lex_state = 2}, [1857] = {.lex_state = 66, .external_lex_state = 2}, [1858] = {.lex_state = 66, .external_lex_state = 2}, [1859] = {.lex_state = 66, .external_lex_state = 2}, [1860] = {.lex_state = 66, .external_lex_state = 2}, [1861] = {.lex_state = 66, .external_lex_state = 2}, [1862] = {.lex_state = 66, .external_lex_state = 2}, - [1863] = {.lex_state = 66, .external_lex_state = 12}, + [1863] = {.lex_state = 66, .external_lex_state = 2}, [1864] = {.lex_state = 66, .external_lex_state = 2}, [1865] = {.lex_state = 66, .external_lex_state = 2}, [1866] = {.lex_state = 66, .external_lex_state = 2}, @@ -14597,7 +14612,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1886] = {.lex_state = 66, .external_lex_state = 2}, [1887] = {.lex_state = 66, .external_lex_state = 2}, [1888] = {.lex_state = 66, .external_lex_state = 2}, - [1889] = {.lex_state = 66, .external_lex_state = 3}, + [1889] = {.lex_state = 66, .external_lex_state = 2}, [1890] = {.lex_state = 66, .external_lex_state = 2}, [1891] = {.lex_state = 66, .external_lex_state = 2}, [1892] = {.lex_state = 66, .external_lex_state = 2}, @@ -14608,12 +14623,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1897] = {.lex_state = 66, .external_lex_state = 2}, [1898] = {.lex_state = 66, .external_lex_state = 2}, [1899] = {.lex_state = 66, .external_lex_state = 2}, - [1900] = {.lex_state = 66, .external_lex_state = 2}, - [1901] = {.lex_state = 66, .external_lex_state = 2}, - [1902] = {.lex_state = 66, .external_lex_state = 2}, - [1903] = {.lex_state = 66, .external_lex_state = 2}, - [1904] = {.lex_state = 66, .external_lex_state = 2}, - [1905] = {.lex_state = 66, .external_lex_state = 2}, + [1900] = {.lex_state = 66, .external_lex_state = 12}, + [1901] = {.lex_state = 66, .external_lex_state = 3}, + [1902] = {.lex_state = 66, .external_lex_state = 3}, + [1903] = {.lex_state = 66, .external_lex_state = 3}, + [1904] = {.lex_state = 66, .external_lex_state = 12}, + [1905] = {.lex_state = 66, .external_lex_state = 3}, [1906] = {.lex_state = 66, .external_lex_state = 13}, [1907] = {.lex_state = 66, .external_lex_state = 13}, [1908] = {.lex_state = 66, .external_lex_state = 13}, @@ -14626,85 +14641,85 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1915] = {.lex_state = 66, .external_lex_state = 13}, [1916] = {.lex_state = 66, .external_lex_state = 13}, [1917] = {.lex_state = 66, .external_lex_state = 12}, - [1918] = {.lex_state = 15, .external_lex_state = 11}, + [1918] = {.lex_state = 66, .external_lex_state = 12}, [1919] = {.lex_state = 66, .external_lex_state = 12}, [1920] = {.lex_state = 66, .external_lex_state = 12}, - [1921] = {.lex_state = 66, .external_lex_state = 12}, + [1921] = {.lex_state = 15, .external_lex_state = 11}, [1922] = {.lex_state = 66, .external_lex_state = 12}, [1923] = {.lex_state = 66, .external_lex_state = 12}, [1924] = {.lex_state = 66, .external_lex_state = 12}, [1925] = {.lex_state = 66, .external_lex_state = 12}, - [1926] = {.lex_state = 15, .external_lex_state = 11}, - [1927] = {.lex_state = 66, .external_lex_state = 12}, + [1926] = {.lex_state = 66, .external_lex_state = 12}, + [1927] = {.lex_state = 15, .external_lex_state = 11}, [1928] = {.lex_state = 66, .external_lex_state = 12}, [1929] = {.lex_state = 15, .external_lex_state = 5}, - [1930] = {.lex_state = 15, .external_lex_state = 11}, + [1930] = {.lex_state = 23, .external_lex_state = 14}, [1931] = {.lex_state = 15, .external_lex_state = 5}, - [1932] = {.lex_state = 23, .external_lex_state = 14}, - [1933] = {.lex_state = 15, .external_lex_state = 5}, - [1934] = {.lex_state = 23, .external_lex_state = 14}, - [1935] = {.lex_state = 15, .external_lex_state = 11}, + [1932] = {.lex_state = 15, .external_lex_state = 5}, + [1933] = {.lex_state = 15, .external_lex_state = 11}, + [1934] = {.lex_state = 15, .external_lex_state = 11}, + [1935] = {.lex_state = 23, .external_lex_state = 14}, [1936] = {.lex_state = 23, .external_lex_state = 14}, [1937] = {.lex_state = 15, .external_lex_state = 11}, [1938] = {.lex_state = 15, .external_lex_state = 15}, [1939] = {.lex_state = 15, .external_lex_state = 11}, [1940] = {.lex_state = 15, .external_lex_state = 11}, [1941] = {.lex_state = 15, .external_lex_state = 11}, - [1942] = {.lex_state = 15, .external_lex_state = 11}, + [1942] = {.lex_state = 15, .external_lex_state = 15}, [1943] = {.lex_state = 15, .external_lex_state = 11}, - [1944] = {.lex_state = 15, .external_lex_state = 15}, - [1945] = {.lex_state = 23, .external_lex_state = 14}, + [1944] = {.lex_state = 15, .external_lex_state = 11}, + [1945] = {.lex_state = 15, .external_lex_state = 15}, [1946] = {.lex_state = 15, .external_lex_state = 11}, - [1947] = {.lex_state = 15, .external_lex_state = 15}, - [1948] = {.lex_state = 15, .external_lex_state = 11}, + [1947] = {.lex_state = 15, .external_lex_state = 11}, + [1948] = {.lex_state = 23, .external_lex_state = 14}, [1949] = {.lex_state = 15, .external_lex_state = 11}, - [1950] = {.lex_state = 15, .external_lex_state = 15}, + [1950] = {.lex_state = 15, .external_lex_state = 11}, [1951] = {.lex_state = 15, .external_lex_state = 11}, - [1952] = {.lex_state = 15, .external_lex_state = 11}, + [1952] = {.lex_state = 15, .external_lex_state = 15}, [1953] = {.lex_state = 15, .external_lex_state = 14}, - [1954] = {.lex_state = 23, .external_lex_state = 11}, - [1955] = {.lex_state = 15, .external_lex_state = 16}, - [1956] = {.lex_state = 23, .external_lex_state = 11}, - [1957] = {.lex_state = 15, .external_lex_state = 5}, - [1958] = {.lex_state = 15, .external_lex_state = 12}, - [1959] = {.lex_state = 15, .external_lex_state = 12}, - [1960] = {.lex_state = 15, .external_lex_state = 11}, - [1961] = {.lex_state = 15, .external_lex_state = 14}, - [1962] = {.lex_state = 15, .external_lex_state = 16}, - [1963] = {.lex_state = 15, .external_lex_state = 5}, + [1954] = {.lex_state = 15, .external_lex_state = 14}, + [1955] = {.lex_state = 23, .external_lex_state = 11}, + [1956] = {.lex_state = 15, .external_lex_state = 16}, + [1957] = {.lex_state = 15, .external_lex_state = 16}, + [1958] = {.lex_state = 23, .external_lex_state = 11}, + [1959] = {.lex_state = 15, .external_lex_state = 5}, + [1960] = {.lex_state = 15, .external_lex_state = 12}, + [1961] = {.lex_state = 15, .external_lex_state = 5}, + [1962] = {.lex_state = 15, .external_lex_state = 11}, + [1963] = {.lex_state = 15, .external_lex_state = 12}, [1964] = {.lex_state = 15, .external_lex_state = 11}, [1965] = {.lex_state = 15, .external_lex_state = 11}, [1966] = {.lex_state = 15, .external_lex_state = 11}, - [1967] = {.lex_state = 15, .external_lex_state = 16}, - [1968] = {.lex_state = 15, .external_lex_state = 7}, + [1967] = {.lex_state = 15, .external_lex_state = 11}, + [1968] = {.lex_state = 15, .external_lex_state = 11}, [1969] = {.lex_state = 15, .external_lex_state = 11}, [1970] = {.lex_state = 15, .external_lex_state = 11}, [1971] = {.lex_state = 15, .external_lex_state = 11}, - [1972] = {.lex_state = 15, .external_lex_state = 11}, + [1972] = {.lex_state = 15, .external_lex_state = 7}, [1973] = {.lex_state = 15, .external_lex_state = 11}, [1974] = {.lex_state = 15, .external_lex_state = 11}, [1975] = {.lex_state = 15, .external_lex_state = 11}, - [1976] = {.lex_state = 15, .external_lex_state = 11}, + [1976] = {.lex_state = 15, .external_lex_state = 7}, [1977] = {.lex_state = 15, .external_lex_state = 11}, [1978] = {.lex_state = 15, .external_lex_state = 11}, - [1979] = {.lex_state = 15, .external_lex_state = 15}, + [1979] = {.lex_state = 15, .external_lex_state = 11}, [1980] = {.lex_state = 15, .external_lex_state = 11}, [1981] = {.lex_state = 15, .external_lex_state = 11}, [1982] = {.lex_state = 15, .external_lex_state = 11}, [1983] = {.lex_state = 15, .external_lex_state = 11}, - [1984] = {.lex_state = 15, .external_lex_state = 7}, + [1984] = {.lex_state = 15, .external_lex_state = 11}, [1985] = {.lex_state = 15, .external_lex_state = 11}, [1986] = {.lex_state = 15, .external_lex_state = 11}, - [1987] = {.lex_state = 15, .external_lex_state = 15}, - [1988] = {.lex_state = 15, .external_lex_state = 11}, - [1989] = {.lex_state = 15, .external_lex_state = 16}, + [1987] = {.lex_state = 15, .external_lex_state = 11}, + [1988] = {.lex_state = 15, .external_lex_state = 7}, + [1989] = {.lex_state = 15, .external_lex_state = 11}, [1990] = {.lex_state = 15, .external_lex_state = 11}, [1991] = {.lex_state = 15, .external_lex_state = 11}, [1992] = {.lex_state = 15, .external_lex_state = 11}, - [1993] = {.lex_state = 15, .external_lex_state = 11}, + [1993] = {.lex_state = 15, .external_lex_state = 7}, [1994] = {.lex_state = 15, .external_lex_state = 11}, [1995] = {.lex_state = 15, .external_lex_state = 11}, - [1996] = {.lex_state = 15, .external_lex_state = 15}, + [1996] = {.lex_state = 15, .external_lex_state = 11}, [1997] = {.lex_state = 15, .external_lex_state = 11}, [1998] = {.lex_state = 15, .external_lex_state = 11}, [1999] = {.lex_state = 15, .external_lex_state = 11}, @@ -14712,507 +14727,507 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2001] = {.lex_state = 15, .external_lex_state = 11}, [2002] = {.lex_state = 15, .external_lex_state = 11}, [2003] = {.lex_state = 15, .external_lex_state = 11}, - [2004] = {.lex_state = 15, .external_lex_state = 11}, - [2005] = {.lex_state = 15, .external_lex_state = 11}, - [2006] = {.lex_state = 15, .external_lex_state = 11}, - [2007] = {.lex_state = 15, .external_lex_state = 7}, + [2004] = {.lex_state = 15, .external_lex_state = 7}, + [2005] = {.lex_state = 15, .external_lex_state = 16}, + [2006] = {.lex_state = 15, .external_lex_state = 15}, + [2007] = {.lex_state = 15, .external_lex_state = 11}, [2008] = {.lex_state = 15, .external_lex_state = 11}, [2009] = {.lex_state = 15, .external_lex_state = 11}, - [2010] = {.lex_state = 15, .external_lex_state = 11}, - [2011] = {.lex_state = 15, .external_lex_state = 7}, + [2010] = {.lex_state = 66, .external_lex_state = 12}, + [2011] = {.lex_state = 15, .external_lex_state = 11}, [2012] = {.lex_state = 15, .external_lex_state = 11}, [2013] = {.lex_state = 15, .external_lex_state = 11}, - [2014] = {.lex_state = 15, .external_lex_state = 7}, + [2014] = {.lex_state = 15, .external_lex_state = 11}, [2015] = {.lex_state = 15, .external_lex_state = 11}, - [2016] = {.lex_state = 15, .external_lex_state = 15}, + [2016] = {.lex_state = 15, .external_lex_state = 11}, [2017] = {.lex_state = 15, .external_lex_state = 11}, - [2018] = {.lex_state = 15, .external_lex_state = 11}, - [2019] = {.lex_state = 15, .external_lex_state = 11}, - [2020] = {.lex_state = 15, .external_lex_state = 7}, + [2018] = {.lex_state = 15, .external_lex_state = 15}, + [2019] = {.lex_state = 15, .external_lex_state = 15}, + [2020] = {.lex_state = 15, .external_lex_state = 11}, [2021] = {.lex_state = 15, .external_lex_state = 11}, - [2022] = {.lex_state = 15, .external_lex_state = 11}, - [2023] = {.lex_state = 66, .external_lex_state = 12}, - [2024] = {.lex_state = 15, .external_lex_state = 11}, - [2025] = {.lex_state = 15, .external_lex_state = 15}, - [2026] = {.lex_state = 15, .external_lex_state = 15}, - [2027] = {.lex_state = 15, .external_lex_state = 8}, - [2028] = {.lex_state = 15, .external_lex_state = 6}, - [2029] = {.lex_state = 15, .external_lex_state = 15}, + [2022] = {.lex_state = 15, .external_lex_state = 15}, + [2023] = {.lex_state = 15, .external_lex_state = 16}, + [2024] = {.lex_state = 15, .external_lex_state = 7}, + [2025] = {.lex_state = 15, .external_lex_state = 11}, + [2026] = {.lex_state = 15, .external_lex_state = 16}, + [2027] = {.lex_state = 15, .external_lex_state = 2}, + [2028] = {.lex_state = 15, .external_lex_state = 2}, + [2029] = {.lex_state = 15, .external_lex_state = 8}, [2030] = {.lex_state = 15, .external_lex_state = 15}, [2031] = {.lex_state = 15, .external_lex_state = 14}, [2032] = {.lex_state = 15, .external_lex_state = 15}, [2033] = {.lex_state = 15, .external_lex_state = 15}, - [2034] = {.lex_state = 15, .external_lex_state = 6}, - [2035] = {.lex_state = 15, .external_lex_state = 6}, + [2034] = {.lex_state = 15, .external_lex_state = 15}, + [2035] = {.lex_state = 15, .external_lex_state = 15}, [2036] = {.lex_state = 15, .external_lex_state = 15}, - [2037] = {.lex_state = 15, .external_lex_state = 2}, + [2037] = {.lex_state = 15, .external_lex_state = 15}, [2038] = {.lex_state = 15, .external_lex_state = 15}, [2039] = {.lex_state = 15, .external_lex_state = 15}, [2040] = {.lex_state = 15, .external_lex_state = 15}, [2041] = {.lex_state = 15, .external_lex_state = 15}, - [2042] = {.lex_state = 15, .external_lex_state = 8}, - [2043] = {.lex_state = 15, .external_lex_state = 14}, + [2042] = {.lex_state = 15, .external_lex_state = 15}, + [2043] = {.lex_state = 15, .external_lex_state = 15}, [2044] = {.lex_state = 15, .external_lex_state = 15}, - [2045] = {.lex_state = 15, .external_lex_state = 15}, - [2046] = {.lex_state = 15, .external_lex_state = 14}, - [2047] = {.lex_state = 15, .external_lex_state = 14}, + [2045] = {.lex_state = 15, .external_lex_state = 16}, + [2046] = {.lex_state = 15, .external_lex_state = 6}, + [2047] = {.lex_state = 15, .external_lex_state = 15}, [2048] = {.lex_state = 15, .external_lex_state = 15}, [2049] = {.lex_state = 15, .external_lex_state = 15}, - [2050] = {.lex_state = 15, .external_lex_state = 15}, - [2051] = {.lex_state = 15, .external_lex_state = 15}, - [2052] = {.lex_state = 15, .external_lex_state = 15}, - [2053] = {.lex_state = 15, .external_lex_state = 16}, - [2054] = {.lex_state = 15, .external_lex_state = 14}, - [2055] = {.lex_state = 15, .external_lex_state = 12}, - [2056] = {.lex_state = 15, .external_lex_state = 16}, - [2057] = {.lex_state = 15, .external_lex_state = 15}, - [2058] = {.lex_state = 15, .external_lex_state = 2}, + [2050] = {.lex_state = 15, .external_lex_state = 6}, + [2051] = {.lex_state = 15, .external_lex_state = 8}, + [2052] = {.lex_state = 15, .external_lex_state = 2}, + [2053] = {.lex_state = 15, .external_lex_state = 15}, + [2054] = {.lex_state = 15, .external_lex_state = 15}, + [2055] = {.lex_state = 15, .external_lex_state = 15}, + [2056] = {.lex_state = 15, .external_lex_state = 6}, + [2057] = {.lex_state = 15, .external_lex_state = 14}, + [2058] = {.lex_state = 15, .external_lex_state = 14}, [2059] = {.lex_state = 15, .external_lex_state = 15}, - [2060] = {.lex_state = 15, .external_lex_state = 12}, - [2061] = {.lex_state = 15, .external_lex_state = 8}, + [2060] = {.lex_state = 15, .external_lex_state = 14}, + [2061] = {.lex_state = 15, .external_lex_state = 12}, [2062] = {.lex_state = 15, .external_lex_state = 15}, - [2063] = {.lex_state = 15, .external_lex_state = 15}, - [2064] = {.lex_state = 15, .external_lex_state = 2}, - [2065] = {.lex_state = 15, .external_lex_state = 16}, - [2066] = {.lex_state = 15, .external_lex_state = 15}, - [2067] = {.lex_state = 15, .external_lex_state = 14}, - [2068] = {.lex_state = 66, .external_lex_state = 12}, - [2069] = {.lex_state = 23, .external_lex_state = 15}, - [2070] = {.lex_state = 23, .external_lex_state = 15}, - [2071] = {.lex_state = 15, .external_lex_state = 14}, - [2072] = {.lex_state = 23, .external_lex_state = 15}, - [2073] = {.lex_state = 23, .external_lex_state = 15}, - [2074] = {.lex_state = 15, .external_lex_state = 12}, - [2075] = {.lex_state = 15, .external_lex_state = 12}, - [2076] = {.lex_state = 15, .external_lex_state = 16}, - [2077] = {.lex_state = 15, .external_lex_state = 14}, - [2078] = {.lex_state = 15, .external_lex_state = 14}, - [2079] = {.lex_state = 15, .external_lex_state = 14}, - [2080] = {.lex_state = 15, .external_lex_state = 14}, - [2081] = {.lex_state = 15, .external_lex_state = 14}, - [2082] = {.lex_state = 15, .external_lex_state = 14}, + [2063] = {.lex_state = 15, .external_lex_state = 12}, + [2064] = {.lex_state = 15, .external_lex_state = 16}, + [2065] = {.lex_state = 15, .external_lex_state = 8}, + [2066] = {.lex_state = 15, .external_lex_state = 14}, + [2067] = {.lex_state = 15, .external_lex_state = 15}, + [2068] = {.lex_state = 15, .external_lex_state = 12}, + [2069] = {.lex_state = 15, .external_lex_state = 7}, + [2070] = {.lex_state = 15, .external_lex_state = 12}, + [2071] = {.lex_state = 15, .external_lex_state = 7}, + [2072] = {.lex_state = 15, .external_lex_state = 12}, + [2073] = {.lex_state = 15, .external_lex_state = 12}, + [2074] = {.lex_state = 15, .external_lex_state = 14}, + [2075] = {.lex_state = 23, .external_lex_state = 15}, + [2076] = {.lex_state = 15, .external_lex_state = 14}, + [2077] = {.lex_state = 15, .external_lex_state = 7}, + [2078] = {.lex_state = 15, .external_lex_state = 16}, + [2079] = {.lex_state = 15, .external_lex_state = 16}, + [2080] = {.lex_state = 23, .external_lex_state = 15}, + [2081] = {.lex_state = 15, .external_lex_state = 7}, + [2082] = {.lex_state = 23, .external_lex_state = 14}, [2083] = {.lex_state = 15, .external_lex_state = 14}, [2084] = {.lex_state = 15, .external_lex_state = 14}, - [2085] = {.lex_state = 15, .external_lex_state = 16}, - [2086] = {.lex_state = 15, .external_lex_state = 16}, - [2087] = {.lex_state = 15, .external_lex_state = 7}, - [2088] = {.lex_state = 66, .external_lex_state = 12}, - [2089] = {.lex_state = 23, .external_lex_state = 14}, - [2090] = {.lex_state = 23, .external_lex_state = 14}, - [2091] = {.lex_state = 15, .external_lex_state = 12}, - [2092] = {.lex_state = 23, .external_lex_state = 15}, - [2093] = {.lex_state = 15, .external_lex_state = 7}, - [2094] = {.lex_state = 15, .external_lex_state = 16}, - [2095] = {.lex_state = 15, .external_lex_state = 16}, - [2096] = {.lex_state = 15, .external_lex_state = 16}, - [2097] = {.lex_state = 15, .external_lex_state = 16}, - [2098] = {.lex_state = 15, .external_lex_state = 16}, - [2099] = {.lex_state = 15, .external_lex_state = 16}, - [2100] = {.lex_state = 15, .external_lex_state = 12}, - [2101] = {.lex_state = 15, .external_lex_state = 12}, - [2102] = {.lex_state = 15, .external_lex_state = 16}, - [2103] = {.lex_state = 15, .external_lex_state = 12}, - [2104] = {.lex_state = 15, .external_lex_state = 12}, - [2105] = {.lex_state = 15, .external_lex_state = 12}, - [2106] = {.lex_state = 15, .external_lex_state = 12}, + [2085] = {.lex_state = 15, .external_lex_state = 14}, + [2086] = {.lex_state = 23, .external_lex_state = 11}, + [2087] = {.lex_state = 15, .external_lex_state = 14}, + [2088] = {.lex_state = 15, .external_lex_state = 14}, + [2089] = {.lex_state = 15, .external_lex_state = 14}, + [2090] = {.lex_state = 15, .external_lex_state = 16}, + [2091] = {.lex_state = 66, .external_lex_state = 12}, + [2092] = {.lex_state = 15, .external_lex_state = 16}, + [2093] = {.lex_state = 23, .external_lex_state = 15}, + [2094] = {.lex_state = 23, .external_lex_state = 15}, + [2095] = {.lex_state = 15, .external_lex_state = 14}, + [2096] = {.lex_state = 15, .external_lex_state = 8}, + [2097] = {.lex_state = 23, .external_lex_state = 15}, + [2098] = {.lex_state = 23, .external_lex_state = 15}, + [2099] = {.lex_state = 23, .external_lex_state = 15}, + [2100] = {.lex_state = 15, .external_lex_state = 14}, + [2101] = {.lex_state = 15, .external_lex_state = 16}, + [2102] = {.lex_state = 15, .external_lex_state = 12}, + [2103] = {.lex_state = 15, .external_lex_state = 16}, + [2104] = {.lex_state = 23, .external_lex_state = 14}, + [2105] = {.lex_state = 15, .external_lex_state = 16}, + [2106] = {.lex_state = 66, .external_lex_state = 12}, [2107] = {.lex_state = 15, .external_lex_state = 12}, [2108] = {.lex_state = 15, .external_lex_state = 16}, - [2109] = {.lex_state = 15, .external_lex_state = 16}, - [2110] = {.lex_state = 15, .external_lex_state = 8}, - [2111] = {.lex_state = 66, .external_lex_state = 12}, - [2112] = {.lex_state = 23, .external_lex_state = 15}, - [2113] = {.lex_state = 23, .external_lex_state = 15}, - [2114] = {.lex_state = 15, .external_lex_state = 16}, - [2115] = {.lex_state = 15, .external_lex_state = 7}, - [2116] = {.lex_state = 15, .external_lex_state = 8}, - [2117] = {.lex_state = 23, .external_lex_state = 15}, - [2118] = {.lex_state = 23, .external_lex_state = 11}, - [2119] = {.lex_state = 15, .external_lex_state = 14}, - [2120] = {.lex_state = 15, .external_lex_state = 8}, - [2121] = {.lex_state = 15, .external_lex_state = 12}, - [2122] = {.lex_state = 15, .external_lex_state = 7}, - [2123] = {.lex_state = 15, .external_lex_state = 15}, + [2109] = {.lex_state = 15, .external_lex_state = 8}, + [2110] = {.lex_state = 15, .external_lex_state = 16}, + [2111] = {.lex_state = 15, .external_lex_state = 12}, + [2112] = {.lex_state = 15, .external_lex_state = 16}, + [2113] = {.lex_state = 15, .external_lex_state = 8}, + [2114] = {.lex_state = 15, .external_lex_state = 12}, + [2115] = {.lex_state = 23, .external_lex_state = 15}, + [2116] = {.lex_state = 15, .external_lex_state = 12}, + [2117] = {.lex_state = 15, .external_lex_state = 12}, + [2118] = {.lex_state = 15, .external_lex_state = 12}, + [2119] = {.lex_state = 15, .external_lex_state = 16}, + [2120] = {.lex_state = 15, .external_lex_state = 14}, + [2121] = {.lex_state = 15, .external_lex_state = 16}, + [2122] = {.lex_state = 66, .external_lex_state = 12}, + [2123] = {.lex_state = 15, .external_lex_state = 16}, [2124] = {.lex_state = 15, .external_lex_state = 15}, - [2125] = {.lex_state = 15, .external_lex_state = 15}, - [2126] = {.lex_state = 23, .external_lex_state = 16}, + [2125] = {.lex_state = 23, .external_lex_state = 16}, + [2126] = {.lex_state = 23, .external_lex_state = 14}, [2127] = {.lex_state = 15, .external_lex_state = 15}, [2128] = {.lex_state = 15, .external_lex_state = 15}, [2129] = {.lex_state = 15, .external_lex_state = 15}, - [2130] = {.lex_state = 15, .external_lex_state = 12}, + [2130] = {.lex_state = 15, .external_lex_state = 15}, [2131] = {.lex_state = 15, .external_lex_state = 15}, - [2132] = {.lex_state = 15, .external_lex_state = 14}, + [2132] = {.lex_state = 15, .external_lex_state = 15}, [2133] = {.lex_state = 15, .external_lex_state = 15}, [2134] = {.lex_state = 15, .external_lex_state = 15}, [2135] = {.lex_state = 15, .external_lex_state = 15}, - [2136] = {.lex_state = 23, .external_lex_state = 16}, + [2136] = {.lex_state = 15, .external_lex_state = 15}, [2137] = {.lex_state = 15, .external_lex_state = 15}, [2138] = {.lex_state = 15, .external_lex_state = 15}, - [2139] = {.lex_state = 15, .external_lex_state = 6}, - [2140] = {.lex_state = 23, .external_lex_state = 16}, - [2141] = {.lex_state = 23, .external_lex_state = 16}, + [2139] = {.lex_state = 15, .external_lex_state = 15}, + [2140] = {.lex_state = 15, .external_lex_state = 15}, + [2141] = {.lex_state = 15, .external_lex_state = 15}, [2142] = {.lex_state = 15, .external_lex_state = 15}, [2143] = {.lex_state = 15, .external_lex_state = 15}, [2144] = {.lex_state = 15, .external_lex_state = 15}, - [2145] = {.lex_state = 15, .external_lex_state = 2}, + [2145] = {.lex_state = 15, .external_lex_state = 15}, [2146] = {.lex_state = 15, .external_lex_state = 15}, [2147] = {.lex_state = 15, .external_lex_state = 15}, [2148] = {.lex_state = 15, .external_lex_state = 15}, [2149] = {.lex_state = 15, .external_lex_state = 15}, [2150] = {.lex_state = 15, .external_lex_state = 15}, [2151] = {.lex_state = 15, .external_lex_state = 15}, - [2152] = {.lex_state = 15, .external_lex_state = 15}, + [2152] = {.lex_state = 15, .external_lex_state = 6}, [2153] = {.lex_state = 15, .external_lex_state = 15}, [2154] = {.lex_state = 15, .external_lex_state = 15}, - [2155] = {.lex_state = 15, .external_lex_state = 15}, + [2155] = {.lex_state = 15, .external_lex_state = 12}, [2156] = {.lex_state = 15, .external_lex_state = 15}, - [2157] = {.lex_state = 15, .external_lex_state = 14}, - [2158] = {.lex_state = 15, .external_lex_state = 15}, - [2159] = {.lex_state = 15, .external_lex_state = 15}, - [2160] = {.lex_state = 15, .external_lex_state = 15}, - [2161] = {.lex_state = 15, .external_lex_state = 15}, - [2162] = {.lex_state = 15, .external_lex_state = 15}, - [2163] = {.lex_state = 15, .external_lex_state = 15}, + [2157] = {.lex_state = 15, .external_lex_state = 12}, + [2158] = {.lex_state = 23, .external_lex_state = 16}, + [2159] = {.lex_state = 15, .external_lex_state = 12}, + [2160] = {.lex_state = 15, .external_lex_state = 14}, + [2161] = {.lex_state = 15, .external_lex_state = 12}, + [2162] = {.lex_state = 15, .external_lex_state = 12}, + [2163] = {.lex_state = 15, .external_lex_state = 12}, [2164] = {.lex_state = 15, .external_lex_state = 15}, - [2165] = {.lex_state = 15, .external_lex_state = 15}, - [2166] = {.lex_state = 15, .external_lex_state = 14}, - [2167] = {.lex_state = 15, .external_lex_state = 14}, + [2165] = {.lex_state = 15, .external_lex_state = 12}, + [2166] = {.lex_state = 15, .external_lex_state = 15}, + [2167] = {.lex_state = 15, .external_lex_state = 15}, [2168] = {.lex_state = 15, .external_lex_state = 15}, - [2169] = {.lex_state = 15, .external_lex_state = 16}, - [2170] = {.lex_state = 15, .external_lex_state = 15}, - [2171] = {.lex_state = 15, .external_lex_state = 6}, + [2169] = {.lex_state = 15, .external_lex_state = 15}, + [2170] = {.lex_state = 23, .external_lex_state = 14}, + [2171] = {.lex_state = 15, .external_lex_state = 15}, [2172] = {.lex_state = 15, .external_lex_state = 15}, [2173] = {.lex_state = 15, .external_lex_state = 15}, [2174] = {.lex_state = 15, .external_lex_state = 15}, [2175] = {.lex_state = 15, .external_lex_state = 15}, - [2176] = {.lex_state = 15, .external_lex_state = 15}, - [2177] = {.lex_state = 15, .external_lex_state = 14}, - [2178] = {.lex_state = 15, .external_lex_state = 15}, - [2179] = {.lex_state = 15, .external_lex_state = 15}, - [2180] = {.lex_state = 15, .external_lex_state = 15}, + [2176] = {.lex_state = 23, .external_lex_state = 12}, + [2177] = {.lex_state = 23, .external_lex_state = 12}, + [2178] = {.lex_state = 15, .external_lex_state = 2}, + [2179] = {.lex_state = 15, .external_lex_state = 8}, + [2180] = {.lex_state = 15, .external_lex_state = 6}, [2181] = {.lex_state = 15, .external_lex_state = 15}, - [2182] = {.lex_state = 15, .external_lex_state = 15}, + [2182] = {.lex_state = 15, .external_lex_state = 14}, [2183] = {.lex_state = 15, .external_lex_state = 15}, [2184] = {.lex_state = 15, .external_lex_state = 15}, - [2185] = {.lex_state = 15, .external_lex_state = 8}, - [2186] = {.lex_state = 15, .external_lex_state = 15}, - [2187] = {.lex_state = 23, .external_lex_state = 16}, - [2188] = {.lex_state = 23, .external_lex_state = 16}, - [2189] = {.lex_state = 15, .external_lex_state = 14}, - [2190] = {.lex_state = 15, .external_lex_state = 14}, + [2185] = {.lex_state = 15, .external_lex_state = 15}, + [2186] = {.lex_state = 15, .external_lex_state = 14}, + [2187] = {.lex_state = 15, .external_lex_state = 14}, + [2188] = {.lex_state = 15, .external_lex_state = 15}, + [2189] = {.lex_state = 15, .external_lex_state = 15}, + [2190] = {.lex_state = 15, .external_lex_state = 16}, [2191] = {.lex_state = 15, .external_lex_state = 15}, - [2192] = {.lex_state = 15, .external_lex_state = 6}, - [2193] = {.lex_state = 15, .external_lex_state = 15}, + [2192] = {.lex_state = 15, .external_lex_state = 15}, + [2193] = {.lex_state = 15, .external_lex_state = 6}, [2194] = {.lex_state = 23, .external_lex_state = 14}, - [2195] = {.lex_state = 23, .external_lex_state = 14}, - [2196] = {.lex_state = 15, .external_lex_state = 16}, - [2197] = {.lex_state = 23, .external_lex_state = 16}, + [2195] = {.lex_state = 15, .external_lex_state = 15}, + [2196] = {.lex_state = 15, .external_lex_state = 15}, + [2197] = {.lex_state = 15, .external_lex_state = 15}, [2198] = {.lex_state = 15, .external_lex_state = 15}, [2199] = {.lex_state = 15, .external_lex_state = 15}, [2200] = {.lex_state = 15, .external_lex_state = 15}, [2201] = {.lex_state = 15, .external_lex_state = 15}, [2202] = {.lex_state = 15, .external_lex_state = 15}, [2203] = {.lex_state = 15, .external_lex_state = 15}, - [2204] = {.lex_state = 15, .external_lex_state = 16}, - [2205] = {.lex_state = 15, .external_lex_state = 6}, - [2206] = {.lex_state = 15, .external_lex_state = 16}, + [2204] = {.lex_state = 15, .external_lex_state = 15}, + [2205] = {.lex_state = 15, .external_lex_state = 15}, + [2206] = {.lex_state = 15, .external_lex_state = 15}, [2207] = {.lex_state = 15, .external_lex_state = 15}, - [2208] = {.lex_state = 15, .external_lex_state = 16}, - [2209] = {.lex_state = 15, .external_lex_state = 16}, - [2210] = {.lex_state = 23, .external_lex_state = 14}, - [2211] = {.lex_state = 15, .external_lex_state = 12}, - [2212] = {.lex_state = 15, .external_lex_state = 16}, - [2213] = {.lex_state = 15, .external_lex_state = 16}, - [2214] = {.lex_state = 15, .external_lex_state = 15}, - [2215] = {.lex_state = 15, .external_lex_state = 15}, + [2208] = {.lex_state = 15, .external_lex_state = 12}, + [2209] = {.lex_state = 23, .external_lex_state = 16}, + [2210] = {.lex_state = 15, .external_lex_state = 14}, + [2211] = {.lex_state = 15, .external_lex_state = 15}, + [2212] = {.lex_state = 15, .external_lex_state = 15}, + [2213] = {.lex_state = 15, .external_lex_state = 15}, + [2214] = {.lex_state = 15, .external_lex_state = 14}, + [2215] = {.lex_state = 15, .external_lex_state = 16}, [2216] = {.lex_state = 15, .external_lex_state = 15}, - [2217] = {.lex_state = 15, .external_lex_state = 15}, - [2218] = {.lex_state = 15, .external_lex_state = 15}, + [2217] = {.lex_state = 15, .external_lex_state = 16}, + [2218] = {.lex_state = 15, .external_lex_state = 14}, [2219] = {.lex_state = 15, .external_lex_state = 15}, - [2220] = {.lex_state = 15, .external_lex_state = 15}, + [2220] = {.lex_state = 23, .external_lex_state = 14}, [2221] = {.lex_state = 15, .external_lex_state = 15}, [2222] = {.lex_state = 15, .external_lex_state = 15}, [2223] = {.lex_state = 15, .external_lex_state = 15}, - [2224] = {.lex_state = 15, .external_lex_state = 12}, + [2224] = {.lex_state = 15, .external_lex_state = 15}, [2225] = {.lex_state = 15, .external_lex_state = 15}, - [2226] = {.lex_state = 15, .external_lex_state = 12}, - [2227] = {.lex_state = 15, .external_lex_state = 12}, - [2228] = {.lex_state = 15, .external_lex_state = 12}, + [2226] = {.lex_state = 15, .external_lex_state = 15}, + [2227] = {.lex_state = 15, .external_lex_state = 15}, + [2228] = {.lex_state = 15, .external_lex_state = 15}, [2229] = {.lex_state = 15, .external_lex_state = 15}, - [2230] = {.lex_state = 15, .external_lex_state = 15}, - [2231] = {.lex_state = 15, .external_lex_state = 12}, - [2232] = {.lex_state = 15, .external_lex_state = 12}, - [2233] = {.lex_state = 23, .external_lex_state = 14}, - [2234] = {.lex_state = 23, .external_lex_state = 14}, - [2235] = {.lex_state = 15, .external_lex_state = 16}, - [2236] = {.lex_state = 15, .external_lex_state = 15}, - [2237] = {.lex_state = 15, .external_lex_state = 16}, - [2238] = {.lex_state = 15, .external_lex_state = 15}, + [2230] = {.lex_state = 15, .external_lex_state = 6}, + [2231] = {.lex_state = 15, .external_lex_state = 15}, + [2232] = {.lex_state = 23, .external_lex_state = 16}, + [2233] = {.lex_state = 23, .external_lex_state = 16}, + [2234] = {.lex_state = 15, .external_lex_state = 15}, + [2235] = {.lex_state = 15, .external_lex_state = 2}, + [2236] = {.lex_state = 23, .external_lex_state = 16}, + [2237] = {.lex_state = 15, .external_lex_state = 15}, + [2238] = {.lex_state = 23, .external_lex_state = 14}, [2239] = {.lex_state = 15, .external_lex_state = 15}, [2240] = {.lex_state = 15, .external_lex_state = 15}, [2241] = {.lex_state = 15, .external_lex_state = 15}, [2242] = {.lex_state = 15, .external_lex_state = 15}, [2243] = {.lex_state = 15, .external_lex_state = 15}, [2244] = {.lex_state = 15, .external_lex_state = 15}, - [2245] = {.lex_state = 15, .external_lex_state = 15}, + [2245] = {.lex_state = 15, .external_lex_state = 16}, [2246] = {.lex_state = 15, .external_lex_state = 15}, - [2247] = {.lex_state = 15, .external_lex_state = 15}, + [2247] = {.lex_state = 15, .external_lex_state = 12}, [2248] = {.lex_state = 15, .external_lex_state = 15}, [2249] = {.lex_state = 15, .external_lex_state = 15}, - [2250] = {.lex_state = 23, .external_lex_state = 14}, + [2250] = {.lex_state = 15, .external_lex_state = 15}, [2251] = {.lex_state = 15, .external_lex_state = 15}, - [2252] = {.lex_state = 15, .external_lex_state = 6}, - [2253] = {.lex_state = 15, .external_lex_state = 12}, - [2254] = {.lex_state = 15, .external_lex_state = 15}, - [2255] = {.lex_state = 15, .external_lex_state = 15}, - [2256] = {.lex_state = 23, .external_lex_state = 12}, + [2252] = {.lex_state = 15, .external_lex_state = 15}, + [2253] = {.lex_state = 15, .external_lex_state = 15}, + [2254] = {.lex_state = 15, .external_lex_state = 14}, + [2255] = {.lex_state = 15, .external_lex_state = 12}, + [2256] = {.lex_state = 15, .external_lex_state = 15}, [2257] = {.lex_state = 15, .external_lex_state = 15}, - [2258] = {.lex_state = 23, .external_lex_state = 12}, + [2258] = {.lex_state = 15, .external_lex_state = 8}, [2259] = {.lex_state = 15, .external_lex_state = 15}, [2260] = {.lex_state = 15, .external_lex_state = 15}, - [2261] = {.lex_state = 15, .external_lex_state = 8}, + [2261] = {.lex_state = 15, .external_lex_state = 15}, [2262] = {.lex_state = 15, .external_lex_state = 15}, [2263] = {.lex_state = 15, .external_lex_state = 15}, - [2264] = {.lex_state = 15, .external_lex_state = 16}, - [2265] = {.lex_state = 15, .external_lex_state = 15}, + [2264] = {.lex_state = 15, .external_lex_state = 15}, + [2265] = {.lex_state = 23, .external_lex_state = 14}, [2266] = {.lex_state = 15, .external_lex_state = 15}, - [2267] = {.lex_state = 15, .external_lex_state = 14}, - [2268] = {.lex_state = 15, .external_lex_state = 15}, + [2267] = {.lex_state = 15, .external_lex_state = 15}, + [2268] = {.lex_state = 15, .external_lex_state = 6}, [2269] = {.lex_state = 15, .external_lex_state = 15}, - [2270] = {.lex_state = 15, .external_lex_state = 15}, - [2271] = {.lex_state = 15, .external_lex_state = 14}, + [2270] = {.lex_state = 15, .external_lex_state = 14}, + [2271] = {.lex_state = 15, .external_lex_state = 15}, [2272] = {.lex_state = 15, .external_lex_state = 15}, - [2273] = {.lex_state = 15, .external_lex_state = 12}, - [2274] = {.lex_state = 15, .external_lex_state = 2}, - [2275] = {.lex_state = 15, .external_lex_state = 15}, - [2276] = {.lex_state = 15, .external_lex_state = 15}, - [2277] = {.lex_state = 15, .external_lex_state = 15}, + [2273] = {.lex_state = 15, .external_lex_state = 16}, + [2274] = {.lex_state = 15, .external_lex_state = 16}, + [2275] = {.lex_state = 15, .external_lex_state = 16}, + [2276] = {.lex_state = 15, .external_lex_state = 16}, + [2277] = {.lex_state = 15, .external_lex_state = 16}, [2278] = {.lex_state = 15, .external_lex_state = 16}, - [2279] = {.lex_state = 15, .external_lex_state = 14}, - [2280] = {.lex_state = 15, .external_lex_state = 16}, - [2281] = {.lex_state = 23, .external_lex_state = 12}, - [2282] = {.lex_state = 23, .external_lex_state = 16}, - [2283] = {.lex_state = 23, .external_lex_state = 16}, - [2284] = {.lex_state = 15, .external_lex_state = 16}, - [2285] = {.lex_state = 15, .external_lex_state = 14}, - [2286] = {.lex_state = 15, .external_lex_state = 14}, + [2279] = {.lex_state = 15, .external_lex_state = 16}, + [2280] = {.lex_state = 23, .external_lex_state = 16}, + [2281] = {.lex_state = 15, .external_lex_state = 12}, + [2282] = {.lex_state = 15, .external_lex_state = 14}, + [2283] = {.lex_state = 16, .external_lex_state = 11}, + [2284] = {.lex_state = 15, .external_lex_state = 12}, + [2285] = {.lex_state = 15, .external_lex_state = 12}, + [2286] = {.lex_state = 15, .external_lex_state = 16}, [2287] = {.lex_state = 15, .external_lex_state = 14}, - [2288] = {.lex_state = 15, .external_lex_state = 14}, - [2289] = {.lex_state = 15, .external_lex_state = 14}, + [2288] = {.lex_state = 15, .external_lex_state = 12}, + [2289] = {.lex_state = 23, .external_lex_state = 12}, [2290] = {.lex_state = 15, .external_lex_state = 12}, - [2291] = {.lex_state = 15, .external_lex_state = 16}, + [2291] = {.lex_state = 15, .external_lex_state = 14}, [2292] = {.lex_state = 15, .external_lex_state = 14}, - [2293] = {.lex_state = 15, .external_lex_state = 14}, - [2294] = {.lex_state = 15, .external_lex_state = 14}, - [2295] = {.lex_state = 15, .external_lex_state = 14}, - [2296] = {.lex_state = 15, .external_lex_state = 14}, + [2293] = {.lex_state = 15, .external_lex_state = 12}, + [2294] = {.lex_state = 15, .external_lex_state = 12}, + [2295] = {.lex_state = 15, .external_lex_state = 12}, + [2296] = {.lex_state = 15, .external_lex_state = 16}, [2297] = {.lex_state = 15, .external_lex_state = 12}, - [2298] = {.lex_state = 15, .external_lex_state = 16}, - [2299] = {.lex_state = 15, .external_lex_state = 16}, - [2300] = {.lex_state = 15, .external_lex_state = 12}, - [2301] = {.lex_state = 15, .external_lex_state = 12}, - [2302] = {.lex_state = 15, .external_lex_state = 12}, - [2303] = {.lex_state = 15, .external_lex_state = 12}, - [2304] = {.lex_state = 15, .external_lex_state = 12}, + [2298] = {.lex_state = 15, .external_lex_state = 12}, + [2299] = {.lex_state = 23, .external_lex_state = 12}, + [2300] = {.lex_state = 15, .external_lex_state = 14}, + [2301] = {.lex_state = 15, .external_lex_state = 14}, + [2302] = {.lex_state = 15, .external_lex_state = 14}, + [2303] = {.lex_state = 15, .external_lex_state = 14}, + [2304] = {.lex_state = 15, .external_lex_state = 14}, [2305] = {.lex_state = 15, .external_lex_state = 14}, [2306] = {.lex_state = 15, .external_lex_state = 14}, - [2307] = {.lex_state = 15, .external_lex_state = 16}, + [2307] = {.lex_state = 23, .external_lex_state = 12}, [2308] = {.lex_state = 15, .external_lex_state = 14}, - [2309] = {.lex_state = 15, .external_lex_state = 14}, - [2310] = {.lex_state = 15, .external_lex_state = 16}, - [2311] = {.lex_state = 15, .external_lex_state = 16}, - [2312] = {.lex_state = 15, .external_lex_state = 12}, - [2313] = {.lex_state = 15, .external_lex_state = 14}, - [2314] = {.lex_state = 15, .external_lex_state = 16}, - [2315] = {.lex_state = 15, .external_lex_state = 16}, - [2316] = {.lex_state = 15, .external_lex_state = 12}, + [2309] = {.lex_state = 15, .external_lex_state = 16}, + [2310] = {.lex_state = 15, .external_lex_state = 12}, + [2311] = {.lex_state = 15, .external_lex_state = 14}, + [2312] = {.lex_state = 15, .external_lex_state = 14}, + [2313] = {.lex_state = 15, .external_lex_state = 12}, + [2314] = {.lex_state = 15, .external_lex_state = 14}, + [2315] = {.lex_state = 15, .external_lex_state = 14}, + [2316] = {.lex_state = 15, .external_lex_state = 16}, [2317] = {.lex_state = 15, .external_lex_state = 16}, - [2318] = {.lex_state = 15, .external_lex_state = 12}, + [2318] = {.lex_state = 15, .external_lex_state = 16}, [2319] = {.lex_state = 15, .external_lex_state = 16}, - [2320] = {.lex_state = 15, .external_lex_state = 12}, - [2321] = {.lex_state = 15, .external_lex_state = 12}, - [2322] = {.lex_state = 15, .external_lex_state = 12}, - [2323] = {.lex_state = 15, .external_lex_state = 12}, - [2324] = {.lex_state = 15, .external_lex_state = 16}, - [2325] = {.lex_state = 15, .external_lex_state = 16}, + [2320] = {.lex_state = 15, .external_lex_state = 16}, + [2321] = {.lex_state = 15, .external_lex_state = 16}, + [2322] = {.lex_state = 15, .external_lex_state = 16}, + [2323] = {.lex_state = 15, .external_lex_state = 14}, + [2324] = {.lex_state = 15, .external_lex_state = 14}, + [2325] = {.lex_state = 15, .external_lex_state = 14}, [2326] = {.lex_state = 15, .external_lex_state = 16}, - [2327] = {.lex_state = 15, .external_lex_state = 16}, - [2328] = {.lex_state = 15, .external_lex_state = 16}, - [2329] = {.lex_state = 15, .external_lex_state = 12}, + [2327] = {.lex_state = 15, .external_lex_state = 11}, + [2328] = {.lex_state = 15, .external_lex_state = 14}, + [2329] = {.lex_state = 15, .external_lex_state = 14}, [2330] = {.lex_state = 15, .external_lex_state = 14}, [2331] = {.lex_state = 15, .external_lex_state = 12}, [2332] = {.lex_state = 15, .external_lex_state = 12}, - [2333] = {.lex_state = 15, .external_lex_state = 16}, - [2334] = {.lex_state = 15, .external_lex_state = 14}, - [2335] = {.lex_state = 15, .external_lex_state = 16}, - [2336] = {.lex_state = 15, .external_lex_state = 16}, - [2337] = {.lex_state = 15, .external_lex_state = 11}, + [2333] = {.lex_state = 15, .external_lex_state = 14}, + [2334] = {.lex_state = 15, .external_lex_state = 12}, + [2335] = {.lex_state = 15, .external_lex_state = 14}, + [2336] = {.lex_state = 15, .external_lex_state = 14}, + [2337] = {.lex_state = 15, .external_lex_state = 14}, [2338] = {.lex_state = 15, .external_lex_state = 14}, - [2339] = {.lex_state = 15, .external_lex_state = 12}, - [2340] = {.lex_state = 15, .external_lex_state = 16}, + [2339] = {.lex_state = 15, .external_lex_state = 14}, + [2340] = {.lex_state = 15, .external_lex_state = 12}, [2341] = {.lex_state = 15, .external_lex_state = 16}, [2342] = {.lex_state = 15, .external_lex_state = 16}, [2343] = {.lex_state = 15, .external_lex_state = 16}, - [2344] = {.lex_state = 15, .external_lex_state = 16}, + [2344] = {.lex_state = 16, .external_lex_state = 11}, [2345] = {.lex_state = 15, .external_lex_state = 16}, [2346] = {.lex_state = 15, .external_lex_state = 16}, - [2347] = {.lex_state = 15, .external_lex_state = 12}, + [2347] = {.lex_state = 15, .external_lex_state = 16}, [2348] = {.lex_state = 15, .external_lex_state = 16}, - [2349] = {.lex_state = 15, .external_lex_state = 12}, - [2350] = {.lex_state = 15, .external_lex_state = 12}, - [2351] = {.lex_state = 15, .external_lex_state = 16}, - [2352] = {.lex_state = 15, .external_lex_state = 12}, - [2353] = {.lex_state = 15, .external_lex_state = 16}, - [2354] = {.lex_state = 15, .external_lex_state = 14}, + [2349] = {.lex_state = 15, .external_lex_state = 16}, + [2350] = {.lex_state = 15, .external_lex_state = 14}, + [2351] = {.lex_state = 15, .external_lex_state = 14}, + [2352] = {.lex_state = 15, .external_lex_state = 14}, + [2353] = {.lex_state = 23, .external_lex_state = 14}, + [2354] = {.lex_state = 23, .external_lex_state = 14}, [2355] = {.lex_state = 15, .external_lex_state = 14}, - [2356] = {.lex_state = 15, .external_lex_state = 14}, - [2357] = {.lex_state = 16, .external_lex_state = 11}, - [2358] = {.lex_state = 15, .external_lex_state = 16}, - [2359] = {.lex_state = 15, .external_lex_state = 16}, - [2360] = {.lex_state = 15, .external_lex_state = 16}, - [2361] = {.lex_state = 15, .external_lex_state = 16}, - [2362] = {.lex_state = 15, .external_lex_state = 16}, - [2363] = {.lex_state = 15, .external_lex_state = 12}, - [2364] = {.lex_state = 15, .external_lex_state = 16}, - [2365] = {.lex_state = 15, .external_lex_state = 16}, - [2366] = {.lex_state = 15, .external_lex_state = 12}, - [2367] = {.lex_state = 15, .external_lex_state = 16}, - [2368] = {.lex_state = 16, .external_lex_state = 11}, - [2369] = {.lex_state = 15, .external_lex_state = 16}, - [2370] = {.lex_state = 16, .external_lex_state = 11}, + [2356] = {.lex_state = 23, .external_lex_state = 16}, + [2357] = {.lex_state = 23, .external_lex_state = 16}, + [2358] = {.lex_state = 15, .external_lex_state = 14}, + [2359] = {.lex_state = 15, .external_lex_state = 14}, + [2360] = {.lex_state = 15, .external_lex_state = 14}, + [2361] = {.lex_state = 15, .external_lex_state = 14}, + [2362] = {.lex_state = 15, .external_lex_state = 14}, + [2363] = {.lex_state = 15, .external_lex_state = 14}, + [2364] = {.lex_state = 15, .external_lex_state = 14}, + [2365] = {.lex_state = 15, .external_lex_state = 14}, + [2366] = {.lex_state = 15, .external_lex_state = 14}, + [2367] = {.lex_state = 15, .external_lex_state = 14}, + [2368] = {.lex_state = 15, .external_lex_state = 14}, + [2369] = {.lex_state = 15, .external_lex_state = 14}, + [2370] = {.lex_state = 15, .external_lex_state = 14}, [2371] = {.lex_state = 15, .external_lex_state = 14}, [2372] = {.lex_state = 15, .external_lex_state = 16}, - [2373] = {.lex_state = 15, .external_lex_state = 12}, - [2374] = {.lex_state = 15, .external_lex_state = 12}, + [2373] = {.lex_state = 15, .external_lex_state = 16}, + [2374] = {.lex_state = 15, .external_lex_state = 16}, [2375] = {.lex_state = 15, .external_lex_state = 16}, - [2376] = {.lex_state = 15, .external_lex_state = 16}, - [2377] = {.lex_state = 16, .external_lex_state = 11}, - [2378] = {.lex_state = 66, .external_lex_state = 12}, - [2379] = {.lex_state = 15, .external_lex_state = 14}, - [2380] = {.lex_state = 15, .external_lex_state = 12}, + [2376] = {.lex_state = 15, .external_lex_state = 14}, + [2377] = {.lex_state = 15, .external_lex_state = 14}, + [2378] = {.lex_state = 15, .external_lex_state = 16}, + [2379] = {.lex_state = 15, .external_lex_state = 12}, + [2380] = {.lex_state = 15, .external_lex_state = 16}, [2381] = {.lex_state = 15, .external_lex_state = 16}, - [2382] = {.lex_state = 15, .external_lex_state = 16}, - [2383] = {.lex_state = 16, .external_lex_state = 11}, - [2384] = {.lex_state = 16, .external_lex_state = 11}, - [2385] = {.lex_state = 16, .external_lex_state = 11}, + [2382] = {.lex_state = 15, .external_lex_state = 11}, + [2383] = {.lex_state = 15, .external_lex_state = 16}, + [2384] = {.lex_state = 15, .external_lex_state = 16}, + [2385] = {.lex_state = 15, .external_lex_state = 16}, [2386] = {.lex_state = 15, .external_lex_state = 14}, [2387] = {.lex_state = 15, .external_lex_state = 14}, - [2388] = {.lex_state = 23, .external_lex_state = 14}, - [2389] = {.lex_state = 23, .external_lex_state = 14}, - [2390] = {.lex_state = 15, .external_lex_state = 16}, - [2391] = {.lex_state = 15, .external_lex_state = 16}, - [2392] = {.lex_state = 15, .external_lex_state = 14}, - [2393] = {.lex_state = 15, .external_lex_state = 16}, + [2388] = {.lex_state = 15, .external_lex_state = 12}, + [2389] = {.lex_state = 15, .external_lex_state = 12}, + [2390] = {.lex_state = 15, .external_lex_state = 12}, + [2391] = {.lex_state = 15, .external_lex_state = 12}, + [2392] = {.lex_state = 15, .external_lex_state = 12}, + [2393] = {.lex_state = 15, .external_lex_state = 12}, [2394] = {.lex_state = 15, .external_lex_state = 12}, - [2395] = {.lex_state = 15, .external_lex_state = 12}, - [2396] = {.lex_state = 15, .external_lex_state = 11}, - [2397] = {.lex_state = 15, .external_lex_state = 16}, - [2398] = {.lex_state = 15, .external_lex_state = 12}, - [2399] = {.lex_state = 15, .external_lex_state = 16}, - [2400] = {.lex_state = 15, .external_lex_state = 12}, - [2401] = {.lex_state = 15, .external_lex_state = 8}, - [2402] = {.lex_state = 15, .external_lex_state = 12}, - [2403] = {.lex_state = 15, .external_lex_state = 14}, - [2404] = {.lex_state = 15, .external_lex_state = 14}, - [2405] = {.lex_state = 15, .external_lex_state = 12}, - [2406] = {.lex_state = 15, .external_lex_state = 14}, - [2407] = {.lex_state = 15, .external_lex_state = 14}, - [2408] = {.lex_state = 15, .external_lex_state = 14}, - [2409] = {.lex_state = 16, .external_lex_state = 11}, - [2410] = {.lex_state = 16, .external_lex_state = 11}, - [2411] = {.lex_state = 15, .external_lex_state = 14}, - [2412] = {.lex_state = 23, .external_lex_state = 12}, - [2413] = {.lex_state = 15, .external_lex_state = 14}, + [2395] = {.lex_state = 15, .external_lex_state = 14}, + [2396] = {.lex_state = 15, .external_lex_state = 14}, + [2397] = {.lex_state = 66, .external_lex_state = 12}, + [2398] = {.lex_state = 15, .external_lex_state = 14}, + [2399] = {.lex_state = 15, .external_lex_state = 14}, + [2400] = {.lex_state = 15, .external_lex_state = 14}, + [2401] = {.lex_state = 15, .external_lex_state = 14}, + [2402] = {.lex_state = 15, .external_lex_state = 14}, + [2403] = {.lex_state = 15, .external_lex_state = 16}, + [2404] = {.lex_state = 66, .external_lex_state = 12}, + [2405] = {.lex_state = 15, .external_lex_state = 8}, + [2406] = {.lex_state = 15, .external_lex_state = 16}, + [2407] = {.lex_state = 15, .external_lex_state = 16}, + [2408] = {.lex_state = 15, .external_lex_state = 16}, + [2409] = {.lex_state = 15, .external_lex_state = 16}, + [2410] = {.lex_state = 15, .external_lex_state = 16}, + [2411] = {.lex_state = 15, .external_lex_state = 16}, + [2412] = {.lex_state = 15, .external_lex_state = 8}, + [2413] = {.lex_state = 15, .external_lex_state = 16}, [2414] = {.lex_state = 15, .external_lex_state = 16}, - [2415] = {.lex_state = 16, .external_lex_state = 11}, - [2416] = {.lex_state = 15, .external_lex_state = 14}, - [2417] = {.lex_state = 15, .external_lex_state = 14}, + [2415] = {.lex_state = 15, .external_lex_state = 16}, + [2416] = {.lex_state = 15, .external_lex_state = 12}, + [2417] = {.lex_state = 15, .external_lex_state = 12}, [2418] = {.lex_state = 15, .external_lex_state = 14}, - [2419] = {.lex_state = 15, .external_lex_state = 14}, - [2420] = {.lex_state = 15, .external_lex_state = 14}, - [2421] = {.lex_state = 15, .external_lex_state = 14}, - [2422] = {.lex_state = 15, .external_lex_state = 14}, - [2423] = {.lex_state = 16, .external_lex_state = 11}, + [2419] = {.lex_state = 15, .external_lex_state = 12}, + [2420] = {.lex_state = 15, .external_lex_state = 16}, + [2421] = {.lex_state = 15, .external_lex_state = 16}, + [2422] = {.lex_state = 15, .external_lex_state = 16}, + [2423] = {.lex_state = 15, .external_lex_state = 16}, [2424] = {.lex_state = 15, .external_lex_state = 16}, - [2425] = {.lex_state = 15, .external_lex_state = 14}, - [2426] = {.lex_state = 15, .external_lex_state = 14}, - [2427] = {.lex_state = 15, .external_lex_state = 14}, - [2428] = {.lex_state = 15, .external_lex_state = 14}, - [2429] = {.lex_state = 15, .external_lex_state = 14}, - [2430] = {.lex_state = 15, .external_lex_state = 14}, - [2431] = {.lex_state = 15, .external_lex_state = 14}, + [2425] = {.lex_state = 15, .external_lex_state = 12}, + [2426] = {.lex_state = 15, .external_lex_state = 16}, + [2427] = {.lex_state = 15, .external_lex_state = 12}, + [2428] = {.lex_state = 16, .external_lex_state = 11}, + [2429] = {.lex_state = 16, .external_lex_state = 11}, + [2430] = {.lex_state = 16, .external_lex_state = 11}, + [2431] = {.lex_state = 15, .external_lex_state = 16}, [2432] = {.lex_state = 16, .external_lex_state = 11}, - [2433] = {.lex_state = 15, .external_lex_state = 14}, - [2434] = {.lex_state = 15, .external_lex_state = 14}, - [2435] = {.lex_state = 15, .external_lex_state = 14}, + [2433] = {.lex_state = 15, .external_lex_state = 12}, + [2434] = {.lex_state = 15, .external_lex_state = 12}, + [2435] = {.lex_state = 15, .external_lex_state = 12}, [2436] = {.lex_state = 15, .external_lex_state = 12}, [2437] = {.lex_state = 15, .external_lex_state = 12}, - [2438] = {.lex_state = 23, .external_lex_state = 12}, - [2439] = {.lex_state = 16, .external_lex_state = 11}, - [2440] = {.lex_state = 15, .external_lex_state = 14}, - [2441] = {.lex_state = 15, .external_lex_state = 14}, - [2442] = {.lex_state = 15, .external_lex_state = 14}, - [2443] = {.lex_state = 15, .external_lex_state = 14}, - [2444] = {.lex_state = 15, .external_lex_state = 14}, - [2445] = {.lex_state = 15, .external_lex_state = 14}, - [2446] = {.lex_state = 15, .external_lex_state = 12}, - [2447] = {.lex_state = 15, .external_lex_state = 12}, - [2448] = {.lex_state = 15, .external_lex_state = 12}, + [2438] = {.lex_state = 15, .external_lex_state = 12}, + [2439] = {.lex_state = 15, .external_lex_state = 12}, + [2440] = {.lex_state = 15, .external_lex_state = 16}, + [2441] = {.lex_state = 15, .external_lex_state = 12}, + [2442] = {.lex_state = 15, .external_lex_state = 12}, + [2443] = {.lex_state = 15, .external_lex_state = 16}, + [2444] = {.lex_state = 15, .external_lex_state = 12}, + [2445] = {.lex_state = 15, .external_lex_state = 16}, + [2446] = {.lex_state = 15, .external_lex_state = 16}, + [2447] = {.lex_state = 15, .external_lex_state = 16}, + [2448] = {.lex_state = 16, .external_lex_state = 11}, [2449] = {.lex_state = 16, .external_lex_state = 11}, - [2450] = {.lex_state = 15, .external_lex_state = 8}, - [2451] = {.lex_state = 15, .external_lex_state = 16}, - [2452] = {.lex_state = 66, .external_lex_state = 12}, - [2453] = {.lex_state = 15, .external_lex_state = 12}, - [2454] = {.lex_state = 15, .external_lex_state = 16}, + [2450] = {.lex_state = 16, .external_lex_state = 11}, + [2451] = {.lex_state = 16, .external_lex_state = 11}, + [2452] = {.lex_state = 16, .external_lex_state = 11}, + [2453] = {.lex_state = 16, .external_lex_state = 11}, + [2454] = {.lex_state = 16, .external_lex_state = 11}, [2455] = {.lex_state = 15, .external_lex_state = 16}, [2456] = {.lex_state = 15, .external_lex_state = 16}, - [2457] = {.lex_state = 15, .external_lex_state = 16}, - [2458] = {.lex_state = 15, .external_lex_state = 16}, + [2457] = {.lex_state = 15, .external_lex_state = 12}, + [2458] = {.lex_state = 16, .external_lex_state = 11}, [2459] = {.lex_state = 15, .external_lex_state = 16}, - [2460] = {.lex_state = 15, .external_lex_state = 16}, - [2461] = {.lex_state = 23, .external_lex_state = 16}, + [2460] = {.lex_state = 15, .external_lex_state = 6}, + [2461] = {.lex_state = 15, .external_lex_state = 16}, [2462] = {.lex_state = 15, .external_lex_state = 16}, - [2463] = {.lex_state = 23, .external_lex_state = 15}, - [2464] = {.lex_state = 23, .external_lex_state = 15}, + [2463] = {.lex_state = 15, .external_lex_state = 16}, + [2464] = {.lex_state = 15, .external_lex_state = 12}, [2465] = {.lex_state = 15, .external_lex_state = 16}, - [2466] = {.lex_state = 15, .external_lex_state = 16}, + [2466] = {.lex_state = 15, .external_lex_state = 6}, [2467] = {.lex_state = 15, .external_lex_state = 16}, - [2468] = {.lex_state = 15, .external_lex_state = 12}, - [2469] = {.lex_state = 15, .external_lex_state = 16}, + [2468] = {.lex_state = 15, .external_lex_state = 16}, + [2469] = {.lex_state = 23, .external_lex_state = 16}, [2470] = {.lex_state = 15, .external_lex_state = 16}, - [2471] = {.lex_state = 15, .external_lex_state = 6}, + [2471] = {.lex_state = 15, .external_lex_state = 16}, [2472] = {.lex_state = 15, .external_lex_state = 16}, - [2473] = {.lex_state = 15, .external_lex_state = 16}, + [2473] = {.lex_state = 15, .external_lex_state = 12}, [2474] = {.lex_state = 15, .external_lex_state = 16}, - [2475] = {.lex_state = 15, .external_lex_state = 12}, + [2475] = {.lex_state = 15, .external_lex_state = 16}, [2476] = {.lex_state = 15, .external_lex_state = 16}, [2477] = {.lex_state = 15, .external_lex_state = 16}, - [2478] = {.lex_state = 15, .external_lex_state = 16}, - [2479] = {.lex_state = 15, .external_lex_state = 16}, - [2480] = {.lex_state = 15, .external_lex_state = 16}, - [2481] = {.lex_state = 15, .external_lex_state = 16}, - [2482] = {.lex_state = 23, .external_lex_state = 14}, + [2478] = {.lex_state = 23, .external_lex_state = 16}, + [2479] = {.lex_state = 23, .external_lex_state = 15}, + [2480] = {.lex_state = 23, .external_lex_state = 15}, + [2481] = {.lex_state = 15, .external_lex_state = 12}, + [2482] = {.lex_state = 15, .external_lex_state = 16}, [2483] = {.lex_state = 15, .external_lex_state = 16}, [2484] = {.lex_state = 15, .external_lex_state = 16}, [2485] = {.lex_state = 15, .external_lex_state = 16}, [2486] = {.lex_state = 15, .external_lex_state = 16}, [2487] = {.lex_state = 15, .external_lex_state = 16}, - [2488] = {.lex_state = 23, .external_lex_state = 16}, - [2489] = {.lex_state = 23, .external_lex_state = 14}, + [2488] = {.lex_state = 23, .external_lex_state = 14}, + [2489] = {.lex_state = 15, .external_lex_state = 16}, [2490] = {.lex_state = 15, .external_lex_state = 16}, - [2491] = {.lex_state = 23, .external_lex_state = 14}, - [2492] = {.lex_state = 23, .external_lex_state = 14}, + [2491] = {.lex_state = 15, .external_lex_state = 16}, + [2492] = {.lex_state = 15, .external_lex_state = 16}, [2493] = {.lex_state = 15, .external_lex_state = 16}, - [2494] = {.lex_state = 15, .external_lex_state = 12}, + [2494] = {.lex_state = 15, .external_lex_state = 16}, [2495] = {.lex_state = 15, .external_lex_state = 16}, [2496] = {.lex_state = 15, .external_lex_state = 16}, [2497] = {.lex_state = 15, .external_lex_state = 16}, - [2498] = {.lex_state = 15, .external_lex_state = 16}, - [2499] = {.lex_state = 15, .external_lex_state = 16}, + [2498] = {.lex_state = 23, .external_lex_state = 14}, + [2499] = {.lex_state = 23, .external_lex_state = 14}, [2500] = {.lex_state = 15, .external_lex_state = 16}, [2501] = {.lex_state = 15, .external_lex_state = 16}, - [2502] = {.lex_state = 15, .external_lex_state = 12}, + [2502] = {.lex_state = 15, .external_lex_state = 16}, [2503] = {.lex_state = 15, .external_lex_state = 16}, - [2504] = {.lex_state = 15, .external_lex_state = 12}, + [2504] = {.lex_state = 15, .external_lex_state = 16}, [2505] = {.lex_state = 15, .external_lex_state = 16}, [2506] = {.lex_state = 15, .external_lex_state = 16}, [2507] = {.lex_state = 15, .external_lex_state = 16}, @@ -15220,309 +15235,309 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2509] = {.lex_state = 15, .external_lex_state = 16}, [2510] = {.lex_state = 15, .external_lex_state = 16}, [2511] = {.lex_state = 15, .external_lex_state = 16}, - [2512] = {.lex_state = 15, .external_lex_state = 16}, + [2512] = {.lex_state = 15, .external_lex_state = 12}, [2513] = {.lex_state = 15, .external_lex_state = 16}, [2514] = {.lex_state = 15, .external_lex_state = 16}, [2515] = {.lex_state = 15, .external_lex_state = 16}, - [2516] = {.lex_state = 15, .external_lex_state = 6}, + [2516] = {.lex_state = 15, .external_lex_state = 16}, [2517] = {.lex_state = 15, .external_lex_state = 16}, - [2518] = {.lex_state = 15, .external_lex_state = 14}, - [2519] = {.lex_state = 16, .external_lex_state = 12}, - [2520] = {.lex_state = 15, .external_lex_state = 14}, - [2521] = {.lex_state = 15, .external_lex_state = 14}, - [2522] = {.lex_state = 15, .external_lex_state = 14}, - [2523] = {.lex_state = 15, .external_lex_state = 14}, - [2524] = {.lex_state = 15, .external_lex_state = 14}, - [2525] = {.lex_state = 16, .external_lex_state = 12}, + [2518] = {.lex_state = 15, .external_lex_state = 16}, + [2519] = {.lex_state = 15, .external_lex_state = 16}, + [2520] = {.lex_state = 15, .external_lex_state = 12}, + [2521] = {.lex_state = 15, .external_lex_state = 16}, + [2522] = {.lex_state = 15, .external_lex_state = 16}, + [2523] = {.lex_state = 15, .external_lex_state = 16}, + [2524] = {.lex_state = 23, .external_lex_state = 14}, + [2525] = {.lex_state = 15, .external_lex_state = 14}, [2526] = {.lex_state = 15, .external_lex_state = 14}, - [2527] = {.lex_state = 5, .external_lex_state = 12}, - [2528] = {.lex_state = 15, .external_lex_state = 14}, - [2529] = {.lex_state = 15, .external_lex_state = 14}, - [2530] = {.lex_state = 15, .external_lex_state = 14}, + [2527] = {.lex_state = 15, .external_lex_state = 14}, + [2528] = {.lex_state = 5, .external_lex_state = 12}, + [2529] = {.lex_state = 5, .external_lex_state = 12}, + [2530] = {.lex_state = 5, .external_lex_state = 12}, [2531] = {.lex_state = 15, .external_lex_state = 14}, - [2532] = {.lex_state = 5, .external_lex_state = 2}, - [2533] = {.lex_state = 5, .external_lex_state = 12}, + [2532] = {.lex_state = 15, .external_lex_state = 14}, + [2533] = {.lex_state = 15, .external_lex_state = 16}, [2534] = {.lex_state = 15, .external_lex_state = 14}, - [2535] = {.lex_state = 15, .external_lex_state = 14}, + [2535] = {.lex_state = 5, .external_lex_state = 2}, [2536] = {.lex_state = 16, .external_lex_state = 12}, - [2537] = {.lex_state = 15, .external_lex_state = 12}, + [2537] = {.lex_state = 15, .external_lex_state = 14}, [2538] = {.lex_state = 15, .external_lex_state = 14}, - [2539] = {.lex_state = 15, .external_lex_state = 14}, + [2539] = {.lex_state = 16, .external_lex_state = 12}, [2540] = {.lex_state = 15, .external_lex_state = 14}, [2541] = {.lex_state = 15, .external_lex_state = 14}, - [2542] = {.lex_state = 16, .external_lex_state = 12}, - [2543] = {.lex_state = 16, .external_lex_state = 12}, - [2544] = {.lex_state = 16, .external_lex_state = 12}, - [2545] = {.lex_state = 15, .external_lex_state = 14}, + [2542] = {.lex_state = 15, .external_lex_state = 14}, + [2543] = {.lex_state = 5, .external_lex_state = 12}, + [2544] = {.lex_state = 15, .external_lex_state = 15}, + [2545] = {.lex_state = 5, .external_lex_state = 12}, [2546] = {.lex_state = 5, .external_lex_state = 12}, - [2547] = {.lex_state = 15, .external_lex_state = 14}, + [2547] = {.lex_state = 15, .external_lex_state = 12}, [2548] = {.lex_state = 15, .external_lex_state = 14}, - [2549] = {.lex_state = 16, .external_lex_state = 12}, - [2550] = {.lex_state = 16, .external_lex_state = 12}, + [2549] = {.lex_state = 5, .external_lex_state = 12}, + [2550] = {.lex_state = 15, .external_lex_state = 14}, [2551] = {.lex_state = 15, .external_lex_state = 14}, - [2552] = {.lex_state = 5, .external_lex_state = 12}, - [2553] = {.lex_state = 16, .external_lex_state = 12}, + [2552] = {.lex_state = 15, .external_lex_state = 14}, + [2553] = {.lex_state = 15, .external_lex_state = 14}, [2554] = {.lex_state = 5, .external_lex_state = 12}, - [2555] = {.lex_state = 15, .external_lex_state = 14}, - [2556] = {.lex_state = 15, .external_lex_state = 14}, + [2555] = {.lex_state = 5, .external_lex_state = 12}, + [2556] = {.lex_state = 5, .external_lex_state = 12}, [2557] = {.lex_state = 15, .external_lex_state = 14}, - [2558] = {.lex_state = 15, .external_lex_state = 16}, - [2559] = {.lex_state = 15, .external_lex_state = 14}, + [2558] = {.lex_state = 16, .external_lex_state = 12}, + [2559] = {.lex_state = 16, .external_lex_state = 12}, [2560] = {.lex_state = 5, .external_lex_state = 12}, [2561] = {.lex_state = 15, .external_lex_state = 14}, [2562] = {.lex_state = 15, .external_lex_state = 14}, [2563] = {.lex_state = 15, .external_lex_state = 14}, [2564] = {.lex_state = 15, .external_lex_state = 14}, - [2565] = {.lex_state = 5, .external_lex_state = 12}, - [2566] = {.lex_state = 5, .external_lex_state = 12}, - [2567] = {.lex_state = 15, .external_lex_state = 15}, + [2565] = {.lex_state = 15, .external_lex_state = 14}, + [2566] = {.lex_state = 15, .external_lex_state = 14}, + [2567] = {.lex_state = 15, .external_lex_state = 14}, [2568] = {.lex_state = 15, .external_lex_state = 14}, - [2569] = {.lex_state = 5, .external_lex_state = 12}, - [2570] = {.lex_state = 5, .external_lex_state = 12}, + [2569] = {.lex_state = 15, .external_lex_state = 14}, + [2570] = {.lex_state = 16, .external_lex_state = 12}, [2571] = {.lex_state = 15, .external_lex_state = 14}, [2572] = {.lex_state = 5, .external_lex_state = 12}, - [2573] = {.lex_state = 5, .external_lex_state = 12}, + [2573] = {.lex_state = 16, .external_lex_state = 12}, [2574] = {.lex_state = 16, .external_lex_state = 12}, - [2575] = {.lex_state = 5, .external_lex_state = 12}, - [2576] = {.lex_state = 5, .external_lex_state = 12}, - [2577] = {.lex_state = 15, .external_lex_state = 14}, - [2578] = {.lex_state = 16, .external_lex_state = 12}, - [2579] = {.lex_state = 5, .external_lex_state = 12}, + [2575] = {.lex_state = 16, .external_lex_state = 12}, + [2576] = {.lex_state = 16, .external_lex_state = 12}, + [2577] = {.lex_state = 16, .external_lex_state = 12}, + [2578] = {.lex_state = 15, .external_lex_state = 14}, + [2579] = {.lex_state = 15, .external_lex_state = 14}, [2580] = {.lex_state = 15, .external_lex_state = 14}, - [2581] = {.lex_state = 5, .external_lex_state = 12}, + [2581] = {.lex_state = 15, .external_lex_state = 14}, [2582] = {.lex_state = 16, .external_lex_state = 12}, - [2583] = {.lex_state = 15, .external_lex_state = 14}, - [2584] = {.lex_state = 5, .external_lex_state = 12}, + [2583] = {.lex_state = 5, .external_lex_state = 2}, + [2584] = {.lex_state = 15, .external_lex_state = 14}, [2585] = {.lex_state = 15, .external_lex_state = 14}, [2586] = {.lex_state = 15, .external_lex_state = 14}, [2587] = {.lex_state = 5, .external_lex_state = 12}, - [2588] = {.lex_state = 5, .external_lex_state = 12}, - [2589] = {.lex_state = 15, .external_lex_state = 14}, - [2590] = {.lex_state = 5, .external_lex_state = 2}, - [2591] = {.lex_state = 15, .external_lex_state = 14}, + [2588] = {.lex_state = 15, .external_lex_state = 14}, + [2589] = {.lex_state = 5, .external_lex_state = 12}, + [2590] = {.lex_state = 15, .external_lex_state = 14}, + [2591] = {.lex_state = 16, .external_lex_state = 12}, [2592] = {.lex_state = 5, .external_lex_state = 12}, [2593] = {.lex_state = 15, .external_lex_state = 14}, - [2594] = {.lex_state = 15, .external_lex_state = 14}, + [2594] = {.lex_state = 5, .external_lex_state = 12}, [2595] = {.lex_state = 15, .external_lex_state = 14}, [2596] = {.lex_state = 15, .external_lex_state = 14}, [2597] = {.lex_state = 15, .external_lex_state = 14}, [2598] = {.lex_state = 15, .external_lex_state = 14}, - [2599] = {.lex_state = 15, .external_lex_state = 14}, + [2599] = {.lex_state = 5, .external_lex_state = 12}, [2600] = {.lex_state = 15, .external_lex_state = 14}, - [2601] = {.lex_state = 5, .external_lex_state = 12}, - [2602] = {.lex_state = 15, .external_lex_state = 14}, + [2601] = {.lex_state = 15, .external_lex_state = 14}, + [2602] = {.lex_state = 5, .external_lex_state = 12}, [2603] = {.lex_state = 5, .external_lex_state = 12}, - [2604] = {.lex_state = 15, .external_lex_state = 14}, - [2605] = {.lex_state = 16, .external_lex_state = 12}, - [2606] = {.lex_state = 5, .external_lex_state = 12}, + [2604] = {.lex_state = 5, .external_lex_state = 12}, + [2605] = {.lex_state = 15, .external_lex_state = 14}, + [2606] = {.lex_state = 15, .external_lex_state = 14}, [2607] = {.lex_state = 15, .external_lex_state = 14}, - [2608] = {.lex_state = 16, .external_lex_state = 12}, - [2609] = {.lex_state = 5, .external_lex_state = 14}, - [2610] = {.lex_state = 66, .external_lex_state = 12}, - [2611] = {.lex_state = 5, .external_lex_state = 6}, - [2612] = {.lex_state = 5, .external_lex_state = 6}, - [2613] = {.lex_state = 5, .external_lex_state = 8}, - [2614] = {.lex_state = 5, .external_lex_state = 12}, - [2615] = {.lex_state = 66, .external_lex_state = 12}, - [2616] = {.lex_state = 5, .external_lex_state = 6}, - [2617] = {.lex_state = 5, .external_lex_state = 8}, + [2608] = {.lex_state = 5, .external_lex_state = 12}, + [2609] = {.lex_state = 15, .external_lex_state = 14}, + [2610] = {.lex_state = 5, .external_lex_state = 12}, + [2611] = {.lex_state = 5, .external_lex_state = 12}, + [2612] = {.lex_state = 15, .external_lex_state = 14}, + [2613] = {.lex_state = 15, .external_lex_state = 14}, + [2614] = {.lex_state = 15, .external_lex_state = 14}, + [2615] = {.lex_state = 16, .external_lex_state = 12}, + [2616] = {.lex_state = 16, .external_lex_state = 12}, + [2617] = {.lex_state = 5, .external_lex_state = 14}, [2618] = {.lex_state = 5, .external_lex_state = 6}, [2619] = {.lex_state = 5, .external_lex_state = 6}, - [2620] = {.lex_state = 5, .external_lex_state = 14}, - [2621] = {.lex_state = 66, .external_lex_state = 12}, - [2622] = {.lex_state = 5, .external_lex_state = 14}, - [2623] = {.lex_state = 5, .external_lex_state = 6}, - [2624] = {.lex_state = 5, .external_lex_state = 8}, - [2625] = {.lex_state = 5, .external_lex_state = 6}, + [2620] = {.lex_state = 66, .external_lex_state = 12}, + [2621] = {.lex_state = 5, .external_lex_state = 6}, + [2622] = {.lex_state = 5, .external_lex_state = 6}, + [2623] = {.lex_state = 5, .external_lex_state = 8}, + [2624] = {.lex_state = 5, .external_lex_state = 6}, + [2625] = {.lex_state = 5, .external_lex_state = 8}, [2626] = {.lex_state = 5, .external_lex_state = 6}, [2627] = {.lex_state = 5, .external_lex_state = 6}, [2628] = {.lex_state = 5, .external_lex_state = 8}, [2629] = {.lex_state = 5, .external_lex_state = 6}, - [2630] = {.lex_state = 5, .external_lex_state = 6}, + [2630] = {.lex_state = 5, .external_lex_state = 8}, [2631] = {.lex_state = 5, .external_lex_state = 12}, - [2632] = {.lex_state = 66, .external_lex_state = 12}, + [2632] = {.lex_state = 5, .external_lex_state = 6}, [2633] = {.lex_state = 5, .external_lex_state = 6}, - [2634] = {.lex_state = 5, .external_lex_state = 8}, + [2634] = {.lex_state = 5, .external_lex_state = 14}, [2635] = {.lex_state = 5, .external_lex_state = 6}, - [2636] = {.lex_state = 5, .external_lex_state = 8}, - [2637] = {.lex_state = 5, .external_lex_state = 6}, - [2638] = {.lex_state = 5, .external_lex_state = 6}, + [2636] = {.lex_state = 5, .external_lex_state = 6}, + [2637] = {.lex_state = 66, .external_lex_state = 12}, + [2638] = {.lex_state = 5, .external_lex_state = 8}, [2639] = {.lex_state = 5, .external_lex_state = 8}, [2640] = {.lex_state = 5, .external_lex_state = 6}, - [2641] = {.lex_state = 5, .external_lex_state = 8}, - [2642] = {.lex_state = 5, .external_lex_state = 6}, - [2643] = {.lex_state = 5, .external_lex_state = 6}, - [2644] = {.lex_state = 5, .external_lex_state = 6}, - [2645] = {.lex_state = 5, .external_lex_state = 8}, - [2646] = {.lex_state = 5, .external_lex_state = 6}, + [2641] = {.lex_state = 5, .external_lex_state = 6}, + [2642] = {.lex_state = 5, .external_lex_state = 8}, + [2643] = {.lex_state = 5, .external_lex_state = 8}, + [2644] = {.lex_state = 5, .external_lex_state = 14}, + [2645] = {.lex_state = 5, .external_lex_state = 6}, + [2646] = {.lex_state = 5, .external_lex_state = 12}, [2647] = {.lex_state = 5, .external_lex_state = 6}, [2648] = {.lex_state = 5, .external_lex_state = 8}, [2649] = {.lex_state = 5, .external_lex_state = 6}, - [2650] = {.lex_state = 5, .external_lex_state = 8}, - [2651] = {.lex_state = 5, .external_lex_state = 6}, + [2650] = {.lex_state = 5, .external_lex_state = 6}, + [2651] = {.lex_state = 5, .external_lex_state = 14}, [2652] = {.lex_state = 5, .external_lex_state = 6}, [2653] = {.lex_state = 5, .external_lex_state = 8}, - [2654] = {.lex_state = 66, .external_lex_state = 12}, - [2655] = {.lex_state = 5, .external_lex_state = 12}, - [2656] = {.lex_state = 66, .external_lex_state = 13}, - [2657] = {.lex_state = 66, .external_lex_state = 13}, - [2658] = {.lex_state = 66, .external_lex_state = 12}, - [2659] = {.lex_state = 66, .external_lex_state = 13}, - [2660] = {.lex_state = 66, .external_lex_state = 12}, - [2661] = {.lex_state = 66, .external_lex_state = 13}, - [2662] = {.lex_state = 66, .external_lex_state = 13}, - [2663] = {.lex_state = 66, .external_lex_state = 13}, - [2664] = {.lex_state = 66, .external_lex_state = 13}, + [2654] = {.lex_state = 5, .external_lex_state = 6}, + [2655] = {.lex_state = 66, .external_lex_state = 12}, + [2656] = {.lex_state = 66, .external_lex_state = 12}, + [2657] = {.lex_state = 5, .external_lex_state = 6}, + [2658] = {.lex_state = 5, .external_lex_state = 8}, + [2659] = {.lex_state = 5, .external_lex_state = 6}, + [2660] = {.lex_state = 5, .external_lex_state = 8}, + [2661] = {.lex_state = 5, .external_lex_state = 6}, + [2662] = {.lex_state = 5, .external_lex_state = 6}, + [2663] = {.lex_state = 5, .external_lex_state = 2}, + [2664] = {.lex_state = 66, .external_lex_state = 12}, [2665] = {.lex_state = 66, .external_lex_state = 13}, - [2666] = {.lex_state = 66, .external_lex_state = 13}, + [2666] = {.lex_state = 66, .external_lex_state = 12}, [2667] = {.lex_state = 66, .external_lex_state = 13}, - [2668] = {.lex_state = 66, .external_lex_state = 12}, + [2668] = {.lex_state = 5, .external_lex_state = 2}, [2669] = {.lex_state = 66, .external_lex_state = 13}, - [2670] = {.lex_state = 66, .external_lex_state = 13}, - [2671] = {.lex_state = 5, .external_lex_state = 2}, - [2672] = {.lex_state = 66, .external_lex_state = 13}, - [2673] = {.lex_state = 5, .external_lex_state = 2}, + [2670] = {.lex_state = 5, .external_lex_state = 2}, + [2671] = {.lex_state = 66, .external_lex_state = 13}, + [2672] = {.lex_state = 5, .external_lex_state = 2}, + [2673] = {.lex_state = 66, .external_lex_state = 13}, [2674] = {.lex_state = 66, .external_lex_state = 13}, - [2675] = {.lex_state = 5, .external_lex_state = 12}, - [2676] = {.lex_state = 66, .external_lex_state = 12}, - [2677] = {.lex_state = 5, .external_lex_state = 2}, - [2678] = {.lex_state = 5, .external_lex_state = 2}, - [2679] = {.lex_state = 5, .external_lex_state = 2}, - [2680] = {.lex_state = 66, .external_lex_state = 13}, - [2681] = {.lex_state = 5, .external_lex_state = 14}, + [2675] = {.lex_state = 66, .external_lex_state = 13}, + [2676] = {.lex_state = 66, .external_lex_state = 13}, + [2677] = {.lex_state = 66, .external_lex_state = 13}, + [2678] = {.lex_state = 5, .external_lex_state = 12}, + [2679] = {.lex_state = 66, .external_lex_state = 13}, + [2680] = {.lex_state = 66, .external_lex_state = 12}, + [2681] = {.lex_state = 66, .external_lex_state = 13}, [2682] = {.lex_state = 66, .external_lex_state = 12}, - [2683] = {.lex_state = 66, .external_lex_state = 13}, + [2683] = {.lex_state = 66, .external_lex_state = 12}, [2684] = {.lex_state = 66, .external_lex_state = 13}, - [2685] = {.lex_state = 66, .external_lex_state = 13}, + [2685] = {.lex_state = 66, .external_lex_state = 12}, [2686] = {.lex_state = 66, .external_lex_state = 13}, - [2687] = {.lex_state = 66, .external_lex_state = 13}, + [2687] = {.lex_state = 5, .external_lex_state = 12}, [2688] = {.lex_state = 66, .external_lex_state = 13}, - [2689] = {.lex_state = 66, .external_lex_state = 13}, + [2689] = {.lex_state = 5, .external_lex_state = 2}, [2690] = {.lex_state = 66, .external_lex_state = 13}, [2691] = {.lex_state = 66, .external_lex_state = 13}, [2692] = {.lex_state = 66, .external_lex_state = 13}, - [2693] = {.lex_state = 66, .external_lex_state = 13}, + [2693] = {.lex_state = 66, .external_lex_state = 12}, [2694] = {.lex_state = 66, .external_lex_state = 13}, - [2695] = {.lex_state = 66, .external_lex_state = 13}, - [2696] = {.lex_state = 66, .external_lex_state = 13}, - [2697] = {.lex_state = 66, .external_lex_state = 13}, + [2695] = {.lex_state = 66, .external_lex_state = 12}, + [2696] = {.lex_state = 5, .external_lex_state = 7}, + [2697] = {.lex_state = 5, .external_lex_state = 7}, [2698] = {.lex_state = 66, .external_lex_state = 13}, [2699] = {.lex_state = 66, .external_lex_state = 13}, - [2700] = {.lex_state = 66, .external_lex_state = 13}, + [2700] = {.lex_state = 66, .external_lex_state = 12}, [2701] = {.lex_state = 66, .external_lex_state = 13}, [2702] = {.lex_state = 66, .external_lex_state = 13}, - [2703] = {.lex_state = 66, .external_lex_state = 13}, + [2703] = {.lex_state = 66, .external_lex_state = 3}, [2704] = {.lex_state = 66, .external_lex_state = 13}, - [2705] = {.lex_state = 66, .external_lex_state = 13}, - [2706] = {.lex_state = 66, .external_lex_state = 13}, - [2707] = {.lex_state = 66, .external_lex_state = 12}, - [2708] = {.lex_state = 66, .external_lex_state = 13}, - [2709] = {.lex_state = 66, .external_lex_state = 12}, + [2705] = {.lex_state = 66, .external_lex_state = 12}, + [2706] = {.lex_state = 5, .external_lex_state = 7}, + [2707] = {.lex_state = 5, .external_lex_state = 7}, + [2708] = {.lex_state = 5, .external_lex_state = 7}, + [2709] = {.lex_state = 5, .external_lex_state = 7}, [2710] = {.lex_state = 66, .external_lex_state = 13}, [2711] = {.lex_state = 66, .external_lex_state = 13}, [2712] = {.lex_state = 66, .external_lex_state = 13}, [2713] = {.lex_state = 66, .external_lex_state = 13}, - [2714] = {.lex_state = 5, .external_lex_state = 7}, - [2715] = {.lex_state = 5, .external_lex_state = 7}, - [2716] = {.lex_state = 66, .external_lex_state = 12}, - [2717] = {.lex_state = 66, .external_lex_state = 12}, - [2718] = {.lex_state = 5, .external_lex_state = 7}, - [2719] = {.lex_state = 5, .external_lex_state = 7}, + [2714] = {.lex_state = 66, .external_lex_state = 13}, + [2715] = {.lex_state = 66, .external_lex_state = 13}, + [2716] = {.lex_state = 66, .external_lex_state = 13}, + [2717] = {.lex_state = 66, .external_lex_state = 13}, + [2718] = {.lex_state = 66, .external_lex_state = 13}, + [2719] = {.lex_state = 66, .external_lex_state = 13}, [2720] = {.lex_state = 66, .external_lex_state = 13}, - [2721] = {.lex_state = 66, .external_lex_state = 3}, - [2722] = {.lex_state = 66, .external_lex_state = 3}, - [2723] = {.lex_state = 66, .external_lex_state = 13}, - [2724] = {.lex_state = 66, .external_lex_state = 13}, - [2725] = {.lex_state = 66, .external_lex_state = 13}, - [2726] = {.lex_state = 66, .external_lex_state = 12}, + [2721] = {.lex_state = 66, .external_lex_state = 13}, + [2722] = {.lex_state = 66, .external_lex_state = 12}, + [2723] = {.lex_state = 5, .external_lex_state = 7}, + [2724] = {.lex_state = 5, .external_lex_state = 7}, + [2725] = {.lex_state = 5, .external_lex_state = 7}, + [2726] = {.lex_state = 66, .external_lex_state = 13}, [2727] = {.lex_state = 66, .external_lex_state = 13}, [2728] = {.lex_state = 66, .external_lex_state = 13}, - [2729] = {.lex_state = 66, .external_lex_state = 12}, - [2730] = {.lex_state = 66, .external_lex_state = 13}, - [2731] = {.lex_state = 66, .external_lex_state = 13}, - [2732] = {.lex_state = 66, .external_lex_state = 13}, - [2733] = {.lex_state = 66, .external_lex_state = 13}, - [2734] = {.lex_state = 66, .external_lex_state = 13}, - [2735] = {.lex_state = 5, .external_lex_state = 7}, - [2736] = {.lex_state = 66, .external_lex_state = 12}, - [2737] = {.lex_state = 5, .external_lex_state = 7}, - [2738] = {.lex_state = 5, .external_lex_state = 7}, + [2729] = {.lex_state = 5, .external_lex_state = 7}, + [2730] = {.lex_state = 5, .external_lex_state = 7}, + [2731] = {.lex_state = 5, .external_lex_state = 7}, + [2732] = {.lex_state = 5, .external_lex_state = 7}, + [2733] = {.lex_state = 5, .external_lex_state = 7}, + [2734] = {.lex_state = 5, .external_lex_state = 7}, + [2735] = {.lex_state = 66, .external_lex_state = 13}, + [2736] = {.lex_state = 66, .external_lex_state = 13}, + [2737] = {.lex_state = 66, .external_lex_state = 13}, + [2738] = {.lex_state = 66, .external_lex_state = 13}, [2739] = {.lex_state = 66, .external_lex_state = 13}, - [2740] = {.lex_state = 5, .external_lex_state = 7}, + [2740] = {.lex_state = 66, .external_lex_state = 13}, [2741] = {.lex_state = 66, .external_lex_state = 13}, [2742] = {.lex_state = 66, .external_lex_state = 13}, [2743] = {.lex_state = 66, .external_lex_state = 13}, [2744] = {.lex_state = 66, .external_lex_state = 13}, [2745] = {.lex_state = 66, .external_lex_state = 13}, [2746] = {.lex_state = 66, .external_lex_state = 13}, - [2747] = {.lex_state = 66, .external_lex_state = 12}, + [2747] = {.lex_state = 5, .external_lex_state = 7}, [2748] = {.lex_state = 66, .external_lex_state = 13}, [2749] = {.lex_state = 66, .external_lex_state = 13}, [2750] = {.lex_state = 66, .external_lex_state = 13}, [2751] = {.lex_state = 66, .external_lex_state = 13}, - [2752] = {.lex_state = 66, .external_lex_state = 13}, + [2752] = {.lex_state = 66, .external_lex_state = 12}, [2753] = {.lex_state = 66, .external_lex_state = 13}, - [2754] = {.lex_state = 5, .external_lex_state = 7}, + [2754] = {.lex_state = 66, .external_lex_state = 13}, [2755] = {.lex_state = 66, .external_lex_state = 13}, [2756] = {.lex_state = 66, .external_lex_state = 13}, - [2757] = {.lex_state = 66, .external_lex_state = 13}, - [2758] = {.lex_state = 66, .external_lex_state = 13}, - [2759] = {.lex_state = 5, .external_lex_state = 7}, + [2757] = {.lex_state = 66, .external_lex_state = 12}, + [2758] = {.lex_state = 5, .external_lex_state = 7}, + [2759] = {.lex_state = 66, .external_lex_state = 13}, [2760] = {.lex_state = 66, .external_lex_state = 13}, - [2761] = {.lex_state = 66, .external_lex_state = 12}, + [2761] = {.lex_state = 66, .external_lex_state = 13}, [2762] = {.lex_state = 66, .external_lex_state = 13}, - [2763] = {.lex_state = 66, .external_lex_state = 13}, - [2764] = {.lex_state = 5, .external_lex_state = 7}, - [2765] = {.lex_state = 5, .external_lex_state = 7}, + [2763] = {.lex_state = 66, .external_lex_state = 12}, + [2764] = {.lex_state = 66, .external_lex_state = 13}, + [2765] = {.lex_state = 66, .external_lex_state = 13}, [2766] = {.lex_state = 66, .external_lex_state = 13}, - [2767] = {.lex_state = 5, .external_lex_state = 7}, - [2768] = {.lex_state = 5, .external_lex_state = 7}, + [2767] = {.lex_state = 66, .external_lex_state = 13}, + [2768] = {.lex_state = 66, .external_lex_state = 13}, [2769] = {.lex_state = 66, .external_lex_state = 13}, [2770] = {.lex_state = 66, .external_lex_state = 13}, [2771] = {.lex_state = 66, .external_lex_state = 13}, - [2772] = {.lex_state = 5, .external_lex_state = 7}, - [2773] = {.lex_state = 5, .external_lex_state = 7}, - [2774] = {.lex_state = 5, .external_lex_state = 7}, + [2772] = {.lex_state = 66, .external_lex_state = 13}, + [2773] = {.lex_state = 66, .external_lex_state = 12}, + [2774] = {.lex_state = 66, .external_lex_state = 13}, [2775] = {.lex_state = 66, .external_lex_state = 13}, - [2776] = {.lex_state = 5, .external_lex_state = 7}, - [2777] = {.lex_state = 5, .external_lex_state = 7}, + [2776] = {.lex_state = 66, .external_lex_state = 13}, + [2777] = {.lex_state = 66, .external_lex_state = 13}, [2778] = {.lex_state = 66, .external_lex_state = 13}, [2779] = {.lex_state = 66, .external_lex_state = 13}, [2780] = {.lex_state = 66, .external_lex_state = 13}, - [2781] = {.lex_state = 66, .external_lex_state = 13}, + [2781] = {.lex_state = 66, .external_lex_state = 12}, [2782] = {.lex_state = 66, .external_lex_state = 13}, [2783] = {.lex_state = 66, .external_lex_state = 13}, - [2784] = {.lex_state = 66, .external_lex_state = 13}, - [2785] = {.lex_state = 66, .external_lex_state = 3}, - [2786] = {.lex_state = 66, .external_lex_state = 13}, - [2787] = {.lex_state = 66, .external_lex_state = 12}, + [2784] = {.lex_state = 5, .external_lex_state = 7}, + [2785] = {.lex_state = 66, .external_lex_state = 13}, + [2786] = {.lex_state = 5, .external_lex_state = 7}, + [2787] = {.lex_state = 66, .external_lex_state = 3}, [2788] = {.lex_state = 66, .external_lex_state = 13}, - [2789] = {.lex_state = 66, .external_lex_state = 12}, - [2790] = {.lex_state = 66, .external_lex_state = 13}, + [2789] = {.lex_state = 66, .external_lex_state = 13}, + [2790] = {.lex_state = 66, .external_lex_state = 3}, [2791] = {.lex_state = 66, .external_lex_state = 13}, [2792] = {.lex_state = 66, .external_lex_state = 13}, [2793] = {.lex_state = 66, .external_lex_state = 13}, - [2794] = {.lex_state = 5, .external_lex_state = 7}, + [2794] = {.lex_state = 66, .external_lex_state = 12}, [2795] = {.lex_state = 66, .external_lex_state = 13}, [2796] = {.lex_state = 66, .external_lex_state = 13}, [2797] = {.lex_state = 66, .external_lex_state = 13}, [2798] = {.lex_state = 66, .external_lex_state = 13}, [2799] = {.lex_state = 66, .external_lex_state = 13}, [2800] = {.lex_state = 66, .external_lex_state = 13}, - [2801] = {.lex_state = 66, .external_lex_state = 13}, + [2801] = {.lex_state = 5, .external_lex_state = 7}, [2802] = {.lex_state = 66, .external_lex_state = 13}, [2803] = {.lex_state = 66, .external_lex_state = 13}, [2804] = {.lex_state = 66, .external_lex_state = 13}, [2805] = {.lex_state = 66, .external_lex_state = 13}, [2806] = {.lex_state = 66, .external_lex_state = 13}, [2807] = {.lex_state = 66, .external_lex_state = 13}, - [2808] = {.lex_state = 66, .external_lex_state = 13}, + [2808] = {.lex_state = 66, .external_lex_state = 12}, [2809] = {.lex_state = 66, .external_lex_state = 13}, [2810] = {.lex_state = 66, .external_lex_state = 13}, [2811] = {.lex_state = 66, .external_lex_state = 13}, [2812] = {.lex_state = 66, .external_lex_state = 13}, [2813] = {.lex_state = 66, .external_lex_state = 13}, - [2814] = {.lex_state = 66, .external_lex_state = 13}, + [2814] = {.lex_state = 66, .external_lex_state = 12}, [2815] = {.lex_state = 66, .external_lex_state = 13}, [2816] = {.lex_state = 66, .external_lex_state = 13}, [2817] = {.lex_state = 66, .external_lex_state = 13}, @@ -15555,10 +15570,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2844] = {.lex_state = 66, .external_lex_state = 13}, [2845] = {.lex_state = 66, .external_lex_state = 13}, [2846] = {.lex_state = 66, .external_lex_state = 13}, - [2847] = {.lex_state = 66, .external_lex_state = 12}, + [2847] = {.lex_state = 66, .external_lex_state = 13}, [2848] = {.lex_state = 66, .external_lex_state = 13}, [2849] = {.lex_state = 66, .external_lex_state = 13}, - [2850] = {.lex_state = 66, .external_lex_state = 13}, + [2850] = {.lex_state = 17, .external_lex_state = 11}, [2851] = {.lex_state = 66, .external_lex_state = 13}, [2852] = {.lex_state = 66, .external_lex_state = 13}, [2853] = {.lex_state = 66, .external_lex_state = 13}, @@ -15567,7 +15582,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2856] = {.lex_state = 66, .external_lex_state = 13}, [2857] = {.lex_state = 66, .external_lex_state = 13}, [2858] = {.lex_state = 66, .external_lex_state = 13}, - [2859] = {.lex_state = 17, .external_lex_state = 11}, + [2859] = {.lex_state = 66, .external_lex_state = 13}, [2860] = {.lex_state = 66, .external_lex_state = 13}, [2861] = {.lex_state = 66, .external_lex_state = 13}, [2862] = {.lex_state = 66, .external_lex_state = 13}, @@ -15582,7 +15597,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2871] = {.lex_state = 66, .external_lex_state = 13}, [2872] = {.lex_state = 66, .external_lex_state = 13}, [2873] = {.lex_state = 66, .external_lex_state = 13}, - [2874] = {.lex_state = 66, .external_lex_state = 12}, + [2874] = {.lex_state = 66, .external_lex_state = 13}, [2875] = {.lex_state = 66, .external_lex_state = 13}, [2876] = {.lex_state = 66, .external_lex_state = 13}, [2877] = {.lex_state = 66, .external_lex_state = 13}, @@ -15591,7 +15606,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2880] = {.lex_state = 66, .external_lex_state = 13}, [2881] = {.lex_state = 66, .external_lex_state = 13}, [2882] = {.lex_state = 66, .external_lex_state = 13}, - [2883] = {.lex_state = 5, .external_lex_state = 2}, + [2883] = {.lex_state = 66, .external_lex_state = 13}, [2884] = {.lex_state = 66, .external_lex_state = 13}, [2885] = {.lex_state = 66, .external_lex_state = 13}, [2886] = {.lex_state = 66, .external_lex_state = 13}, @@ -15611,7 +15626,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2900] = {.lex_state = 66, .external_lex_state = 13}, [2901] = {.lex_state = 66, .external_lex_state = 13}, [2902] = {.lex_state = 66, .external_lex_state = 13}, - [2903] = {.lex_state = 66, .external_lex_state = 13}, + [2903] = {.lex_state = 5, .external_lex_state = 2}, [2904] = {.lex_state = 66, .external_lex_state = 13}, [2905] = {.lex_state = 66, .external_lex_state = 13}, [2906] = {.lex_state = 66, .external_lex_state = 13}, @@ -15621,223 +15636,223 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2910] = {.lex_state = 66, .external_lex_state = 13}, [2911] = {.lex_state = 66, .external_lex_state = 13}, [2912] = {.lex_state = 66, .external_lex_state = 13}, - [2913] = {.lex_state = 5, .external_lex_state = 2}, + [2913] = {.lex_state = 66, .external_lex_state = 13}, [2914] = {.lex_state = 66, .external_lex_state = 13}, - [2915] = {.lex_state = 5, .external_lex_state = 2}, - [2916] = {.lex_state = 5, .external_lex_state = 2}, - [2917] = {.lex_state = 5, .external_lex_state = 2}, + [2915] = {.lex_state = 66, .external_lex_state = 13}, + [2916] = {.lex_state = 66, .external_lex_state = 13}, + [2917] = {.lex_state = 66, .external_lex_state = 13}, [2918] = {.lex_state = 66, .external_lex_state = 13}, - [2919] = {.lex_state = 66, .external_lex_state = 13}, - [2920] = {.lex_state = 5, .external_lex_state = 2}, + [2919] = {.lex_state = 5, .external_lex_state = 2}, + [2920] = {.lex_state = 66, .external_lex_state = 13}, [2921] = {.lex_state = 66, .external_lex_state = 13}, - [2922] = {.lex_state = 66, .external_lex_state = 13}, + [2922] = {.lex_state = 5, .external_lex_state = 2}, [2923] = {.lex_state = 5, .external_lex_state = 2}, [2924] = {.lex_state = 5, .external_lex_state = 2}, - [2925] = {.lex_state = 5, .external_lex_state = 2}, - [2926] = {.lex_state = 66, .external_lex_state = 13}, + [2925] = {.lex_state = 66, .external_lex_state = 13}, + [2926] = {.lex_state = 5, .external_lex_state = 2}, [2927] = {.lex_state = 66, .external_lex_state = 13}, - [2928] = {.lex_state = 66, .external_lex_state = 12}, - [2929] = {.lex_state = 66, .external_lex_state = 12}, - [2930] = {.lex_state = 66, .external_lex_state = 12}, - [2931] = {.lex_state = 66, .external_lex_state = 12}, - [2932] = {.lex_state = 66, .external_lex_state = 12}, - [2933] = {.lex_state = 66, .external_lex_state = 12}, - [2934] = {.lex_state = 18, .external_lex_state = 12}, - [2935] = {.lex_state = 18, .external_lex_state = 12}, - [2936] = {.lex_state = 18, .external_lex_state = 12}, - [2937] = {.lex_state = 18, .external_lex_state = 12}, - [2938] = {.lex_state = 66, .external_lex_state = 2}, - [2939] = {.lex_state = 66, .external_lex_state = 2}, - [2940] = {.lex_state = 15, .external_lex_state = 14}, - [2941] = {.lex_state = 66, .external_lex_state = 12}, - [2942] = {.lex_state = 17, .external_lex_state = 12}, - [2943] = {.lex_state = 17, .external_lex_state = 12}, - [2944] = {.lex_state = 17, .external_lex_state = 15}, - [2945] = {.lex_state = 17, .external_lex_state = 15}, - [2946] = {.lex_state = 17, .external_lex_state = 16}, - [2947] = {.lex_state = 17, .external_lex_state = 16}, - [2948] = {.lex_state = 17, .external_lex_state = 15}, - [2949] = {.lex_state = 17, .external_lex_state = 15}, - [2950] = {.lex_state = 18, .external_lex_state = 15}, - [2951] = {.lex_state = 15, .external_lex_state = 14}, - [2952] = {.lex_state = 18, .external_lex_state = 11}, - [2953] = {.lex_state = 18, .external_lex_state = 15}, - [2954] = {.lex_state = 14, .external_lex_state = 16}, - [2955] = {.lex_state = 18, .external_lex_state = 15}, - [2956] = {.lex_state = 18, .external_lex_state = 15}, - [2957] = {.lex_state = 18, .external_lex_state = 15}, - [2958] = {.lex_state = 17, .external_lex_state = 16}, - [2959] = {.lex_state = 17, .external_lex_state = 14}, - [2960] = {.lex_state = 15, .external_lex_state = 14}, - [2961] = {.lex_state = 15, .external_lex_state = 14}, - [2962] = {.lex_state = 14, .external_lex_state = 16}, + [2928] = {.lex_state = 5, .external_lex_state = 2}, + [2929] = {.lex_state = 66, .external_lex_state = 13}, + [2930] = {.lex_state = 66, .external_lex_state = 13}, + [2931] = {.lex_state = 66, .external_lex_state = 13}, + [2932] = {.lex_state = 66, .external_lex_state = 13}, + [2933] = {.lex_state = 5, .external_lex_state = 2}, + [2934] = {.lex_state = 66, .external_lex_state = 13}, + [2935] = {.lex_state = 5, .external_lex_state = 2}, + [2936] = {.lex_state = 66, .external_lex_state = 12}, + [2937] = {.lex_state = 66, .external_lex_state = 12}, + [2938] = {.lex_state = 66, .external_lex_state = 12}, + [2939] = {.lex_state = 66, .external_lex_state = 12}, + [2940] = {.lex_state = 18, .external_lex_state = 12}, + [2941] = {.lex_state = 18, .external_lex_state = 12}, + [2942] = {.lex_state = 66, .external_lex_state = 2}, + [2943] = {.lex_state = 18, .external_lex_state = 12}, + [2944] = {.lex_state = 15, .external_lex_state = 14}, + [2945] = {.lex_state = 66, .external_lex_state = 12}, + [2946] = {.lex_state = 18, .external_lex_state = 12}, + [2947] = {.lex_state = 66, .external_lex_state = 2}, + [2948] = {.lex_state = 66, .external_lex_state = 12}, + [2949] = {.lex_state = 66, .external_lex_state = 12}, + [2950] = {.lex_state = 17, .external_lex_state = 12}, + [2951] = {.lex_state = 17, .external_lex_state = 12}, + [2952] = {.lex_state = 17, .external_lex_state = 15}, + [2953] = {.lex_state = 17, .external_lex_state = 15}, + [2954] = {.lex_state = 17, .external_lex_state = 16}, + [2955] = {.lex_state = 17, .external_lex_state = 15}, + [2956] = {.lex_state = 17, .external_lex_state = 16}, + [2957] = {.lex_state = 17, .external_lex_state = 15}, + [2958] = {.lex_state = 18, .external_lex_state = 15}, + [2959] = {.lex_state = 18, .external_lex_state = 15}, + [2960] = {.lex_state = 17, .external_lex_state = 14}, + [2961] = {.lex_state = 18, .external_lex_state = 15}, + [2962] = {.lex_state = 15, .external_lex_state = 14}, [2963] = {.lex_state = 14, .external_lex_state = 16}, - [2964] = {.lex_state = 17, .external_lex_state = 16}, - [2965] = {.lex_state = 18, .external_lex_state = 15}, - [2966] = {.lex_state = 18, .external_lex_state = 15}, - [2967] = {.lex_state = 15, .external_lex_state = 14}, - [2968] = {.lex_state = 17, .external_lex_state = 14}, - [2969] = {.lex_state = 18, .external_lex_state = 15}, + [2964] = {.lex_state = 15, .external_lex_state = 14}, + [2965] = {.lex_state = 18, .external_lex_state = 11}, + [2966] = {.lex_state = 15, .external_lex_state = 14}, + [2967] = {.lex_state = 17, .external_lex_state = 14}, + [2968] = {.lex_state = 14, .external_lex_state = 16}, + [2969] = {.lex_state = 14, .external_lex_state = 16}, [2970] = {.lex_state = 18, .external_lex_state = 15}, [2971] = {.lex_state = 18, .external_lex_state = 15}, - [2972] = {.lex_state = 14, .external_lex_state = 16}, - [2973] = {.lex_state = 14, .external_lex_state = 16}, + [2972] = {.lex_state = 18, .external_lex_state = 15}, + [2973] = {.lex_state = 18, .external_lex_state = 15}, [2974] = {.lex_state = 18, .external_lex_state = 15}, [2975] = {.lex_state = 18, .external_lex_state = 15}, - [2976] = {.lex_state = 18, .external_lex_state = 15}, - [2977] = {.lex_state = 18, .external_lex_state = 15}, - [2978] = {.lex_state = 15, .external_lex_state = 12}, - [2979] = {.lex_state = 18, .external_lex_state = 14}, - [2980] = {.lex_state = 15, .external_lex_state = 12}, - [2981] = {.lex_state = 15, .external_lex_state = 12}, - [2982] = {.lex_state = 15, .external_lex_state = 12}, - [2983] = {.lex_state = 15, .external_lex_state = 12}, - [2984] = {.lex_state = 15, .external_lex_state = 12}, - [2985] = {.lex_state = 15, .external_lex_state = 12}, - [2986] = {.lex_state = 18, .external_lex_state = 11}, + [2976] = {.lex_state = 17, .external_lex_state = 16}, + [2977] = {.lex_state = 15, .external_lex_state = 14}, + [2978] = {.lex_state = 18, .external_lex_state = 15}, + [2979] = {.lex_state = 14, .external_lex_state = 16}, + [2980] = {.lex_state = 18, .external_lex_state = 15}, + [2981] = {.lex_state = 14, .external_lex_state = 16}, + [2982] = {.lex_state = 18, .external_lex_state = 15}, + [2983] = {.lex_state = 18, .external_lex_state = 15}, + [2984] = {.lex_state = 18, .external_lex_state = 15}, + [2985] = {.lex_state = 17, .external_lex_state = 16}, + [2986] = {.lex_state = 15, .external_lex_state = 12}, [2987] = {.lex_state = 15, .external_lex_state = 12}, [2988] = {.lex_state = 15, .external_lex_state = 12}, [2989] = {.lex_state = 15, .external_lex_state = 12}, [2990] = {.lex_state = 15, .external_lex_state = 12}, [2991] = {.lex_state = 15, .external_lex_state = 12}, - [2992] = {.lex_state = 66, .external_lex_state = 13}, - [2993] = {.lex_state = 15, .external_lex_state = 12}, - [2994] = {.lex_state = 66, .external_lex_state = 12}, - [2995] = {.lex_state = 9, .external_lex_state = 11}, - [2996] = {.lex_state = 66, .external_lex_state = 13}, - [2997] = {.lex_state = 66, .external_lex_state = 14}, - [2998] = {.lex_state = 18, .external_lex_state = 14}, - [2999] = {.lex_state = 18, .external_lex_state = 14}, - [3000] = {.lex_state = 9, .external_lex_state = 11}, + [2992] = {.lex_state = 15, .external_lex_state = 12}, + [2993] = {.lex_state = 66, .external_lex_state = 14}, + [2994] = {.lex_state = 15, .external_lex_state = 12}, + [2995] = {.lex_state = 18, .external_lex_state = 14}, + [2996] = {.lex_state = 15, .external_lex_state = 12}, + [2997] = {.lex_state = 15, .external_lex_state = 12}, + [2998] = {.lex_state = 15, .external_lex_state = 12}, + [2999] = {.lex_state = 15, .external_lex_state = 12}, + [3000] = {.lex_state = 18, .external_lex_state = 11}, [3001] = {.lex_state = 18, .external_lex_state = 11}, - [3002] = {.lex_state = 66, .external_lex_state = 13}, + [3002] = {.lex_state = 15, .external_lex_state = 12}, [3003] = {.lex_state = 18, .external_lex_state = 12}, - [3004] = {.lex_state = 18, .external_lex_state = 11}, - [3005] = {.lex_state = 66, .external_lex_state = 13}, - [3006] = {.lex_state = 18, .external_lex_state = 14}, - [3007] = {.lex_state = 18, .external_lex_state = 14}, + [3004] = {.lex_state = 66, .external_lex_state = 13}, + [3005] = {.lex_state = 18, .external_lex_state = 14}, + [3006] = {.lex_state = 66, .external_lex_state = 13}, + [3007] = {.lex_state = 18, .external_lex_state = 11}, [3008] = {.lex_state = 66, .external_lex_state = 13}, - [3009] = {.lex_state = 18, .external_lex_state = 14}, + [3009] = {.lex_state = 15, .external_lex_state = 12}, [3010] = {.lex_state = 18, .external_lex_state = 14}, - [3011] = {.lex_state = 17, .external_lex_state = 14}, + [3011] = {.lex_state = 18, .external_lex_state = 14}, [3012] = {.lex_state = 15, .external_lex_state = 12}, - [3013] = {.lex_state = 15, .external_lex_state = 12}, - [3014] = {.lex_state = 66, .external_lex_state = 13}, - [3015] = {.lex_state = 18, .external_lex_state = 11}, - [3016] = {.lex_state = 66, .external_lex_state = 13}, - [3017] = {.lex_state = 15, .external_lex_state = 12}, - [3018] = {.lex_state = 18, .external_lex_state = 11}, - [3019] = {.lex_state = 17, .external_lex_state = 14}, - [3020] = {.lex_state = 15, .external_lex_state = 12}, - [3021] = {.lex_state = 15, .external_lex_state = 16}, - [3022] = {.lex_state = 15, .external_lex_state = 12}, - [3023] = {.lex_state = 15, .external_lex_state = 14}, - [3024] = {.lex_state = 18, .external_lex_state = 11}, - [3025] = {.lex_state = 15, .external_lex_state = 12}, - [3026] = {.lex_state = 66, .external_lex_state = 14}, - [3027] = {.lex_state = 9, .external_lex_state = 12}, - [3028] = {.lex_state = 18, .external_lex_state = 14}, - [3029] = {.lex_state = 18, .external_lex_state = 11}, - [3030] = {.lex_state = 66, .external_lex_state = 14}, - [3031] = {.lex_state = 15, .external_lex_state = 14}, - [3032] = {.lex_state = 15, .external_lex_state = 12}, - [3033] = {.lex_state = 15, .external_lex_state = 14}, - [3034] = {.lex_state = 15, .external_lex_state = 14}, - [3035] = {.lex_state = 15, .external_lex_state = 14}, - [3036] = {.lex_state = 66, .external_lex_state = 14}, - [3037] = {.lex_state = 9, .external_lex_state = 11}, - [3038] = {.lex_state = 66, .external_lex_state = 14}, - [3039] = {.lex_state = 66, .external_lex_state = 14}, - [3040] = {.lex_state = 15, .external_lex_state = 12}, - [3041] = {.lex_state = 15, .external_lex_state = 12}, - [3042] = {.lex_state = 15, .external_lex_state = 12}, + [3013] = {.lex_state = 66, .external_lex_state = 13}, + [3014] = {.lex_state = 17, .external_lex_state = 14}, + [3015] = {.lex_state = 15, .external_lex_state = 12}, + [3016] = {.lex_state = 18, .external_lex_state = 14}, + [3017] = {.lex_state = 66, .external_lex_state = 12}, + [3018] = {.lex_state = 18, .external_lex_state = 14}, + [3019] = {.lex_state = 18, .external_lex_state = 11}, + [3020] = {.lex_state = 66, .external_lex_state = 13}, + [3021] = {.lex_state = 18, .external_lex_state = 14}, + [3022] = {.lex_state = 66, .external_lex_state = 13}, + [3023] = {.lex_state = 18, .external_lex_state = 11}, + [3024] = {.lex_state = 15, .external_lex_state = 12}, + [3025] = {.lex_state = 66, .external_lex_state = 13}, + [3026] = {.lex_state = 9, .external_lex_state = 11}, + [3027] = {.lex_state = 9, .external_lex_state = 11}, + [3028] = {.lex_state = 17, .external_lex_state = 14}, + [3029] = {.lex_state = 15, .external_lex_state = 16}, + [3030] = {.lex_state = 15, .external_lex_state = 14}, + [3031] = {.lex_state = 15, .external_lex_state = 12}, + [3032] = {.lex_state = 18, .external_lex_state = 11}, + [3033] = {.lex_state = 9, .external_lex_state = 11}, + [3034] = {.lex_state = 15, .external_lex_state = 12}, + [3035] = {.lex_state = 18, .external_lex_state = 14}, + [3036] = {.lex_state = 18, .external_lex_state = 14}, + [3037] = {.lex_state = 66, .external_lex_state = 14}, + [3038] = {.lex_state = 15, .external_lex_state = 12}, + [3039] = {.lex_state = 18, .external_lex_state = 11}, + [3040] = {.lex_state = 18, .external_lex_state = 14}, + [3041] = {.lex_state = 18, .external_lex_state = 14}, + [3042] = {.lex_state = 9, .external_lex_state = 12}, [3043] = {.lex_state = 15, .external_lex_state = 12}, [3044] = {.lex_state = 15, .external_lex_state = 12}, - [3045] = {.lex_state = 15, .external_lex_state = 12}, - [3046] = {.lex_state = 15, .external_lex_state = 12}, + [3045] = {.lex_state = 18, .external_lex_state = 11}, + [3046] = {.lex_state = 66, .external_lex_state = 14}, [3047] = {.lex_state = 15, .external_lex_state = 12}, - [3048] = {.lex_state = 15, .external_lex_state = 12}, - [3049] = {.lex_state = 66, .external_lex_state = 14}, - [3050] = {.lex_state = 18, .external_lex_state = 14}, - [3051] = {.lex_state = 18, .external_lex_state = 11}, - [3052] = {.lex_state = 18, .external_lex_state = 11}, + [3048] = {.lex_state = 15, .external_lex_state = 14}, + [3049] = {.lex_state = 15, .external_lex_state = 12}, + [3050] = {.lex_state = 15, .external_lex_state = 12}, + [3051] = {.lex_state = 15, .external_lex_state = 12}, + [3052] = {.lex_state = 15, .external_lex_state = 12}, [3053] = {.lex_state = 15, .external_lex_state = 12}, - [3054] = {.lex_state = 15, .external_lex_state = 12}, - [3055] = {.lex_state = 15, .external_lex_state = 12}, - [3056] = {.lex_state = 18, .external_lex_state = 11}, - [3057] = {.lex_state = 18, .external_lex_state = 14}, - [3058] = {.lex_state = 15, .external_lex_state = 12}, - [3059] = {.lex_state = 66, .external_lex_state = 14}, - [3060] = {.lex_state = 15, .external_lex_state = 12}, + [3054] = {.lex_state = 18, .external_lex_state = 14}, + [3055] = {.lex_state = 9, .external_lex_state = 12}, + [3056] = {.lex_state = 15, .external_lex_state = 12}, + [3057] = {.lex_state = 66, .external_lex_state = 14}, + [3058] = {.lex_state = 66, .external_lex_state = 14}, + [3059] = {.lex_state = 15, .external_lex_state = 12}, + [3060] = {.lex_state = 66, .external_lex_state = 12}, [3061] = {.lex_state = 15, .external_lex_state = 12}, - [3062] = {.lex_state = 9, .external_lex_state = 12}, + [3062] = {.lex_state = 15, .external_lex_state = 12}, [3063] = {.lex_state = 15, .external_lex_state = 12}, - [3064] = {.lex_state = 18, .external_lex_state = 14}, - [3065] = {.lex_state = 15, .external_lex_state = 12}, - [3066] = {.lex_state = 18, .external_lex_state = 14}, - [3067] = {.lex_state = 18, .external_lex_state = 12}, + [3064] = {.lex_state = 18, .external_lex_state = 11}, + [3065] = {.lex_state = 9, .external_lex_state = 12}, + [3066] = {.lex_state = 15, .external_lex_state = 14}, + [3067] = {.lex_state = 15, .external_lex_state = 12}, [3068] = {.lex_state = 9, .external_lex_state = 12}, - [3069] = {.lex_state = 66, .external_lex_state = 14}, - [3070] = {.lex_state = 66, .external_lex_state = 12}, - [3071] = {.lex_state = 9, .external_lex_state = 11}, - [3072] = {.lex_state = 18, .external_lex_state = 14}, - [3073] = {.lex_state = 9, .external_lex_state = 11}, - [3074] = {.lex_state = 18, .external_lex_state = 11}, - [3075] = {.lex_state = 15, .external_lex_state = 16}, - [3076] = {.lex_state = 9, .external_lex_state = 11}, - [3077] = {.lex_state = 15, .external_lex_state = 16}, - [3078] = {.lex_state = 9, .external_lex_state = 12}, - [3079] = {.lex_state = 15, .external_lex_state = 16}, - [3080] = {.lex_state = 5, .external_lex_state = 12}, - [3081] = {.lex_state = 66, .external_lex_state = 12}, + [3069] = {.lex_state = 18, .external_lex_state = 12}, + [3070] = {.lex_state = 15, .external_lex_state = 12}, + [3071] = {.lex_state = 66, .external_lex_state = 14}, + [3072] = {.lex_state = 15, .external_lex_state = 12}, + [3073] = {.lex_state = 66, .external_lex_state = 14}, + [3074] = {.lex_state = 15, .external_lex_state = 14}, + [3075] = {.lex_state = 18, .external_lex_state = 11}, + [3076] = {.lex_state = 15, .external_lex_state = 16}, + [3077] = {.lex_state = 5, .external_lex_state = 12}, + [3078] = {.lex_state = 66, .external_lex_state = 14}, + [3079] = {.lex_state = 9, .external_lex_state = 11}, + [3080] = {.lex_state = 15, .external_lex_state = 16}, + [3081] = {.lex_state = 15, .external_lex_state = 14}, [3082] = {.lex_state = 15, .external_lex_state = 16}, - [3083] = {.lex_state = 66, .external_lex_state = 14}, - [3084] = {.lex_state = 66, .external_lex_state = 14}, - [3085] = {.lex_state = 15, .external_lex_state = 12}, - [3086] = {.lex_state = 66, .external_lex_state = 12}, - [3087] = {.lex_state = 66, .external_lex_state = 12}, - [3088] = {.lex_state = 66, .external_lex_state = 12}, - [3089] = {.lex_state = 66, .external_lex_state = 12}, - [3090] = {.lex_state = 9, .external_lex_state = 12}, + [3083] = {.lex_state = 9, .external_lex_state = 11}, + [3084] = {.lex_state = 15, .external_lex_state = 12}, + [3085] = {.lex_state = 18, .external_lex_state = 14}, + [3086] = {.lex_state = 18, .external_lex_state = 11}, + [3087] = {.lex_state = 66, .external_lex_state = 14}, + [3088] = {.lex_state = 66, .external_lex_state = 14}, + [3089] = {.lex_state = 66, .external_lex_state = 14}, + [3090] = {.lex_state = 15, .external_lex_state = 12}, [3091] = {.lex_state = 66, .external_lex_state = 12}, - [3092] = {.lex_state = 9, .external_lex_state = 12}, - [3093] = {.lex_state = 66, .external_lex_state = 12}, + [3092] = {.lex_state = 15, .external_lex_state = 16}, + [3093] = {.lex_state = 9, .external_lex_state = 11}, [3094] = {.lex_state = 66, .external_lex_state = 12}, [3095] = {.lex_state = 66, .external_lex_state = 12}, [3096] = {.lex_state = 66, .external_lex_state = 12}, [3097] = {.lex_state = 66, .external_lex_state = 12}, [3098] = {.lex_state = 66, .external_lex_state = 12}, - [3099] = {.lex_state = 66, .external_lex_state = 12}, + [3099] = {.lex_state = 18, .external_lex_state = 14}, [3100] = {.lex_state = 66, .external_lex_state = 12}, [3101] = {.lex_state = 66, .external_lex_state = 12}, - [3102] = {.lex_state = 66, .external_lex_state = 12}, + [3102] = {.lex_state = 18, .external_lex_state = 14}, [3103] = {.lex_state = 66, .external_lex_state = 12}, [3104] = {.lex_state = 66, .external_lex_state = 12}, [3105] = {.lex_state = 66, .external_lex_state = 12}, - [3106] = {.lex_state = 9, .external_lex_state = 12}, - [3107] = {.lex_state = 9, .external_lex_state = 11}, - [3108] = {.lex_state = 9, .external_lex_state = 12}, - [3109] = {.lex_state = 18, .external_lex_state = 14}, + [3106] = {.lex_state = 66, .external_lex_state = 12}, + [3107] = {.lex_state = 66, .external_lex_state = 12}, + [3108] = {.lex_state = 66, .external_lex_state = 12}, + [3109] = {.lex_state = 9, .external_lex_state = 12}, [3110] = {.lex_state = 66, .external_lex_state = 12}, [3111] = {.lex_state = 66, .external_lex_state = 12}, [3112] = {.lex_state = 66, .external_lex_state = 12}, - [3113] = {.lex_state = 66, .external_lex_state = 12}, + [3113] = {.lex_state = 9, .external_lex_state = 12}, [3114] = {.lex_state = 66, .external_lex_state = 12}, [3115] = {.lex_state = 66, .external_lex_state = 12}, [3116] = {.lex_state = 66, .external_lex_state = 12}, [3117] = {.lex_state = 66, .external_lex_state = 12}, - [3118] = {.lex_state = 18, .external_lex_state = 11}, + [3118] = {.lex_state = 66, .external_lex_state = 12}, [3119] = {.lex_state = 66, .external_lex_state = 12}, - [3120] = {.lex_state = 18, .external_lex_state = 14}, + [3120] = {.lex_state = 66, .external_lex_state = 12}, [3121] = {.lex_state = 66, .external_lex_state = 12}, [3122] = {.lex_state = 66, .external_lex_state = 12}, - [3123] = {.lex_state = 18, .external_lex_state = 14}, + [3123] = {.lex_state = 66, .external_lex_state = 12}, [3124] = {.lex_state = 66, .external_lex_state = 12}, [3125] = {.lex_state = 66, .external_lex_state = 12}, [3126] = {.lex_state = 66, .external_lex_state = 12}, [3127] = {.lex_state = 66, .external_lex_state = 12}, [3128] = {.lex_state = 66, .external_lex_state = 12}, - [3129] = {.lex_state = 66, .external_lex_state = 12}, + [3129] = {.lex_state = 18, .external_lex_state = 11}, [3130] = {.lex_state = 66, .external_lex_state = 12}, [3131] = {.lex_state = 66, .external_lex_state = 12}, [3132] = {.lex_state = 66, .external_lex_state = 12}, @@ -15855,2125 +15870,2125 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3144] = {.lex_state = 66, .external_lex_state = 12}, [3145] = {.lex_state = 66, .external_lex_state = 12}, [3146] = {.lex_state = 66, .external_lex_state = 12}, - [3147] = {.lex_state = 66, .external_lex_state = 12}, + [3147] = {.lex_state = 9, .external_lex_state = 11}, [3148] = {.lex_state = 66, .external_lex_state = 12}, - [3149] = {.lex_state = 18, .external_lex_state = 12}, + [3149] = {.lex_state = 66, .external_lex_state = 12}, [3150] = {.lex_state = 66, .external_lex_state = 12}, [3151] = {.lex_state = 66, .external_lex_state = 12}, [3152] = {.lex_state = 66, .external_lex_state = 12}, - [3153] = {.lex_state = 66, .external_lex_state = 12}, - [3154] = {.lex_state = 66, .external_lex_state = 12}, - [3155] = {.lex_state = 66, .external_lex_state = 12}, + [3153] = {.lex_state = 9, .external_lex_state = 12}, + [3154] = {.lex_state = 9, .external_lex_state = 12}, + [3155] = {.lex_state = 18, .external_lex_state = 12}, [3156] = {.lex_state = 66, .external_lex_state = 12}, [3157] = {.lex_state = 66, .external_lex_state = 12}, [3158] = {.lex_state = 66, .external_lex_state = 12}, [3159] = {.lex_state = 66, .external_lex_state = 12}, [3160] = {.lex_state = 66, .external_lex_state = 12}, [3161] = {.lex_state = 66, .external_lex_state = 12}, - [3162] = {.lex_state = 18, .external_lex_state = 11}, + [3162] = {.lex_state = 66, .external_lex_state = 12}, [3163] = {.lex_state = 66, .external_lex_state = 12}, [3164] = {.lex_state = 66, .external_lex_state = 12}, [3165] = {.lex_state = 66, .external_lex_state = 12}, [3166] = {.lex_state = 66, .external_lex_state = 12}, - [3167] = {.lex_state = 66, .external_lex_state = 12}, - [3168] = {.lex_state = 5, .external_lex_state = 14}, - [3169] = {.lex_state = 18, .external_lex_state = 14}, - [3170] = {.lex_state = 18, .external_lex_state = 12}, - [3171] = {.lex_state = 5, .external_lex_state = 14}, - [3172] = {.lex_state = 5, .external_lex_state = 14}, - [3173] = {.lex_state = 5, .external_lex_state = 14}, - [3174] = {.lex_state = 5, .external_lex_state = 14}, - [3175] = {.lex_state = 5, .external_lex_state = 14}, + [3167] = {.lex_state = 18, .external_lex_state = 11}, + [3168] = {.lex_state = 18, .external_lex_state = 14}, + [3169] = {.lex_state = 66, .external_lex_state = 12}, + [3170] = {.lex_state = 66, .external_lex_state = 12}, + [3171] = {.lex_state = 66, .external_lex_state = 12}, + [3172] = {.lex_state = 66, .external_lex_state = 12}, + [3173] = {.lex_state = 66, .external_lex_state = 12}, + [3174] = {.lex_state = 66, .external_lex_state = 12}, + [3175] = {.lex_state = 66, .external_lex_state = 12}, [3176] = {.lex_state = 5, .external_lex_state = 14}, - [3177] = {.lex_state = 18, .external_lex_state = 14}, - [3178] = {.lex_state = 18, .external_lex_state = 14}, - [3179] = {.lex_state = 18, .external_lex_state = 12}, - [3180] = {.lex_state = 15, .external_lex_state = 16}, - [3181] = {.lex_state = 18, .external_lex_state = 11}, - [3182] = {.lex_state = 18, .external_lex_state = 14}, + [3177] = {.lex_state = 5, .external_lex_state = 15}, + [3178] = {.lex_state = 5, .external_lex_state = 14}, + [3179] = {.lex_state = 5, .external_lex_state = 14}, + [3180] = {.lex_state = 18, .external_lex_state = 12}, + [3181] = {.lex_state = 5, .external_lex_state = 15}, + [3182] = {.lex_state = 18, .external_lex_state = 12}, [3183] = {.lex_state = 18, .external_lex_state = 12}, - [3184] = {.lex_state = 18, .external_lex_state = 16}, - [3185] = {.lex_state = 18, .external_lex_state = 11}, - [3186] = {.lex_state = 18, .external_lex_state = 12}, - [3187] = {.lex_state = 18, .external_lex_state = 11}, + [3184] = {.lex_state = 5, .external_lex_state = 14}, + [3185] = {.lex_state = 5, .external_lex_state = 14}, + [3186] = {.lex_state = 5, .external_lex_state = 14}, + [3187] = {.lex_state = 5, .external_lex_state = 14}, [3188] = {.lex_state = 5, .external_lex_state = 14}, - [3189] = {.lex_state = 5, .external_lex_state = 14}, + [3189] = {.lex_state = 18, .external_lex_state = 16}, [3190] = {.lex_state = 5, .external_lex_state = 14}, - [3191] = {.lex_state = 5, .external_lex_state = 14}, - [3192] = {.lex_state = 5, .external_lex_state = 15}, - [3193] = {.lex_state = 5, .external_lex_state = 14}, + [3191] = {.lex_state = 18, .external_lex_state = 14}, + [3192] = {.lex_state = 5, .external_lex_state = 14}, + [3193] = {.lex_state = 5, .external_lex_state = 16}, [3194] = {.lex_state = 18, .external_lex_state = 12}, - [3195] = {.lex_state = 18, .external_lex_state = 12}, - [3196] = {.lex_state = 5, .external_lex_state = 14}, - [3197] = {.lex_state = 5, .external_lex_state = 14}, - [3198] = {.lex_state = 5, .external_lex_state = 14}, + [3195] = {.lex_state = 18, .external_lex_state = 14}, + [3196] = {.lex_state = 18, .external_lex_state = 12}, + [3197] = {.lex_state = 18, .external_lex_state = 12}, + [3198] = {.lex_state = 18, .external_lex_state = 11}, [3199] = {.lex_state = 5, .external_lex_state = 14}, - [3200] = {.lex_state = 5, .external_lex_state = 15}, - [3201] = {.lex_state = 18, .external_lex_state = 11}, - [3202] = {.lex_state = 5, .external_lex_state = 16}, - [3203] = {.lex_state = 5, .external_lex_state = 11}, - [3204] = {.lex_state = 5, .external_lex_state = 14}, - [3205] = {.lex_state = 5, .external_lex_state = 14}, - [3206] = {.lex_state = 18, .external_lex_state = 16}, + [3200] = {.lex_state = 5, .external_lex_state = 14}, + [3201] = {.lex_state = 5, .external_lex_state = 14}, + [3202] = {.lex_state = 15, .external_lex_state = 16}, + [3203] = {.lex_state = 18, .external_lex_state = 11}, + [3204] = {.lex_state = 18, .external_lex_state = 11}, + [3205] = {.lex_state = 18, .external_lex_state = 14}, + [3206] = {.lex_state = 18, .external_lex_state = 11}, [3207] = {.lex_state = 5, .external_lex_state = 14}, [3208] = {.lex_state = 5, .external_lex_state = 14}, [3209] = {.lex_state = 18, .external_lex_state = 14}, [3210] = {.lex_state = 5, .external_lex_state = 14}, - [3211] = {.lex_state = 18, .external_lex_state = 16}, - [3212] = {.lex_state = 18, .external_lex_state = 12}, - [3213] = {.lex_state = 18, .external_lex_state = 14}, - [3214] = {.lex_state = 18, .external_lex_state = 12}, - [3215] = {.lex_state = 18, .external_lex_state = 16}, + [3211] = {.lex_state = 5, .external_lex_state = 11}, + [3212] = {.lex_state = 18, .external_lex_state = 14}, + [3213] = {.lex_state = 5, .external_lex_state = 14}, + [3214] = {.lex_state = 5, .external_lex_state = 11}, + [3215] = {.lex_state = 5, .external_lex_state = 14}, [3216] = {.lex_state = 5, .external_lex_state = 14}, [3217] = {.lex_state = 5, .external_lex_state = 14}, [3218] = {.lex_state = 5, .external_lex_state = 14}, [3219] = {.lex_state = 5, .external_lex_state = 14}, - [3220] = {.lex_state = 5, .external_lex_state = 14}, - [3221] = {.lex_state = 18, .external_lex_state = 12}, + [3220] = {.lex_state = 18, .external_lex_state = 12}, + [3221] = {.lex_state = 5, .external_lex_state = 14}, [3222] = {.lex_state = 5, .external_lex_state = 14}, [3223] = {.lex_state = 5, .external_lex_state = 14}, [3224] = {.lex_state = 5, .external_lex_state = 14}, [3225] = {.lex_state = 5, .external_lex_state = 14}, - [3226] = {.lex_state = 18, .external_lex_state = 14}, + [3226] = {.lex_state = 5, .external_lex_state = 11}, [3227] = {.lex_state = 5, .external_lex_state = 14}, - [3228] = {.lex_state = 5, .external_lex_state = 11}, + [3228] = {.lex_state = 5, .external_lex_state = 14}, [3229] = {.lex_state = 5, .external_lex_state = 14}, - [3230] = {.lex_state = 18, .external_lex_state = 14}, - [3231] = {.lex_state = 5, .external_lex_state = 14}, - [3232] = {.lex_state = 5, .external_lex_state = 11}, + [3230] = {.lex_state = 5, .external_lex_state = 14}, + [3231] = {.lex_state = 18, .external_lex_state = 12}, + [3232] = {.lex_state = 18, .external_lex_state = 12}, [3233] = {.lex_state = 5, .external_lex_state = 11}, [3234] = {.lex_state = 5, .external_lex_state = 11}, - [3235] = {.lex_state = 18, .external_lex_state = 14}, + [3235] = {.lex_state = 5, .external_lex_state = 11}, [3236] = {.lex_state = 5, .external_lex_state = 11}, [3237] = {.lex_state = 5, .external_lex_state = 11}, - [3238] = {.lex_state = 18, .external_lex_state = 14}, - [3239] = {.lex_state = 5, .external_lex_state = 14}, - [3240] = {.lex_state = 5, .external_lex_state = 11}, - [3241] = {.lex_state = 5, .external_lex_state = 12}, - [3242] = {.lex_state = 5, .external_lex_state = 14}, - [3243] = {.lex_state = 5, .external_lex_state = 11}, - [3244] = {.lex_state = 18, .external_lex_state = 14}, - [3245] = {.lex_state = 5, .external_lex_state = 11}, + [3238] = {.lex_state = 18, .external_lex_state = 16}, + [3239] = {.lex_state = 5, .external_lex_state = 12}, + [3240] = {.lex_state = 18, .external_lex_state = 16}, + [3241] = {.lex_state = 18, .external_lex_state = 16}, + [3242] = {.lex_state = 18, .external_lex_state = 12}, + [3243] = {.lex_state = 18, .external_lex_state = 14}, + [3244] = {.lex_state = 5, .external_lex_state = 14}, + [3245] = {.lex_state = 18, .external_lex_state = 16}, [3246] = {.lex_state = 18, .external_lex_state = 14}, - [3247] = {.lex_state = 18, .external_lex_state = 16}, - [3248] = {.lex_state = 18, .external_lex_state = 12}, + [3247] = {.lex_state = 18, .external_lex_state = 14}, + [3248] = {.lex_state = 18, .external_lex_state = 14}, [3249] = {.lex_state = 18, .external_lex_state = 14}, [3250] = {.lex_state = 5, .external_lex_state = 11}, - [3251] = {.lex_state = 5, .external_lex_state = 11}, - [3252] = {.lex_state = 5, .external_lex_state = 14}, - [3253] = {.lex_state = 18, .external_lex_state = 12}, + [3251] = {.lex_state = 18, .external_lex_state = 12}, + [3252] = {.lex_state = 5, .external_lex_state = 11}, + [3253] = {.lex_state = 5, .external_lex_state = 11}, [3254] = {.lex_state = 5, .external_lex_state = 11}, - [3255] = {.lex_state = 9, .external_lex_state = 12}, - [3256] = {.lex_state = 5, .external_lex_state = 16}, - [3257] = {.lex_state = 15, .external_lex_state = 11}, - [3258] = {.lex_state = 18, .external_lex_state = 11}, - [3259] = {.lex_state = 18, .external_lex_state = 11}, - [3260] = {.lex_state = 18, .external_lex_state = 11}, - [3261] = {.lex_state = 18, .external_lex_state = 11}, - [3262] = {.lex_state = 18, .external_lex_state = 11}, - [3263] = {.lex_state = 5, .external_lex_state = 11}, - [3264] = {.lex_state = 18, .external_lex_state = 14}, - [3265] = {.lex_state = 5, .external_lex_state = 12}, - [3266] = {.lex_state = 5, .external_lex_state = 12}, - [3267] = {.lex_state = 18, .external_lex_state = 11}, - [3268] = {.lex_state = 19, .external_lex_state = 17}, - [3269] = {.lex_state = 15, .external_lex_state = 11}, - [3270] = {.lex_state = 5, .external_lex_state = 11}, - [3271] = {.lex_state = 5, .external_lex_state = 11}, - [3272] = {.lex_state = 66, .external_lex_state = 12}, - [3273] = {.lex_state = 18, .external_lex_state = 11}, - [3274] = {.lex_state = 18, .external_lex_state = 14}, - [3275] = {.lex_state = 5, .external_lex_state = 11}, - [3276] = {.lex_state = 18, .external_lex_state = 11}, - [3277] = {.lex_state = 5, .external_lex_state = 12}, - [3278] = {.lex_state = 18, .external_lex_state = 14}, - [3279] = {.lex_state = 5, .external_lex_state = 12}, + [3255] = {.lex_state = 5, .external_lex_state = 11}, + [3256] = {.lex_state = 18, .external_lex_state = 14}, + [3257] = {.lex_state = 5, .external_lex_state = 16}, + [3258] = {.lex_state = 18, .external_lex_state = 14}, + [3259] = {.lex_state = 18, .external_lex_state = 14}, + [3260] = {.lex_state = 9, .external_lex_state = 12}, + [3261] = {.lex_state = 5, .external_lex_state = 14}, + [3262] = {.lex_state = 5, .external_lex_state = 14}, + [3263] = {.lex_state = 5, .external_lex_state = 14}, + [3264] = {.lex_state = 5, .external_lex_state = 14}, + [3265] = {.lex_state = 5, .external_lex_state = 11}, + [3266] = {.lex_state = 18, .external_lex_state = 14}, + [3267] = {.lex_state = 5, .external_lex_state = 12}, + [3268] = {.lex_state = 18, .external_lex_state = 11}, + [3269] = {.lex_state = 5, .external_lex_state = 12}, + [3270] = {.lex_state = 5, .external_lex_state = 12}, + [3271] = {.lex_state = 18, .external_lex_state = 11}, + [3272] = {.lex_state = 5, .external_lex_state = 12}, + [3273] = {.lex_state = 18, .external_lex_state = 14}, + [3274] = {.lex_state = 66, .external_lex_state = 12}, + [3275] = {.lex_state = 19, .external_lex_state = 17}, + [3276] = {.lex_state = 5, .external_lex_state = 12}, + [3277] = {.lex_state = 5, .external_lex_state = 11}, + [3278] = {.lex_state = 18, .external_lex_state = 11}, + [3279] = {.lex_state = 18, .external_lex_state = 14}, [3280] = {.lex_state = 18, .external_lex_state = 14}, [3281] = {.lex_state = 5, .external_lex_state = 12}, - [3282] = {.lex_state = 5, .external_lex_state = 12}, + [3282] = {.lex_state = 5, .external_lex_state = 11}, [3283] = {.lex_state = 18, .external_lex_state = 11}, [3284] = {.lex_state = 18, .external_lex_state = 11}, - [3285] = {.lex_state = 18, .external_lex_state = 11}, - [3286] = {.lex_state = 5, .external_lex_state = 12}, - [3287] = {.lex_state = 18, .external_lex_state = 14}, - [3288] = {.lex_state = 66, .external_lex_state = 12}, - [3289] = {.lex_state = 5, .external_lex_state = 12}, - [3290] = {.lex_state = 18, .external_lex_state = 14}, - [3291] = {.lex_state = 18, .external_lex_state = 16}, - [3292] = {.lex_state = 5, .external_lex_state = 11}, - [3293] = {.lex_state = 18, .external_lex_state = 14}, - [3294] = {.lex_state = 15, .external_lex_state = 11}, - [3295] = {.lex_state = 5, .external_lex_state = 11}, - [3296] = {.lex_state = 5, .external_lex_state = 12}, + [3285] = {.lex_state = 18, .external_lex_state = 14}, + [3286] = {.lex_state = 18, .external_lex_state = 11}, + [3287] = {.lex_state = 15, .external_lex_state = 11}, + [3288] = {.lex_state = 15, .external_lex_state = 11}, + [3289] = {.lex_state = 18, .external_lex_state = 16}, + [3290] = {.lex_state = 15, .external_lex_state = 11}, + [3291] = {.lex_state = 5, .external_lex_state = 12}, + [3292] = {.lex_state = 18, .external_lex_state = 14}, + [3293] = {.lex_state = 18, .external_lex_state = 11}, + [3294] = {.lex_state = 18, .external_lex_state = 11}, + [3295] = {.lex_state = 5, .external_lex_state = 12}, + [3296] = {.lex_state = 5, .external_lex_state = 11}, [3297] = {.lex_state = 18, .external_lex_state = 11}, - [3298] = {.lex_state = 5, .external_lex_state = 12}, - [3299] = {.lex_state = 15, .external_lex_state = 12}, - [3300] = {.lex_state = 15, .external_lex_state = 12}, - [3301] = {.lex_state = 5, .external_lex_state = 12}, - [3302] = {.lex_state = 5, .external_lex_state = 12}, - [3303] = {.lex_state = 5, .external_lex_state = 12}, + [3298] = {.lex_state = 5, .external_lex_state = 11}, + [3299] = {.lex_state = 18, .external_lex_state = 11}, + [3300] = {.lex_state = 18, .external_lex_state = 14}, + [3301] = {.lex_state = 5, .external_lex_state = 11}, + [3302] = {.lex_state = 66, .external_lex_state = 12}, + [3303] = {.lex_state = 18, .external_lex_state = 11}, [3304] = {.lex_state = 5, .external_lex_state = 12}, - [3305] = {.lex_state = 5, .external_lex_state = 12}, - [3306] = {.lex_state = 15, .external_lex_state = 12}, - [3307] = {.lex_state = 15, .external_lex_state = 11}, - [3308] = {.lex_state = 5, .external_lex_state = 14}, + [3305] = {.lex_state = 18, .external_lex_state = 11}, + [3306] = {.lex_state = 18, .external_lex_state = 14}, + [3307] = {.lex_state = 18, .external_lex_state = 11}, + [3308] = {.lex_state = 5, .external_lex_state = 12}, [3309] = {.lex_state = 5, .external_lex_state = 12}, [3310] = {.lex_state = 5, .external_lex_state = 12}, - [3311] = {.lex_state = 18, .external_lex_state = 12}, - [3312] = {.lex_state = 5, .external_lex_state = 16}, - [3313] = {.lex_state = 15, .external_lex_state = 11}, - [3314] = {.lex_state = 15, .external_lex_state = 12}, - [3315] = {.lex_state = 15, .external_lex_state = 11}, - [3316] = {.lex_state = 18, .external_lex_state = 12}, - [3317] = {.lex_state = 5, .external_lex_state = 12}, - [3318] = {.lex_state = 18, .external_lex_state = 12}, - [3319] = {.lex_state = 5, .external_lex_state = 12}, - [3320] = {.lex_state = 5, .external_lex_state = 12}, - [3321] = {.lex_state = 15, .external_lex_state = 11}, - [3322] = {.lex_state = 5, .external_lex_state = 16}, + [3311] = {.lex_state = 15, .external_lex_state = 12}, + [3312] = {.lex_state = 15, .external_lex_state = 12}, + [3313] = {.lex_state = 5, .external_lex_state = 12}, + [3314] = {.lex_state = 5, .external_lex_state = 12}, + [3315] = {.lex_state = 15, .external_lex_state = 12}, + [3316] = {.lex_state = 66, .external_lex_state = 12}, + [3317] = {.lex_state = 15, .external_lex_state = 11}, + [3318] = {.lex_state = 5, .external_lex_state = 12}, + [3319] = {.lex_state = 15, .external_lex_state = 12}, + [3320] = {.lex_state = 15, .external_lex_state = 12}, + [3321] = {.lex_state = 5, .external_lex_state = 12}, + [3322] = {.lex_state = 5, .external_lex_state = 12}, [3323] = {.lex_state = 5, .external_lex_state = 12}, - [3324] = {.lex_state = 18, .external_lex_state = 11}, - [3325] = {.lex_state = 5, .external_lex_state = 12}, - [3326] = {.lex_state = 5, .external_lex_state = 16}, - [3327] = {.lex_state = 5, .external_lex_state = 12}, + [3324] = {.lex_state = 18, .external_lex_state = 12}, + [3325] = {.lex_state = 18, .external_lex_state = 12}, + [3326] = {.lex_state = 5, .external_lex_state = 12}, + [3327] = {.lex_state = 5, .external_lex_state = 14}, [3328] = {.lex_state = 5, .external_lex_state = 12}, [3329] = {.lex_state = 5, .external_lex_state = 12}, [3330] = {.lex_state = 5, .external_lex_state = 12}, - [3331] = {.lex_state = 18, .external_lex_state = 11}, - [3332] = {.lex_state = 18, .external_lex_state = 14}, - [3333] = {.lex_state = 5, .external_lex_state = 14}, - [3334] = {.lex_state = 5, .external_lex_state = 14}, - [3335] = {.lex_state = 5, .external_lex_state = 12}, - [3336] = {.lex_state = 5, .external_lex_state = 16}, - [3337] = {.lex_state = 5, .external_lex_state = 14}, - [3338] = {.lex_state = 15, .external_lex_state = 12}, + [3331] = {.lex_state = 15, .external_lex_state = 12}, + [3332] = {.lex_state = 5, .external_lex_state = 12}, + [3333] = {.lex_state = 18, .external_lex_state = 12}, + [3334] = {.lex_state = 5, .external_lex_state = 16}, + [3335] = {.lex_state = 18, .external_lex_state = 11}, + [3336] = {.lex_state = 5, .external_lex_state = 12}, + [3337] = {.lex_state = 5, .external_lex_state = 12}, + [3338] = {.lex_state = 5, .external_lex_state = 12}, [3339] = {.lex_state = 5, .external_lex_state = 12}, - [3340] = {.lex_state = 5, .external_lex_state = 12}, - [3341] = {.lex_state = 18, .external_lex_state = 12}, + [3340] = {.lex_state = 66, .external_lex_state = 13}, + [3341] = {.lex_state = 5, .external_lex_state = 16}, [3342] = {.lex_state = 5, .external_lex_state = 12}, - [3343] = {.lex_state = 18, .external_lex_state = 16}, - [3344] = {.lex_state = 66, .external_lex_state = 12}, - [3345] = {.lex_state = 5, .external_lex_state = 12}, + [3343] = {.lex_state = 5, .external_lex_state = 12}, + [3344] = {.lex_state = 5, .external_lex_state = 16}, + [3345] = {.lex_state = 5, .external_lex_state = 14}, [3346] = {.lex_state = 5, .external_lex_state = 12}, [3347] = {.lex_state = 5, .external_lex_state = 12}, - [3348] = {.lex_state = 5, .external_lex_state = 12}, - [3349] = {.lex_state = 15, .external_lex_state = 12}, - [3350] = {.lex_state = 15, .external_lex_state = 12}, - [3351] = {.lex_state = 5, .external_lex_state = 12}, - [3352] = {.lex_state = 66, .external_lex_state = 13}, - [3353] = {.lex_state = 15, .external_lex_state = 11}, - [3354] = {.lex_state = 18, .external_lex_state = 11}, - [3355] = {.lex_state = 18, .external_lex_state = 11}, - [3356] = {.lex_state = 5, .external_lex_state = 16}, - [3357] = {.lex_state = 18, .external_lex_state = 11}, - [3358] = {.lex_state = 15, .external_lex_state = 11}, - [3359] = {.lex_state = 5, .external_lex_state = 12}, - [3360] = {.lex_state = 5, .external_lex_state = 14}, - [3361] = {.lex_state = 15, .external_lex_state = 11}, - [3362] = {.lex_state = 5, .external_lex_state = 16}, - [3363] = {.lex_state = 5, .external_lex_state = 14}, + [3348] = {.lex_state = 15, .external_lex_state = 11}, + [3349] = {.lex_state = 18, .external_lex_state = 16}, + [3350] = {.lex_state = 5, .external_lex_state = 12}, + [3351] = {.lex_state = 15, .external_lex_state = 11}, + [3352] = {.lex_state = 15, .external_lex_state = 11}, + [3353] = {.lex_state = 5, .external_lex_state = 16}, + [3354] = {.lex_state = 5, .external_lex_state = 14}, + [3355] = {.lex_state = 15, .external_lex_state = 11}, + [3356] = {.lex_state = 5, .external_lex_state = 12}, + [3357] = {.lex_state = 15, .external_lex_state = 11}, + [3358] = {.lex_state = 18, .external_lex_state = 11}, + [3359] = {.lex_state = 18, .external_lex_state = 11}, + [3360] = {.lex_state = 5, .external_lex_state = 12}, + [3361] = {.lex_state = 5, .external_lex_state = 14}, + [3362] = {.lex_state = 5, .external_lex_state = 12}, + [3363] = {.lex_state = 15, .external_lex_state = 12}, [3364] = {.lex_state = 5, .external_lex_state = 16}, - [3365] = {.lex_state = 5, .external_lex_state = 14}, - [3366] = {.lex_state = 5, .external_lex_state = 16}, - [3367] = {.lex_state = 5, .external_lex_state = 16}, - [3368] = {.lex_state = 18, .external_lex_state = 12}, - [3369] = {.lex_state = 5, .external_lex_state = 14}, - [3370] = {.lex_state = 5, .external_lex_state = 16}, - [3371] = {.lex_state = 5, .external_lex_state = 14}, - [3372] = {.lex_state = 5, .external_lex_state = 14}, - [3373] = {.lex_state = 5, .external_lex_state = 14}, + [3365] = {.lex_state = 18, .external_lex_state = 11}, + [3366] = {.lex_state = 18, .external_lex_state = 12}, + [3367] = {.lex_state = 5, .external_lex_state = 12}, + [3368] = {.lex_state = 5, .external_lex_state = 14}, + [3369] = {.lex_state = 15, .external_lex_state = 11}, + [3370] = {.lex_state = 66, .external_lex_state = 15}, + [3371] = {.lex_state = 5, .external_lex_state = 11}, + [3372] = {.lex_state = 5, .external_lex_state = 11}, + [3373] = {.lex_state = 5, .external_lex_state = 12}, [3374] = {.lex_state = 5, .external_lex_state = 14}, - [3375] = {.lex_state = 66, .external_lex_state = 15}, - [3376] = {.lex_state = 5, .external_lex_state = 11}, - [3377] = {.lex_state = 5, .external_lex_state = 12}, + [3375] = {.lex_state = 5, .external_lex_state = 16}, + [3376] = {.lex_state = 5, .external_lex_state = 16}, + [3377] = {.lex_state = 5, .external_lex_state = 14}, [3378] = {.lex_state = 5, .external_lex_state = 11}, - [3379] = {.lex_state = 5, .external_lex_state = 12}, + [3379] = {.lex_state = 5, .external_lex_state = 14}, [3380] = {.lex_state = 5, .external_lex_state = 14}, - [3381] = {.lex_state = 5, .external_lex_state = 11}, + [3381] = {.lex_state = 5, .external_lex_state = 16}, [3382] = {.lex_state = 5, .external_lex_state = 14}, - [3383] = {.lex_state = 5, .external_lex_state = 11}, - [3384] = {.lex_state = 5, .external_lex_state = 11}, - [3385] = {.lex_state = 5, .external_lex_state = 14}, - [3386] = {.lex_state = 5, .external_lex_state = 14}, - [3387] = {.lex_state = 5, .external_lex_state = 14}, + [3383] = {.lex_state = 5, .external_lex_state = 16}, + [3384] = {.lex_state = 5, .external_lex_state = 14}, + [3385] = {.lex_state = 5, .external_lex_state = 16}, + [3386] = {.lex_state = 5, .external_lex_state = 16}, + [3387] = {.lex_state = 5, .external_lex_state = 16}, [3388] = {.lex_state = 5, .external_lex_state = 14}, - [3389] = {.lex_state = 5, .external_lex_state = 16}, - [3390] = {.lex_state = 5, .external_lex_state = 11}, - [3391] = {.lex_state = 66, .external_lex_state = 15}, - [3392] = {.lex_state = 5, .external_lex_state = 12}, + [3389] = {.lex_state = 5, .external_lex_state = 14}, + [3390] = {.lex_state = 5, .external_lex_state = 14}, + [3391] = {.lex_state = 5, .external_lex_state = 14}, + [3392] = {.lex_state = 5, .external_lex_state = 16}, [3393] = {.lex_state = 5, .external_lex_state = 14}, - [3394] = {.lex_state = 5, .external_lex_state = 14}, - [3395] = {.lex_state = 5, .external_lex_state = 14}, + [3394] = {.lex_state = 5, .external_lex_state = 12}, + [3395] = {.lex_state = 18, .external_lex_state = 12}, [3396] = {.lex_state = 5, .external_lex_state = 14}, [3397] = {.lex_state = 5, .external_lex_state = 14}, [3398] = {.lex_state = 5, .external_lex_state = 11}, - [3399] = {.lex_state = 5, .external_lex_state = 16}, - [3400] = {.lex_state = 5, .external_lex_state = 16}, - [3401] = {.lex_state = 5, .external_lex_state = 14}, - [3402] = {.lex_state = 5, .external_lex_state = 16}, + [3399] = {.lex_state = 5, .external_lex_state = 14}, + [3400] = {.lex_state = 5, .external_lex_state = 14}, + [3401] = {.lex_state = 5, .external_lex_state = 12}, + [3402] = {.lex_state = 5, .external_lex_state = 12}, [3403] = {.lex_state = 5, .external_lex_state = 14}, - [3404] = {.lex_state = 5, .external_lex_state = 11}, - [3405] = {.lex_state = 5, .external_lex_state = 16}, - [3406] = {.lex_state = 5, .external_lex_state = 14}, - [3407] = {.lex_state = 66, .external_lex_state = 15}, - [3408] = {.lex_state = 5, .external_lex_state = 16}, - [3409] = {.lex_state = 5, .external_lex_state = 16}, - [3410] = {.lex_state = 5, .external_lex_state = 16}, + [3404] = {.lex_state = 5, .external_lex_state = 12}, + [3405] = {.lex_state = 5, .external_lex_state = 11}, + [3406] = {.lex_state = 5, .external_lex_state = 11}, + [3407] = {.lex_state = 5, .external_lex_state = 11}, + [3408] = {.lex_state = 5, .external_lex_state = 14}, + [3409] = {.lex_state = 5, .external_lex_state = 11}, + [3410] = {.lex_state = 5, .external_lex_state = 11}, [3411] = {.lex_state = 5, .external_lex_state = 11}, [3412] = {.lex_state = 5, .external_lex_state = 11}, - [3413] = {.lex_state = 5, .external_lex_state = 14}, + [3413] = {.lex_state = 5, .external_lex_state = 11}, [3414] = {.lex_state = 5, .external_lex_state = 11}, - [3415] = {.lex_state = 66, .external_lex_state = 15}, + [3415] = {.lex_state = 5, .external_lex_state = 11}, [3416] = {.lex_state = 5, .external_lex_state = 11}, - [3417] = {.lex_state = 5, .external_lex_state = 16}, - [3418] = {.lex_state = 5, .external_lex_state = 14}, - [3419] = {.lex_state = 5, .external_lex_state = 11}, + [3417] = {.lex_state = 5, .external_lex_state = 11}, + [3418] = {.lex_state = 5, .external_lex_state = 12}, + [3419] = {.lex_state = 5, .external_lex_state = 14}, [3420] = {.lex_state = 5, .external_lex_state = 11}, - [3421] = {.lex_state = 66, .external_lex_state = 15}, - [3422] = {.lex_state = 5, .external_lex_state = 11}, - [3423] = {.lex_state = 5, .external_lex_state = 11}, - [3424] = {.lex_state = 5, .external_lex_state = 12}, - [3425] = {.lex_state = 66, .external_lex_state = 15}, - [3426] = {.lex_state = 66, .external_lex_state = 15}, - [3427] = {.lex_state = 5, .external_lex_state = 16}, + [3421] = {.lex_state = 5, .external_lex_state = 16}, + [3422] = {.lex_state = 5, .external_lex_state = 14}, + [3423] = {.lex_state = 5, .external_lex_state = 14}, + [3424] = {.lex_state = 5, .external_lex_state = 16}, + [3425] = {.lex_state = 5, .external_lex_state = 11}, + [3426] = {.lex_state = 5, .external_lex_state = 16}, + [3427] = {.lex_state = 5, .external_lex_state = 14}, [3428] = {.lex_state = 5, .external_lex_state = 16}, [3429] = {.lex_state = 5, .external_lex_state = 14}, - [3430] = {.lex_state = 66, .external_lex_state = 15}, + [3430] = {.lex_state = 5, .external_lex_state = 14}, [3431] = {.lex_state = 5, .external_lex_state = 14}, - [3432] = {.lex_state = 5, .external_lex_state = 11}, - [3433] = {.lex_state = 5, .external_lex_state = 16}, - [3434] = {.lex_state = 5, .external_lex_state = 11}, + [3432] = {.lex_state = 5, .external_lex_state = 14}, + [3433] = {.lex_state = 5, .external_lex_state = 11}, + [3434] = {.lex_state = 5, .external_lex_state = 14}, [3435] = {.lex_state = 5, .external_lex_state = 16}, [3436] = {.lex_state = 5, .external_lex_state = 14}, [3437] = {.lex_state = 5, .external_lex_state = 14}, [3438] = {.lex_state = 5, .external_lex_state = 14}, - [3439] = {.lex_state = 5, .external_lex_state = 14}, - [3440] = {.lex_state = 5, .external_lex_state = 11}, - [3441] = {.lex_state = 5, .external_lex_state = 14}, - [3442] = {.lex_state = 5, .external_lex_state = 12}, - [3443] = {.lex_state = 5, .external_lex_state = 14}, - [3444] = {.lex_state = 5, .external_lex_state = 12}, - [3445] = {.lex_state = 5, .external_lex_state = 16}, - [3446] = {.lex_state = 5, .external_lex_state = 14}, - [3447] = {.lex_state = 5, .external_lex_state = 16}, + [3439] = {.lex_state = 5, .external_lex_state = 11}, + [3440] = {.lex_state = 5, .external_lex_state = 14}, + [3441] = {.lex_state = 66, .external_lex_state = 15}, + [3442] = {.lex_state = 5, .external_lex_state = 14}, + [3443] = {.lex_state = 5, .external_lex_state = 11}, + [3444] = {.lex_state = 5, .external_lex_state = 14}, + [3445] = {.lex_state = 5, .external_lex_state = 14}, + [3446] = {.lex_state = 66, .external_lex_state = 15}, + [3447] = {.lex_state = 5, .external_lex_state = 14}, [3448] = {.lex_state = 5, .external_lex_state = 14}, - [3449] = {.lex_state = 5, .external_lex_state = 16}, - [3450] = {.lex_state = 5, .external_lex_state = 11}, - [3451] = {.lex_state = 5, .external_lex_state = 14}, - [3452] = {.lex_state = 5, .external_lex_state = 16}, - [3453] = {.lex_state = 5, .external_lex_state = 16}, - [3454] = {.lex_state = 5, .external_lex_state = 14}, + [3449] = {.lex_state = 5, .external_lex_state = 14}, + [3450] = {.lex_state = 5, .external_lex_state = 14}, + [3451] = {.lex_state = 66, .external_lex_state = 15}, + [3452] = {.lex_state = 5, .external_lex_state = 11}, + [3453] = {.lex_state = 5, .external_lex_state = 14}, + [3454] = {.lex_state = 5, .external_lex_state = 11}, [3455] = {.lex_state = 5, .external_lex_state = 14}, - [3456] = {.lex_state = 5, .external_lex_state = 14}, - [3457] = {.lex_state = 5, .external_lex_state = 14}, - [3458] = {.lex_state = 5, .external_lex_state = 16}, - [3459] = {.lex_state = 5, .external_lex_state = 11}, - [3460] = {.lex_state = 5, .external_lex_state = 16}, - [3461] = {.lex_state = 5, .external_lex_state = 14}, + [3456] = {.lex_state = 66, .external_lex_state = 15}, + [3457] = {.lex_state = 5, .external_lex_state = 11}, + [3458] = {.lex_state = 66, .external_lex_state = 15}, + [3459] = {.lex_state = 66, .external_lex_state = 15}, + [3460] = {.lex_state = 5, .external_lex_state = 14}, + [3461] = {.lex_state = 66, .external_lex_state = 15}, [3462] = {.lex_state = 5, .external_lex_state = 14}, - [3463] = {.lex_state = 5, .external_lex_state = 14}, - [3464] = {.lex_state = 5, .external_lex_state = 11}, + [3463] = {.lex_state = 5, .external_lex_state = 16}, + [3464] = {.lex_state = 5, .external_lex_state = 16}, [3465] = {.lex_state = 5, .external_lex_state = 14}, - [3466] = {.lex_state = 5, .external_lex_state = 16}, - [3467] = {.lex_state = 5, .external_lex_state = 11}, - [3468] = {.lex_state = 5, .external_lex_state = 11}, - [3469] = {.lex_state = 5, .external_lex_state = 11}, - [3470] = {.lex_state = 5, .external_lex_state = 14}, - [3471] = {.lex_state = 5, .external_lex_state = 11}, - [3472] = {.lex_state = 66, .external_lex_state = 16}, - [3473] = {.lex_state = 66, .external_lex_state = 5}, - [3474] = {.lex_state = 66, .external_lex_state = 14}, - [3475] = {.lex_state = 5, .external_lex_state = 12}, - [3476] = {.lex_state = 66, .external_lex_state = 5}, - [3477] = {.lex_state = 5, .external_lex_state = 11}, - [3478] = {.lex_state = 15, .external_lex_state = 11}, - [3479] = {.lex_state = 5, .external_lex_state = 12}, - [3480] = {.lex_state = 5, .external_lex_state = 12}, - [3481] = {.lex_state = 18, .external_lex_state = 16}, - [3482] = {.lex_state = 66, .external_lex_state = 12}, - [3483] = {.lex_state = 5, .external_lex_state = 11}, + [3466] = {.lex_state = 5, .external_lex_state = 14}, + [3467] = {.lex_state = 5, .external_lex_state = 16}, + [3468] = {.lex_state = 5, .external_lex_state = 16}, + [3469] = {.lex_state = 5, .external_lex_state = 16}, + [3470] = {.lex_state = 5, .external_lex_state = 16}, + [3471] = {.lex_state = 5, .external_lex_state = 16}, + [3472] = {.lex_state = 5, .external_lex_state = 16}, + [3473] = {.lex_state = 5, .external_lex_state = 16}, + [3474] = {.lex_state = 5, .external_lex_state = 16}, + [3475] = {.lex_state = 5, .external_lex_state = 16}, + [3476] = {.lex_state = 5, .external_lex_state = 16}, + [3477] = {.lex_state = 5, .external_lex_state = 16}, + [3478] = {.lex_state = 5, .external_lex_state = 11}, + [3479] = {.lex_state = 0, .external_lex_state = 18}, + [3480] = {.lex_state = 0, .external_lex_state = 18}, + [3481] = {.lex_state = 0, .external_lex_state = 18}, + [3482] = {.lex_state = 66, .external_lex_state = 14}, + [3483] = {.lex_state = 66, .external_lex_state = 14}, [3484] = {.lex_state = 5, .external_lex_state = 11}, [3485] = {.lex_state = 0, .external_lex_state = 18}, [3486] = {.lex_state = 5, .external_lex_state = 11}, [3487] = {.lex_state = 5, .external_lex_state = 11}, [3488] = {.lex_state = 5, .external_lex_state = 11}, - [3489] = {.lex_state = 5, .external_lex_state = 11}, + [3489] = {.lex_state = 0, .external_lex_state = 18}, [3490] = {.lex_state = 0, .external_lex_state = 18}, - [3491] = {.lex_state = 5, .external_lex_state = 11}, - [3492] = {.lex_state = 5, .external_lex_state = 11}, - [3493] = {.lex_state = 5, .external_lex_state = 12}, + [3491] = {.lex_state = 66, .external_lex_state = 14}, + [3492] = {.lex_state = 66, .external_lex_state = 14}, + [3493] = {.lex_state = 0, .external_lex_state = 18}, [3494] = {.lex_state = 5, .external_lex_state = 11}, - [3495] = {.lex_state = 5, .external_lex_state = 11}, - [3496] = {.lex_state = 0, .external_lex_state = 18}, - [3497] = {.lex_state = 0, .external_lex_state = 18}, + [3495] = {.lex_state = 0, .external_lex_state = 18}, + [3496] = {.lex_state = 66, .external_lex_state = 14}, + [3497] = {.lex_state = 5, .external_lex_state = 12}, [3498] = {.lex_state = 66, .external_lex_state = 14}, - [3499] = {.lex_state = 5, .external_lex_state = 11}, - [3500] = {.lex_state = 66, .external_lex_state = 14}, - [3501] = {.lex_state = 5, .external_lex_state = 11}, - [3502] = {.lex_state = 5, .external_lex_state = 11}, - [3503] = {.lex_state = 5, .external_lex_state = 11}, - [3504] = {.lex_state = 18, .external_lex_state = 16}, - [3505] = {.lex_state = 0, .external_lex_state = 18}, - [3506] = {.lex_state = 5, .external_lex_state = 11}, - [3507] = {.lex_state = 66, .external_lex_state = 5}, - [3508] = {.lex_state = 0, .external_lex_state = 18}, - [3509] = {.lex_state = 66, .external_lex_state = 14}, + [3499] = {.lex_state = 66, .external_lex_state = 5}, + [3500] = {.lex_state = 0, .external_lex_state = 18}, + [3501] = {.lex_state = 0, .external_lex_state = 18}, + [3502] = {.lex_state = 0, .external_lex_state = 18}, + [3503] = {.lex_state = 66, .external_lex_state = 14}, + [3504] = {.lex_state = 66, .external_lex_state = 14}, + [3505] = {.lex_state = 66, .external_lex_state = 14}, + [3506] = {.lex_state = 5, .external_lex_state = 12}, + [3507] = {.lex_state = 0, .external_lex_state = 18}, + [3508] = {.lex_state = 5, .external_lex_state = 11}, + [3509] = {.lex_state = 18, .external_lex_state = 16}, [3510] = {.lex_state = 5, .external_lex_state = 11}, - [3511] = {.lex_state = 66, .external_lex_state = 5}, - [3512] = {.lex_state = 66, .external_lex_state = 14}, - [3513] = {.lex_state = 0, .external_lex_state = 18}, - [3514] = {.lex_state = 66, .external_lex_state = 14}, - [3515] = {.lex_state = 0, .external_lex_state = 18}, - [3516] = {.lex_state = 66, .external_lex_state = 14}, + [3511] = {.lex_state = 5, .external_lex_state = 11}, + [3512] = {.lex_state = 0, .external_lex_state = 18}, + [3513] = {.lex_state = 66, .external_lex_state = 14}, + [3514] = {.lex_state = 5, .external_lex_state = 11}, + [3515] = {.lex_state = 66, .external_lex_state = 16}, + [3516] = {.lex_state = 66, .external_lex_state = 5}, [3517] = {.lex_state = 66, .external_lex_state = 14}, [3518] = {.lex_state = 0, .external_lex_state = 18}, - [3519] = {.lex_state = 66, .external_lex_state = 5}, + [3519] = {.lex_state = 0, .external_lex_state = 18}, [3520] = {.lex_state = 0, .external_lex_state = 18}, [3521] = {.lex_state = 0, .external_lex_state = 18}, - [3522] = {.lex_state = 66, .external_lex_state = 14}, - [3523] = {.lex_state = 66, .external_lex_state = 14}, - [3524] = {.lex_state = 0, .external_lex_state = 18}, + [3522] = {.lex_state = 0, .external_lex_state = 18}, + [3523] = {.lex_state = 0, .external_lex_state = 18}, + [3524] = {.lex_state = 18, .external_lex_state = 16}, [3525] = {.lex_state = 0, .external_lex_state = 18}, - [3526] = {.lex_state = 66, .external_lex_state = 14}, - [3527] = {.lex_state = 66, .external_lex_state = 14}, - [3528] = {.lex_state = 0, .external_lex_state = 18}, - [3529] = {.lex_state = 5, .external_lex_state = 12}, - [3530] = {.lex_state = 0, .external_lex_state = 18}, - [3531] = {.lex_state = 0, .external_lex_state = 18}, - [3532] = {.lex_state = 0, .external_lex_state = 18}, - [3533] = {.lex_state = 0, .external_lex_state = 18}, - [3534] = {.lex_state = 0, .external_lex_state = 18}, - [3535] = {.lex_state = 66, .external_lex_state = 14}, - [3536] = {.lex_state = 66, .external_lex_state = 16}, - [3537] = {.lex_state = 66, .external_lex_state = 5}, - [3538] = {.lex_state = 66, .external_lex_state = 16}, - [3539] = {.lex_state = 0, .external_lex_state = 18}, - [3540] = {.lex_state = 66, .external_lex_state = 16}, - [3541] = {.lex_state = 5, .external_lex_state = 11}, - [3542] = {.lex_state = 5, .external_lex_state = 11}, - [3543] = {.lex_state = 18, .external_lex_state = 16}, + [3526] = {.lex_state = 5, .external_lex_state = 11}, + [3527] = {.lex_state = 66, .external_lex_state = 5}, + [3528] = {.lex_state = 5, .external_lex_state = 11}, + [3529] = {.lex_state = 5, .external_lex_state = 11}, + [3530] = {.lex_state = 66, .external_lex_state = 14}, + [3531] = {.lex_state = 5, .external_lex_state = 11}, + [3532] = {.lex_state = 5, .external_lex_state = 12}, + [3533] = {.lex_state = 5, .external_lex_state = 11}, + [3534] = {.lex_state = 5, .external_lex_state = 11}, + [3535] = {.lex_state = 66, .external_lex_state = 12}, + [3536] = {.lex_state = 18, .external_lex_state = 16}, + [3537] = {.lex_state = 5, .external_lex_state = 11}, + [3538] = {.lex_state = 5, .external_lex_state = 12}, + [3539] = {.lex_state = 66, .external_lex_state = 16}, + [3540] = {.lex_state = 5, .external_lex_state = 11}, + [3541] = {.lex_state = 66, .external_lex_state = 5}, + [3542] = {.lex_state = 66, .external_lex_state = 14}, + [3543] = {.lex_state = 66, .external_lex_state = 14}, [3544] = {.lex_state = 66, .external_lex_state = 16}, - [3545] = {.lex_state = 66, .external_lex_state = 16}, - [3546] = {.lex_state = 66, .external_lex_state = 16}, + [3545] = {.lex_state = 5, .external_lex_state = 12}, + [3546] = {.lex_state = 5, .external_lex_state = 11}, [3547] = {.lex_state = 5, .external_lex_state = 12}, - [3548] = {.lex_state = 66, .external_lex_state = 16}, - [3549] = {.lex_state = 0, .external_lex_state = 18}, - [3550] = {.lex_state = 66, .external_lex_state = 14}, - [3551] = {.lex_state = 66, .external_lex_state = 14}, - [3552] = {.lex_state = 66, .external_lex_state = 14}, - [3553] = {.lex_state = 5, .external_lex_state = 12}, - [3554] = {.lex_state = 0, .external_lex_state = 18}, - [3555] = {.lex_state = 0, .external_lex_state = 18}, - [3556] = {.lex_state = 66, .external_lex_state = 14}, - [3557] = {.lex_state = 18, .external_lex_state = 16}, - [3558] = {.lex_state = 5, .external_lex_state = 11}, - [3559] = {.lex_state = 5, .external_lex_state = 11}, + [3548] = {.lex_state = 66, .external_lex_state = 5}, + [3549] = {.lex_state = 66, .external_lex_state = 16}, + [3550] = {.lex_state = 66, .external_lex_state = 5}, + [3551] = {.lex_state = 5, .external_lex_state = 11}, + [3552] = {.lex_state = 66, .external_lex_state = 16}, + [3553] = {.lex_state = 66, .external_lex_state = 14}, + [3554] = {.lex_state = 66, .external_lex_state = 16}, + [3555] = {.lex_state = 5, .external_lex_state = 11}, + [3556] = {.lex_state = 66, .external_lex_state = 16}, + [3557] = {.lex_state = 66, .external_lex_state = 14}, + [3558] = {.lex_state = 5, .external_lex_state = 12}, + [3559] = {.lex_state = 66, .external_lex_state = 16}, [3560] = {.lex_state = 5, .external_lex_state = 12}, - [3561] = {.lex_state = 5, .external_lex_state = 12}, - [3562] = {.lex_state = 5, .external_lex_state = 12}, - [3563] = {.lex_state = 5, .external_lex_state = 12}, - [3564] = {.lex_state = 20, .external_lex_state = 14}, - [3565] = {.lex_state = 5, .external_lex_state = 16}, - [3566] = {.lex_state = 5, .external_lex_state = 12}, - [3567] = {.lex_state = 5, .external_lex_state = 12}, - [3568] = {.lex_state = 5, .external_lex_state = 12}, - [3569] = {.lex_state = 5, .external_lex_state = 12}, - [3570] = {.lex_state = 5, .external_lex_state = 12}, - [3571] = {.lex_state = 5, .external_lex_state = 16}, - [3572] = {.lex_state = 5, .external_lex_state = 12}, - [3573] = {.lex_state = 5, .external_lex_state = 12}, - [3574] = {.lex_state = 5, .external_lex_state = 14}, + [3561] = {.lex_state = 66, .external_lex_state = 14}, + [3562] = {.lex_state = 5, .external_lex_state = 11}, + [3563] = {.lex_state = 5, .external_lex_state = 11}, + [3564] = {.lex_state = 18, .external_lex_state = 16}, + [3565] = {.lex_state = 5, .external_lex_state = 12}, + [3566] = {.lex_state = 0, .external_lex_state = 18}, + [3567] = {.lex_state = 0, .external_lex_state = 18}, + [3568] = {.lex_state = 15, .external_lex_state = 11}, + [3569] = {.lex_state = 0, .external_lex_state = 18}, + [3570] = {.lex_state = 18, .external_lex_state = 11}, + [3571] = {.lex_state = 5, .external_lex_state = 12}, + [3572] = {.lex_state = 18, .external_lex_state = 11}, + [3573] = {.lex_state = 18, .external_lex_state = 11}, + [3574] = {.lex_state = 5, .external_lex_state = 16}, [3575] = {.lex_state = 5, .external_lex_state = 12}, - [3576] = {.lex_state = 5, .external_lex_state = 12}, - [3577] = {.lex_state = 5, .external_lex_state = 12}, - [3578] = {.lex_state = 20, .external_lex_state = 11}, - [3579] = {.lex_state = 5, .external_lex_state = 16}, - [3580] = {.lex_state = 5, .external_lex_state = 12}, - [3581] = {.lex_state = 5, .external_lex_state = 12}, - [3582] = {.lex_state = 5, .external_lex_state = 12}, - [3583] = {.lex_state = 15, .external_lex_state = 12}, - [3584] = {.lex_state = 18, .external_lex_state = 11}, + [3576] = {.lex_state = 15, .external_lex_state = 12}, + [3577] = {.lex_state = 18, .external_lex_state = 11}, + [3578] = {.lex_state = 5, .external_lex_state = 12}, + [3579] = {.lex_state = 18, .external_lex_state = 11}, + [3580] = {.lex_state = 18, .external_lex_state = 16}, + [3581] = {.lex_state = 18, .external_lex_state = 16}, + [3582] = {.lex_state = 5, .external_lex_state = 16}, + [3583] = {.lex_state = 5, .external_lex_state = 12}, + [3584] = {.lex_state = 5, .external_lex_state = 14}, [3585] = {.lex_state = 5, .external_lex_state = 12}, - [3586] = {.lex_state = 18, .external_lex_state = 11}, + [3586] = {.lex_state = 18, .external_lex_state = 16}, [3587] = {.lex_state = 5, .external_lex_state = 12}, - [3588] = {.lex_state = 5, .external_lex_state = 12}, + [3588] = {.lex_state = 18, .external_lex_state = 16}, [3589] = {.lex_state = 5, .external_lex_state = 12}, - [3590] = {.lex_state = 18, .external_lex_state = 11}, - [3591] = {.lex_state = 66, .external_lex_state = 15}, + [3590] = {.lex_state = 5, .external_lex_state = 12}, + [3591] = {.lex_state = 5, .external_lex_state = 12}, [3592] = {.lex_state = 5, .external_lex_state = 14}, [3593] = {.lex_state = 5, .external_lex_state = 12}, [3594] = {.lex_state = 5, .external_lex_state = 12}, [3595] = {.lex_state = 5, .external_lex_state = 12}, - [3596] = {.lex_state = 5, .external_lex_state = 12}, + [3596] = {.lex_state = 5, .external_lex_state = 16}, [3597] = {.lex_state = 5, .external_lex_state = 12}, [3598] = {.lex_state = 5, .external_lex_state = 12}, [3599] = {.lex_state = 5, .external_lex_state = 12}, - [3600] = {.lex_state = 18, .external_lex_state = 16}, + [3600] = {.lex_state = 5, .external_lex_state = 12}, [3601] = {.lex_state = 5, .external_lex_state = 12}, - [3602] = {.lex_state = 5, .external_lex_state = 16}, - [3603] = {.lex_state = 18, .external_lex_state = 16}, + [3602] = {.lex_state = 18, .external_lex_state = 16}, + [3603] = {.lex_state = 5, .external_lex_state = 12}, [3604] = {.lex_state = 5, .external_lex_state = 12}, [3605] = {.lex_state = 5, .external_lex_state = 12}, - [3606] = {.lex_state = 5, .external_lex_state = 14}, + [3606] = {.lex_state = 5, .external_lex_state = 12}, [3607] = {.lex_state = 5, .external_lex_state = 12}, - [3608] = {.lex_state = 5, .external_lex_state = 12}, - [3609] = {.lex_state = 18, .external_lex_state = 16}, + [3608] = {.lex_state = 5, .external_lex_state = 16}, + [3609] = {.lex_state = 5, .external_lex_state = 12}, [3610] = {.lex_state = 5, .external_lex_state = 12}, - [3611] = {.lex_state = 18, .external_lex_state = 11}, - [3612] = {.lex_state = 5, .external_lex_state = 12}, + [3611] = {.lex_state = 5, .external_lex_state = 12}, + [3612] = {.lex_state = 5, .external_lex_state = 14}, [3613] = {.lex_state = 5, .external_lex_state = 12}, - [3614] = {.lex_state = 18, .external_lex_state = 16}, - [3615] = {.lex_state = 5, .external_lex_state = 16}, - [3616] = {.lex_state = 18, .external_lex_state = 16}, - [3617] = {.lex_state = 5, .external_lex_state = 12}, - [3618] = {.lex_state = 15, .external_lex_state = 12}, - [3619] = {.lex_state = 18, .external_lex_state = 16}, + [3614] = {.lex_state = 5, .external_lex_state = 12}, + [3615] = {.lex_state = 5, .external_lex_state = 12}, + [3616] = {.lex_state = 15, .external_lex_state = 12}, + [3617] = {.lex_state = 18, .external_lex_state = 11}, + [3618] = {.lex_state = 20, .external_lex_state = 14}, + [3619] = {.lex_state = 5, .external_lex_state = 12}, [3620] = {.lex_state = 5, .external_lex_state = 12}, [3621] = {.lex_state = 5, .external_lex_state = 12}, [3622] = {.lex_state = 5, .external_lex_state = 12}, - [3623] = {.lex_state = 5, .external_lex_state = 12}, - [3624] = {.lex_state = 5, .external_lex_state = 16}, - [3625] = {.lex_state = 66, .external_lex_state = 15}, + [3623] = {.lex_state = 5, .external_lex_state = 16}, + [3624] = {.lex_state = 5, .external_lex_state = 12}, + [3625] = {.lex_state = 5, .external_lex_state = 12}, [3626] = {.lex_state = 5, .external_lex_state = 12}, - [3627] = {.lex_state = 18, .external_lex_state = 11}, - [3628] = {.lex_state = 18, .external_lex_state = 11}, - [3629] = {.lex_state = 18, .external_lex_state = 11}, + [3627] = {.lex_state = 5, .external_lex_state = 12}, + [3628] = {.lex_state = 5, .external_lex_state = 12}, + [3629] = {.lex_state = 5, .external_lex_state = 12}, [3630] = {.lex_state = 18, .external_lex_state = 11}, - [3631] = {.lex_state = 18, .external_lex_state = 11}, - [3632] = {.lex_state = 18, .external_lex_state = 11}, - [3633] = {.lex_state = 18, .external_lex_state = 11}, - [3634] = {.lex_state = 18, .external_lex_state = 11}, - [3635] = {.lex_state = 18, .external_lex_state = 11}, - [3636] = {.lex_state = 5, .external_lex_state = 12}, - [3637] = {.lex_state = 5, .external_lex_state = 12}, + [3631] = {.lex_state = 20, .external_lex_state = 11}, + [3632] = {.lex_state = 5, .external_lex_state = 12}, + [3633] = {.lex_state = 5, .external_lex_state = 12}, + [3634] = {.lex_state = 5, .external_lex_state = 12}, + [3635] = {.lex_state = 66, .external_lex_state = 15}, + [3636] = {.lex_state = 18, .external_lex_state = 11}, + [3637] = {.lex_state = 18, .external_lex_state = 16}, [3638] = {.lex_state = 5, .external_lex_state = 12}, - [3639] = {.lex_state = 5, .external_lex_state = 12}, - [3640] = {.lex_state = 66, .external_lex_state = 15}, - [3641] = {.lex_state = 5, .external_lex_state = 11}, - [3642] = {.lex_state = 66, .external_lex_state = 15}, - [3643] = {.lex_state = 5, .external_lex_state = 11}, - [3644] = {.lex_state = 5, .external_lex_state = 11}, - [3645] = {.lex_state = 66, .external_lex_state = 5}, - [3646] = {.lex_state = 15, .external_lex_state = 16}, - [3647] = {.lex_state = 5, .external_lex_state = 11}, - [3648] = {.lex_state = 66, .external_lex_state = 11}, - [3649] = {.lex_state = 5, .external_lex_state = 11}, + [3639] = {.lex_state = 18, .external_lex_state = 11}, + [3640] = {.lex_state = 5, .external_lex_state = 12}, + [3641] = {.lex_state = 18, .external_lex_state = 11}, + [3642] = {.lex_state = 18, .external_lex_state = 11}, + [3643] = {.lex_state = 18, .external_lex_state = 11}, + [3644] = {.lex_state = 18, .external_lex_state = 11}, + [3645] = {.lex_state = 66, .external_lex_state = 15}, + [3646] = {.lex_state = 5, .external_lex_state = 12}, + [3647] = {.lex_state = 5, .external_lex_state = 16}, + [3648] = {.lex_state = 66, .external_lex_state = 15}, + [3649] = {.lex_state = 66, .external_lex_state = 15}, [3650] = {.lex_state = 66, .external_lex_state = 15}, - [3651] = {.lex_state = 66, .external_lex_state = 15}, - [3652] = {.lex_state = 66, .external_lex_state = 5}, - [3653] = {.lex_state = 5, .external_lex_state = 11}, - [3654] = {.lex_state = 66, .external_lex_state = 5}, + [3651] = {.lex_state = 5, .external_lex_state = 11}, + [3652] = {.lex_state = 66, .external_lex_state = 11}, + [3653] = {.lex_state = 66, .external_lex_state = 15}, + [3654] = {.lex_state = 5, .external_lex_state = 11}, [3655] = {.lex_state = 5, .external_lex_state = 11}, - [3656] = {.lex_state = 5, .external_lex_state = 11}, + [3656] = {.lex_state = 66, .external_lex_state = 11}, [3657] = {.lex_state = 66, .external_lex_state = 15}, - [3658] = {.lex_state = 5, .external_lex_state = 11}, - [3659] = {.lex_state = 66, .external_lex_state = 15}, + [3658] = {.lex_state = 66, .external_lex_state = 15}, + [3659] = {.lex_state = 5, .external_lex_state = 11}, [3660] = {.lex_state = 66, .external_lex_state = 5}, - [3661] = {.lex_state = 5, .external_lex_state = 11}, - [3662] = {.lex_state = 66, .external_lex_state = 5}, - [3663] = {.lex_state = 66, .external_lex_state = 5}, - [3664] = {.lex_state = 15, .external_lex_state = 12}, - [3665] = {.lex_state = 5, .external_lex_state = 14}, - [3666] = {.lex_state = 66, .external_lex_state = 15}, - [3667] = {.lex_state = 66, .external_lex_state = 11}, - [3668] = {.lex_state = 66, .external_lex_state = 15}, - [3669] = {.lex_state = 66, .external_lex_state = 15}, + [3661] = {.lex_state = 66, .external_lex_state = 15}, + [3662] = {.lex_state = 15, .external_lex_state = 16}, + [3663] = {.lex_state = 66, .external_lex_state = 15}, + [3664] = {.lex_state = 5, .external_lex_state = 11}, + [3665] = {.lex_state = 5, .external_lex_state = 11}, + [3666] = {.lex_state = 66, .external_lex_state = 5}, + [3667] = {.lex_state = 66, .external_lex_state = 5}, + [3668] = {.lex_state = 5, .external_lex_state = 11}, + [3669] = {.lex_state = 66, .external_lex_state = 5}, [3670] = {.lex_state = 66, .external_lex_state = 5}, - [3671] = {.lex_state = 5, .external_lex_state = 11}, - [3672] = {.lex_state = 66, .external_lex_state = 15}, - [3673] = {.lex_state = 66, .external_lex_state = 15}, - [3674] = {.lex_state = 18, .external_lex_state = 12}, - [3675] = {.lex_state = 5, .external_lex_state = 11}, - [3676] = {.lex_state = 66, .external_lex_state = 15}, - [3677] = {.lex_state = 66, .external_lex_state = 15}, - [3678] = {.lex_state = 66, .external_lex_state = 11}, - [3679] = {.lex_state = 66, .external_lex_state = 5}, - [3680] = {.lex_state = 15, .external_lex_state = 16}, - [3681] = {.lex_state = 5, .external_lex_state = 11}, - [3682] = {.lex_state = 66, .external_lex_state = 15}, - [3683] = {.lex_state = 66, .external_lex_state = 15}, - [3684] = {.lex_state = 66, .external_lex_state = 15}, - [3685] = {.lex_state = 66, .external_lex_state = 15}, - [3686] = {.lex_state = 66, .external_lex_state = 15}, - [3687] = {.lex_state = 66, .external_lex_state = 15}, - [3688] = {.lex_state = 66, .external_lex_state = 11}, - [3689] = {.lex_state = 66, .external_lex_state = 15}, - [3690] = {.lex_state = 5, .external_lex_state = 11}, - [3691] = {.lex_state = 5, .external_lex_state = 11}, + [3671] = {.lex_state = 15, .external_lex_state = 12}, + [3672] = {.lex_state = 5, .external_lex_state = 11}, + [3673] = {.lex_state = 15, .external_lex_state = 12}, + [3674] = {.lex_state = 66, .external_lex_state = 15}, + [3675] = {.lex_state = 15, .external_lex_state = 12}, + [3676] = {.lex_state = 15, .external_lex_state = 12}, + [3677] = {.lex_state = 15, .external_lex_state = 12}, + [3678] = {.lex_state = 5, .external_lex_state = 11}, + [3679] = {.lex_state = 15, .external_lex_state = 12}, + [3680] = {.lex_state = 66, .external_lex_state = 11}, + [3681] = {.lex_state = 15, .external_lex_state = 16}, + [3682] = {.lex_state = 5, .external_lex_state = 11}, + [3683] = {.lex_state = 66, .external_lex_state = 11}, + [3684] = {.lex_state = 15, .external_lex_state = 16}, + [3685] = {.lex_state = 15, .external_lex_state = 16}, + [3686] = {.lex_state = 15, .external_lex_state = 16}, + [3687] = {.lex_state = 5, .external_lex_state = 11}, + [3688] = {.lex_state = 66, .external_lex_state = 5}, + [3689] = {.lex_state = 5, .external_lex_state = 11}, + [3690] = {.lex_state = 66, .external_lex_state = 5}, + [3691] = {.lex_state = 66, .external_lex_state = 5}, [3692] = {.lex_state = 5, .external_lex_state = 11}, - [3693] = {.lex_state = 15, .external_lex_state = 16}, - [3694] = {.lex_state = 66, .external_lex_state = 5}, + [3693] = {.lex_state = 66, .external_lex_state = 5}, + [3694] = {.lex_state = 5, .external_lex_state = 11}, [3695] = {.lex_state = 5, .external_lex_state = 11}, - [3696] = {.lex_state = 66, .external_lex_state = 5}, - [3697] = {.lex_state = 5, .external_lex_state = 16}, - [3698] = {.lex_state = 15, .external_lex_state = 12}, - [3699] = {.lex_state = 66, .external_lex_state = 5}, - [3700] = {.lex_state = 5, .external_lex_state = 11}, - [3701] = {.lex_state = 15, .external_lex_state = 12}, - [3702] = {.lex_state = 15, .external_lex_state = 16}, - [3703] = {.lex_state = 5, .external_lex_state = 11}, - [3704] = {.lex_state = 66, .external_lex_state = 11}, - [3705] = {.lex_state = 66, .external_lex_state = 11}, - [3706] = {.lex_state = 15, .external_lex_state = 16}, - [3707] = {.lex_state = 15, .external_lex_state = 16}, - [3708] = {.lex_state = 15, .external_lex_state = 12}, - [3709] = {.lex_state = 66, .external_lex_state = 15}, - [3710] = {.lex_state = 15, .external_lex_state = 12}, - [3711] = {.lex_state = 15, .external_lex_state = 12}, + [3696] = {.lex_state = 15, .external_lex_state = 16}, + [3697] = {.lex_state = 66, .external_lex_state = 11}, + [3698] = {.lex_state = 5, .external_lex_state = 11}, + [3699] = {.lex_state = 66, .external_lex_state = 11}, + [3700] = {.lex_state = 66, .external_lex_state = 5}, + [3701] = {.lex_state = 5, .external_lex_state = 11}, + [3702] = {.lex_state = 5, .external_lex_state = 16}, + [3703] = {.lex_state = 66, .external_lex_state = 15}, + [3704] = {.lex_state = 66, .external_lex_state = 15}, + [3705] = {.lex_state = 66, .external_lex_state = 15}, + [3706] = {.lex_state = 66, .external_lex_state = 15}, + [3707] = {.lex_state = 66, .external_lex_state = 15}, + [3708] = {.lex_state = 66, .external_lex_state = 15}, + [3709] = {.lex_state = 5, .external_lex_state = 11}, + [3710] = {.lex_state = 66, .external_lex_state = 5}, + [3711] = {.lex_state = 5, .external_lex_state = 14}, [3712] = {.lex_state = 5, .external_lex_state = 11}, - [3713] = {.lex_state = 15, .external_lex_state = 16}, - [3714] = {.lex_state = 66, .external_lex_state = 5}, - [3715] = {.lex_state = 15, .external_lex_state = 11}, - [3716] = {.lex_state = 66, .external_lex_state = 15}, - [3717] = {.lex_state = 66, .external_lex_state = 11}, - [3718] = {.lex_state = 5, .external_lex_state = 14}, + [3713] = {.lex_state = 66, .external_lex_state = 5}, + [3714] = {.lex_state = 5, .external_lex_state = 11}, + [3715] = {.lex_state = 66, .external_lex_state = 11}, + [3716] = {.lex_state = 5, .external_lex_state = 14}, + [3717] = {.lex_state = 66, .external_lex_state = 15}, + [3718] = {.lex_state = 66, .external_lex_state = 15}, [3719] = {.lex_state = 66, .external_lex_state = 15}, - [3720] = {.lex_state = 18, .external_lex_state = 12}, - [3721] = {.lex_state = 66, .external_lex_state = 16}, - [3722] = {.lex_state = 66, .external_lex_state = 11}, - [3723] = {.lex_state = 66, .external_lex_state = 16}, - [3724] = {.lex_state = 66, .external_lex_state = 16}, - [3725] = {.lex_state = 18, .external_lex_state = 12}, - [3726] = {.lex_state = 66, .external_lex_state = 2}, - [3727] = {.lex_state = 66, .external_lex_state = 16}, - [3728] = {.lex_state = 66, .external_lex_state = 14}, - [3729] = {.lex_state = 66, .external_lex_state = 16}, - [3730] = {.lex_state = 14, .external_lex_state = 11}, - [3731] = {.lex_state = 14, .external_lex_state = 11}, - [3732] = {.lex_state = 66, .external_lex_state = 2}, + [3720] = {.lex_state = 66, .external_lex_state = 15}, + [3721] = {.lex_state = 66, .external_lex_state = 15}, + [3722] = {.lex_state = 66, .external_lex_state = 15}, + [3723] = {.lex_state = 18, .external_lex_state = 12}, + [3724] = {.lex_state = 66, .external_lex_state = 15}, + [3725] = {.lex_state = 66, .external_lex_state = 15}, + [3726] = {.lex_state = 15, .external_lex_state = 11}, + [3727] = {.lex_state = 15, .external_lex_state = 16}, + [3728] = {.lex_state = 66, .external_lex_state = 11}, + [3729] = {.lex_state = 14, .external_lex_state = 11}, + [3730] = {.lex_state = 66, .external_lex_state = 11}, + [3731] = {.lex_state = 67, .external_lex_state = 17}, + [3732] = {.lex_state = 67, .external_lex_state = 17}, [3733] = {.lex_state = 66, .external_lex_state = 16}, - [3734] = {.lex_state = 66, .external_lex_state = 11}, - [3735] = {.lex_state = 66, .external_lex_state = 16}, - [3736] = {.lex_state = 66, .external_lex_state = 16}, - [3737] = {.lex_state = 66, .external_lex_state = 16}, - [3738] = {.lex_state = 66, .external_lex_state = 14}, - [3739] = {.lex_state = 66, .external_lex_state = 14}, - [3740] = {.lex_state = 66, .external_lex_state = 14}, - [3741] = {.lex_state = 66, .external_lex_state = 14}, - [3742] = {.lex_state = 14, .external_lex_state = 11}, - [3743] = {.lex_state = 67, .external_lex_state = 17}, - [3744] = {.lex_state = 18, .external_lex_state = 12}, - [3745] = {.lex_state = 66, .external_lex_state = 11}, + [3734] = {.lex_state = 67, .external_lex_state = 17}, + [3735] = {.lex_state = 66, .external_lex_state = 15}, + [3736] = {.lex_state = 67, .external_lex_state = 17}, + [3737] = {.lex_state = 66, .external_lex_state = 2}, + [3738] = {.lex_state = 18, .external_lex_state = 12}, + [3739] = {.lex_state = 14, .external_lex_state = 11}, + [3740] = {.lex_state = 18, .external_lex_state = 14}, + [3741] = {.lex_state = 66, .external_lex_state = 15}, + [3742] = {.lex_state = 66, .external_lex_state = 11}, + [3743] = {.lex_state = 16, .external_lex_state = 19}, + [3744] = {.lex_state = 66, .external_lex_state = 15}, + [3745] = {.lex_state = 66, .external_lex_state = 16}, [3746] = {.lex_state = 67, .external_lex_state = 17}, - [3747] = {.lex_state = 67, .external_lex_state = 17}, - [3748] = {.lex_state = 66, .external_lex_state = 16}, - [3749] = {.lex_state = 16, .external_lex_state = 19}, - [3750] = {.lex_state = 18, .external_lex_state = 12}, - [3751] = {.lex_state = 0, .external_lex_state = 18}, - [3752] = {.lex_state = 66, .external_lex_state = 11}, - [3753] = {.lex_state = 66, .external_lex_state = 16}, - [3754] = {.lex_state = 67, .external_lex_state = 17}, - [3755] = {.lex_state = 66, .external_lex_state = 16}, - [3756] = {.lex_state = 66, .external_lex_state = 11}, - [3757] = {.lex_state = 66, .external_lex_state = 14}, - [3758] = {.lex_state = 5, .external_lex_state = 12}, - [3759] = {.lex_state = 66, .external_lex_state = 12}, - [3760] = {.lex_state = 66, .external_lex_state = 2}, - [3761] = {.lex_state = 66, .external_lex_state = 11}, - [3762] = {.lex_state = 66, .external_lex_state = 16}, - [3763] = {.lex_state = 18, .external_lex_state = 12}, - [3764] = {.lex_state = 67, .external_lex_state = 17}, - [3765] = {.lex_state = 18, .external_lex_state = 12}, - [3766] = {.lex_state = 18, .external_lex_state = 14}, + [3747] = {.lex_state = 66, .external_lex_state = 2}, + [3748] = {.lex_state = 67, .external_lex_state = 17}, + [3749] = {.lex_state = 66, .external_lex_state = 16}, + [3750] = {.lex_state = 14, .external_lex_state = 11}, + [3751] = {.lex_state = 14, .external_lex_state = 11}, + [3752] = {.lex_state = 14, .external_lex_state = 11}, + [3753] = {.lex_state = 16, .external_lex_state = 19}, + [3754] = {.lex_state = 66, .external_lex_state = 16}, + [3755] = {.lex_state = 66, .external_lex_state = 2}, + [3756] = {.lex_state = 67, .external_lex_state = 17}, + [3757] = {.lex_state = 66, .external_lex_state = 11}, + [3758] = {.lex_state = 66, .external_lex_state = 11}, + [3759] = {.lex_state = 66, .external_lex_state = 16}, + [3760] = {.lex_state = 5, .external_lex_state = 12}, + [3761] = {.lex_state = 14, .external_lex_state = 11}, + [3762] = {.lex_state = 67, .external_lex_state = 17}, + [3763] = {.lex_state = 66, .external_lex_state = 14}, + [3764] = {.lex_state = 66, .external_lex_state = 15}, + [3765] = {.lex_state = 66, .external_lex_state = 15}, + [3766] = {.lex_state = 18, .external_lex_state = 16}, [3767] = {.lex_state = 66, .external_lex_state = 16}, - [3768] = {.lex_state = 14, .external_lex_state = 11}, - [3769] = {.lex_state = 66, .external_lex_state = 14}, - [3770] = {.lex_state = 67, .external_lex_state = 17}, - [3771] = {.lex_state = 67, .external_lex_state = 17}, - [3772] = {.lex_state = 66, .external_lex_state = 15}, - [3773] = {.lex_state = 66, .external_lex_state = 11}, + [3768] = {.lex_state = 66, .external_lex_state = 16}, + [3769] = {.lex_state = 66, .external_lex_state = 16}, + [3770] = {.lex_state = 66, .external_lex_state = 16}, + [3771] = {.lex_state = 66, .external_lex_state = 16}, + [3772] = {.lex_state = 66, .external_lex_state = 16}, + [3773] = {.lex_state = 16, .external_lex_state = 19}, [3774] = {.lex_state = 66, .external_lex_state = 11}, - [3775] = {.lex_state = 67, .external_lex_state = 17}, - [3776] = {.lex_state = 18, .external_lex_state = 15}, - [3777] = {.lex_state = 67, .external_lex_state = 17}, - [3778] = {.lex_state = 66, .external_lex_state = 16}, - [3779] = {.lex_state = 67, .external_lex_state = 17}, + [3775] = {.lex_state = 66, .external_lex_state = 14}, + [3776] = {.lex_state = 66, .external_lex_state = 16}, + [3777] = {.lex_state = 66, .external_lex_state = 11}, + [3778] = {.lex_state = 66, .external_lex_state = 11}, + [3779] = {.lex_state = 66, .external_lex_state = 14}, [3780] = {.lex_state = 66, .external_lex_state = 2}, - [3781] = {.lex_state = 66, .external_lex_state = 2}, - [3782] = {.lex_state = 16, .external_lex_state = 19}, - [3783] = {.lex_state = 66, .external_lex_state = 14}, + [3781] = {.lex_state = 66, .external_lex_state = 16}, + [3782] = {.lex_state = 14, .external_lex_state = 11}, + [3783] = {.lex_state = 66, .external_lex_state = 16}, [3784] = {.lex_state = 66, .external_lex_state = 16}, - [3785] = {.lex_state = 66, .external_lex_state = 16}, - [3786] = {.lex_state = 16, .external_lex_state = 19}, - [3787] = {.lex_state = 18, .external_lex_state = 12}, - [3788] = {.lex_state = 14, .external_lex_state = 11}, + [3785] = {.lex_state = 66, .external_lex_state = 2}, + [3786] = {.lex_state = 14, .external_lex_state = 11}, + [3787] = {.lex_state = 66, .external_lex_state = 11}, + [3788] = {.lex_state = 66, .external_lex_state = 16}, [3789] = {.lex_state = 14, .external_lex_state = 11}, - [3790] = {.lex_state = 66, .external_lex_state = 15}, - [3791] = {.lex_state = 66, .external_lex_state = 14}, - [3792] = {.lex_state = 66, .external_lex_state = 12}, - [3793] = {.lex_state = 67, .external_lex_state = 17}, - [3794] = {.lex_state = 66, .external_lex_state = 16}, - [3795] = {.lex_state = 66, .external_lex_state = 15}, - [3796] = {.lex_state = 14, .external_lex_state = 11}, - [3797] = {.lex_state = 66, .external_lex_state = 15}, - [3798] = {.lex_state = 0, .external_lex_state = 18}, - [3799] = {.lex_state = 66, .external_lex_state = 16}, + [3790] = {.lex_state = 18, .external_lex_state = 15}, + [3791] = {.lex_state = 66, .external_lex_state = 16}, + [3792] = {.lex_state = 66, .external_lex_state = 11}, + [3793] = {.lex_state = 66, .external_lex_state = 11}, + [3794] = {.lex_state = 18, .external_lex_state = 12}, + [3795] = {.lex_state = 66, .external_lex_state = 14}, + [3796] = {.lex_state = 18, .external_lex_state = 12}, + [3797] = {.lex_state = 67, .external_lex_state = 17}, + [3798] = {.lex_state = 18, .external_lex_state = 12}, + [3799] = {.lex_state = 18, .external_lex_state = 12}, [3800] = {.lex_state = 18, .external_lex_state = 12}, [3801] = {.lex_state = 18, .external_lex_state = 12}, - [3802] = {.lex_state = 18, .external_lex_state = 12}, - [3803] = {.lex_state = 18, .external_lex_state = 12}, - [3804] = {.lex_state = 18, .external_lex_state = 12}, - [3805] = {.lex_state = 18, .external_lex_state = 12}, - [3806] = {.lex_state = 66, .external_lex_state = 2}, - [3807] = {.lex_state = 66, .external_lex_state = 16}, - [3808] = {.lex_state = 66, .external_lex_state = 11}, - [3809] = {.lex_state = 66, .external_lex_state = 2}, - [3810] = {.lex_state = 66, .external_lex_state = 11}, - [3811] = {.lex_state = 14, .external_lex_state = 11}, - [3812] = {.lex_state = 66, .external_lex_state = 15}, - [3813] = {.lex_state = 18, .external_lex_state = 16}, - [3814] = {.lex_state = 67, .external_lex_state = 17}, + [3802] = {.lex_state = 67, .external_lex_state = 17}, + [3803] = {.lex_state = 0, .external_lex_state = 18}, + [3804] = {.lex_state = 66, .external_lex_state = 12}, + [3805] = {.lex_state = 66, .external_lex_state = 2}, + [3806] = {.lex_state = 14, .external_lex_state = 11}, + [3807] = {.lex_state = 66, .external_lex_state = 14}, + [3808] = {.lex_state = 66, .external_lex_state = 16}, + [3809] = {.lex_state = 66, .external_lex_state = 14}, + [3810] = {.lex_state = 66, .external_lex_state = 14}, + [3811] = {.lex_state = 66, .external_lex_state = 16}, + [3812] = {.lex_state = 66, .external_lex_state = 14}, + [3813] = {.lex_state = 66, .external_lex_state = 12}, + [3814] = {.lex_state = 66, .external_lex_state = 16}, [3815] = {.lex_state = 14, .external_lex_state = 11}, - [3816] = {.lex_state = 14, .external_lex_state = 11}, - [3817] = {.lex_state = 14, .external_lex_state = 11}, - [3818] = {.lex_state = 66, .external_lex_state = 11}, - [3819] = {.lex_state = 16, .external_lex_state = 19}, - [3820] = {.lex_state = 66, .external_lex_state = 16}, - [3821] = {.lex_state = 14, .external_lex_state = 11}, - [3822] = {.lex_state = 66, .external_lex_state = 11}, - [3823] = {.lex_state = 66, .external_lex_state = 11}, - [3824] = {.lex_state = 66, .external_lex_state = 12}, - [3825] = {.lex_state = 66, .external_lex_state = 14}, - [3826] = {.lex_state = 66, .external_lex_state = 11}, - [3827] = {.lex_state = 66, .external_lex_state = 14}, - [3828] = {.lex_state = 66, .external_lex_state = 11}, - [3829] = {.lex_state = 66, .external_lex_state = 11}, + [3816] = {.lex_state = 16, .external_lex_state = 19}, + [3817] = {.lex_state = 18, .external_lex_state = 12}, + [3818] = {.lex_state = 18, .external_lex_state = 12}, + [3819] = {.lex_state = 18, .external_lex_state = 12}, + [3820] = {.lex_state = 18, .external_lex_state = 12}, + [3821] = {.lex_state = 18, .external_lex_state = 12}, + [3822] = {.lex_state = 66, .external_lex_state = 14}, + [3823] = {.lex_state = 18, .external_lex_state = 12}, + [3824] = {.lex_state = 66, .external_lex_state = 2}, + [3825] = {.lex_state = 67, .external_lex_state = 17}, + [3826] = {.lex_state = 14, .external_lex_state = 11}, + [3827] = {.lex_state = 67, .external_lex_state = 17}, + [3828] = {.lex_state = 0, .external_lex_state = 18}, + [3829] = {.lex_state = 66, .external_lex_state = 16}, [3830] = {.lex_state = 66, .external_lex_state = 11}, [3831] = {.lex_state = 66, .external_lex_state = 11}, - [3832] = {.lex_state = 66, .external_lex_state = 12}, - [3833] = {.lex_state = 66, .external_lex_state = 14}, + [3832] = {.lex_state = 66, .external_lex_state = 11}, + [3833] = {.lex_state = 66, .external_lex_state = 11}, [3834] = {.lex_state = 66, .external_lex_state = 11}, [3835] = {.lex_state = 66, .external_lex_state = 11}, [3836] = {.lex_state = 66, .external_lex_state = 11}, [3837] = {.lex_state = 66, .external_lex_state = 11}, - [3838] = {.lex_state = 66, .external_lex_state = 11}, + [3838] = {.lex_state = 66, .external_lex_state = 16}, [3839] = {.lex_state = 66, .external_lex_state = 11}, - [3840] = {.lex_state = 66, .external_lex_state = 14}, + [3840] = {.lex_state = 66, .external_lex_state = 11}, [3841] = {.lex_state = 66, .external_lex_state = 11}, - [3842] = {.lex_state = 66, .external_lex_state = 14}, + [3842] = {.lex_state = 66, .external_lex_state = 11}, [3843] = {.lex_state = 66, .external_lex_state = 11}, [3844] = {.lex_state = 66, .external_lex_state = 11}, - [3845] = {.lex_state = 66, .external_lex_state = 11}, + [3845] = {.lex_state = 66, .external_lex_state = 15}, [3846] = {.lex_state = 66, .external_lex_state = 11}, - [3847] = {.lex_state = 66, .external_lex_state = 12}, - [3848] = {.lex_state = 66, .external_lex_state = 15}, + [3847] = {.lex_state = 66, .external_lex_state = 11}, + [3848] = {.lex_state = 66, .external_lex_state = 11}, [3849] = {.lex_state = 66, .external_lex_state = 11}, - [3850] = {.lex_state = 66, .external_lex_state = 11}, - [3851] = {.lex_state = 66, .external_lex_state = 14}, + [3850] = {.lex_state = 66, .external_lex_state = 6}, + [3851] = {.lex_state = 66, .external_lex_state = 12}, [3852] = {.lex_state = 66, .external_lex_state = 11}, - [3853] = {.lex_state = 66, .external_lex_state = 11}, + [3853] = {.lex_state = 66, .external_lex_state = 14}, [3854] = {.lex_state = 66, .external_lex_state = 11}, - [3855] = {.lex_state = 66, .external_lex_state = 6}, - [3856] = {.lex_state = 66, .external_lex_state = 11}, - [3857] = {.lex_state = 15, .external_lex_state = 14}, - [3858] = {.lex_state = 66, .external_lex_state = 11}, - [3859] = {.lex_state = 15, .external_lex_state = 16}, + [3855] = {.lex_state = 66, .external_lex_state = 15}, + [3856] = {.lex_state = 66, .external_lex_state = 15}, + [3857] = {.lex_state = 66, .external_lex_state = 11}, + [3858] = {.lex_state = 66, .external_lex_state = 14}, + [3859] = {.lex_state = 66, .external_lex_state = 12}, [3860] = {.lex_state = 66, .external_lex_state = 11}, - [3861] = {.lex_state = 66, .external_lex_state = 14}, - [3862] = {.lex_state = 66, .external_lex_state = 11}, - [3863] = {.lex_state = 66, .external_lex_state = 11}, - [3864] = {.lex_state = 66, .external_lex_state = 12}, + [3861] = {.lex_state = 66, .external_lex_state = 11}, + [3862] = {.lex_state = 66, .external_lex_state = 14}, + [3863] = {.lex_state = 66, .external_lex_state = 14}, + [3864] = {.lex_state = 66, .external_lex_state = 11}, [3865] = {.lex_state = 66, .external_lex_state = 11}, - [3866] = {.lex_state = 66, .external_lex_state = 16}, - [3867] = {.lex_state = 66, .external_lex_state = 14}, - [3868] = {.lex_state = 66, .external_lex_state = 11}, - [3869] = {.lex_state = 66, .external_lex_state = 11}, - [3870] = {.lex_state = 66, .external_lex_state = 15}, - [3871] = {.lex_state = 66, .external_lex_state = 11}, + [3866] = {.lex_state = 66, .external_lex_state = 15}, + [3867] = {.lex_state = 66, .external_lex_state = 16}, + [3868] = {.lex_state = 66, .external_lex_state = 16}, + [3869] = {.lex_state = 66, .external_lex_state = 8}, + [3870] = {.lex_state = 66, .external_lex_state = 14}, + [3871] = {.lex_state = 66, .external_lex_state = 12}, [3872] = {.lex_state = 66, .external_lex_state = 11}, - [3873] = {.lex_state = 66, .external_lex_state = 11}, + [3873] = {.lex_state = 66, .external_lex_state = 15}, [3874] = {.lex_state = 66, .external_lex_state = 11}, - [3875] = {.lex_state = 66, .external_lex_state = 11}, + [3875] = {.lex_state = 66, .external_lex_state = 14}, [3876] = {.lex_state = 66, .external_lex_state = 11}, - [3877] = {.lex_state = 66, .external_lex_state = 11}, + [3877] = {.lex_state = 66, .external_lex_state = 14}, [3878] = {.lex_state = 66, .external_lex_state = 11}, [3879] = {.lex_state = 66, .external_lex_state = 11}, [3880] = {.lex_state = 66, .external_lex_state = 11}, - [3881] = {.lex_state = 66, .external_lex_state = 14}, + [3881] = {.lex_state = 66, .external_lex_state = 11}, [3882] = {.lex_state = 66, .external_lex_state = 11}, - [3883] = {.lex_state = 66, .external_lex_state = 7}, + [3883] = {.lex_state = 15, .external_lex_state = 14}, [3884] = {.lex_state = 66, .external_lex_state = 11}, - [3885] = {.lex_state = 66, .external_lex_state = 11}, + [3885] = {.lex_state = 66, .external_lex_state = 12}, [3886] = {.lex_state = 66, .external_lex_state = 11}, [3887] = {.lex_state = 66, .external_lex_state = 11}, [3888] = {.lex_state = 66, .external_lex_state = 11}, [3889] = {.lex_state = 66, .external_lex_state = 11}, [3890] = {.lex_state = 66, .external_lex_state = 11}, - [3891] = {.lex_state = 66, .external_lex_state = 14}, + [3891] = {.lex_state = 66, .external_lex_state = 16}, [3892] = {.lex_state = 66, .external_lex_state = 11}, - [3893] = {.lex_state = 66, .external_lex_state = 12}, - [3894] = {.lex_state = 66, .external_lex_state = 16}, - [3895] = {.lex_state = 66, .external_lex_state = 16}, - [3896] = {.lex_state = 66, .external_lex_state = 15}, - [3897] = {.lex_state = 66, .external_lex_state = 14}, - [3898] = {.lex_state = 66, .external_lex_state = 16}, - [3899] = {.lex_state = 12, .external_lex_state = 12}, - [3900] = {.lex_state = 66, .external_lex_state = 14}, + [3893] = {.lex_state = 66, .external_lex_state = 11}, + [3894] = {.lex_state = 66, .external_lex_state = 11}, + [3895] = {.lex_state = 66, .external_lex_state = 11}, + [3896] = {.lex_state = 66, .external_lex_state = 11}, + [3897] = {.lex_state = 66, .external_lex_state = 11}, + [3898] = {.lex_state = 66, .external_lex_state = 11}, + [3899] = {.lex_state = 66, .external_lex_state = 11}, + [3900] = {.lex_state = 66, .external_lex_state = 11}, [3901] = {.lex_state = 66, .external_lex_state = 11}, [3902] = {.lex_state = 66, .external_lex_state = 11}, - [3903] = {.lex_state = 66, .external_lex_state = 16}, - [3904] = {.lex_state = 66, .external_lex_state = 15}, - [3905] = {.lex_state = 66, .external_lex_state = 14}, - [3906] = {.lex_state = 66, .external_lex_state = 16}, + [3903] = {.lex_state = 66, .external_lex_state = 11}, + [3904] = {.lex_state = 66, .external_lex_state = 11}, + [3905] = {.lex_state = 66, .external_lex_state = 11}, + [3906] = {.lex_state = 66, .external_lex_state = 11}, [3907] = {.lex_state = 66, .external_lex_state = 11}, [3908] = {.lex_state = 66, .external_lex_state = 11}, [3909] = {.lex_state = 66, .external_lex_state = 11}, [3910] = {.lex_state = 66, .external_lex_state = 11}, [3911] = {.lex_state = 66, .external_lex_state = 11}, - [3912] = {.lex_state = 66, .external_lex_state = 11}, + [3912] = {.lex_state = 66, .external_lex_state = 16}, [3913] = {.lex_state = 66, .external_lex_state = 11}, [3914] = {.lex_state = 66, .external_lex_state = 11}, [3915] = {.lex_state = 66, .external_lex_state = 11}, [3916] = {.lex_state = 66, .external_lex_state = 11}, [3917] = {.lex_state = 66, .external_lex_state = 11}, - [3918] = {.lex_state = 66, .external_lex_state = 15}, + [3918] = {.lex_state = 66, .external_lex_state = 11}, [3919] = {.lex_state = 66, .external_lex_state = 11}, [3920] = {.lex_state = 66, .external_lex_state = 11}, [3921] = {.lex_state = 66, .external_lex_state = 11}, - [3922] = {.lex_state = 66, .external_lex_state = 11}, + [3922] = {.lex_state = 15, .external_lex_state = 12}, [3923] = {.lex_state = 66, .external_lex_state = 11}, [3924] = {.lex_state = 66, .external_lex_state = 11}, - [3925] = {.lex_state = 15, .external_lex_state = 15}, - [3926] = {.lex_state = 66, .external_lex_state = 11}, - [3927] = {.lex_state = 66, .external_lex_state = 15}, - [3928] = {.lex_state = 66, .external_lex_state = 15}, - [3929] = {.lex_state = 15, .external_lex_state = 16}, + [3925] = {.lex_state = 66, .external_lex_state = 11}, + [3926] = {.lex_state = 66, .external_lex_state = 15}, + [3927] = {.lex_state = 66, .external_lex_state = 11}, + [3928] = {.lex_state = 66, .external_lex_state = 14}, + [3929] = {.lex_state = 66, .external_lex_state = 16}, [3930] = {.lex_state = 66, .external_lex_state = 11}, - [3931] = {.lex_state = 66, .external_lex_state = 11}, - [3932] = {.lex_state = 66, .external_lex_state = 15}, + [3931] = {.lex_state = 66, .external_lex_state = 14}, + [3932] = {.lex_state = 66, .external_lex_state = 11}, [3933] = {.lex_state = 66, .external_lex_state = 11}, [3934] = {.lex_state = 66, .external_lex_state = 11}, - [3935] = {.lex_state = 66, .external_lex_state = 15}, - [3936] = {.lex_state = 15, .external_lex_state = 15}, - [3937] = {.lex_state = 66, .external_lex_state = 16}, - [3938] = {.lex_state = 66, .external_lex_state = 14}, - [3939] = {.lex_state = 66, .external_lex_state = 15}, - [3940] = {.lex_state = 66, .external_lex_state = 11}, + [3935] = {.lex_state = 66, .external_lex_state = 11}, + [3936] = {.lex_state = 66, .external_lex_state = 15}, + [3937] = {.lex_state = 66, .external_lex_state = 11}, + [3938] = {.lex_state = 15, .external_lex_state = 16}, + [3939] = {.lex_state = 66, .external_lex_state = 11}, + [3940] = {.lex_state = 66, .external_lex_state = 14}, [3941] = {.lex_state = 66, .external_lex_state = 11}, [3942] = {.lex_state = 66, .external_lex_state = 11}, - [3943] = {.lex_state = 66, .external_lex_state = 11}, - [3944] = {.lex_state = 66, .external_lex_state = 16}, - [3945] = {.lex_state = 66, .external_lex_state = 11}, - [3946] = {.lex_state = 66, .external_lex_state = 16}, - [3947] = {.lex_state = 66, .external_lex_state = 14}, - [3948] = {.lex_state = 66, .external_lex_state = 16}, - [3949] = {.lex_state = 66, .external_lex_state = 12}, - [3950] = {.lex_state = 66, .external_lex_state = 12}, - [3951] = {.lex_state = 66, .external_lex_state = 11}, - [3952] = {.lex_state = 66, .external_lex_state = 11}, + [3943] = {.lex_state = 66, .external_lex_state = 15}, + [3944] = {.lex_state = 66, .external_lex_state = 15}, + [3945] = {.lex_state = 12, .external_lex_state = 12}, + [3946] = {.lex_state = 66, .external_lex_state = 14}, + [3947] = {.lex_state = 66, .external_lex_state = 11}, + [3948] = {.lex_state = 66, .external_lex_state = 14}, + [3949] = {.lex_state = 15, .external_lex_state = 16}, + [3950] = {.lex_state = 66, .external_lex_state = 15}, + [3951] = {.lex_state = 66, .external_lex_state = 14}, + [3952] = {.lex_state = 66, .external_lex_state = 16}, [3953] = {.lex_state = 66, .external_lex_state = 11}, - [3954] = {.lex_state = 66, .external_lex_state = 16}, - [3955] = {.lex_state = 66, .external_lex_state = 16}, - [3956] = {.lex_state = 66, .external_lex_state = 11}, + [3954] = {.lex_state = 66, .external_lex_state = 15}, + [3955] = {.lex_state = 66, .external_lex_state = 15}, + [3956] = {.lex_state = 66, .external_lex_state = 14}, [3957] = {.lex_state = 66, .external_lex_state = 11}, [3958] = {.lex_state = 66, .external_lex_state = 11}, - [3959] = {.lex_state = 66, .external_lex_state = 12}, - [3960] = {.lex_state = 66, .external_lex_state = 11}, - [3961] = {.lex_state = 15, .external_lex_state = 14}, - [3962] = {.lex_state = 66, .external_lex_state = 12}, + [3959] = {.lex_state = 66, .external_lex_state = 11}, + [3960] = {.lex_state = 66, .external_lex_state = 14}, + [3961] = {.lex_state = 66, .external_lex_state = 11}, + [3962] = {.lex_state = 66, .external_lex_state = 11}, [3963] = {.lex_state = 66, .external_lex_state = 11}, - [3964] = {.lex_state = 15, .external_lex_state = 15}, + [3964] = {.lex_state = 66, .external_lex_state = 14}, [3965] = {.lex_state = 66, .external_lex_state = 14}, - [3966] = {.lex_state = 66, .external_lex_state = 15}, - [3967] = {.lex_state = 66, .external_lex_state = 15}, - [3968] = {.lex_state = 66, .external_lex_state = 11}, - [3969] = {.lex_state = 66, .external_lex_state = 11}, - [3970] = {.lex_state = 66, .external_lex_state = 11}, - [3971] = {.lex_state = 66, .external_lex_state = 8}, + [3966] = {.lex_state = 66, .external_lex_state = 11}, + [3967] = {.lex_state = 66, .external_lex_state = 11}, + [3968] = {.lex_state = 66, .external_lex_state = 14}, + [3969] = {.lex_state = 66, .external_lex_state = 12}, + [3970] = {.lex_state = 15, .external_lex_state = 14}, + [3971] = {.lex_state = 66, .external_lex_state = 11}, [3972] = {.lex_state = 66, .external_lex_state = 11}, - [3973] = {.lex_state = 15, .external_lex_state = 12}, + [3973] = {.lex_state = 66, .external_lex_state = 12}, [3974] = {.lex_state = 66, .external_lex_state = 12}, - [3975] = {.lex_state = 66, .external_lex_state = 12}, - [3976] = {.lex_state = 66, .external_lex_state = 11}, - [3977] = {.lex_state = 66, .external_lex_state = 11}, - [3978] = {.lex_state = 66, .external_lex_state = 11}, - [3979] = {.lex_state = 66, .external_lex_state = 15}, - [3980] = {.lex_state = 66, .external_lex_state = 11}, - [3981] = {.lex_state = 66, .external_lex_state = 11}, - [3982] = {.lex_state = 66, .external_lex_state = 12}, - [3983] = {.lex_state = 66, .external_lex_state = 11}, - [3984] = {.lex_state = 66, .external_lex_state = 11}, - [3985] = {.lex_state = 66, .external_lex_state = 12}, - [3986] = {.lex_state = 66, .external_lex_state = 11}, + [3975] = {.lex_state = 66, .external_lex_state = 15}, + [3976] = {.lex_state = 66, .external_lex_state = 7}, + [3977] = {.lex_state = 66, .external_lex_state = 16}, + [3978] = {.lex_state = 66, .external_lex_state = 12}, + [3979] = {.lex_state = 66, .external_lex_state = 16}, + [3980] = {.lex_state = 66, .external_lex_state = 12}, + [3981] = {.lex_state = 66, .external_lex_state = 12}, + [3982] = {.lex_state = 66, .external_lex_state = 16}, + [3983] = {.lex_state = 15, .external_lex_state = 15}, + [3984] = {.lex_state = 66, .external_lex_state = 12}, + [3985] = {.lex_state = 66, .external_lex_state = 16}, + [3986] = {.lex_state = 66, .external_lex_state = 16}, [3987] = {.lex_state = 66, .external_lex_state = 14}, - [3988] = {.lex_state = 66, .external_lex_state = 14}, + [3988] = {.lex_state = 15, .external_lex_state = 15}, [3989] = {.lex_state = 66, .external_lex_state = 11}, [3990] = {.lex_state = 66, .external_lex_state = 11}, - [3991] = {.lex_state = 66, .external_lex_state = 12}, + [3991] = {.lex_state = 66, .external_lex_state = 11}, [3992] = {.lex_state = 66, .external_lex_state = 11}, [3993] = {.lex_state = 66, .external_lex_state = 11}, - [3994] = {.lex_state = 66, .external_lex_state = 16}, - [3995] = {.lex_state = 66, .external_lex_state = 14}, - [3996] = {.lex_state = 66, .external_lex_state = 12}, - [3997] = {.lex_state = 18, .external_lex_state = 11}, + [3994] = {.lex_state = 66, .external_lex_state = 11}, + [3995] = {.lex_state = 66, .external_lex_state = 12}, + [3996] = {.lex_state = 66, .external_lex_state = 11}, + [3997] = {.lex_state = 15, .external_lex_state = 15}, [3998] = {.lex_state = 66, .external_lex_state = 11}, - [3999] = {.lex_state = 66, .external_lex_state = 11}, - [4000] = {.lex_state = 66, .external_lex_state = 14}, - [4001] = {.lex_state = 66, .external_lex_state = 14}, - [4002] = {.lex_state = 66, .external_lex_state = 14}, - [4003] = {.lex_state = 66, .external_lex_state = 14}, + [3999] = {.lex_state = 66, .external_lex_state = 12}, + [4000] = {.lex_state = 66, .external_lex_state = 11}, + [4001] = {.lex_state = 66, .external_lex_state = 12}, + [4002] = {.lex_state = 66, .external_lex_state = 16}, + [4003] = {.lex_state = 66, .external_lex_state = 11}, [4004] = {.lex_state = 66, .external_lex_state = 14}, - [4005] = {.lex_state = 66, .external_lex_state = 15}, - [4006] = {.lex_state = 66, .external_lex_state = 12}, + [4005] = {.lex_state = 5, .external_lex_state = 12}, + [4006] = {.lex_state = 66, .external_lex_state = 14}, [4007] = {.lex_state = 66, .external_lex_state = 14}, - [4008] = {.lex_state = 66, .external_lex_state = 14}, - [4009] = {.lex_state = 66, .external_lex_state = 14}, - [4010] = {.lex_state = 66, .external_lex_state = 14}, - [4011] = {.lex_state = 67, .external_lex_state = 17}, - [4012] = {.lex_state = 66, .external_lex_state = 16}, - [4013] = {.lex_state = 66, .external_lex_state = 14}, - [4014] = {.lex_state = 0, .external_lex_state = 18}, + [4008] = {.lex_state = 0, .external_lex_state = 18}, + [4009] = {.lex_state = 66, .external_lex_state = 11}, + [4010] = {.lex_state = 0, .external_lex_state = 18}, + [4011] = {.lex_state = 66, .external_lex_state = 12}, + [4012] = {.lex_state = 66, .external_lex_state = 11}, + [4013] = {.lex_state = 15, .external_lex_state = 16}, + [4014] = {.lex_state = 66, .external_lex_state = 11}, [4015] = {.lex_state = 66, .external_lex_state = 11}, - [4016] = {.lex_state = 18, .external_lex_state = 11}, + [4016] = {.lex_state = 66, .external_lex_state = 15}, [4017] = {.lex_state = 0, .external_lex_state = 18}, - [4018] = {.lex_state = 0, .external_lex_state = 18}, - [4019] = {.lex_state = 66, .external_lex_state = 14}, - [4020] = {.lex_state = 66, .external_lex_state = 12}, - [4021] = {.lex_state = 66, .external_lex_state = 14}, - [4022] = {.lex_state = 66, .external_lex_state = 14}, - [4023] = {.lex_state = 66, .external_lex_state = 14}, - [4024] = {.lex_state = 66, .external_lex_state = 16}, - [4025] = {.lex_state = 66, .external_lex_state = 11}, + [4018] = {.lex_state = 66, .external_lex_state = 14}, + [4019] = {.lex_state = 66, .external_lex_state = 15}, + [4020] = {.lex_state = 66, .external_lex_state = 11}, + [4021] = {.lex_state = 18, .external_lex_state = 11}, + [4022] = {.lex_state = 66, .external_lex_state = 11}, + [4023] = {.lex_state = 66, .external_lex_state = 11}, + [4024] = {.lex_state = 66, .external_lex_state = 14}, + [4025] = {.lex_state = 66, .external_lex_state = 12}, [4026] = {.lex_state = 66, .external_lex_state = 16}, - [4027] = {.lex_state = 66, .external_lex_state = 16}, - [4028] = {.lex_state = 66, .external_lex_state = 14}, - [4029] = {.lex_state = 66, .external_lex_state = 14}, - [4030] = {.lex_state = 66, .external_lex_state = 14}, - [4031] = {.lex_state = 18, .external_lex_state = 11}, - [4032] = {.lex_state = 66, .external_lex_state = 12}, - [4033] = {.lex_state = 66, .external_lex_state = 15}, - [4034] = {.lex_state = 66, .external_lex_state = 15}, - [4035] = {.lex_state = 66, .external_lex_state = 14}, - [4036] = {.lex_state = 66, .external_lex_state = 11}, - [4037] = {.lex_state = 15, .external_lex_state = 16}, - [4038] = {.lex_state = 18, .external_lex_state = 11}, - [4039] = {.lex_state = 66, .external_lex_state = 12}, - [4040] = {.lex_state = 0, .external_lex_state = 18}, - [4041] = {.lex_state = 66, .external_lex_state = 15}, - [4042] = {.lex_state = 66, .external_lex_state = 12}, - [4043] = {.lex_state = 66, .external_lex_state = 11}, - [4044] = {.lex_state = 66, .external_lex_state = 16}, + [4027] = {.lex_state = 66, .external_lex_state = 15}, + [4028] = {.lex_state = 66, .external_lex_state = 11}, + [4029] = {.lex_state = 66, .external_lex_state = 15}, + [4030] = {.lex_state = 66, .external_lex_state = 15}, + [4031] = {.lex_state = 66, .external_lex_state = 14}, + [4032] = {.lex_state = 66, .external_lex_state = 16}, + [4033] = {.lex_state = 66, .external_lex_state = 14}, + [4034] = {.lex_state = 66, .external_lex_state = 16}, + [4035] = {.lex_state = 66, .external_lex_state = 16}, + [4036] = {.lex_state = 66, .external_lex_state = 14}, + [4037] = {.lex_state = 66, .external_lex_state = 12}, + [4038] = {.lex_state = 67, .external_lex_state = 17}, + [4039] = {.lex_state = 66, .external_lex_state = 14}, + [4040] = {.lex_state = 66, .external_lex_state = 14}, + [4041] = {.lex_state = 66, .external_lex_state = 11}, + [4042] = {.lex_state = 66, .external_lex_state = 11}, + [4043] = {.lex_state = 66, .external_lex_state = 15}, + [4044] = {.lex_state = 18, .external_lex_state = 11}, [4045] = {.lex_state = 66, .external_lex_state = 16}, - [4046] = {.lex_state = 0, .external_lex_state = 18}, - [4047] = {.lex_state = 66, .external_lex_state = 12}, - [4048] = {.lex_state = 0, .external_lex_state = 18}, + [4046] = {.lex_state = 67, .external_lex_state = 17}, + [4047] = {.lex_state = 66, .external_lex_state = 16}, + [4048] = {.lex_state = 66, .external_lex_state = 11}, [4049] = {.lex_state = 66, .external_lex_state = 11}, [4050] = {.lex_state = 66, .external_lex_state = 14}, - [4051] = {.lex_state = 66, .external_lex_state = 11}, - [4052] = {.lex_state = 18, .external_lex_state = 11}, + [4051] = {.lex_state = 66, .external_lex_state = 14}, + [4052] = {.lex_state = 66, .external_lex_state = 14}, [4053] = {.lex_state = 18, .external_lex_state = 11}, - [4054] = {.lex_state = 66, .external_lex_state = 12}, - [4055] = {.lex_state = 66, .external_lex_state = 14}, - [4056] = {.lex_state = 66, .external_lex_state = 12}, + [4054] = {.lex_state = 67, .external_lex_state = 17}, + [4055] = {.lex_state = 66, .external_lex_state = 12}, + [4056] = {.lex_state = 67, .external_lex_state = 17}, [4057] = {.lex_state = 66, .external_lex_state = 11}, - [4058] = {.lex_state = 66, .external_lex_state = 16}, - [4059] = {.lex_state = 66, .external_lex_state = 16}, - [4060] = {.lex_state = 66, .external_lex_state = 12}, - [4061] = {.lex_state = 66, .external_lex_state = 11}, - [4062] = {.lex_state = 66, .external_lex_state = 11}, - [4063] = {.lex_state = 66, .external_lex_state = 12}, - [4064] = {.lex_state = 66, .external_lex_state = 15}, - [4065] = {.lex_state = 66, .external_lex_state = 12}, - [4066] = {.lex_state = 66, .external_lex_state = 12}, - [4067] = {.lex_state = 66, .external_lex_state = 16}, - [4068] = {.lex_state = 66, .external_lex_state = 15}, - [4069] = {.lex_state = 66, .external_lex_state = 16}, - [4070] = {.lex_state = 66, .external_lex_state = 14}, - [4071] = {.lex_state = 15, .external_lex_state = 15}, - [4072] = {.lex_state = 67, .external_lex_state = 17}, - [4073] = {.lex_state = 66, .external_lex_state = 12}, - [4074] = {.lex_state = 66, .external_lex_state = 11}, - [4075] = {.lex_state = 66, .external_lex_state = 11}, - [4076] = {.lex_state = 66, .external_lex_state = 15}, - [4077] = {.lex_state = 66, .external_lex_state = 11}, - [4078] = {.lex_state = 66, .external_lex_state = 11}, - [4079] = {.lex_state = 66, .external_lex_state = 15}, - [4080] = {.lex_state = 66, .external_lex_state = 14}, - [4081] = {.lex_state = 66, .external_lex_state = 16}, - [4082] = {.lex_state = 66, .external_lex_state = 12}, - [4083] = {.lex_state = 66, .external_lex_state = 12}, - [4084] = {.lex_state = 66, .external_lex_state = 16}, - [4085] = {.lex_state = 66, .external_lex_state = 12}, - [4086] = {.lex_state = 5, .external_lex_state = 12}, - [4087] = {.lex_state = 18, .external_lex_state = 11}, - [4088] = {.lex_state = 66, .external_lex_state = 15}, - [4089] = {.lex_state = 66, .external_lex_state = 11}, + [4058] = {.lex_state = 66, .external_lex_state = 11}, + [4059] = {.lex_state = 15, .external_lex_state = 16}, + [4060] = {.lex_state = 0, .external_lex_state = 18}, + [4061] = {.lex_state = 66, .external_lex_state = 16}, + [4062] = {.lex_state = 66, .external_lex_state = 14}, + [4063] = {.lex_state = 66, .external_lex_state = 14}, + [4064] = {.lex_state = 12, .external_lex_state = 11}, + [4065] = {.lex_state = 66, .external_lex_state = 15}, + [4066] = {.lex_state = 66, .external_lex_state = 15}, + [4067] = {.lex_state = 66, .external_lex_state = 14}, + [4068] = {.lex_state = 18, .external_lex_state = 11}, + [4069] = {.lex_state = 66, .external_lex_state = 14}, + [4070] = {.lex_state = 66, .external_lex_state = 12}, + [4071] = {.lex_state = 66, .external_lex_state = 12}, + [4072] = {.lex_state = 66, .external_lex_state = 15}, + [4073] = {.lex_state = 66, .external_lex_state = 11}, + [4074] = {.lex_state = 66, .external_lex_state = 12}, + [4075] = {.lex_state = 66, .external_lex_state = 15}, + [4076] = {.lex_state = 66, .external_lex_state = 14}, + [4077] = {.lex_state = 66, .external_lex_state = 16}, + [4078] = {.lex_state = 15, .external_lex_state = 16}, + [4079] = {.lex_state = 66, .external_lex_state = 16}, + [4080] = {.lex_state = 66, .external_lex_state = 15}, + [4081] = {.lex_state = 5, .external_lex_state = 12}, + [4082] = {.lex_state = 66, .external_lex_state = 15}, + [4083] = {.lex_state = 66, .external_lex_state = 16}, + [4084] = {.lex_state = 66, .external_lex_state = 15}, + [4085] = {.lex_state = 66, .external_lex_state = 11}, + [4086] = {.lex_state = 66, .external_lex_state = 12}, + [4087] = {.lex_state = 66, .external_lex_state = 15}, + [4088] = {.lex_state = 66, .external_lex_state = 16}, + [4089] = {.lex_state = 66, .external_lex_state = 16}, [4090] = {.lex_state = 66, .external_lex_state = 15}, - [4091] = {.lex_state = 18, .external_lex_state = 11}, - [4092] = {.lex_state = 66, .external_lex_state = 15}, - [4093] = {.lex_state = 18, .external_lex_state = 11}, - [4094] = {.lex_state = 18, .external_lex_state = 11}, - [4095] = {.lex_state = 15, .external_lex_state = 16}, - [4096] = {.lex_state = 66, .external_lex_state = 15}, - [4097] = {.lex_state = 15, .external_lex_state = 16}, - [4098] = {.lex_state = 66, .external_lex_state = 16}, - [4099] = {.lex_state = 5, .external_lex_state = 12}, - [4100] = {.lex_state = 12, .external_lex_state = 11}, + [4091] = {.lex_state = 66, .external_lex_state = 14}, + [4092] = {.lex_state = 66, .external_lex_state = 12}, + [4093] = {.lex_state = 66, .external_lex_state = 14}, + [4094] = {.lex_state = 66, .external_lex_state = 12}, + [4095] = {.lex_state = 66, .external_lex_state = 14}, + [4096] = {.lex_state = 18, .external_lex_state = 11}, + [4097] = {.lex_state = 18, .external_lex_state = 11}, + [4098] = {.lex_state = 18, .external_lex_state = 11}, + [4099] = {.lex_state = 66, .external_lex_state = 16}, + [4100] = {.lex_state = 66, .external_lex_state = 14}, [4101] = {.lex_state = 66, .external_lex_state = 12}, - [4102] = {.lex_state = 66, .external_lex_state = 12}, + [4102] = {.lex_state = 66, .external_lex_state = 14}, [4103] = {.lex_state = 66, .external_lex_state = 15}, [4104] = {.lex_state = 66, .external_lex_state = 14}, - [4105] = {.lex_state = 66, .external_lex_state = 15}, - [4106] = {.lex_state = 66, .external_lex_state = 12}, - [4107] = {.lex_state = 66, .external_lex_state = 14}, - [4108] = {.lex_state = 66, .external_lex_state = 11}, + [4105] = {.lex_state = 66, .external_lex_state = 12}, + [4106] = {.lex_state = 0, .external_lex_state = 18}, + [4107] = {.lex_state = 0, .external_lex_state = 18}, + [4108] = {.lex_state = 0, .external_lex_state = 18}, [4109] = {.lex_state = 66, .external_lex_state = 16}, - [4110] = {.lex_state = 66, .external_lex_state = 16}, - [4111] = {.lex_state = 66, .external_lex_state = 12}, - [4112] = {.lex_state = 66, .external_lex_state = 16}, - [4113] = {.lex_state = 66, .external_lex_state = 12}, - [4114] = {.lex_state = 66, .external_lex_state = 11}, - [4115] = {.lex_state = 0, .external_lex_state = 18}, - [4116] = {.lex_state = 67, .external_lex_state = 17}, - [4117] = {.lex_state = 66, .external_lex_state = 15}, + [4110] = {.lex_state = 66, .external_lex_state = 12}, + [4111] = {.lex_state = 66, .external_lex_state = 14}, + [4112] = {.lex_state = 66, .external_lex_state = 12}, + [4113] = {.lex_state = 66, .external_lex_state = 14}, + [4114] = {.lex_state = 15, .external_lex_state = 15}, + [4115] = {.lex_state = 66, .external_lex_state = 12}, + [4116] = {.lex_state = 66, .external_lex_state = 11}, + [4117] = {.lex_state = 66, .external_lex_state = 12}, [4118] = {.lex_state = 66, .external_lex_state = 11}, - [4119] = {.lex_state = 12, .external_lex_state = 11}, - [4120] = {.lex_state = 0, .external_lex_state = 18}, - [4121] = {.lex_state = 66, .external_lex_state = 14}, - [4122] = {.lex_state = 66, .external_lex_state = 14}, - [4123] = {.lex_state = 66, .external_lex_state = 15}, - [4124] = {.lex_state = 66, .external_lex_state = 15}, + [4119] = {.lex_state = 66, .external_lex_state = 16}, + [4120] = {.lex_state = 66, .external_lex_state = 14}, + [4121] = {.lex_state = 66, .external_lex_state = 16}, + [4122] = {.lex_state = 66, .external_lex_state = 12}, + [4123] = {.lex_state = 66, .external_lex_state = 12}, + [4124] = {.lex_state = 66, .external_lex_state = 12}, [4125] = {.lex_state = 66, .external_lex_state = 15}, [4126] = {.lex_state = 66, .external_lex_state = 15}, [4127] = {.lex_state = 66, .external_lex_state = 15}, [4128] = {.lex_state = 66, .external_lex_state = 15}, [4129] = {.lex_state = 66, .external_lex_state = 15}, - [4130] = {.lex_state = 66, .external_lex_state = 16}, - [4131] = {.lex_state = 67, .external_lex_state = 17}, - [4132] = {.lex_state = 66, .external_lex_state = 11}, - [4133] = {.lex_state = 66, .external_lex_state = 15}, - [4134] = {.lex_state = 66, .external_lex_state = 14}, - [4135] = {.lex_state = 66, .external_lex_state = 12}, - [4136] = {.lex_state = 66, .external_lex_state = 15}, - [4137] = {.lex_state = 66, .external_lex_state = 16}, - [4138] = {.lex_state = 66, .external_lex_state = 14}, - [4139] = {.lex_state = 66, .external_lex_state = 20}, - [4140] = {.lex_state = 66, .external_lex_state = 20}, - [4141] = {.lex_state = 66, .external_lex_state = 14}, + [4130] = {.lex_state = 66, .external_lex_state = 11}, + [4131] = {.lex_state = 66, .external_lex_state = 15}, + [4132] = {.lex_state = 66, .external_lex_state = 12}, + [4133] = {.lex_state = 66, .external_lex_state = 12}, + [4134] = {.lex_state = 0, .external_lex_state = 18}, + [4135] = {.lex_state = 18, .external_lex_state = 11}, + [4136] = {.lex_state = 18, .external_lex_state = 11}, + [4137] = {.lex_state = 18, .external_lex_state = 11}, + [4138] = {.lex_state = 66, .external_lex_state = 12}, + [4139] = {.lex_state = 12, .external_lex_state = 11}, + [4140] = {.lex_state = 66, .external_lex_state = 16}, + [4141] = {.lex_state = 66, .external_lex_state = 15}, [4142] = {.lex_state = 66, .external_lex_state = 11}, - [4143] = {.lex_state = 66, .external_lex_state = 15}, + [4143] = {.lex_state = 66, .external_lex_state = 12}, [4144] = {.lex_state = 66, .external_lex_state = 20}, - [4145] = {.lex_state = 66, .external_lex_state = 11}, - [4146] = {.lex_state = 66, .external_lex_state = 16}, - [4147] = {.lex_state = 66, .external_lex_state = 16}, - [4148] = {.lex_state = 18, .external_lex_state = 12}, - [4149] = {.lex_state = 15, .external_lex_state = 16}, - [4150] = {.lex_state = 66, .external_lex_state = 15}, - [4151] = {.lex_state = 66, .external_lex_state = 12}, - [4152] = {.lex_state = 66, .external_lex_state = 11}, - [4153] = {.lex_state = 66, .external_lex_state = 16}, - [4154] = {.lex_state = 66, .external_lex_state = 11}, - [4155] = {.lex_state = 66, .external_lex_state = 16}, - [4156] = {.lex_state = 66, .external_lex_state = 16}, - [4157] = {.lex_state = 66, .external_lex_state = 12}, + [4145] = {.lex_state = 66, .external_lex_state = 14}, + [4146] = {.lex_state = 15, .external_lex_state = 16}, + [4147] = {.lex_state = 66, .external_lex_state = 20}, + [4148] = {.lex_state = 66, .external_lex_state = 12}, + [4149] = {.lex_state = 66, .external_lex_state = 15}, + [4150] = {.lex_state = 66, .external_lex_state = 12}, + [4151] = {.lex_state = 66, .external_lex_state = 14}, + [4152] = {.lex_state = 66, .external_lex_state = 12}, + [4153] = {.lex_state = 66, .external_lex_state = 12}, + [4154] = {.lex_state = 66, .external_lex_state = 12}, + [4155] = {.lex_state = 3, .external_lex_state = 15}, + [4156] = {.lex_state = 66, .external_lex_state = 20}, + [4157] = {.lex_state = 66, .external_lex_state = 11}, [4158] = {.lex_state = 66, .external_lex_state = 12}, - [4159] = {.lex_state = 66, .external_lex_state = 15}, - [4160] = {.lex_state = 66, .external_lex_state = 11}, - [4161] = {.lex_state = 66, .external_lex_state = 5}, - [4162] = {.lex_state = 66, .external_lex_state = 16}, - [4163] = {.lex_state = 66, .external_lex_state = 15}, - [4164] = {.lex_state = 3, .external_lex_state = 15}, - [4165] = {.lex_state = 15, .external_lex_state = 16}, - [4166] = {.lex_state = 66, .external_lex_state = 16}, - [4167] = {.lex_state = 66, .external_lex_state = 12}, - [4168] = {.lex_state = 66, .external_lex_state = 20}, - [4169] = {.lex_state = 66, .external_lex_state = 12}, - [4170] = {.lex_state = 3, .external_lex_state = 15}, - [4171] = {.lex_state = 66, .external_lex_state = 12}, - [4172] = {.lex_state = 66, .external_lex_state = 12}, - [4173] = {.lex_state = 66, .external_lex_state = 12}, - [4174] = {.lex_state = 66, .external_lex_state = 12}, - [4175] = {.lex_state = 66, .external_lex_state = 11}, + [4159] = {.lex_state = 66, .external_lex_state = 20}, + [4160] = {.lex_state = 66, .external_lex_state = 15}, + [4161] = {.lex_state = 66, .external_lex_state = 12}, + [4162] = {.lex_state = 66, .external_lex_state = 20}, + [4163] = {.lex_state = 66, .external_lex_state = 11}, + [4164] = {.lex_state = 66, .external_lex_state = 15}, + [4165] = {.lex_state = 66, .external_lex_state = 12}, + [4166] = {.lex_state = 66, .external_lex_state = 20}, + [4167] = {.lex_state = 66, .external_lex_state = 16}, + [4168] = {.lex_state = 66, .external_lex_state = 12}, + [4169] = {.lex_state = 66, .external_lex_state = 16}, + [4170] = {.lex_state = 66, .external_lex_state = 11}, + [4171] = {.lex_state = 66, .external_lex_state = 20}, + [4172] = {.lex_state = 66, .external_lex_state = 11}, + [4173] = {.lex_state = 66, .external_lex_state = 11}, + [4174] = {.lex_state = 66, .external_lex_state = 15}, + [4175] = {.lex_state = 66, .external_lex_state = 20}, [4176] = {.lex_state = 66, .external_lex_state = 12}, - [4177] = {.lex_state = 66, .external_lex_state = 20}, - [4178] = {.lex_state = 66, .external_lex_state = 11}, - [4179] = {.lex_state = 66, .external_lex_state = 12}, - [4180] = {.lex_state = 66, .external_lex_state = 20}, - [4181] = {.lex_state = 66, .external_lex_state = 15}, + [4177] = {.lex_state = 66, .external_lex_state = 12}, + [4178] = {.lex_state = 66, .external_lex_state = 16}, + [4179] = {.lex_state = 66, .external_lex_state = 15}, + [4180] = {.lex_state = 66, .external_lex_state = 11}, + [4181] = {.lex_state = 66, .external_lex_state = 11}, [4182] = {.lex_state = 66, .external_lex_state = 12}, - [4183] = {.lex_state = 66, .external_lex_state = 12}, - [4184] = {.lex_state = 66, .external_lex_state = 12}, - [4185] = {.lex_state = 15, .external_lex_state = 16}, - [4186] = {.lex_state = 66, .external_lex_state = 12}, - [4187] = {.lex_state = 66, .external_lex_state = 14}, + [4183] = {.lex_state = 66, .external_lex_state = 20}, + [4184] = {.lex_state = 66, .external_lex_state = 11}, + [4185] = {.lex_state = 66, .external_lex_state = 14}, + [4186] = {.lex_state = 66, .external_lex_state = 15}, + [4187] = {.lex_state = 66, .external_lex_state = 20}, [4188] = {.lex_state = 66, .external_lex_state = 12}, - [4189] = {.lex_state = 66, .external_lex_state = 20}, - [4190] = {.lex_state = 66, .external_lex_state = 12}, + [4189] = {.lex_state = 66, .external_lex_state = 15}, + [4190] = {.lex_state = 66, .external_lex_state = 20}, [4191] = {.lex_state = 66, .external_lex_state = 20}, - [4192] = {.lex_state = 66, .external_lex_state = 12}, - [4193] = {.lex_state = 66, .external_lex_state = 11}, - [4194] = {.lex_state = 66, .external_lex_state = 11}, - [4195] = {.lex_state = 66, .external_lex_state = 20}, - [4196] = {.lex_state = 66, .external_lex_state = 12}, - [4197] = {.lex_state = 66, .external_lex_state = 11}, - [4198] = {.lex_state = 66, .external_lex_state = 15}, - [4199] = {.lex_state = 66, .external_lex_state = 12}, + [4192] = {.lex_state = 66, .external_lex_state = 11}, + [4193] = {.lex_state = 66, .external_lex_state = 12}, + [4194] = {.lex_state = 66, .external_lex_state = 14}, + [4195] = {.lex_state = 66, .external_lex_state = 14}, + [4196] = {.lex_state = 66, .external_lex_state = 11}, + [4197] = {.lex_state = 18, .external_lex_state = 12}, + [4198] = {.lex_state = 66, .external_lex_state = 20}, + [4199] = {.lex_state = 66, .external_lex_state = 15}, [4200] = {.lex_state = 66, .external_lex_state = 11}, - [4201] = {.lex_state = 66, .external_lex_state = 11}, - [4202] = {.lex_state = 66, .external_lex_state = 12}, - [4203] = {.lex_state = 66, .external_lex_state = 12}, - [4204] = {.lex_state = 66, .external_lex_state = 20}, + [4201] = {.lex_state = 66, .external_lex_state = 20}, + [4202] = {.lex_state = 66, .external_lex_state = 11}, + [4203] = {.lex_state = 66, .external_lex_state = 11}, + [4204] = {.lex_state = 66, .external_lex_state = 11}, [4205] = {.lex_state = 66, .external_lex_state = 15}, [4206] = {.lex_state = 66, .external_lex_state = 12}, [4207] = {.lex_state = 66, .external_lex_state = 12}, - [4208] = {.lex_state = 18, .external_lex_state = 12}, - [4209] = {.lex_state = 12, .external_lex_state = 12}, - [4210] = {.lex_state = 15, .external_lex_state = 16}, - [4211] = {.lex_state = 15, .external_lex_state = 16}, + [4208] = {.lex_state = 66, .external_lex_state = 16}, + [4209] = {.lex_state = 66, .external_lex_state = 15}, + [4210] = {.lex_state = 66, .external_lex_state = 20}, + [4211] = {.lex_state = 66, .external_lex_state = 20}, [4212] = {.lex_state = 66, .external_lex_state = 12}, - [4213] = {.lex_state = 66, .external_lex_state = 12}, + [4213] = {.lex_state = 66, .external_lex_state = 11}, [4214] = {.lex_state = 66, .external_lex_state = 20}, - [4215] = {.lex_state = 66, .external_lex_state = 12}, - [4216] = {.lex_state = 66, .external_lex_state = 20}, - [4217] = {.lex_state = 66, .external_lex_state = 12}, - [4218] = {.lex_state = 66, .external_lex_state = 15}, - [4219] = {.lex_state = 66, .external_lex_state = 11}, + [4215] = {.lex_state = 66, .external_lex_state = 5}, + [4216] = {.lex_state = 66, .external_lex_state = 14}, + [4217] = {.lex_state = 15, .external_lex_state = 16}, + [4218] = {.lex_state = 66, .external_lex_state = 12}, + [4219] = {.lex_state = 66, .external_lex_state = 12}, [4220] = {.lex_state = 66, .external_lex_state = 12}, - [4221] = {.lex_state = 66, .external_lex_state = 20}, - [4222] = {.lex_state = 66, .external_lex_state = 12}, - [4223] = {.lex_state = 66, .external_lex_state = 16}, - [4224] = {.lex_state = 66, .external_lex_state = 12}, + [4221] = {.lex_state = 15, .external_lex_state = 16}, + [4222] = {.lex_state = 66, .external_lex_state = 16}, + [4223] = {.lex_state = 66, .external_lex_state = 12}, + [4224] = {.lex_state = 15, .external_lex_state = 16}, [4225] = {.lex_state = 66, .external_lex_state = 12}, - [4226] = {.lex_state = 66, .external_lex_state = 12}, - [4227] = {.lex_state = 66, .external_lex_state = 20}, - [4228] = {.lex_state = 66, .external_lex_state = 11}, - [4229] = {.lex_state = 66, .external_lex_state = 14}, - [4230] = {.lex_state = 66, .external_lex_state = 20}, - [4231] = {.lex_state = 66, .external_lex_state = 15}, + [4226] = {.lex_state = 66, .external_lex_state = 16}, + [4227] = {.lex_state = 66, .external_lex_state = 11}, + [4228] = {.lex_state = 66, .external_lex_state = 12}, + [4229] = {.lex_state = 66, .external_lex_state = 11}, + [4230] = {.lex_state = 66, .external_lex_state = 12}, + [4231] = {.lex_state = 66, .external_lex_state = 12}, [4232] = {.lex_state = 66, .external_lex_state = 12}, [4233] = {.lex_state = 66, .external_lex_state = 12}, [4234] = {.lex_state = 66, .external_lex_state = 12}, [4235] = {.lex_state = 66, .external_lex_state = 12}, - [4236] = {.lex_state = 66, .external_lex_state = 12}, - [4237] = {.lex_state = 66, .external_lex_state = 20}, + [4236] = {.lex_state = 66, .external_lex_state = 14}, + [4237] = {.lex_state = 66, .external_lex_state = 12}, [4238] = {.lex_state = 66, .external_lex_state = 12}, - [4239] = {.lex_state = 66, .external_lex_state = 12}, - [4240] = {.lex_state = 66, .external_lex_state = 12}, - [4241] = {.lex_state = 66, .external_lex_state = 11}, + [4239] = {.lex_state = 66, .external_lex_state = 15}, + [4240] = {.lex_state = 66, .external_lex_state = 14}, + [4241] = {.lex_state = 66, .external_lex_state = 12}, [4242] = {.lex_state = 66, .external_lex_state = 12}, - [4243] = {.lex_state = 66, .external_lex_state = 20}, + [4243] = {.lex_state = 66, .external_lex_state = 15}, [4244] = {.lex_state = 66, .external_lex_state = 12}, - [4245] = {.lex_state = 66, .external_lex_state = 11}, - [4246] = {.lex_state = 66, .external_lex_state = 12}, - [4247] = {.lex_state = 15, .external_lex_state = 16}, - [4248] = {.lex_state = 15, .external_lex_state = 16}, - [4249] = {.lex_state = 15, .external_lex_state = 16}, - [4250] = {.lex_state = 66, .external_lex_state = 15}, - [4251] = {.lex_state = 66, .external_lex_state = 12}, - [4252] = {.lex_state = 66, .external_lex_state = 14}, - [4253] = {.lex_state = 66, .external_lex_state = 12}, + [4245] = {.lex_state = 66, .external_lex_state = 12}, + [4246] = {.lex_state = 66, .external_lex_state = 14}, + [4247] = {.lex_state = 66, .external_lex_state = 15}, + [4248] = {.lex_state = 66, .external_lex_state = 15}, + [4249] = {.lex_state = 66, .external_lex_state = 16}, + [4250] = {.lex_state = 66, .external_lex_state = 20}, + [4251] = {.lex_state = 66, .external_lex_state = 15}, + [4252] = {.lex_state = 66, .external_lex_state = 11}, + [4253] = {.lex_state = 66, .external_lex_state = 16}, [4254] = {.lex_state = 66, .external_lex_state = 12}, - [4255] = {.lex_state = 66, .external_lex_state = 12}, - [4256] = {.lex_state = 66, .external_lex_state = 11}, + [4255] = {.lex_state = 66, .external_lex_state = 15}, + [4256] = {.lex_state = 66, .external_lex_state = 20}, [4257] = {.lex_state = 66, .external_lex_state = 12}, - [4258] = {.lex_state = 66, .external_lex_state = 11}, - [4259] = {.lex_state = 66, .external_lex_state = 15}, - [4260] = {.lex_state = 66, .external_lex_state = 12}, - [4261] = {.lex_state = 66, .external_lex_state = 20}, - [4262] = {.lex_state = 66, .external_lex_state = 11}, + [4258] = {.lex_state = 66, .external_lex_state = 15}, + [4259] = {.lex_state = 66, .external_lex_state = 12}, + [4260] = {.lex_state = 66, .external_lex_state = 15}, + [4261] = {.lex_state = 66, .external_lex_state = 12}, + [4262] = {.lex_state = 66, .external_lex_state = 15}, [4263] = {.lex_state = 66, .external_lex_state = 15}, - [4264] = {.lex_state = 66, .external_lex_state = 15}, + [4264] = {.lex_state = 66, .external_lex_state = 12}, [4265] = {.lex_state = 66, .external_lex_state = 12}, - [4266] = {.lex_state = 66, .external_lex_state = 20}, - [4267] = {.lex_state = 66, .external_lex_state = 20}, - [4268] = {.lex_state = 15, .external_lex_state = 11}, - [4269] = {.lex_state = 66, .external_lex_state = 15}, - [4270] = {.lex_state = 66, .external_lex_state = 16}, - [4271] = {.lex_state = 66, .external_lex_state = 12}, - [4272] = {.lex_state = 3, .external_lex_state = 15}, + [4266] = {.lex_state = 66, .external_lex_state = 12}, + [4267] = {.lex_state = 66, .external_lex_state = 11}, + [4268] = {.lex_state = 66, .external_lex_state = 16}, + [4269] = {.lex_state = 66, .external_lex_state = 16}, + [4270] = {.lex_state = 66, .external_lex_state = 20}, + [4271] = {.lex_state = 66, .external_lex_state = 11}, + [4272] = {.lex_state = 66, .external_lex_state = 14}, [4273] = {.lex_state = 66, .external_lex_state = 16}, - [4274] = {.lex_state = 15, .external_lex_state = 16}, - [4275] = {.lex_state = 66, .external_lex_state = 20}, - [4276] = {.lex_state = 66, .external_lex_state = 15}, - [4277] = {.lex_state = 66, .external_lex_state = 14}, - [4278] = {.lex_state = 66, .external_lex_state = 20}, - [4279] = {.lex_state = 66, .external_lex_state = 20}, - [4280] = {.lex_state = 66, .external_lex_state = 12}, - [4281] = {.lex_state = 66, .external_lex_state = 12}, - [4282] = {.lex_state = 66, .external_lex_state = 14}, - [4283] = {.lex_state = 66, .external_lex_state = 20}, - [4284] = {.lex_state = 12, .external_lex_state = 12}, - [4285] = {.lex_state = 66, .external_lex_state = 11}, - [4286] = {.lex_state = 66, .external_lex_state = 20}, - [4287] = {.lex_state = 66, .external_lex_state = 20}, - [4288] = {.lex_state = 66, .external_lex_state = 15}, - [4289] = {.lex_state = 66, .external_lex_state = 14}, - [4290] = {.lex_state = 66, .external_lex_state = 15}, - [4291] = {.lex_state = 66, .external_lex_state = 11}, - [4292] = {.lex_state = 66, .external_lex_state = 12}, + [4274] = {.lex_state = 66, .external_lex_state = 12}, + [4275] = {.lex_state = 12, .external_lex_state = 12}, + [4276] = {.lex_state = 66, .external_lex_state = 12}, + [4277] = {.lex_state = 66, .external_lex_state = 12}, + [4278] = {.lex_state = 66, .external_lex_state = 12}, + [4279] = {.lex_state = 66, .external_lex_state = 12}, + [4280] = {.lex_state = 66, .external_lex_state = 20}, + [4281] = {.lex_state = 66, .external_lex_state = 20}, + [4282] = {.lex_state = 66, .external_lex_state = 11}, + [4283] = {.lex_state = 15, .external_lex_state = 16}, + [4284] = {.lex_state = 66, .external_lex_state = 12}, + [4285] = {.lex_state = 15, .external_lex_state = 16}, + [4286] = {.lex_state = 15, .external_lex_state = 16}, + [4287] = {.lex_state = 66, .external_lex_state = 12}, + [4288] = {.lex_state = 66, .external_lex_state = 11}, + [4289] = {.lex_state = 66, .external_lex_state = 12}, + [4290] = {.lex_state = 18, .external_lex_state = 12}, + [4291] = {.lex_state = 18, .external_lex_state = 12}, + [4292] = {.lex_state = 3, .external_lex_state = 15}, [4293] = {.lex_state = 66, .external_lex_state = 11}, - [4294] = {.lex_state = 66, .external_lex_state = 11}, - [4295] = {.lex_state = 66, .external_lex_state = 14}, - [4296] = {.lex_state = 66, .external_lex_state = 12}, + [4294] = {.lex_state = 66, .external_lex_state = 14}, + [4295] = {.lex_state = 66, .external_lex_state = 11}, + [4296] = {.lex_state = 15, .external_lex_state = 16}, [4297] = {.lex_state = 66, .external_lex_state = 12}, - [4298] = {.lex_state = 66, .external_lex_state = 12}, - [4299] = {.lex_state = 66, .external_lex_state = 15}, - [4300] = {.lex_state = 66, .external_lex_state = 14}, - [4301] = {.lex_state = 66, .external_lex_state = 14}, - [4302] = {.lex_state = 66, .external_lex_state = 11}, - [4303] = {.lex_state = 66, .external_lex_state = 16}, - [4304] = {.lex_state = 66, .external_lex_state = 11}, - [4305] = {.lex_state = 66, .external_lex_state = 16}, - [4306] = {.lex_state = 15, .external_lex_state = 16}, - [4307] = {.lex_state = 66, .external_lex_state = 14}, - [4308] = {.lex_state = 66, .external_lex_state = 20}, - [4309] = {.lex_state = 66, .external_lex_state = 15}, - [4310] = {.lex_state = 18, .external_lex_state = 12}, - [4311] = {.lex_state = 66, .external_lex_state = 11}, - [4312] = {.lex_state = 15, .external_lex_state = 11}, - [4313] = {.lex_state = 66, .external_lex_state = 15}, - [4314] = {.lex_state = 66, .external_lex_state = 11}, - [4315] = {.lex_state = 66, .external_lex_state = 12}, - [4316] = {.lex_state = 66, .external_lex_state = 12}, - [4317] = {.lex_state = 66, .external_lex_state = 21}, + [4298] = {.lex_state = 15, .external_lex_state = 16}, + [4299] = {.lex_state = 66, .external_lex_state = 16}, + [4300] = {.lex_state = 66, .external_lex_state = 20}, + [4301] = {.lex_state = 66, .external_lex_state = 20}, + [4302] = {.lex_state = 66, .external_lex_state = 12}, + [4303] = {.lex_state = 66, .external_lex_state = 15}, + [4304] = {.lex_state = 66, .external_lex_state = 20}, + [4305] = {.lex_state = 66, .external_lex_state = 11}, + [4306] = {.lex_state = 66, .external_lex_state = 12}, + [4307] = {.lex_state = 66, .external_lex_state = 11}, + [4308] = {.lex_state = 15, .external_lex_state = 16}, + [4309] = {.lex_state = 66, .external_lex_state = 16}, + [4310] = {.lex_state = 66, .external_lex_state = 12}, + [4311] = {.lex_state = 66, .external_lex_state = 12}, + [4312] = {.lex_state = 3, .external_lex_state = 15}, + [4313] = {.lex_state = 15, .external_lex_state = 11}, + [4314] = {.lex_state = 66, .external_lex_state = 12}, + [4315] = {.lex_state = 66, .external_lex_state = 20}, + [4316] = {.lex_state = 66, .external_lex_state = 20}, + [4317] = {.lex_state = 66, .external_lex_state = 14}, [4318] = {.lex_state = 66, .external_lex_state = 12}, - [4319] = {.lex_state = 66, .external_lex_state = 15}, - [4320] = {.lex_state = 66, .external_lex_state = 14}, - [4321] = {.lex_state = 66, .external_lex_state = 16}, - [4322] = {.lex_state = 18, .external_lex_state = 12}, + [4319] = {.lex_state = 66, .external_lex_state = 12}, + [4320] = {.lex_state = 66, .external_lex_state = 11}, + [4321] = {.lex_state = 12, .external_lex_state = 12}, + [4322] = {.lex_state = 15, .external_lex_state = 11}, [4323] = {.lex_state = 66, .external_lex_state = 12}, - [4324] = {.lex_state = 66, .external_lex_state = 11}, - [4325] = {.lex_state = 66, .external_lex_state = 5}, - [4326] = {.lex_state = 66, .external_lex_state = 5}, - [4327] = {.lex_state = 66, .external_lex_state = 12}, - [4328] = {.lex_state = 66, .external_lex_state = 15}, - [4329] = {.lex_state = 66, .external_lex_state = 11}, - [4330] = {.lex_state = 66, .external_lex_state = 16}, - [4331] = {.lex_state = 66, .external_lex_state = 14}, + [4324] = {.lex_state = 66, .external_lex_state = 5}, + [4325] = {.lex_state = 66, .external_lex_state = 14}, + [4326] = {.lex_state = 66, .external_lex_state = 16}, + [4327] = {.lex_state = 66, .external_lex_state = 14}, + [4328] = {.lex_state = 66, .external_lex_state = 16}, + [4329] = {.lex_state = 66, .external_lex_state = 15}, + [4330] = {.lex_state = 66, .external_lex_state = 15}, + [4331] = {.lex_state = 66, .external_lex_state = 15}, [4332] = {.lex_state = 66, .external_lex_state = 16}, [4333] = {.lex_state = 66, .external_lex_state = 15}, - [4334] = {.lex_state = 66, .external_lex_state = 12}, - [4335] = {.lex_state = 66, .external_lex_state = 15}, + [4334] = {.lex_state = 66, .external_lex_state = 15}, + [4335] = {.lex_state = 66, .external_lex_state = 14}, [4336] = {.lex_state = 66, .external_lex_state = 14}, - [4337] = {.lex_state = 66, .external_lex_state = 5}, - [4338] = {.lex_state = 66, .external_lex_state = 14}, - [4339] = {.lex_state = 66, .external_lex_state = 14}, - [4340] = {.lex_state = 66, .external_lex_state = 14}, + [4337] = {.lex_state = 66, .external_lex_state = 15}, + [4338] = {.lex_state = 66, .external_lex_state = 11}, + [4339] = {.lex_state = 66, .external_lex_state = 11}, + [4340] = {.lex_state = 66, .external_lex_state = 15}, [4341] = {.lex_state = 66, .external_lex_state = 15}, - [4342] = {.lex_state = 66, .external_lex_state = 14}, - [4343] = {.lex_state = 18, .external_lex_state = 12}, - [4344] = {.lex_state = 66, .external_lex_state = 13}, - [4345] = {.lex_state = 66, .external_lex_state = 16}, + [4342] = {.lex_state = 66, .external_lex_state = 15}, + [4343] = {.lex_state = 66, .external_lex_state = 15}, + [4344] = {.lex_state = 66, .external_lex_state = 15}, + [4345] = {.lex_state = 66, .external_lex_state = 15}, [4346] = {.lex_state = 66, .external_lex_state = 15}, [4347] = {.lex_state = 66, .external_lex_state = 15}, [4348] = {.lex_state = 66, .external_lex_state = 15}, - [4349] = {.lex_state = 66, .external_lex_state = 14}, + [4349] = {.lex_state = 66, .external_lex_state = 15}, [4350] = {.lex_state = 66, .external_lex_state = 15}, - [4351] = {.lex_state = 66, .external_lex_state = 2}, + [4351] = {.lex_state = 12, .external_lex_state = 12}, [4352] = {.lex_state = 66, .external_lex_state = 15}, [4353] = {.lex_state = 66, .external_lex_state = 15}, - [4354] = {.lex_state = 66, .external_lex_state = 12}, - [4355] = {.lex_state = 66, .external_lex_state = 14}, + [4354] = {.lex_state = 66, .external_lex_state = 15}, + [4355] = {.lex_state = 66, .external_lex_state = 16}, [4356] = {.lex_state = 66, .external_lex_state = 16}, - [4357] = {.lex_state = 66, .external_lex_state = 11}, - [4358] = {.lex_state = 66, .external_lex_state = 12}, - [4359] = {.lex_state = 66, .external_lex_state = 15}, - [4360] = {.lex_state = 66, .external_lex_state = 12}, - [4361] = {.lex_state = 66, .external_lex_state = 13}, - [4362] = {.lex_state = 66, .external_lex_state = 12}, + [4357] = {.lex_state = 66, .external_lex_state = 16}, + [4358] = {.lex_state = 66, .external_lex_state = 16}, + [4359] = {.lex_state = 66, .external_lex_state = 16}, + [4360] = {.lex_state = 66, .external_lex_state = 13}, + [4361] = {.lex_state = 66, .external_lex_state = 21}, + [4362] = {.lex_state = 66, .external_lex_state = 21}, [4363] = {.lex_state = 66, .external_lex_state = 14}, - [4364] = {.lex_state = 66, .external_lex_state = 16}, + [4364] = {.lex_state = 66, .external_lex_state = 12}, [4365] = {.lex_state = 66, .external_lex_state = 11}, - [4366] = {.lex_state = 66, .external_lex_state = 16}, - [4367] = {.lex_state = 66, .external_lex_state = 14}, - [4368] = {.lex_state = 66, .external_lex_state = 11}, - [4369] = {.lex_state = 66, .external_lex_state = 15}, - [4370] = {.lex_state = 66, .external_lex_state = 21}, - [4371] = {.lex_state = 66, .external_lex_state = 12}, - [4372] = {.lex_state = 66, .external_lex_state = 15}, - [4373] = {.lex_state = 66, .external_lex_state = 16}, - [4374] = {.lex_state = 66, .external_lex_state = 16}, - [4375] = {.lex_state = 66, .external_lex_state = 16}, - [4376] = {.lex_state = 66, .external_lex_state = 14}, - [4377] = {.lex_state = 66, .external_lex_state = 21}, + [4366] = {.lex_state = 66, .external_lex_state = 14}, + [4367] = {.lex_state = 66, .external_lex_state = 21}, + [4368] = {.lex_state = 66, .external_lex_state = 14}, + [4369] = {.lex_state = 18, .external_lex_state = 12}, + [4370] = {.lex_state = 66, .external_lex_state = 12}, + [4371] = {.lex_state = 66, .external_lex_state = 11}, + [4372] = {.lex_state = 66, .external_lex_state = 14}, + [4373] = {.lex_state = 66, .external_lex_state = 12}, + [4374] = {.lex_state = 18, .external_lex_state = 12}, + [4375] = {.lex_state = 66, .external_lex_state = 12}, + [4376] = {.lex_state = 66, .external_lex_state = 11}, + [4377] = {.lex_state = 66, .external_lex_state = 14}, [4378] = {.lex_state = 66, .external_lex_state = 14}, - [4379] = {.lex_state = 66, .external_lex_state = 16}, - [4380] = {.lex_state = 66, .external_lex_state = 5}, - [4381] = {.lex_state = 66, .external_lex_state = 15}, - [4382] = {.lex_state = 66, .external_lex_state = 15}, - [4383] = {.lex_state = 66, .external_lex_state = 5}, - [4384] = {.lex_state = 66, .external_lex_state = 5}, - [4385] = {.lex_state = 66, .external_lex_state = 16}, - [4386] = {.lex_state = 66, .external_lex_state = 11}, - [4387] = {.lex_state = 66, .external_lex_state = 16}, + [4379] = {.lex_state = 18, .external_lex_state = 12}, + [4380] = {.lex_state = 66, .external_lex_state = 15}, + [4381] = {.lex_state = 66, .external_lex_state = 21}, + [4382] = {.lex_state = 66, .external_lex_state = 16}, + [4383] = {.lex_state = 66, .external_lex_state = 14}, + [4384] = {.lex_state = 66, .external_lex_state = 14}, + [4385] = {.lex_state = 66, .external_lex_state = 5}, + [4386] = {.lex_state = 18, .external_lex_state = 12}, + [4387] = {.lex_state = 66, .external_lex_state = 14}, [4388] = {.lex_state = 66, .external_lex_state = 15}, - [4389] = {.lex_state = 66, .external_lex_state = 15}, - [4390] = {.lex_state = 66, .external_lex_state = 16}, - [4391] = {.lex_state = 66, .external_lex_state = 16}, - [4392] = {.lex_state = 66, .external_lex_state = 11}, + [4389] = {.lex_state = 66, .external_lex_state = 11}, + [4390] = {.lex_state = 66, .external_lex_state = 11}, + [4391] = {.lex_state = 66, .external_lex_state = 14}, + [4392] = {.lex_state = 66, .external_lex_state = 5}, [4393] = {.lex_state = 66, .external_lex_state = 16}, [4394] = {.lex_state = 66, .external_lex_state = 14}, - [4395] = {.lex_state = 66, .external_lex_state = 13}, - [4396] = {.lex_state = 66, .external_lex_state = 14}, - [4397] = {.lex_state = 66, .external_lex_state = 14}, - [4398] = {.lex_state = 66, .external_lex_state = 14}, - [4399] = {.lex_state = 66, .external_lex_state = 14}, - [4400] = {.lex_state = 66, .external_lex_state = 16}, - [4401] = {.lex_state = 66, .external_lex_state = 14}, - [4402] = {.lex_state = 66, .external_lex_state = 13}, - [4403] = {.lex_state = 66, .external_lex_state = 14}, - [4404] = {.lex_state = 66, .external_lex_state = 16}, - [4405] = {.lex_state = 66, .external_lex_state = 16}, - [4406] = {.lex_state = 66, .external_lex_state = 21}, - [4407] = {.lex_state = 66, .external_lex_state = 14}, - [4408] = {.lex_state = 66, .external_lex_state = 16}, - [4409] = {.lex_state = 66, .external_lex_state = 16}, - [4410] = {.lex_state = 66, .external_lex_state = 16}, - [4411] = {.lex_state = 66, .external_lex_state = 2}, + [4395] = {.lex_state = 66, .external_lex_state = 2}, + [4396] = {.lex_state = 66, .external_lex_state = 11}, + [4397] = {.lex_state = 66, .external_lex_state = 12}, + [4398] = {.lex_state = 66, .external_lex_state = 16}, + [4399] = {.lex_state = 66, .external_lex_state = 16}, + [4400] = {.lex_state = 66, .external_lex_state = 21}, + [4401] = {.lex_state = 66, .external_lex_state = 12}, + [4402] = {.lex_state = 66, .external_lex_state = 16}, + [4403] = {.lex_state = 18, .external_lex_state = 12}, + [4404] = {.lex_state = 66, .external_lex_state = 11}, + [4405] = {.lex_state = 66, .external_lex_state = 11}, + [4406] = {.lex_state = 66, .external_lex_state = 16}, + [4407] = {.lex_state = 66, .external_lex_state = 5}, + [4408] = {.lex_state = 66, .external_lex_state = 14}, + [4409] = {.lex_state = 66, .external_lex_state = 11}, + [4410] = {.lex_state = 18, .external_lex_state = 12}, + [4411] = {.lex_state = 66, .external_lex_state = 16}, [4412] = {.lex_state = 66, .external_lex_state = 16}, - [4413] = {.lex_state = 66, .external_lex_state = 16}, - [4414] = {.lex_state = 66, .external_lex_state = 11}, - [4415] = {.lex_state = 66, .external_lex_state = 14}, - [4416] = {.lex_state = 66, .external_lex_state = 15}, - [4417] = {.lex_state = 66, .external_lex_state = 13}, - [4418] = {.lex_state = 66, .external_lex_state = 14}, - [4419] = {.lex_state = 66, .external_lex_state = 11}, - [4420] = {.lex_state = 66, .external_lex_state = 11}, - [4421] = {.lex_state = 66, .external_lex_state = 15}, - [4422] = {.lex_state = 66, .external_lex_state = 12}, - [4423] = {.lex_state = 66, .external_lex_state = 21}, - [4424] = {.lex_state = 66, .external_lex_state = 21}, - [4425] = {.lex_state = 66, .external_lex_state = 14}, + [4413] = {.lex_state = 66, .external_lex_state = 21}, + [4414] = {.lex_state = 66, .external_lex_state = 14}, + [4415] = {.lex_state = 66, .external_lex_state = 13}, + [4416] = {.lex_state = 66, .external_lex_state = 14}, + [4417] = {.lex_state = 66, .external_lex_state = 14}, + [4418] = {.lex_state = 66, .external_lex_state = 16}, + [4419] = {.lex_state = 66, .external_lex_state = 16}, + [4420] = {.lex_state = 66, .external_lex_state = 12}, + [4421] = {.lex_state = 66, .external_lex_state = 12}, + [4422] = {.lex_state = 66, .external_lex_state = 16}, + [4423] = {.lex_state = 66, .external_lex_state = 12}, + [4424] = {.lex_state = 66, .external_lex_state = 12}, + [4425] = {.lex_state = 66, .external_lex_state = 21}, [4426] = {.lex_state = 66, .external_lex_state = 12}, - [4427] = {.lex_state = 66, .external_lex_state = 12}, - [4428] = {.lex_state = 18, .external_lex_state = 12}, - [4429] = {.lex_state = 12, .external_lex_state = 12}, - [4430] = {.lex_state = 66, .external_lex_state = 14}, - [4431] = {.lex_state = 66, .external_lex_state = 16}, - [4432] = {.lex_state = 66, .external_lex_state = 16}, + [4427] = {.lex_state = 66, .external_lex_state = 11}, + [4428] = {.lex_state = 66, .external_lex_state = 16}, + [4429] = {.lex_state = 66, .external_lex_state = 16}, + [4430] = {.lex_state = 66, .external_lex_state = 16}, + [4431] = {.lex_state = 66, .external_lex_state = 14}, + [4432] = {.lex_state = 66, .external_lex_state = 14}, [4433] = {.lex_state = 66, .external_lex_state = 14}, - [4434] = {.lex_state = 66, .external_lex_state = 11}, + [4434] = {.lex_state = 66, .external_lex_state = 14}, [4435] = {.lex_state = 66, .external_lex_state = 14}, - [4436] = {.lex_state = 66, .external_lex_state = 15}, - [4437] = {.lex_state = 66, .external_lex_state = 11}, - [4438] = {.lex_state = 66, .external_lex_state = 11}, - [4439] = {.lex_state = 66, .external_lex_state = 15}, + [4436] = {.lex_state = 66, .external_lex_state = 14}, + [4437] = {.lex_state = 66, .external_lex_state = 14}, + [4438] = {.lex_state = 66, .external_lex_state = 16}, + [4439] = {.lex_state = 66, .external_lex_state = 12}, [4440] = {.lex_state = 66, .external_lex_state = 14}, [4441] = {.lex_state = 66, .external_lex_state = 16}, - [4442] = {.lex_state = 66, .external_lex_state = 11}, - [4443] = {.lex_state = 66, .external_lex_state = 15}, - [4444] = {.lex_state = 66, .external_lex_state = 11}, - [4445] = {.lex_state = 66, .external_lex_state = 14}, - [4446] = {.lex_state = 66, .external_lex_state = 11}, - [4447] = {.lex_state = 66, .external_lex_state = 21}, + [4442] = {.lex_state = 66, .external_lex_state = 14}, + [4443] = {.lex_state = 66, .external_lex_state = 14}, + [4444] = {.lex_state = 66, .external_lex_state = 12}, + [4445] = {.lex_state = 66, .external_lex_state = 5}, + [4446] = {.lex_state = 66, .external_lex_state = 14}, + [4447] = {.lex_state = 66, .external_lex_state = 14}, [4448] = {.lex_state = 66, .external_lex_state = 14}, - [4449] = {.lex_state = 18, .external_lex_state = 12}, - [4450] = {.lex_state = 66, .external_lex_state = 14}, - [4451] = {.lex_state = 66, .external_lex_state = 14}, - [4452] = {.lex_state = 66, .external_lex_state = 14}, - [4453] = {.lex_state = 66, .external_lex_state = 14}, - [4454] = {.lex_state = 66, .external_lex_state = 12}, - [4455] = {.lex_state = 66, .external_lex_state = 14}, + [4449] = {.lex_state = 66, .external_lex_state = 14}, + [4450] = {.lex_state = 66, .external_lex_state = 12}, + [4451] = {.lex_state = 66, .external_lex_state = 11}, + [4452] = {.lex_state = 66, .external_lex_state = 13}, + [4453] = {.lex_state = 66, .external_lex_state = 12}, + [4454] = {.lex_state = 66, .external_lex_state = 13}, + [4455] = {.lex_state = 66, .external_lex_state = 16}, [4456] = {.lex_state = 66, .external_lex_state = 14}, - [4457] = {.lex_state = 66, .external_lex_state = 14}, - [4458] = {.lex_state = 66, .external_lex_state = 16}, + [4457] = {.lex_state = 66, .external_lex_state = 5}, + [4458] = {.lex_state = 66, .external_lex_state = 11}, [4459] = {.lex_state = 66, .external_lex_state = 14}, - [4460] = {.lex_state = 66, .external_lex_state = 12}, - [4461] = {.lex_state = 66, .external_lex_state = 14}, - [4462] = {.lex_state = 66, .external_lex_state = 14}, - [4463] = {.lex_state = 66, .external_lex_state = 15}, - [4464] = {.lex_state = 66, .external_lex_state = 12}, - [4465] = {.lex_state = 18, .external_lex_state = 12}, - [4466] = {.lex_state = 66, .external_lex_state = 21}, - [4467] = {.lex_state = 66, .external_lex_state = 12}, - [4468] = {.lex_state = 66, .external_lex_state = 16}, - [4469] = {.lex_state = 66, .external_lex_state = 11}, - [4470] = {.lex_state = 66, .external_lex_state = 12}, - [4471] = {.lex_state = 66, .external_lex_state = 14}, - [4472] = {.lex_state = 66, .external_lex_state = 11}, - [4473] = {.lex_state = 66, .external_lex_state = 16}, - [4474] = {.lex_state = 66, .external_lex_state = 14}, - [4475] = {.lex_state = 18, .external_lex_state = 12}, - [4476] = {.lex_state = 66, .external_lex_state = 12}, - [4477] = {.lex_state = 18, .external_lex_state = 12}, - [4478] = {.lex_state = 66, .external_lex_state = 15}, - [4479] = {.lex_state = 66, .external_lex_state = 21}, - [4480] = {.lex_state = 66, .external_lex_state = 15}, + [4460] = {.lex_state = 66, .external_lex_state = 14}, + [4461] = {.lex_state = 66, .external_lex_state = 12}, + [4462] = {.lex_state = 66, .external_lex_state = 11}, + [4463] = {.lex_state = 66, .external_lex_state = 14}, + [4464] = {.lex_state = 66, .external_lex_state = 21}, + [4465] = {.lex_state = 66, .external_lex_state = 11}, + [4466] = {.lex_state = 66, .external_lex_state = 13}, + [4467] = {.lex_state = 66, .external_lex_state = 14}, + [4468] = {.lex_state = 66, .external_lex_state = 21}, + [4469] = {.lex_state = 66, .external_lex_state = 15}, + [4470] = {.lex_state = 66, .external_lex_state = 14}, + [4471] = {.lex_state = 66, .external_lex_state = 16}, + [4472] = {.lex_state = 66, .external_lex_state = 12}, + [4473] = {.lex_state = 66, .external_lex_state = 15}, + [4474] = {.lex_state = 18, .external_lex_state = 12}, + [4475] = {.lex_state = 66, .external_lex_state = 12}, + [4476] = {.lex_state = 66, .external_lex_state = 14}, + [4477] = {.lex_state = 66, .external_lex_state = 16}, + [4478] = {.lex_state = 66, .external_lex_state = 12}, + [4479] = {.lex_state = 66, .external_lex_state = 11}, + [4480] = {.lex_state = 66, .external_lex_state = 16}, [4481] = {.lex_state = 66, .external_lex_state = 14}, - [4482] = {.lex_state = 66, .external_lex_state = 11}, - [4483] = {.lex_state = 66, .external_lex_state = 11}, - [4484] = {.lex_state = 66, .external_lex_state = 11}, + [4482] = {.lex_state = 66, .external_lex_state = 15}, + [4483] = {.lex_state = 66, .external_lex_state = 16}, + [4484] = {.lex_state = 66, .external_lex_state = 14}, [4485] = {.lex_state = 66, .external_lex_state = 11}, - [4486] = {.lex_state = 66, .external_lex_state = 11}, - [4487] = {.lex_state = 66, .external_lex_state = 15}, - [4488] = {.lex_state = 66, .external_lex_state = 16}, - [4489] = {.lex_state = 66, .external_lex_state = 16}, + [4486] = {.lex_state = 66, .external_lex_state = 15}, + [4487] = {.lex_state = 66, .external_lex_state = 16}, + [4488] = {.lex_state = 66, .external_lex_state = 2}, + [4489] = {.lex_state = 66, .external_lex_state = 14}, [4490] = {.lex_state = 66, .external_lex_state = 11}, - [4491] = {.lex_state = 66, .external_lex_state = 11}, - [4492] = {.lex_state = 66, .external_lex_state = 11}, - [4493] = {.lex_state = 66, .external_lex_state = 11}, - [4494] = {.lex_state = 66, .external_lex_state = 11}, - [4495] = {.lex_state = 66, .external_lex_state = 11}, - [4496] = {.lex_state = 66, .external_lex_state = 14}, - [4497] = {.lex_state = 66, .external_lex_state = 11}, - [4498] = {.lex_state = 66, .external_lex_state = 15}, + [4491] = {.lex_state = 66, .external_lex_state = 16}, + [4492] = {.lex_state = 66, .external_lex_state = 16}, + [4493] = {.lex_state = 66, .external_lex_state = 16}, + [4494] = {.lex_state = 66, .external_lex_state = 15}, + [4495] = {.lex_state = 66, .external_lex_state = 15}, + [4496] = {.lex_state = 66, .external_lex_state = 12}, + [4497] = {.lex_state = 66, .external_lex_state = 14}, + [4498] = {.lex_state = 66, .external_lex_state = 16}, [4499] = {.lex_state = 66, .external_lex_state = 11}, [4500] = {.lex_state = 66, .external_lex_state = 16}, - [4501] = {.lex_state = 66, .external_lex_state = 11}, - [4502] = {.lex_state = 66, .external_lex_state = 11}, - [4503] = {.lex_state = 66, .external_lex_state = 14}, + [4501] = {.lex_state = 66, .external_lex_state = 14}, + [4502] = {.lex_state = 66, .external_lex_state = 16}, + [4503] = {.lex_state = 66, .external_lex_state = 11}, [4504] = {.lex_state = 66, .external_lex_state = 11}, [4505] = {.lex_state = 66, .external_lex_state = 11}, [4506] = {.lex_state = 66, .external_lex_state = 11}, - [4507] = {.lex_state = 66, .external_lex_state = 11}, + [4507] = {.lex_state = 66, .external_lex_state = 15}, [4508] = {.lex_state = 66, .external_lex_state = 11}, - [4509] = {.lex_state = 66, .external_lex_state = 11}, - [4510] = {.lex_state = 66, .external_lex_state = 14}, - [4511] = {.lex_state = 66, .external_lex_state = 14}, - [4512] = {.lex_state = 66, .external_lex_state = 14}, - [4513] = {.lex_state = 66, .external_lex_state = 14}, - [4514] = {.lex_state = 66, .external_lex_state = 14}, - [4515] = {.lex_state = 66, .external_lex_state = 16}, + [4509] = {.lex_state = 66, .external_lex_state = 14}, + [4510] = {.lex_state = 66, .external_lex_state = 11}, + [4511] = {.lex_state = 66, .external_lex_state = 15}, + [4512] = {.lex_state = 66, .external_lex_state = 11}, + [4513] = {.lex_state = 66, .external_lex_state = 11}, + [4514] = {.lex_state = 66, .external_lex_state = 11}, + [4515] = {.lex_state = 66, .external_lex_state = 11}, [4516] = {.lex_state = 66, .external_lex_state = 11}, - [4517] = {.lex_state = 66, .external_lex_state = 15}, - [4518] = {.lex_state = 66, .external_lex_state = 16}, + [4517] = {.lex_state = 66, .external_lex_state = 11}, + [4518] = {.lex_state = 66, .external_lex_state = 11}, [4519] = {.lex_state = 66, .external_lex_state = 15}, [4520] = {.lex_state = 66, .external_lex_state = 11}, [4521] = {.lex_state = 66, .external_lex_state = 14}, - [4522] = {.lex_state = 66, .external_lex_state = 16}, - [4523] = {.lex_state = 66, .external_lex_state = 11}, - [4524] = {.lex_state = 66, .external_lex_state = 14}, - [4525] = {.lex_state = 66, .external_lex_state = 11}, + [4522] = {.lex_state = 66, .external_lex_state = 14}, + [4523] = {.lex_state = 66, .external_lex_state = 16}, + [4524] = {.lex_state = 66, .external_lex_state = 11}, + [4525] = {.lex_state = 66, .external_lex_state = 15}, [4526] = {.lex_state = 66, .external_lex_state = 11}, - [4527] = {.lex_state = 66, .external_lex_state = 11}, - [4528] = {.lex_state = 66, .external_lex_state = 11}, - [4529] = {.lex_state = 66, .external_lex_state = 11}, - [4530] = {.lex_state = 66, .external_lex_state = 12}, + [4527] = {.lex_state = 66, .external_lex_state = 15}, + [4528] = {.lex_state = 66, .external_lex_state = 2}, + [4529] = {.lex_state = 66, .external_lex_state = 16}, + [4530] = {.lex_state = 66, .external_lex_state = 11}, [4531] = {.lex_state = 66, .external_lex_state = 11}, - [4532] = {.lex_state = 66, .external_lex_state = 11}, + [4532] = {.lex_state = 66, .external_lex_state = 14}, [4533] = {.lex_state = 66, .external_lex_state = 11}, - [4534] = {.lex_state = 66, .external_lex_state = 14}, - [4535] = {.lex_state = 66, .external_lex_state = 14}, - [4536] = {.lex_state = 66, .external_lex_state = 14}, - [4537] = {.lex_state = 66, .external_lex_state = 20}, - [4538] = {.lex_state = 16, .external_lex_state = 19}, - [4539] = {.lex_state = 66, .external_lex_state = 16}, - [4540] = {.lex_state = 66, .external_lex_state = 16}, + [4534] = {.lex_state = 66, .external_lex_state = 11}, + [4535] = {.lex_state = 66, .external_lex_state = 11}, + [4536] = {.lex_state = 66, .external_lex_state = 11}, + [4537] = {.lex_state = 66, .external_lex_state = 11}, + [4538] = {.lex_state = 66, .external_lex_state = 11}, + [4539] = {.lex_state = 66, .external_lex_state = 11}, + [4540] = {.lex_state = 66, .external_lex_state = 11}, [4541] = {.lex_state = 66, .external_lex_state = 11}, [4542] = {.lex_state = 66, .external_lex_state = 14}, - [4543] = {.lex_state = 66, .external_lex_state = 16}, + [4543] = {.lex_state = 66, .external_lex_state = 11}, [4544] = {.lex_state = 66, .external_lex_state = 11}, [4545] = {.lex_state = 66, .external_lex_state = 11}, [4546] = {.lex_state = 66, .external_lex_state = 11}, - [4547] = {.lex_state = 66, .external_lex_state = 11}, + [4547] = {.lex_state = 66, .external_lex_state = 14}, [4548] = {.lex_state = 66, .external_lex_state = 11}, - [4549] = {.lex_state = 66, .external_lex_state = 11}, - [4550] = {.lex_state = 66, .external_lex_state = 11}, - [4551] = {.lex_state = 66, .external_lex_state = 15}, + [4549] = {.lex_state = 66, .external_lex_state = 16}, + [4550] = {.lex_state = 66, .external_lex_state = 16}, + [4551] = {.lex_state = 66, .external_lex_state = 11}, [4552] = {.lex_state = 66, .external_lex_state = 11}, - [4553] = {.lex_state = 3, .external_lex_state = 15}, - [4554] = {.lex_state = 66, .external_lex_state = 11}, - [4555] = {.lex_state = 66, .external_lex_state = 11}, - [4556] = {.lex_state = 66, .external_lex_state = 14}, - [4557] = {.lex_state = 66, .external_lex_state = 12}, - [4558] = {.lex_state = 15, .external_lex_state = 12}, - [4559] = {.lex_state = 66, .external_lex_state = 16}, + [4553] = {.lex_state = 66, .external_lex_state = 14}, + [4554] = {.lex_state = 66, .external_lex_state = 14}, + [4555] = {.lex_state = 15, .external_lex_state = 12}, + [4556] = {.lex_state = 66, .external_lex_state = 15}, + [4557] = {.lex_state = 66, .external_lex_state = 11}, + [4558] = {.lex_state = 66, .external_lex_state = 16}, + [4559] = {.lex_state = 66, .external_lex_state = 11}, [4560] = {.lex_state = 66, .external_lex_state = 11}, [4561] = {.lex_state = 66, .external_lex_state = 11}, [4562] = {.lex_state = 66, .external_lex_state = 11}, [4563] = {.lex_state = 66, .external_lex_state = 11}, - [4564] = {.lex_state = 66, .external_lex_state = 11}, + [4564] = {.lex_state = 66, .external_lex_state = 15}, [4565] = {.lex_state = 66, .external_lex_state = 11}, - [4566] = {.lex_state = 66, .external_lex_state = 11}, + [4566] = {.lex_state = 66, .external_lex_state = 14}, [4567] = {.lex_state = 66, .external_lex_state = 11}, - [4568] = {.lex_state = 66, .external_lex_state = 14}, + [4568] = {.lex_state = 66, .external_lex_state = 16}, [4569] = {.lex_state = 66, .external_lex_state = 11}, [4570] = {.lex_state = 66, .external_lex_state = 11}, - [4571] = {.lex_state = 66, .external_lex_state = 16}, + [4571] = {.lex_state = 66, .external_lex_state = 11}, [4572] = {.lex_state = 66, .external_lex_state = 11}, - [4573] = {.lex_state = 66, .external_lex_state = 16}, - [4574] = {.lex_state = 66, .external_lex_state = 16}, + [4573] = {.lex_state = 66, .external_lex_state = 14}, + [4574] = {.lex_state = 66, .external_lex_state = 11}, [4575] = {.lex_state = 66, .external_lex_state = 11}, - [4576] = {.lex_state = 66, .external_lex_state = 11}, + [4576] = {.lex_state = 3, .external_lex_state = 15}, [4577] = {.lex_state = 66, .external_lex_state = 11}, - [4578] = {.lex_state = 66, .external_lex_state = 14}, + [4578] = {.lex_state = 66, .external_lex_state = 11}, [4579] = {.lex_state = 66, .external_lex_state = 11}, - [4580] = {.lex_state = 66, .external_lex_state = 11}, + [4580] = {.lex_state = 66, .external_lex_state = 16}, [4581] = {.lex_state = 66, .external_lex_state = 14}, - [4582] = {.lex_state = 66, .external_lex_state = 14}, + [4582] = {.lex_state = 66, .external_lex_state = 16}, [4583] = {.lex_state = 66, .external_lex_state = 11}, - [4584] = {.lex_state = 66, .external_lex_state = 15}, + [4584] = {.lex_state = 66, .external_lex_state = 11}, [4585] = {.lex_state = 66, .external_lex_state = 11}, - [4586] = {.lex_state = 66, .external_lex_state = 12}, + [4586] = {.lex_state = 66, .external_lex_state = 11}, [4587] = {.lex_state = 66, .external_lex_state = 11}, - [4588] = {.lex_state = 66, .external_lex_state = 15}, - [4589] = {.lex_state = 66, .external_lex_state = 15}, - [4590] = {.lex_state = 16, .external_lex_state = 19}, - [4591] = {.lex_state = 66, .external_lex_state = 20}, - [4592] = {.lex_state = 66, .external_lex_state = 12}, - [4593] = {.lex_state = 66, .external_lex_state = 14}, - [4594] = {.lex_state = 66, .external_lex_state = 14}, - [4595] = {.lex_state = 66, .external_lex_state = 16}, - [4596] = {.lex_state = 66, .external_lex_state = 16}, - [4597] = {.lex_state = 66, .external_lex_state = 16}, - [4598] = {.lex_state = 66, .external_lex_state = 14}, - [4599] = {.lex_state = 66, .external_lex_state = 12}, - [4600] = {.lex_state = 66, .external_lex_state = 16}, + [4588] = {.lex_state = 66, .external_lex_state = 11}, + [4589] = {.lex_state = 66, .external_lex_state = 11}, + [4590] = {.lex_state = 66, .external_lex_state = 11}, + [4591] = {.lex_state = 66, .external_lex_state = 11}, + [4592] = {.lex_state = 66, .external_lex_state = 14}, + [4593] = {.lex_state = 66, .external_lex_state = 11}, + [4594] = {.lex_state = 66, .external_lex_state = 15}, + [4595] = {.lex_state = 66, .external_lex_state = 11}, + [4596] = {.lex_state = 66, .external_lex_state = 12}, + [4597] = {.lex_state = 66, .external_lex_state = 11}, + [4598] = {.lex_state = 66, .external_lex_state = 11}, + [4599] = {.lex_state = 66, .external_lex_state = 11}, + [4600] = {.lex_state = 66, .external_lex_state = 15}, [4601] = {.lex_state = 66, .external_lex_state = 11}, - [4602] = {.lex_state = 66, .external_lex_state = 14}, - [4603] = {.lex_state = 15, .external_lex_state = 12}, - [4604] = {.lex_state = 66, .external_lex_state = 14}, - [4605] = {.lex_state = 66, .external_lex_state = 12}, - [4606] = {.lex_state = 66, .external_lex_state = 16}, - [4607] = {.lex_state = 66, .external_lex_state = 16}, + [4602] = {.lex_state = 66, .external_lex_state = 11}, + [4603] = {.lex_state = 66, .external_lex_state = 11}, + [4604] = {.lex_state = 66, .external_lex_state = 11}, + [4605] = {.lex_state = 66, .external_lex_state = 15}, + [4606] = {.lex_state = 66, .external_lex_state = 14}, + [4607] = {.lex_state = 66, .external_lex_state = 14}, [4608] = {.lex_state = 66, .external_lex_state = 16}, [4609] = {.lex_state = 66, .external_lex_state = 16}, - [4610] = {.lex_state = 66, .external_lex_state = 14}, - [4611] = {.lex_state = 66, .external_lex_state = 12}, + [4610] = {.lex_state = 66, .external_lex_state = 11}, + [4611] = {.lex_state = 66, .external_lex_state = 11}, [4612] = {.lex_state = 66, .external_lex_state = 16}, - [4613] = {.lex_state = 66, .external_lex_state = 12}, + [4613] = {.lex_state = 66, .external_lex_state = 11}, [4614] = {.lex_state = 66, .external_lex_state = 11}, [4615] = {.lex_state = 66, .external_lex_state = 11}, - [4616] = {.lex_state = 66, .external_lex_state = 15}, - [4617] = {.lex_state = 66, .external_lex_state = 14}, - [4618] = {.lex_state = 66, .external_lex_state = 11}, - [4619] = {.lex_state = 66, .external_lex_state = 16}, - [4620] = {.lex_state = 66, .external_lex_state = 14}, - [4621] = {.lex_state = 66, .external_lex_state = 14}, + [4616] = {.lex_state = 66, .external_lex_state = 14}, + [4617] = {.lex_state = 66, .external_lex_state = 11}, + [4618] = {.lex_state = 66, .external_lex_state = 14}, + [4619] = {.lex_state = 66, .external_lex_state = 11}, + [4620] = {.lex_state = 66, .external_lex_state = 16}, + [4621] = {.lex_state = 66, .external_lex_state = 16}, [4622] = {.lex_state = 66, .external_lex_state = 16}, - [4623] = {.lex_state = 66, .external_lex_state = 11}, - [4624] = {.lex_state = 66, .external_lex_state = 15}, - [4625] = {.lex_state = 66, .external_lex_state = 15}, - [4626] = {.lex_state = 66, .external_lex_state = 14}, - [4627] = {.lex_state = 66, .external_lex_state = 11}, - [4628] = {.lex_state = 66, .external_lex_state = 14}, - [4629] = {.lex_state = 66, .external_lex_state = 14}, + [4623] = {.lex_state = 66, .external_lex_state = 16}, + [4624] = {.lex_state = 66, .external_lex_state = 14}, + [4625] = {.lex_state = 66, .external_lex_state = 14}, + [4626] = {.lex_state = 3, .external_lex_state = 15}, + [4627] = {.lex_state = 66, .external_lex_state = 14}, + [4628] = {.lex_state = 66, .external_lex_state = 11}, + [4629] = {.lex_state = 66, .external_lex_state = 15}, [4630] = {.lex_state = 66, .external_lex_state = 16}, - [4631] = {.lex_state = 66, .external_lex_state = 11}, - [4632] = {.lex_state = 3, .external_lex_state = 15}, - [4633] = {.lex_state = 66, .external_lex_state = 11}, + [4631] = {.lex_state = 66, .external_lex_state = 14}, + [4632] = {.lex_state = 66, .external_lex_state = 16}, + [4633] = {.lex_state = 66, .external_lex_state = 15}, [4634] = {.lex_state = 66, .external_lex_state = 11}, [4635] = {.lex_state = 66, .external_lex_state = 15}, - [4636] = {.lex_state = 66, .external_lex_state = 16}, + [4636] = {.lex_state = 66, .external_lex_state = 15}, [4637] = {.lex_state = 66, .external_lex_state = 11}, - [4638] = {.lex_state = 66, .external_lex_state = 14}, - [4639] = {.lex_state = 66, .external_lex_state = 15}, - [4640] = {.lex_state = 66, .external_lex_state = 12}, - [4641] = {.lex_state = 66, .external_lex_state = 11}, + [4638] = {.lex_state = 66, .external_lex_state = 12}, + [4639] = {.lex_state = 66, .external_lex_state = 16}, + [4640] = {.lex_state = 66, .external_lex_state = 14}, + [4641] = {.lex_state = 66, .external_lex_state = 16}, [4642] = {.lex_state = 66, .external_lex_state = 11}, - [4643] = {.lex_state = 66, .external_lex_state = 15}, - [4644] = {.lex_state = 66, .external_lex_state = 14}, - [4645] = {.lex_state = 66, .external_lex_state = 14}, + [4643] = {.lex_state = 12, .external_lex_state = 12}, + [4644] = {.lex_state = 66, .external_lex_state = 11}, + [4645] = {.lex_state = 3, .external_lex_state = 15}, [4646] = {.lex_state = 66, .external_lex_state = 14}, - [4647] = {.lex_state = 66, .external_lex_state = 14}, - [4648] = {.lex_state = 66, .external_lex_state = 12}, - [4649] = {.lex_state = 66, .external_lex_state = 16}, - [4650] = {.lex_state = 66, .external_lex_state = 14}, - [4651] = {.lex_state = 66, .external_lex_state = 11}, - [4652] = {.lex_state = 66, .external_lex_state = 14}, - [4653] = {.lex_state = 66, .external_lex_state = 14}, - [4654] = {.lex_state = 66, .external_lex_state = 14}, - [4655] = {.lex_state = 66, .external_lex_state = 16}, - [4656] = {.lex_state = 66, .external_lex_state = 16}, - [4657] = {.lex_state = 66, .external_lex_state = 11}, - [4658] = {.lex_state = 66, .external_lex_state = 14}, - [4659] = {.lex_state = 66, .external_lex_state = 14}, + [4647] = {.lex_state = 66, .external_lex_state = 11}, + [4648] = {.lex_state = 66, .external_lex_state = 15}, + [4649] = {.lex_state = 66, .external_lex_state = 12}, + [4650] = {.lex_state = 66, .external_lex_state = 11}, + [4651] = {.lex_state = 3, .external_lex_state = 15}, + [4652] = {.lex_state = 66, .external_lex_state = 15}, + [4653] = {.lex_state = 66, .external_lex_state = 15}, + [4654] = {.lex_state = 66, .external_lex_state = 11}, + [4655] = {.lex_state = 66, .external_lex_state = 14}, + [4656] = {.lex_state = 66, .external_lex_state = 14}, + [4657] = {.lex_state = 66, .external_lex_state = 14}, + [4658] = {.lex_state = 66, .external_lex_state = 11}, + [4659] = {.lex_state = 66, .external_lex_state = 16}, [4660] = {.lex_state = 66, .external_lex_state = 11}, - [4661] = {.lex_state = 66, .external_lex_state = 16}, - [4662] = {.lex_state = 66, .external_lex_state = 11}, - [4663] = {.lex_state = 66, .external_lex_state = 16}, - [4664] = {.lex_state = 66, .external_lex_state = 11}, - [4665] = {.lex_state = 66, .external_lex_state = 14}, - [4666] = {.lex_state = 66, .external_lex_state = 15}, + [4661] = {.lex_state = 66, .external_lex_state = 14}, + [4662] = {.lex_state = 66, .external_lex_state = 12}, + [4663] = {.lex_state = 66, .external_lex_state = 14}, + [4664] = {.lex_state = 66, .external_lex_state = 16}, + [4665] = {.lex_state = 66, .external_lex_state = 16}, + [4666] = {.lex_state = 66, .external_lex_state = 11}, [4667] = {.lex_state = 66, .external_lex_state = 11}, - [4668] = {.lex_state = 66, .external_lex_state = 15}, - [4669] = {.lex_state = 66, .external_lex_state = 12}, - [4670] = {.lex_state = 66, .external_lex_state = 14}, - [4671] = {.lex_state = 66, .external_lex_state = 11}, - [4672] = {.lex_state = 66, .external_lex_state = 11}, - [4673] = {.lex_state = 66, .external_lex_state = 14}, - [4674] = {.lex_state = 66, .external_lex_state = 15}, - [4675] = {.lex_state = 66, .external_lex_state = 16}, - [4676] = {.lex_state = 66, .external_lex_state = 11}, - [4677] = {.lex_state = 66, .external_lex_state = 14}, - [4678] = {.lex_state = 66, .external_lex_state = 14}, + [4668] = {.lex_state = 66, .external_lex_state = 14}, + [4669] = {.lex_state = 66, .external_lex_state = 11}, + [4670] = {.lex_state = 66, .external_lex_state = 11}, + [4671] = {.lex_state = 66, .external_lex_state = 14}, + [4672] = {.lex_state = 66, .external_lex_state = 16}, + [4673] = {.lex_state = 66, .external_lex_state = 11}, + [4674] = {.lex_state = 66, .external_lex_state = 11}, + [4675] = {.lex_state = 66, .external_lex_state = 14}, + [4676] = {.lex_state = 66, .external_lex_state = 14}, + [4677] = {.lex_state = 66, .external_lex_state = 15}, + [4678] = {.lex_state = 66, .external_lex_state = 12}, [4679] = {.lex_state = 66, .external_lex_state = 12}, - [4680] = {.lex_state = 66, .external_lex_state = 16}, - [4681] = {.lex_state = 66, .external_lex_state = 2}, - [4682] = {.lex_state = 66, .external_lex_state = 11}, - [4683] = {.lex_state = 66, .external_lex_state = 14}, - [4684] = {.lex_state = 66, .external_lex_state = 14}, - [4685] = {.lex_state = 66, .external_lex_state = 11}, - [4686] = {.lex_state = 66, .external_lex_state = 16}, - [4687] = {.lex_state = 66, .external_lex_state = 16}, - [4688] = {.lex_state = 66, .external_lex_state = 16}, - [4689] = {.lex_state = 66, .external_lex_state = 11}, - [4690] = {.lex_state = 66, .external_lex_state = 11}, - [4691] = {.lex_state = 66, .external_lex_state = 14}, + [4680] = {.lex_state = 66, .external_lex_state = 11}, + [4681] = {.lex_state = 66, .external_lex_state = 11}, + [4682] = {.lex_state = 66, .external_lex_state = 15}, + [4683] = {.lex_state = 66, .external_lex_state = 11}, + [4684] = {.lex_state = 66, .external_lex_state = 16}, + [4685] = {.lex_state = 66, .external_lex_state = 14}, + [4686] = {.lex_state = 66, .external_lex_state = 14}, + [4687] = {.lex_state = 66, .external_lex_state = 14}, + [4688] = {.lex_state = 66, .external_lex_state = 20}, + [4689] = {.lex_state = 66, .external_lex_state = 16}, + [4690] = {.lex_state = 66, .external_lex_state = 16}, + [4691] = {.lex_state = 66, .external_lex_state = 11}, [4692] = {.lex_state = 66, .external_lex_state = 11}, - [4693] = {.lex_state = 66, .external_lex_state = 11}, - [4694] = {.lex_state = 66, .external_lex_state = 14}, + [4693] = {.lex_state = 66, .external_lex_state = 14}, + [4694] = {.lex_state = 66, .external_lex_state = 16}, [4695] = {.lex_state = 66, .external_lex_state = 14}, - [4696] = {.lex_state = 66, .external_lex_state = 11}, - [4697] = {.lex_state = 66, .external_lex_state = 15}, - [4698] = {.lex_state = 66, .external_lex_state = 12}, + [4696] = {.lex_state = 66, .external_lex_state = 16}, + [4697] = {.lex_state = 66, .external_lex_state = 16}, + [4698] = {.lex_state = 16, .external_lex_state = 19}, [4699] = {.lex_state = 66, .external_lex_state = 11}, - [4700] = {.lex_state = 66, .external_lex_state = 12}, - [4701] = {.lex_state = 66, .external_lex_state = 15}, - [4702] = {.lex_state = 66, .external_lex_state = 14}, - [4703] = {.lex_state = 66, .external_lex_state = 14}, - [4704] = {.lex_state = 66, .external_lex_state = 14}, - [4705] = {.lex_state = 66, .external_lex_state = 14}, - [4706] = {.lex_state = 66, .external_lex_state = 16}, - [4707] = {.lex_state = 66, .external_lex_state = 12}, - [4708] = {.lex_state = 66, .external_lex_state = 20}, - [4709] = {.lex_state = 66, .external_lex_state = 14}, - [4710] = {.lex_state = 66, .external_lex_state = 14}, - [4711] = {.lex_state = 66, .external_lex_state = 12}, - [4712] = {.lex_state = 66, .external_lex_state = 16}, - [4713] = {.lex_state = 66, .external_lex_state = 16}, - [4714] = {.lex_state = 66, .external_lex_state = 11}, - [4715] = {.lex_state = 66, .external_lex_state = 20}, - [4716] = {.lex_state = 66, .external_lex_state = 11}, - [4717] = {.lex_state = 66, .external_lex_state = 11}, - [4718] = {.lex_state = 66, .external_lex_state = 15}, - [4719] = {.lex_state = 66, .external_lex_state = 11}, - [4720] = {.lex_state = 66, .external_lex_state = 14}, - [4721] = {.lex_state = 66, .external_lex_state = 15}, - [4722] = {.lex_state = 66, .external_lex_state = 12}, - [4723] = {.lex_state = 66, .external_lex_state = 14}, + [4700] = {.lex_state = 66, .external_lex_state = 11}, + [4701] = {.lex_state = 66, .external_lex_state = 12}, + [4702] = {.lex_state = 66, .external_lex_state = 2}, + [4703] = {.lex_state = 66, .external_lex_state = 11}, + [4704] = {.lex_state = 66, .external_lex_state = 11}, + [4705] = {.lex_state = 66, .external_lex_state = 16}, + [4706] = {.lex_state = 66, .external_lex_state = 14}, + [4707] = {.lex_state = 66, .external_lex_state = 15}, + [4708] = {.lex_state = 66, .external_lex_state = 12}, + [4709] = {.lex_state = 66, .external_lex_state = 11}, + [4710] = {.lex_state = 66, .external_lex_state = 11}, + [4711] = {.lex_state = 66, .external_lex_state = 15}, + [4712] = {.lex_state = 66, .external_lex_state = 14}, + [4713] = {.lex_state = 66, .external_lex_state = 14}, + [4714] = {.lex_state = 16, .external_lex_state = 19}, + [4715] = {.lex_state = 66, .external_lex_state = 16}, + [4716] = {.lex_state = 66, .external_lex_state = 12}, + [4717] = {.lex_state = 66, .external_lex_state = 14}, + [4718] = {.lex_state = 66, .external_lex_state = 14}, + [4719] = {.lex_state = 66, .external_lex_state = 14}, + [4720] = {.lex_state = 66, .external_lex_state = 16}, + [4721] = {.lex_state = 66, .external_lex_state = 16}, + [4722] = {.lex_state = 66, .external_lex_state = 11}, + [4723] = {.lex_state = 66, .external_lex_state = 11}, [4724] = {.lex_state = 66, .external_lex_state = 11}, - [4725] = {.lex_state = 66, .external_lex_state = 14}, + [4725] = {.lex_state = 66, .external_lex_state = 11}, [4726] = {.lex_state = 66, .external_lex_state = 15}, - [4727] = {.lex_state = 66, .external_lex_state = 15}, + [4727] = {.lex_state = 66, .external_lex_state = 11}, [4728] = {.lex_state = 66, .external_lex_state = 11}, - [4729] = {.lex_state = 66, .external_lex_state = 14}, + [4729] = {.lex_state = 66, .external_lex_state = 12}, [4730] = {.lex_state = 66, .external_lex_state = 14}, - [4731] = {.lex_state = 66, .external_lex_state = 14}, - [4732] = {.lex_state = 66, .external_lex_state = 14}, - [4733] = {.lex_state = 66, .external_lex_state = 16}, - [4734] = {.lex_state = 66, .external_lex_state = 14}, - [4735] = {.lex_state = 66, .external_lex_state = 11}, - [4736] = {.lex_state = 66, .external_lex_state = 14}, - [4737] = {.lex_state = 66, .external_lex_state = 16}, - [4738] = {.lex_state = 66, .external_lex_state = 16}, - [4739] = {.lex_state = 66, .external_lex_state = 16}, + [4731] = {.lex_state = 66, .external_lex_state = 15}, + [4732] = {.lex_state = 66, .external_lex_state = 12}, + [4733] = {.lex_state = 66, .external_lex_state = 11}, + [4734] = {.lex_state = 66, .external_lex_state = 11}, + [4735] = {.lex_state = 66, .external_lex_state = 15}, + [4736] = {.lex_state = 66, .external_lex_state = 11}, + [4737] = {.lex_state = 66, .external_lex_state = 11}, + [4738] = {.lex_state = 66, .external_lex_state = 14}, + [4739] = {.lex_state = 66, .external_lex_state = 14}, [4740] = {.lex_state = 66, .external_lex_state = 12}, - [4741] = {.lex_state = 66, .external_lex_state = 11}, + [4741] = {.lex_state = 66, .external_lex_state = 16}, [4742] = {.lex_state = 66, .external_lex_state = 14}, - [4743] = {.lex_state = 66, .external_lex_state = 12}, + [4743] = {.lex_state = 66, .external_lex_state = 16}, [4744] = {.lex_state = 66, .external_lex_state = 11}, [4745] = {.lex_state = 66, .external_lex_state = 14}, - [4746] = {.lex_state = 66, .external_lex_state = 14}, + [4746] = {.lex_state = 66, .external_lex_state = 12}, [4747] = {.lex_state = 66, .external_lex_state = 14}, - [4748] = {.lex_state = 66, .external_lex_state = 16}, - [4749] = {.lex_state = 66, .external_lex_state = 11}, - [4750] = {.lex_state = 66, .external_lex_state = 11}, - [4751] = {.lex_state = 66, .external_lex_state = 14}, - [4752] = {.lex_state = 66, .external_lex_state = 14}, - [4753] = {.lex_state = 66, .external_lex_state = 11}, - [4754] = {.lex_state = 66, .external_lex_state = 11}, - [4755] = {.lex_state = 66, .external_lex_state = 16}, - [4756] = {.lex_state = 66, .external_lex_state = 15}, + [4748] = {.lex_state = 66, .external_lex_state = 14}, + [4749] = {.lex_state = 66, .external_lex_state = 16}, + [4750] = {.lex_state = 66, .external_lex_state = 16}, + [4751] = {.lex_state = 66, .external_lex_state = 11}, + [4752] = {.lex_state = 66, .external_lex_state = 11}, + [4753] = {.lex_state = 66, .external_lex_state = 20}, + [4754] = {.lex_state = 66, .external_lex_state = 12}, + [4755] = {.lex_state = 66, .external_lex_state = 14}, + [4756] = {.lex_state = 66, .external_lex_state = 14}, [4757] = {.lex_state = 66, .external_lex_state = 14}, - [4758] = {.lex_state = 66, .external_lex_state = 11}, - [4759] = {.lex_state = 66, .external_lex_state = 14}, - [4760] = {.lex_state = 66, .external_lex_state = 15}, + [4758] = {.lex_state = 66, .external_lex_state = 12}, + [4759] = {.lex_state = 66, .external_lex_state = 11}, + [4760] = {.lex_state = 66, .external_lex_state = 14}, [4761] = {.lex_state = 66, .external_lex_state = 14}, - [4762] = {.lex_state = 66, .external_lex_state = 14}, + [4762] = {.lex_state = 66, .external_lex_state = 11}, [4763] = {.lex_state = 66, .external_lex_state = 16}, - [4764] = {.lex_state = 66, .external_lex_state = 12}, - [4765] = {.lex_state = 66, .external_lex_state = 16}, - [4766] = {.lex_state = 66, .external_lex_state = 14}, - [4767] = {.lex_state = 66, .external_lex_state = 14}, + [4764] = {.lex_state = 66, .external_lex_state = 14}, + [4765] = {.lex_state = 66, .external_lex_state = 14}, + [4766] = {.lex_state = 66, .external_lex_state = 16}, + [4767] = {.lex_state = 66, .external_lex_state = 16}, [4768] = {.lex_state = 66, .external_lex_state = 16}, - [4769] = {.lex_state = 66, .external_lex_state = 16}, - [4770] = {.lex_state = 66, .external_lex_state = 11}, - [4771] = {.lex_state = 66, .external_lex_state = 12}, - [4772] = {.lex_state = 66, .external_lex_state = 12}, + [4769] = {.lex_state = 66, .external_lex_state = 12}, + [4770] = {.lex_state = 16, .external_lex_state = 19}, + [4771] = {.lex_state = 66, .external_lex_state = 11}, + [4772] = {.lex_state = 66, .external_lex_state = 14}, [4773] = {.lex_state = 66, .external_lex_state = 14}, - [4774] = {.lex_state = 66, .external_lex_state = 14}, - [4775] = {.lex_state = 66, .external_lex_state = 14}, - [4776] = {.lex_state = 66, .external_lex_state = 14}, - [4777] = {.lex_state = 66, .external_lex_state = 11}, - [4778] = {.lex_state = 66, .external_lex_state = 16}, - [4779] = {.lex_state = 66, .external_lex_state = 11}, - [4780] = {.lex_state = 66, .external_lex_state = 14}, + [4774] = {.lex_state = 66, .external_lex_state = 16}, + [4775] = {.lex_state = 66, .external_lex_state = 15}, + [4776] = {.lex_state = 66, .external_lex_state = 15}, + [4777] = {.lex_state = 66, .external_lex_state = 14}, + [4778] = {.lex_state = 3, .external_lex_state = 15}, + [4779] = {.lex_state = 66, .external_lex_state = 14}, + [4780] = {.lex_state = 66, .external_lex_state = 16}, [4781] = {.lex_state = 66, .external_lex_state = 16}, [4782] = {.lex_state = 66, .external_lex_state = 14}, - [4783] = {.lex_state = 66, .external_lex_state = 14}, - [4784] = {.lex_state = 66, .external_lex_state = 16}, - [4785] = {.lex_state = 66, .external_lex_state = 16}, - [4786] = {.lex_state = 66, .external_lex_state = 16}, - [4787] = {.lex_state = 66, .external_lex_state = 11}, + [4783] = {.lex_state = 66, .external_lex_state = 11}, + [4784] = {.lex_state = 66, .external_lex_state = 11}, + [4785] = {.lex_state = 66, .external_lex_state = 14}, + [4786] = {.lex_state = 66, .external_lex_state = 14}, + [4787] = {.lex_state = 66, .external_lex_state = 14}, [4788] = {.lex_state = 66, .external_lex_state = 15}, - [4789] = {.lex_state = 66, .external_lex_state = 15}, - [4790] = {.lex_state = 66, .external_lex_state = 16}, - [4791] = {.lex_state = 66, .external_lex_state = 16}, - [4792] = {.lex_state = 66, .external_lex_state = 20}, + [4789] = {.lex_state = 66, .external_lex_state = 16}, + [4790] = {.lex_state = 66, .external_lex_state = 14}, + [4791] = {.lex_state = 66, .external_lex_state = 14}, + [4792] = {.lex_state = 66, .external_lex_state = 16}, [4793] = {.lex_state = 66, .external_lex_state = 16}, [4794] = {.lex_state = 66, .external_lex_state = 16}, - [4795] = {.lex_state = 66, .external_lex_state = 11}, - [4796] = {.lex_state = 66, .external_lex_state = 16}, - [4797] = {.lex_state = 66, .external_lex_state = 11}, - [4798] = {.lex_state = 66, .external_lex_state = 14}, - [4799] = {.lex_state = 66, .external_lex_state = 11}, - [4800] = {.lex_state = 66, .external_lex_state = 11}, + [4795] = {.lex_state = 66, .external_lex_state = 12}, + [4796] = {.lex_state = 66, .external_lex_state = 15}, + [4797] = {.lex_state = 66, .external_lex_state = 12}, + [4798] = {.lex_state = 66, .external_lex_state = 16}, + [4799] = {.lex_state = 66, .external_lex_state = 16}, + [4800] = {.lex_state = 66, .external_lex_state = 16}, [4801] = {.lex_state = 66, .external_lex_state = 11}, - [4802] = {.lex_state = 3, .external_lex_state = 15}, - [4803] = {.lex_state = 3, .external_lex_state = 15}, - [4804] = {.lex_state = 66, .external_lex_state = 15}, - [4805] = {.lex_state = 16, .external_lex_state = 19}, - [4806] = {.lex_state = 3, .external_lex_state = 15}, - [4807] = {.lex_state = 66, .external_lex_state = 15}, + [4802] = {.lex_state = 66, .external_lex_state = 11}, + [4803] = {.lex_state = 66, .external_lex_state = 20}, + [4804] = {.lex_state = 66, .external_lex_state = 11}, + [4805] = {.lex_state = 66, .external_lex_state = 11}, + [4806] = {.lex_state = 66, .external_lex_state = 12}, + [4807] = {.lex_state = 66, .external_lex_state = 11}, [4808] = {.lex_state = 66, .external_lex_state = 14}, - [4809] = {.lex_state = 66, .external_lex_state = 11}, - [4810] = {.lex_state = 66, .external_lex_state = 11}, - [4811] = {.lex_state = 66, .external_lex_state = 11}, - [4812] = {.lex_state = 66, .external_lex_state = 11}, - [4813] = {.lex_state = 66, .external_lex_state = 11}, - [4814] = {.lex_state = 66, .external_lex_state = 16}, - [4815] = {.lex_state = 66, .external_lex_state = 16}, - [4816] = {.lex_state = 12, .external_lex_state = 12}, - [4817] = {.lex_state = 66, .external_lex_state = 15}, - [4818] = {.lex_state = 66, .external_lex_state = 11}, - [4819] = {.lex_state = 66, .external_lex_state = 11}, - [4820] = {.lex_state = 12, .external_lex_state = 12}, - [4821] = {.lex_state = 66, .external_lex_state = 11}, - [4822] = {.lex_state = 66, .external_lex_state = 2}, - [4823] = {.lex_state = 66, .external_lex_state = 14}, - [4824] = {.lex_state = 66, .external_lex_state = 20}, + [4809] = {.lex_state = 66, .external_lex_state = 14}, + [4810] = {.lex_state = 66, .external_lex_state = 14}, + [4811] = {.lex_state = 66, .external_lex_state = 20}, + [4812] = {.lex_state = 66, .external_lex_state = 14}, + [4813] = {.lex_state = 66, .external_lex_state = 14}, + [4814] = {.lex_state = 66, .external_lex_state = 15}, + [4815] = {.lex_state = 66, .external_lex_state = 14}, + [4816] = {.lex_state = 66, .external_lex_state = 15}, + [4817] = {.lex_state = 66, .external_lex_state = 14}, + [4818] = {.lex_state = 66, .external_lex_state = 14}, + [4819] = {.lex_state = 66, .external_lex_state = 14}, + [4820] = {.lex_state = 66, .external_lex_state = 14}, + [4821] = {.lex_state = 66, .external_lex_state = 15}, + [4822] = {.lex_state = 66, .external_lex_state = 14}, + [4823] = {.lex_state = 66, .external_lex_state = 15}, + [4824] = {.lex_state = 66, .external_lex_state = 11}, [4825] = {.lex_state = 66, .external_lex_state = 15}, - [4826] = {.lex_state = 66, .external_lex_state = 14}, - [4827] = {.lex_state = 66, .external_lex_state = 12}, + [4826] = {.lex_state = 66, .external_lex_state = 11}, + [4827] = {.lex_state = 66, .external_lex_state = 11}, [4828] = {.lex_state = 66, .external_lex_state = 14}, - [4829] = {.lex_state = 66, .external_lex_state = 16}, - [4830] = {.lex_state = 66, .external_lex_state = 11}, - [4831] = {.lex_state = 66, .external_lex_state = 12}, + [4829] = {.lex_state = 66, .external_lex_state = 11}, + [4830] = {.lex_state = 66, .external_lex_state = 15}, + [4831] = {.lex_state = 12, .external_lex_state = 12}, [4832] = {.lex_state = 66, .external_lex_state = 11}, - [4833] = {.lex_state = 66, .external_lex_state = 16}, - [4834] = {.lex_state = 66, .external_lex_state = 16}, - [4835] = {.lex_state = 15, .external_lex_state = 12}, - [4836] = {.lex_state = 66, .external_lex_state = 11}, - [4837] = {.lex_state = 16, .external_lex_state = 19}, - [4838] = {.lex_state = 66, .external_lex_state = 16}, + [4833] = {.lex_state = 66, .external_lex_state = 15}, + [4834] = {.lex_state = 66, .external_lex_state = 2}, + [4835] = {.lex_state = 66, .external_lex_state = 16}, + [4836] = {.lex_state = 66, .external_lex_state = 16}, + [4837] = {.lex_state = 66, .external_lex_state = 11}, + [4838] = {.lex_state = 66, .external_lex_state = 14}, [4839] = {.lex_state = 66, .external_lex_state = 12}, - [4840] = {.lex_state = 15, .external_lex_state = 12}, - [4841] = {.lex_state = 15, .external_lex_state = 12}, - [4842] = {.lex_state = 15, .external_lex_state = 12}, - [4843] = {.lex_state = 66, .external_lex_state = 16}, - [4844] = {.lex_state = 15, .external_lex_state = 12}, - [4845] = {.lex_state = 66, .external_lex_state = 11}, - [4846] = {.lex_state = 66, .external_lex_state = 14}, + [4840] = {.lex_state = 66, .external_lex_state = 14}, + [4841] = {.lex_state = 66, .external_lex_state = 14}, + [4842] = {.lex_state = 66, .external_lex_state = 12}, + [4843] = {.lex_state = 66, .external_lex_state = 14}, + [4844] = {.lex_state = 66, .external_lex_state = 14}, + [4845] = {.lex_state = 66, .external_lex_state = 20}, + [4846] = {.lex_state = 15, .external_lex_state = 12}, [4847] = {.lex_state = 66, .external_lex_state = 11}, - [4848] = {.lex_state = 66, .external_lex_state = 11}, - [4849] = {.lex_state = 66, .external_lex_state = 11}, + [4848] = {.lex_state = 66, .external_lex_state = 16}, + [4849] = {.lex_state = 66, .external_lex_state = 16}, [4850] = {.lex_state = 66, .external_lex_state = 11}, - [4851] = {.lex_state = 66, .external_lex_state = 15}, - [4852] = {.lex_state = 66, .external_lex_state = 14}, - [4853] = {.lex_state = 66, .external_lex_state = 11}, - [4854] = {.lex_state = 66, .external_lex_state = 16}, - [4855] = {.lex_state = 66, .external_lex_state = 14}, - [4856] = {.lex_state = 66, .external_lex_state = 16}, - [4857] = {.lex_state = 66, .external_lex_state = 15}, - [4858] = {.lex_state = 66, .external_lex_state = 11}, - [4859] = {.lex_state = 66, .external_lex_state = 14}, - [4860] = {.lex_state = 66, .external_lex_state = 2}, - [4861] = {.lex_state = 66, .external_lex_state = 14}, - [4862] = {.lex_state = 66, .external_lex_state = 16}, - [4863] = {.lex_state = 66, .external_lex_state = 12}, + [4851] = {.lex_state = 15, .external_lex_state = 12}, + [4852] = {.lex_state = 15, .external_lex_state = 12}, + [4853] = {.lex_state = 66, .external_lex_state = 14}, + [4854] = {.lex_state = 15, .external_lex_state = 12}, + [4855] = {.lex_state = 66, .external_lex_state = 15}, + [4856] = {.lex_state = 66, .external_lex_state = 11}, + [4857] = {.lex_state = 66, .external_lex_state = 11}, + [4858] = {.lex_state = 66, .external_lex_state = 16}, + [4859] = {.lex_state = 66, .external_lex_state = 16}, + [4860] = {.lex_state = 66, .external_lex_state = 11}, + [4861] = {.lex_state = 66, .external_lex_state = 11}, + [4862] = {.lex_state = 66, .external_lex_state = 11}, + [4863] = {.lex_state = 66, .external_lex_state = 11}, [4864] = {.lex_state = 66, .external_lex_state = 16}, - [4865] = {.lex_state = 66, .external_lex_state = 16}, - [4866] = {.lex_state = 66, .external_lex_state = 12}, - [4867] = {.lex_state = 66, .external_lex_state = 16}, - [4868] = {.lex_state = 66, .external_lex_state = 11}, - [4869] = {.lex_state = 66, .external_lex_state = 15}, - [4870] = {.lex_state = 66, .external_lex_state = 14}, - [4871] = {.lex_state = 66, .external_lex_state = 14}, - [4872] = {.lex_state = 66, .external_lex_state = 15}, - [4873] = {.lex_state = 66, .external_lex_state = 14}, - [4874] = {.lex_state = 66, .external_lex_state = 14}, - [4875] = {.lex_state = 66, .external_lex_state = 14}, + [4865] = {.lex_state = 66, .external_lex_state = 11}, + [4866] = {.lex_state = 66, .external_lex_state = 2}, + [4867] = {.lex_state = 66, .external_lex_state = 12}, + [4868] = {.lex_state = 66, .external_lex_state = 12}, + [4869] = {.lex_state = 66, .external_lex_state = 14}, + [4870] = {.lex_state = 66, .external_lex_state = 12}, + [4871] = {.lex_state = 66, .external_lex_state = 11}, + [4872] = {.lex_state = 66, .external_lex_state = 16}, + [4873] = {.lex_state = 66, .external_lex_state = 11}, + [4874] = {.lex_state = 66, .external_lex_state = 11}, + [4875] = {.lex_state = 12, .external_lex_state = 12}, [4876] = {.lex_state = 66, .external_lex_state = 11}, - [4877] = {.lex_state = 66, .external_lex_state = 16}, - [4878] = {.lex_state = 15, .external_lex_state = 12}, + [4877] = {.lex_state = 66, .external_lex_state = 20}, + [4878] = {.lex_state = 66, .external_lex_state = 16}, [4879] = {.lex_state = 66, .external_lex_state = 11}, - [4880] = {.lex_state = 66, .external_lex_state = 14}, + [4880] = {.lex_state = 66, .external_lex_state = 11}, [4881] = {.lex_state = 66, .external_lex_state = 11}, [4882] = {.lex_state = 66, .external_lex_state = 11}, - [4883] = {.lex_state = 66, .external_lex_state = 16}, - [4884] = {.lex_state = 66, .external_lex_state = 16}, + [4883] = {.lex_state = 15, .external_lex_state = 12}, + [4884] = {.lex_state = 66, .external_lex_state = 14}, [4885] = {.lex_state = 66, .external_lex_state = 16}, - [4886] = {.lex_state = 12, .external_lex_state = 12}, + [4886] = {.lex_state = 66, .external_lex_state = 12}, [4887] = {.lex_state = 66, .external_lex_state = 14}, [4888] = {.lex_state = 66, .external_lex_state = 11}, - [4889] = {.lex_state = 66, .external_lex_state = 20}, - [4890] = {.lex_state = 66, .external_lex_state = 11}, - [4891] = {.lex_state = 66, .external_lex_state = 15}, - [4892] = {.lex_state = 66, .external_lex_state = 11}, - [4893] = {.lex_state = 66, .external_lex_state = 11}, - [4894] = {.lex_state = 66, .external_lex_state = 11}, + [4889] = {.lex_state = 66, .external_lex_state = 14}, + [4890] = {.lex_state = 66, .external_lex_state = 14}, + [4891] = {.lex_state = 66, .external_lex_state = 14}, + [4892] = {.lex_state = 66, .external_lex_state = 12}, + [4893] = {.lex_state = 66, .external_lex_state = 14}, + [4894] = {.lex_state = 66, .external_lex_state = 14}, [4895] = {.lex_state = 66, .external_lex_state = 16}, - [4896] = {.lex_state = 66, .external_lex_state = 12}, - [4897] = {.lex_state = 66, .external_lex_state = 11}, - [4898] = {.lex_state = 66, .external_lex_state = 11}, + [4896] = {.lex_state = 66, .external_lex_state = 16}, + [4897] = {.lex_state = 66, .external_lex_state = 14}, + [4898] = {.lex_state = 66, .external_lex_state = 14}, [4899] = {.lex_state = 66, .external_lex_state = 11}, - [4900] = {.lex_state = 66, .external_lex_state = 11}, - [4901] = {.lex_state = 66, .external_lex_state = 16}, - [4902] = {.lex_state = 66, .external_lex_state = 11}, - [4903] = {.lex_state = 66, .external_lex_state = 11}, - [4904] = {.lex_state = 66, .external_lex_state = 11}, + [4900] = {.lex_state = 66, .external_lex_state = 16}, + [4901] = {.lex_state = 3, .external_lex_state = 15}, + [4902] = {.lex_state = 3, .external_lex_state = 15}, + [4903] = {.lex_state = 3, .external_lex_state = 15}, + [4904] = {.lex_state = 66, .external_lex_state = 16}, [4905] = {.lex_state = 66, .external_lex_state = 16}, - [4906] = {.lex_state = 3, .external_lex_state = 15}, - [4907] = {.lex_state = 66, .external_lex_state = 11}, - [4908] = {.lex_state = 66, .external_lex_state = 11}, + [4906] = {.lex_state = 66, .external_lex_state = 16}, + [4907] = {.lex_state = 66, .external_lex_state = 12}, + [4908] = {.lex_state = 66, .external_lex_state = 14}, [4909] = {.lex_state = 66, .external_lex_state = 14}, - [4910] = {.lex_state = 66, .external_lex_state = 12}, - [4911] = {.lex_state = 66, .external_lex_state = 11}, - [4912] = {.lex_state = 66, .external_lex_state = 15}, + [4910] = {.lex_state = 16, .external_lex_state = 19}, + [4911] = {.lex_state = 16, .external_lex_state = 19}, + [4912] = {.lex_state = 66, .external_lex_state = 11}, [4913] = {.lex_state = 66, .external_lex_state = 16}, - [4914] = {.lex_state = 16, .external_lex_state = 19}, - [4915] = {.lex_state = 66, .external_lex_state = 11}, - [4916] = {.lex_state = 66, .external_lex_state = 11}, + [4914] = {.lex_state = 66, .external_lex_state = 14}, + [4915] = {.lex_state = 66, .external_lex_state = 12}, + [4916] = {.lex_state = 66, .external_lex_state = 15}, [4917] = {.lex_state = 66, .external_lex_state = 11}, - [4918] = {.lex_state = 66, .external_lex_state = 15}, - [4919] = {.lex_state = 15, .external_lex_state = 12}, - [4920] = {.lex_state = 3, .external_lex_state = 15}, - [4921] = {.lex_state = 3, .external_lex_state = 15}, - [4922] = {.lex_state = 3, .external_lex_state = 15}, - [4923] = {.lex_state = 66, .external_lex_state = 12}, + [4918] = {.lex_state = 66, .external_lex_state = 12}, + [4919] = {.lex_state = 66, .external_lex_state = 16}, + [4920] = {.lex_state = 66, .external_lex_state = 11}, + [4921] = {.lex_state = 66, .external_lex_state = 11}, + [4922] = {.lex_state = 66, .external_lex_state = 14}, + [4923] = {.lex_state = 66, .external_lex_state = 11}, [4924] = {.lex_state = 66, .external_lex_state = 11}, - [4925] = {.lex_state = 66, .external_lex_state = 15}, - [4926] = {.lex_state = 66, .external_lex_state = 11}, - [4927] = {.lex_state = 66, .external_lex_state = 11}, - [4928] = {.lex_state = 66, .external_lex_state = 11}, + [4925] = {.lex_state = 66, .external_lex_state = 16}, + [4926] = {.lex_state = 15, .external_lex_state = 12}, + [4927] = {.lex_state = 3, .external_lex_state = 15}, + [4928] = {.lex_state = 66, .external_lex_state = 14}, [4929] = {.lex_state = 66, .external_lex_state = 11}, - [4930] = {.lex_state = 66, .external_lex_state = 15}, - [4931] = {.lex_state = 66, .external_lex_state = 14}, - [4932] = {.lex_state = 66, .external_lex_state = 11}, + [4930] = {.lex_state = 66, .external_lex_state = 14}, + [4931] = {.lex_state = 66, .external_lex_state = 11}, + [4932] = {.lex_state = 66, .external_lex_state = 20}, [4933] = {.lex_state = 66, .external_lex_state = 11}, - [4934] = {.lex_state = 66, .external_lex_state = 11}, - [4935] = {.lex_state = 66, .external_lex_state = 11}, + [4934] = {.lex_state = 66, .external_lex_state = 12}, + [4935] = {.lex_state = 66, .external_lex_state = 16}, [4936] = {.lex_state = 66, .external_lex_state = 11}, - [4937] = {.lex_state = 66, .external_lex_state = 11}, - [4938] = {.lex_state = 66, .external_lex_state = 2}, - [4939] = {.lex_state = 66, .external_lex_state = 11}, - [4940] = {.lex_state = 66, .external_lex_state = 12}, + [4937] = {.lex_state = 66, .external_lex_state = 14}, + [4938] = {.lex_state = 66, .external_lex_state = 15}, + [4939] = {.lex_state = 15, .external_lex_state = 12}, + [4940] = {.lex_state = 66, .external_lex_state = 14}, [4941] = {.lex_state = 66, .external_lex_state = 11}, - [4942] = {.lex_state = 66, .external_lex_state = 11}, + [4942] = {.lex_state = 66, .external_lex_state = 16}, [4943] = {.lex_state = 66, .external_lex_state = 16}, - [4944] = {.lex_state = 66, .external_lex_state = 12}, - [4945] = {.lex_state = 66, .external_lex_state = 20}, + [4944] = {.lex_state = 66, .external_lex_state = 11}, + [4945] = {.lex_state = 66, .external_lex_state = 11}, [4946] = {.lex_state = 66, .external_lex_state = 11}, - [4947] = {.lex_state = 66, .external_lex_state = 15}, - [4948] = {.lex_state = 66, .external_lex_state = 16}, - [4949] = {.lex_state = 66, .external_lex_state = 11}, + [4947] = {.lex_state = 66, .external_lex_state = 11}, + [4948] = {.lex_state = 66, .external_lex_state = 11}, + [4949] = {.lex_state = 66, .external_lex_state = 16}, [4950] = {.lex_state = 66, .external_lex_state = 11}, - [4951] = {.lex_state = 66, .external_lex_state = 11}, - [4952] = {.lex_state = 66, .external_lex_state = 11}, + [4951] = {.lex_state = 66, .external_lex_state = 20}, + [4952] = {.lex_state = 66, .external_lex_state = 16}, [4953] = {.lex_state = 66, .external_lex_state = 11}, [4954] = {.lex_state = 66, .external_lex_state = 11}, - [4955] = {.lex_state = 66, .external_lex_state = 11}, - [4956] = {.lex_state = 66, .external_lex_state = 11}, - [4957] = {.lex_state = 66, .external_lex_state = 11}, - [4958] = {.lex_state = 66, .external_lex_state = 11}, + [4955] = {.lex_state = 66, .external_lex_state = 15}, + [4956] = {.lex_state = 66, .external_lex_state = 14}, + [4957] = {.lex_state = 66, .external_lex_state = 12}, + [4958] = {.lex_state = 66, .external_lex_state = 16}, [4959] = {.lex_state = 66, .external_lex_state = 11}, [4960] = {.lex_state = 66, .external_lex_state = 11}, [4961] = {.lex_state = 66, .external_lex_state = 11}, - [4962] = {.lex_state = 66, .external_lex_state = 12}, - [4963] = {.lex_state = 66, .external_lex_state = 11}, + [4962] = {.lex_state = 66, .external_lex_state = 11}, + [4963] = {.lex_state = 15, .external_lex_state = 12}, [4964] = {.lex_state = 66, .external_lex_state = 11}, - [4965] = {.lex_state = 66, .external_lex_state = 11}, - [4966] = {.lex_state = 66, .external_lex_state = 15}, + [4965] = {.lex_state = 66, .external_lex_state = 12}, + [4966] = {.lex_state = 66, .external_lex_state = 11}, [4967] = {.lex_state = 66, .external_lex_state = 11}, - [4968] = {.lex_state = 66, .external_lex_state = 14}, + [4968] = {.lex_state = 66, .external_lex_state = 11}, [4969] = {.lex_state = 66, .external_lex_state = 11}, - [4970] = {.lex_state = 66, .external_lex_state = 16}, + [4970] = {.lex_state = 66, .external_lex_state = 11}, [4971] = {.lex_state = 66, .external_lex_state = 11}, - [4972] = {.lex_state = 66, .external_lex_state = 13}, - [4973] = {.lex_state = 66, .external_lex_state = 12}, + [4972] = {.lex_state = 66, .external_lex_state = 11}, + [4973] = {.lex_state = 66, .external_lex_state = 15}, [4974] = {.lex_state = 66, .external_lex_state = 11}, - [4975] = {.lex_state = 66, .external_lex_state = 14}, - [4976] = {.lex_state = 66, .external_lex_state = 16}, - [4977] = {.lex_state = 66, .external_lex_state = 12}, + [4975] = {.lex_state = 66, .external_lex_state = 11}, + [4976] = {.lex_state = 66, .external_lex_state = 11}, + [4977] = {.lex_state = 66, .external_lex_state = 16}, [4978] = {.lex_state = 66, .external_lex_state = 11}, - [4979] = {.lex_state = 66, .external_lex_state = 14}, - [4980] = {.lex_state = 66, .external_lex_state = 12}, - [4981] = {.lex_state = 66, .external_lex_state = 12}, - [4982] = {.lex_state = 66, .external_lex_state = 14}, - [4983] = {.lex_state = 66, .external_lex_state = 11}, - [4984] = {.lex_state = 66, .external_lex_state = 12}, - [4985] = {.lex_state = 66, .external_lex_state = 12}, - [4986] = {.lex_state = 66, .external_lex_state = 14}, - [4987] = {.lex_state = 66, .external_lex_state = 14}, + [4979] = {.lex_state = 66, .external_lex_state = 11}, + [4980] = {.lex_state = 66, .external_lex_state = 13}, + [4981] = {.lex_state = 66, .external_lex_state = 14}, + [4982] = {.lex_state = 66, .external_lex_state = 11}, + [4983] = {.lex_state = 66, .external_lex_state = 12}, + [4984] = {.lex_state = 66, .external_lex_state = 14}, + [4985] = {.lex_state = 66, .external_lex_state = 11}, + [4986] = {.lex_state = 66, .external_lex_state = 11}, + [4987] = {.lex_state = 66, .external_lex_state = 12}, [4988] = {.lex_state = 66, .external_lex_state = 11}, - [4989] = {.lex_state = 66, .external_lex_state = 11}, - [4990] = {.lex_state = 66, .external_lex_state = 14}, - [4991] = {.lex_state = 66, .external_lex_state = 16}, + [4989] = {.lex_state = 66, .external_lex_state = 12}, + [4990] = {.lex_state = 66, .external_lex_state = 12}, + [4991] = {.lex_state = 66, .external_lex_state = 12}, [4992] = {.lex_state = 66, .external_lex_state = 11}, - [4993] = {.lex_state = 66, .external_lex_state = 12}, + [4993] = {.lex_state = 66, .external_lex_state = 11}, [4994] = {.lex_state = 66, .external_lex_state = 12}, [4995] = {.lex_state = 66, .external_lex_state = 14}, [4996] = {.lex_state = 66, .external_lex_state = 14}, - [4997] = {.lex_state = 66, .external_lex_state = 12}, - [4998] = {.lex_state = 66, .external_lex_state = 11}, - [4999] = {.lex_state = 66, .external_lex_state = 14}, + [4997] = {.lex_state = 66, .external_lex_state = 15}, + [4998] = {.lex_state = 66, .external_lex_state = 12}, + [4999] = {.lex_state = 66, .external_lex_state = 12}, [5000] = {.lex_state = 66, .external_lex_state = 12}, - [5001] = {.lex_state = 66, .external_lex_state = 16}, - [5002] = {.lex_state = 66, .external_lex_state = 11}, - [5003] = {.lex_state = 66, .external_lex_state = 12}, - [5004] = {.lex_state = 66, .external_lex_state = 11}, + [5001] = {.lex_state = 66, .external_lex_state = 11}, + [5002] = {.lex_state = 66, .external_lex_state = 12}, + [5003] = {.lex_state = 66, .external_lex_state = 11}, + [5004] = {.lex_state = 66, .external_lex_state = 12}, [5005] = {.lex_state = 66, .external_lex_state = 11}, - [5006] = {.lex_state = 66, .external_lex_state = 14}, - [5007] = {.lex_state = 66, .external_lex_state = 11}, - [5008] = {.lex_state = 66, .external_lex_state = 11}, + [5006] = {.lex_state = 66, .external_lex_state = 12}, + [5007] = {.lex_state = 66, .external_lex_state = 12}, + [5008] = {.lex_state = 66, .external_lex_state = 12}, [5009] = {.lex_state = 66, .external_lex_state = 14}, - [5010] = {.lex_state = 66, .external_lex_state = 11}, + [5010] = {.lex_state = 66, .external_lex_state = 12}, [5011] = {.lex_state = 66, .external_lex_state = 14}, - [5012] = {.lex_state = 66, .external_lex_state = 16}, + [5012] = {.lex_state = 66, .external_lex_state = 12}, [5013] = {.lex_state = 66, .external_lex_state = 16}, - [5014] = {.lex_state = 66, .external_lex_state = 2}, - [5015] = {.lex_state = 66, .external_lex_state = 11}, - [5016] = {.lex_state = 66, .external_lex_state = 16}, + [5014] = {.lex_state = 66, .external_lex_state = 12}, + [5015] = {.lex_state = 66, .external_lex_state = 14}, + [5016] = {.lex_state = 66, .external_lex_state = 13}, [5017] = {.lex_state = 66, .external_lex_state = 14}, - [5018] = {.lex_state = 66, .external_lex_state = 11}, - [5019] = {.lex_state = 66, .external_lex_state = 16}, - [5020] = {.lex_state = 66, .external_lex_state = 14}, - [5021] = {.lex_state = 66, .external_lex_state = 14}, - [5022] = {.lex_state = 66, .external_lex_state = 14}, - [5023] = {.lex_state = 66, .external_lex_state = 12}, - [5024] = {.lex_state = 66, .external_lex_state = 11}, + [5018] = {.lex_state = 66, .external_lex_state = 13}, + [5019] = {.lex_state = 66, .external_lex_state = 14}, + [5020] = {.lex_state = 66, .external_lex_state = 13}, + [5021] = {.lex_state = 66, .external_lex_state = 11}, + [5022] = {.lex_state = 66, .external_lex_state = 12}, + [5023] = {.lex_state = 66, .external_lex_state = 16}, + [5024] = {.lex_state = 66, .external_lex_state = 13}, [5025] = {.lex_state = 66, .external_lex_state = 12}, - [5026] = {.lex_state = 66, .external_lex_state = 12}, + [5026] = {.lex_state = 66, .external_lex_state = 13}, [5027] = {.lex_state = 66, .external_lex_state = 14}, - [5028] = {.lex_state = 66, .external_lex_state = 13}, - [5029] = {.lex_state = 66, .external_lex_state = 13}, - [5030] = {.lex_state = 66, .external_lex_state = 12}, - [5031] = {.lex_state = 66, .external_lex_state = 11}, + [5028] = {.lex_state = 66, .external_lex_state = 12}, + [5029] = {.lex_state = 66, .external_lex_state = 12}, + [5030] = {.lex_state = 66, .external_lex_state = 11}, + [5031] = {.lex_state = 66, .external_lex_state = 12}, [5032] = {.lex_state = 66, .external_lex_state = 14}, - [5033] = {.lex_state = 66, .external_lex_state = 12}, + [5033] = {.lex_state = 66, .external_lex_state = 11}, [5034] = {.lex_state = 66, .external_lex_state = 11}, - [5035] = {.lex_state = 66, .external_lex_state = 11}, - [5036] = {.lex_state = 66, .external_lex_state = 12}, - [5037] = {.lex_state = 66, .external_lex_state = 11}, + [5035] = {.lex_state = 66, .external_lex_state = 12}, + [5036] = {.lex_state = 66, .external_lex_state = 14}, + [5037] = {.lex_state = 66, .external_lex_state = 13}, [5038] = {.lex_state = 66, .external_lex_state = 12}, - [5039] = {.lex_state = 66, .external_lex_state = 14}, - [5040] = {.lex_state = 66, .external_lex_state = 14}, + [5039] = {.lex_state = 66, .external_lex_state = 12}, + [5040] = {.lex_state = 66, .external_lex_state = 12}, [5041] = {.lex_state = 66, .external_lex_state = 14}, - [5042] = {.lex_state = 66, .external_lex_state = 16}, - [5043] = {.lex_state = 66, .external_lex_state = 11}, - [5044] = {.lex_state = 66, .external_lex_state = 16}, - [5045] = {.lex_state = 66, .external_lex_state = 12}, - [5046] = {.lex_state = 66, .external_lex_state = 14}, - [5047] = {.lex_state = 66, .external_lex_state = 12}, + [5042] = {.lex_state = 66, .external_lex_state = 14}, + [5043] = {.lex_state = 66, .external_lex_state = 14}, + [5044] = {.lex_state = 66, .external_lex_state = 13}, + [5045] = {.lex_state = 66, .external_lex_state = 14}, + [5046] = {.lex_state = 66, .external_lex_state = 12}, + [5047] = {.lex_state = 66, .external_lex_state = 16}, [5048] = {.lex_state = 66, .external_lex_state = 14}, - [5049] = {.lex_state = 66, .external_lex_state = 2}, - [5050] = {.lex_state = 66, .external_lex_state = 14}, - [5051] = {.lex_state = 66, .external_lex_state = 11}, - [5052] = {.lex_state = 66, .external_lex_state = 14}, - [5053] = {.lex_state = 66, .external_lex_state = 14}, - [5054] = {.lex_state = 66, .external_lex_state = 11}, + [5049] = {.lex_state = 66, .external_lex_state = 12}, + [5050] = {.lex_state = 66, .external_lex_state = 2}, + [5051] = {.lex_state = 66, .external_lex_state = 14}, + [5052] = {.lex_state = 66, .external_lex_state = 12}, + [5053] = {.lex_state = 66, .external_lex_state = 11}, + [5054] = {.lex_state = 66, .external_lex_state = 14}, [5055] = {.lex_state = 66, .external_lex_state = 12}, [5056] = {.lex_state = 66, .external_lex_state = 14}, - [5057] = {.lex_state = 66, .external_lex_state = 16}, + [5057] = {.lex_state = 66, .external_lex_state = 12}, [5058] = {.lex_state = 66, .external_lex_state = 14}, - [5059] = {.lex_state = 66, .external_lex_state = 11}, + [5059] = {.lex_state = 66, .external_lex_state = 12}, [5060] = {.lex_state = 66, .external_lex_state = 14}, - [5061] = {.lex_state = 66, .external_lex_state = 12}, + [5061] = {.lex_state = 66, .external_lex_state = 14}, [5062] = {.lex_state = 66, .external_lex_state = 12}, - [5063] = {.lex_state = 66, .external_lex_state = 12}, - [5064] = {.lex_state = 66, .external_lex_state = 15}, - [5065] = {.lex_state = 66, .external_lex_state = 15}, - [5066] = {.lex_state = 66, .external_lex_state = 15}, - [5067] = {.lex_state = 66, .external_lex_state = 11}, + [5063] = {.lex_state = 66, .external_lex_state = 11}, + [5064] = {.lex_state = 66, .external_lex_state = 11}, + [5065] = {.lex_state = 66, .external_lex_state = 14}, + [5066] = {.lex_state = 66, .external_lex_state = 11}, + [5067] = {.lex_state = 66, .external_lex_state = 12}, [5068] = {.lex_state = 66, .external_lex_state = 12}, [5069] = {.lex_state = 66, .external_lex_state = 12}, [5070] = {.lex_state = 66, .external_lex_state = 12}, [5071] = {.lex_state = 66, .external_lex_state = 12}, [5072] = {.lex_state = 66, .external_lex_state = 12}, [5073] = {.lex_state = 66, .external_lex_state = 12}, - [5074] = {.lex_state = 66, .external_lex_state = 12}, + [5074] = {.lex_state = 66, .external_lex_state = 11}, [5075] = {.lex_state = 66, .external_lex_state = 12}, - [5076] = {.lex_state = 66, .external_lex_state = 12}, - [5077] = {.lex_state = 66, .external_lex_state = 13}, - [5078] = {.lex_state = 66, .external_lex_state = 15}, + [5076] = {.lex_state = 66, .external_lex_state = 14}, + [5077] = {.lex_state = 66, .external_lex_state = 14}, + [5078] = {.lex_state = 66, .external_lex_state = 14}, [5079] = {.lex_state = 66, .external_lex_state = 12}, [5080] = {.lex_state = 66, .external_lex_state = 14}, [5081] = {.lex_state = 66, .external_lex_state = 14}, - [5082] = {.lex_state = 66, .external_lex_state = 14}, - [5083] = {.lex_state = 66, .external_lex_state = 12}, - [5084] = {.lex_state = 66, .external_lex_state = 12}, - [5085] = {.lex_state = 66, .external_lex_state = 12}, - [5086] = {.lex_state = 66, .external_lex_state = 12}, - [5087] = {.lex_state = 66, .external_lex_state = 14}, + [5082] = {.lex_state = 66, .external_lex_state = 11}, + [5083] = {.lex_state = 66, .external_lex_state = 14}, + [5084] = {.lex_state = 66, .external_lex_state = 14}, + [5085] = {.lex_state = 66, .external_lex_state = 2}, + [5086] = {.lex_state = 66, .external_lex_state = 14}, + [5087] = {.lex_state = 66, .external_lex_state = 2}, [5088] = {.lex_state = 66, .external_lex_state = 14}, [5089] = {.lex_state = 66, .external_lex_state = 11}, - [5090] = {.lex_state = 66, .external_lex_state = 12}, + [5090] = {.lex_state = 66, .external_lex_state = 14}, [5091] = {.lex_state = 66, .external_lex_state = 14}, - [5092] = {.lex_state = 66, .external_lex_state = 12}, - [5093] = {.lex_state = 66, .external_lex_state = 2}, - [5094] = {.lex_state = 66, .external_lex_state = 14}, - [5095] = {.lex_state = 66, .external_lex_state = 13}, + [5092] = {.lex_state = 66, .external_lex_state = 14}, + [5093] = {.lex_state = 66, .external_lex_state = 14}, + [5094] = {.lex_state = 66, .external_lex_state = 11}, + [5095] = {.lex_state = 66, .external_lex_state = 11}, [5096] = {.lex_state = 66, .external_lex_state = 14}, - [5097] = {.lex_state = 66, .external_lex_state = 14}, - [5098] = {.lex_state = 66, .external_lex_state = 11}, + [5097] = {.lex_state = 66, .external_lex_state = 16}, + [5098] = {.lex_state = 66, .external_lex_state = 12}, [5099] = {.lex_state = 66, .external_lex_state = 14}, [5100] = {.lex_state = 66, .external_lex_state = 14}, [5101] = {.lex_state = 66, .external_lex_state = 12}, - [5102] = {.lex_state = 66, .external_lex_state = 12}, + [5102] = {.lex_state = 66, .external_lex_state = 11}, [5103] = {.lex_state = 66, .external_lex_state = 14}, - [5104] = {.lex_state = 66, .external_lex_state = 12}, - [5105] = {.lex_state = 66, .external_lex_state = 15}, - [5106] = {.lex_state = 66, .external_lex_state = 12}, - [5107] = {.lex_state = 66, .external_lex_state = 12}, - [5108] = {.lex_state = 66, .external_lex_state = 13}, - [5109] = {.lex_state = 66, .external_lex_state = 13}, + [5104] = {.lex_state = 66, .external_lex_state = 11}, + [5105] = {.lex_state = 66, .external_lex_state = 12}, + [5106] = {.lex_state = 66, .external_lex_state = 16}, + [5107] = {.lex_state = 66, .external_lex_state = 13}, + [5108] = {.lex_state = 66, .external_lex_state = 12}, + [5109] = {.lex_state = 66, .external_lex_state = 14}, [5110] = {.lex_state = 66, .external_lex_state = 12}, - [5111] = {.lex_state = 66, .external_lex_state = 13}, - [5112] = {.lex_state = 66, .external_lex_state = 14}, - [5113] = {.lex_state = 66, .external_lex_state = 14}, - [5114] = {.lex_state = 66, .external_lex_state = 11}, + [5111] = {.lex_state = 66, .external_lex_state = 11}, + [5112] = {.lex_state = 66, .external_lex_state = 13}, + [5113] = {.lex_state = 66, .external_lex_state = 12}, + [5114] = {.lex_state = 66, .external_lex_state = 12}, [5115] = {.lex_state = 66, .external_lex_state = 11}, [5116] = {.lex_state = 66, .external_lex_state = 14}, - [5117] = {.lex_state = 66, .external_lex_state = 12}, - [5118] = {.lex_state = 66, .external_lex_state = 14}, - [5119] = {.lex_state = 66, .external_lex_state = 13}, + [5117] = {.lex_state = 66, .external_lex_state = 14}, + [5118] = {.lex_state = 66, .external_lex_state = 16}, + [5119] = {.lex_state = 66, .external_lex_state = 12}, [5120] = {.lex_state = 66, .external_lex_state = 11}, - [5121] = {.lex_state = 66, .external_lex_state = 11}, + [5121] = {.lex_state = 66, .external_lex_state = 2}, [5122] = {.lex_state = 66, .external_lex_state = 11}, - [5123] = {.lex_state = 66, .external_lex_state = 2}, - [5124] = {.lex_state = 66, .external_lex_state = 12}, - [5125] = {.lex_state = 66, .external_lex_state = 11}, + [5123] = {.lex_state = 66, .external_lex_state = 11}, + [5124] = {.lex_state = 66, .external_lex_state = 11}, + [5125] = {.lex_state = 66, .external_lex_state = 14}, [5126] = {.lex_state = 66, .external_lex_state = 11}, - [5127] = {.lex_state = 66, .external_lex_state = 11}, + [5127] = {.lex_state = 66, .external_lex_state = 12}, [5128] = {.lex_state = 66, .external_lex_state = 11}, - [5129] = {.lex_state = 66, .external_lex_state = 12}, - [5130] = {.lex_state = 66, .external_lex_state = 12}, - [5131] = {.lex_state = 66, .external_lex_state = 16}, + [5129] = {.lex_state = 66, .external_lex_state = 11}, + [5130] = {.lex_state = 66, .external_lex_state = 13}, + [5131] = {.lex_state = 66, .external_lex_state = 12}, [5132] = {.lex_state = 66, .external_lex_state = 12}, [5133] = {.lex_state = 66, .external_lex_state = 11}, - [5134] = {.lex_state = 66, .external_lex_state = 14}, - [5135] = {.lex_state = 66, .external_lex_state = 13}, - [5136] = {.lex_state = 66, .external_lex_state = 11}, + [5134] = {.lex_state = 66, .external_lex_state = 13}, + [5135] = {.lex_state = 66, .external_lex_state = 11}, + [5136] = {.lex_state = 66, .external_lex_state = 12}, [5137] = {.lex_state = 66, .external_lex_state = 12}, - [5138] = {.lex_state = 66, .external_lex_state = 13}, - [5139] = {.lex_state = 66, .external_lex_state = 12}, + [5138] = {.lex_state = 66, .external_lex_state = 11}, + [5139] = {.lex_state = 66, .external_lex_state = 11}, [5140] = {.lex_state = 66, .external_lex_state = 12}, - [5141] = {.lex_state = 66, .external_lex_state = 14}, - [5142] = {.lex_state = 66, .external_lex_state = 12}, - [5143] = {.lex_state = 66, .external_lex_state = 14}, + [5141] = {.lex_state = 66, .external_lex_state = 11}, + [5142] = {.lex_state = 66, .external_lex_state = 11}, + [5143] = {.lex_state = 66, .external_lex_state = 12}, [5144] = {.lex_state = 66, .external_lex_state = 12}, - [5145] = {.lex_state = 66, .external_lex_state = 11}, - [5146] = {.lex_state = 66, .external_lex_state = 11}, - [5147] = {.lex_state = 66, .external_lex_state = 12}, - [5148] = {.lex_state = 66, .external_lex_state = 11}, - [5149] = {.lex_state = 66, .external_lex_state = 11}, - [5150] = {.lex_state = 66, .external_lex_state = 12}, - [5151] = {.lex_state = 66, .external_lex_state = 11}, - [5152] = {.lex_state = 66, .external_lex_state = 12}, + [5145] = {.lex_state = 66, .external_lex_state = 12}, + [5146] = {.lex_state = 66, .external_lex_state = 14}, + [5147] = {.lex_state = 66, .external_lex_state = 14}, + [5148] = {.lex_state = 66, .external_lex_state = 14}, + [5149] = {.lex_state = 66, .external_lex_state = 15}, + [5150] = {.lex_state = 66, .external_lex_state = 15}, + [5151] = {.lex_state = 66, .external_lex_state = 12}, + [5152] = {.lex_state = 66, .external_lex_state = 14}, [5153] = {.lex_state = 66, .external_lex_state = 12}, [5154] = {.lex_state = 66, .external_lex_state = 12}, - [5155] = {.lex_state = 66, .external_lex_state = 13}, - [5156] = {.lex_state = 66, .external_lex_state = 12}, - [5157] = {.lex_state = 66, .external_lex_state = 12}, - [5158] = {.lex_state = 66, .external_lex_state = 14}, - [5159] = {.lex_state = 66, .external_lex_state = 11}, - [5160] = {.lex_state = 66, .external_lex_state = 13}, - [5161] = {.lex_state = 66, .external_lex_state = 11}, - [5162] = {.lex_state = 66, .external_lex_state = 12}, - [5163] = {.lex_state = 66, .external_lex_state = 11}, + [5155] = {.lex_state = 66, .external_lex_state = 11}, + [5156] = {.lex_state = 66, .external_lex_state = 16}, + [5157] = {.lex_state = 66, .external_lex_state = 16}, + [5158] = {.lex_state = 66, .external_lex_state = 11}, + [5159] = {.lex_state = 66, .external_lex_state = 16}, + [5160] = {.lex_state = 66, .external_lex_state = 15}, + [5161] = {.lex_state = 66, .external_lex_state = 12}, + [5162] = {.lex_state = 66, .external_lex_state = 14}, + [5163] = {.lex_state = 66, .external_lex_state = 12}, [5164] = {.lex_state = 66, .external_lex_state = 12}, - [5165] = {.lex_state = 66, .external_lex_state = 12}, - [5166] = {.lex_state = 66, .external_lex_state = 14}, + [5165] = {.lex_state = 66, .external_lex_state = 14}, + [5166] = {.lex_state = 66, .external_lex_state = 11}, [5167] = {.lex_state = 66, .external_lex_state = 11}, [5168] = {.lex_state = 66, .external_lex_state = 11}, - [5169] = {.lex_state = 66, .external_lex_state = 12}, + [5169] = {.lex_state = 66, .external_lex_state = 15}, [5170] = {.lex_state = 66, .external_lex_state = 11}, [5171] = {.lex_state = 66, .external_lex_state = 11}, [5172] = {.lex_state = 66, .external_lex_state = 12}, - [5173] = {.lex_state = 66, .external_lex_state = 12}, - [5174] = {.lex_state = 66, .external_lex_state = 14}, - [5175] = {.lex_state = 66, .external_lex_state = 14}, - [5176] = {.lex_state = 66, .external_lex_state = 14}, + [5173] = {.lex_state = 66, .external_lex_state = 11}, + [5174] = {.lex_state = 66, .external_lex_state = 12}, + [5175] = {.lex_state = 66, .external_lex_state = 11}, + [5176] = {.lex_state = 66, .external_lex_state = 12}, [5177] = {.lex_state = 66, .external_lex_state = 14}, [5178] = {.lex_state = 66, .external_lex_state = 12}, - [5179] = {.lex_state = 66, .external_lex_state = 14}, + [5179] = {.lex_state = 66, .external_lex_state = 16}, [5180] = {.lex_state = 66, .external_lex_state = 12}, [5181] = {.lex_state = 66, .external_lex_state = 14}, - [5182] = {.lex_state = 66, .external_lex_state = 11}, - [5183] = {.lex_state = 66, .external_lex_state = 11}, - [5184] = {.lex_state = 66, .external_lex_state = 14}, - [5185] = {.lex_state = 66, .external_lex_state = 12}, - [5186] = {.lex_state = 66, .external_lex_state = 14}, - [5187] = {.lex_state = 66, .external_lex_state = 12}, - [5188] = {.lex_state = 66, .external_lex_state = 12}, - [5189] = {.lex_state = 66, .external_lex_state = 15}, - [5190] = {.lex_state = 66, .external_lex_state = 12}, - [5191] = {.lex_state = 66, .external_lex_state = 12}, - [5192] = {.lex_state = 66, .external_lex_state = 12}, - [5193] = {.lex_state = 66, .external_lex_state = 12}, - [5194] = {.lex_state = 66, .external_lex_state = 12}, - [5195] = {.lex_state = 66, .external_lex_state = 12}, - [5196] = {.lex_state = 66, .external_lex_state = 15}, - [5197] = {.lex_state = 66, .external_lex_state = 12}, - [5198] = {.lex_state = 66, .external_lex_state = 14}, + [5182] = {.lex_state = 66, .external_lex_state = 14}, + [5183] = {.lex_state = 66, .external_lex_state = 14}, + [5184] = {.lex_state = 66, .external_lex_state = 11}, + [5185] = {.lex_state = 66, .external_lex_state = 14}, + [5186] = {.lex_state = 66, .external_lex_state = 12}, + [5187] = {.lex_state = 66, .external_lex_state = 11}, + [5188] = {.lex_state = 66, .external_lex_state = 11}, + [5189] = {.lex_state = 66, .external_lex_state = 12}, + [5190] = {.lex_state = 66, .external_lex_state = 13}, + [5191] = {.lex_state = 66, .external_lex_state = 14}, + [5192] = {.lex_state = 66, .external_lex_state = 14}, + [5193] = {.lex_state = 66, .external_lex_state = 11}, + [5194] = {.lex_state = 66, .external_lex_state = 16}, + [5195] = {.lex_state = 66, .external_lex_state = 15}, + [5196] = {.lex_state = 66, .external_lex_state = 12}, + [5197] = {.lex_state = 6, .external_lex_state = 12}, + [5198] = {.lex_state = 66, .external_lex_state = 12}, [5199] = {.lex_state = 66, .external_lex_state = 12}, - [5200] = {.lex_state = 66, .external_lex_state = 16}, - [5201] = {.lex_state = 66, .external_lex_state = 14}, - [5202] = {.lex_state = 66, .external_lex_state = 16}, - [5203] = {.lex_state = 66, .external_lex_state = 12}, + [5200] = {.lex_state = 66, .external_lex_state = 12}, + [5201] = {.lex_state = 66, .external_lex_state = 15}, + [5202] = {.lex_state = 66, .external_lex_state = 12}, + [5203] = {.lex_state = 66, .external_lex_state = 14}, [5204] = {.lex_state = 66, .external_lex_state = 14}, - [5205] = {.lex_state = 66, .external_lex_state = 12}, - [5206] = {.lex_state = 66, .external_lex_state = 12}, + [5205] = {.lex_state = 66, .external_lex_state = 16}, + [5206] = {.lex_state = 66, .external_lex_state = 14}, [5207] = {.lex_state = 66, .external_lex_state = 12}, [5208] = {.lex_state = 66, .external_lex_state = 12}, - [5209] = {.lex_state = 66, .external_lex_state = 12}, - [5210] = {.lex_state = 66, .external_lex_state = 16}, - [5211] = {.lex_state = 4, .external_lex_state = 12}, - [5212] = {.lex_state = 66, .external_lex_state = 12}, + [5209] = {.lex_state = 6, .external_lex_state = 12}, + [5210] = {.lex_state = 66, .external_lex_state = 12}, + [5211] = {.lex_state = 66, .external_lex_state = 12}, + [5212] = {.lex_state = 66, .external_lex_state = 14}, [5213] = {.lex_state = 66, .external_lex_state = 12}, - [5214] = {.lex_state = 66, .external_lex_state = 12}, - [5215] = {.lex_state = 66, .external_lex_state = 14}, - [5216] = {.lex_state = 66, .external_lex_state = 15}, + [5214] = {.lex_state = 66, .external_lex_state = 16}, + [5215] = {.lex_state = 66, .external_lex_state = 12}, + [5216] = {.lex_state = 66, .external_lex_state = 12}, [5217] = {.lex_state = 66, .external_lex_state = 12}, - [5218] = {.lex_state = 66, .external_lex_state = 15}, - [5219] = {.lex_state = 66, .external_lex_state = 12}, - [5220] = {.lex_state = 66, .external_lex_state = 12}, + [5218] = {.lex_state = 66, .external_lex_state = 12}, + [5219] = {.lex_state = 66, .external_lex_state = 14}, + [5220] = {.lex_state = 66, .external_lex_state = 15}, [5221] = {.lex_state = 66, .external_lex_state = 12}, - [5222] = {.lex_state = 66, .external_lex_state = 15}, - [5223] = {.lex_state = 66, .external_lex_state = 12}, - [5224] = {.lex_state = 66, .external_lex_state = 12}, - [5225] = {.lex_state = 66, .external_lex_state = 14}, + [5222] = {.lex_state = 66, .external_lex_state = 12}, + [5223] = {.lex_state = 66, .external_lex_state = 14}, + [5224] = {.lex_state = 66, .external_lex_state = 15}, + [5225] = {.lex_state = 66, .external_lex_state = 12}, [5226] = {.lex_state = 66, .external_lex_state = 12}, [5227] = {.lex_state = 66, .external_lex_state = 12}, [5228] = {.lex_state = 66, .external_lex_state = 12}, [5229] = {.lex_state = 66, .external_lex_state = 12}, - [5230] = {.lex_state = 66, .external_lex_state = 12}, + [5230] = {.lex_state = 66, .external_lex_state = 14}, [5231] = {.lex_state = 66, .external_lex_state = 12}, [5232] = {.lex_state = 66, .external_lex_state = 12}, [5233] = {.lex_state = 66, .external_lex_state = 12}, - [5234] = {.lex_state = 66, .external_lex_state = 21}, - [5235] = {.lex_state = 66, .external_lex_state = 14}, - [5236] = {.lex_state = 66, .external_lex_state = 16}, + [5234] = {.lex_state = 66, .external_lex_state = 12}, + [5235] = {.lex_state = 66, .external_lex_state = 16}, + [5236] = {.lex_state = 66, .external_lex_state = 15}, [5237] = {.lex_state = 66, .external_lex_state = 12}, [5238] = {.lex_state = 66, .external_lex_state = 12}, [5239] = {.lex_state = 66, .external_lex_state = 12}, - [5240] = {.lex_state = 66, .external_lex_state = 14}, - [5241] = {.lex_state = 66, .external_lex_state = 14}, - [5242] = {.lex_state = 66, .external_lex_state = 15}, - [5243] = {.lex_state = 66, .external_lex_state = 16}, - [5244] = {.lex_state = 66, .external_lex_state = 12}, - [5245] = {.lex_state = 66, .external_lex_state = 15}, - [5246] = {.lex_state = 6, .external_lex_state = 12}, + [5240] = {.lex_state = 66, .external_lex_state = 12}, + [5241] = {.lex_state = 66, .external_lex_state = 16}, + [5242] = {.lex_state = 66, .external_lex_state = 16}, + [5243] = {.lex_state = 66, .external_lex_state = 14}, + [5244] = {.lex_state = 66, .external_lex_state = 15}, + [5245] = {.lex_state = 66, .external_lex_state = 12}, + [5246] = {.lex_state = 66, .external_lex_state = 12}, [5247] = {.lex_state = 66, .external_lex_state = 12}, [5248] = {.lex_state = 66, .external_lex_state = 12}, - [5249] = {.lex_state = 66, .external_lex_state = 16}, - [5250] = {.lex_state = 66, .external_lex_state = 12}, - [5251] = {.lex_state = 66, .external_lex_state = 21}, - [5252] = {.lex_state = 66, .external_lex_state = 12}, - [5253] = {.lex_state = 66, .external_lex_state = 14}, - [5254] = {.lex_state = 66, .external_lex_state = 12}, + [5249] = {.lex_state = 66, .external_lex_state = 14}, + [5250] = {.lex_state = 66, .external_lex_state = 16}, + [5251] = {.lex_state = 66, .external_lex_state = 12}, + [5252] = {.lex_state = 66, .external_lex_state = 16}, + [5253] = {.lex_state = 66, .external_lex_state = 12}, + [5254] = {.lex_state = 66, .external_lex_state = 16}, [5255] = {.lex_state = 66, .external_lex_state = 12}, - [5256] = {.lex_state = 66, .external_lex_state = 21}, - [5257] = {.lex_state = 66, .external_lex_state = 12}, + [5256] = {.lex_state = 66, .external_lex_state = 15}, + [5257] = {.lex_state = 66, .external_lex_state = 14}, [5258] = {.lex_state = 66, .external_lex_state = 12}, - [5259] = {.lex_state = 66, .external_lex_state = 12}, + [5259] = {.lex_state = 66, .external_lex_state = 16}, [5260] = {.lex_state = 66, .external_lex_state = 12}, [5261] = {.lex_state = 66, .external_lex_state = 12}, [5262] = {.lex_state = 66, .external_lex_state = 12}, - [5263] = {.lex_state = 66, .external_lex_state = 15}, - [5264] = {.lex_state = 66, .external_lex_state = 12}, - [5265] = {.lex_state = 66, .external_lex_state = 12}, + [5263] = {.lex_state = 66, .external_lex_state = 12}, + [5264] = {.lex_state = 66, .external_lex_state = 16}, + [5265] = {.lex_state = 66, .external_lex_state = 16}, [5266] = {.lex_state = 66, .external_lex_state = 12}, [5267] = {.lex_state = 66, .external_lex_state = 12}, [5268] = {.lex_state = 66, .external_lex_state = 12}, @@ -17982,285 +17997,293 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5271] = {.lex_state = 66, .external_lex_state = 12}, [5272] = {.lex_state = 66, .external_lex_state = 12}, [5273] = {.lex_state = 66, .external_lex_state = 12}, - [5274] = {.lex_state = 66, .external_lex_state = 15}, + [5274] = {.lex_state = 66, .external_lex_state = 12}, [5275] = {.lex_state = 66, .external_lex_state = 12}, - [5276] = {.lex_state = 6, .external_lex_state = 12}, + [5276] = {.lex_state = 66, .external_lex_state = 15}, [5277] = {.lex_state = 66, .external_lex_state = 12}, [5278] = {.lex_state = 66, .external_lex_state = 12}, [5279] = {.lex_state = 66, .external_lex_state = 12}, [5280] = {.lex_state = 66, .external_lex_state = 12}, - [5281] = {.lex_state = 6, .external_lex_state = 12}, - [5282] = {.lex_state = 66, .external_lex_state = 16}, - [5283] = {.lex_state = 66, .external_lex_state = 21}, - [5284] = {.lex_state = 66, .external_lex_state = 14}, + [5281] = {.lex_state = 66, .external_lex_state = 12}, + [5282] = {.lex_state = 6, .external_lex_state = 12}, + [5283] = {.lex_state = 66, .external_lex_state = 12}, + [5284] = {.lex_state = 66, .external_lex_state = 12}, [5285] = {.lex_state = 66, .external_lex_state = 12}, [5286] = {.lex_state = 66, .external_lex_state = 12}, [5287] = {.lex_state = 66, .external_lex_state = 12}, - [5288] = {.lex_state = 6, .external_lex_state = 12}, + [5288] = {.lex_state = 66, .external_lex_state = 12}, [5289] = {.lex_state = 66, .external_lex_state = 12}, [5290] = {.lex_state = 66, .external_lex_state = 12}, - [5291] = {.lex_state = 66, .external_lex_state = 12}, - [5292] = {.lex_state = 6, .external_lex_state = 12}, - [5293] = {.lex_state = 66, .external_lex_state = 12}, + [5291] = {.lex_state = 66, .external_lex_state = 21}, + [5292] = {.lex_state = 66, .external_lex_state = 12}, + [5293] = {.lex_state = 66, .external_lex_state = 15}, [5294] = {.lex_state = 66, .external_lex_state = 12}, [5295] = {.lex_state = 66, .external_lex_state = 12}, [5296] = {.lex_state = 66, .external_lex_state = 12}, [5297] = {.lex_state = 66, .external_lex_state = 12}, [5298] = {.lex_state = 66, .external_lex_state = 12}, [5299] = {.lex_state = 66, .external_lex_state = 12}, - [5300] = {.lex_state = 66, .external_lex_state = 12}, - [5301] = {.lex_state = 66, .external_lex_state = 12}, - [5302] = {.lex_state = 66, .external_lex_state = 12}, + [5300] = {.lex_state = 66, .external_lex_state = 15}, + [5301] = {.lex_state = 66, .external_lex_state = 16}, + [5302] = {.lex_state = 66, .external_lex_state = 15}, [5303] = {.lex_state = 66, .external_lex_state = 12}, - [5304] = {.lex_state = 6, .external_lex_state = 12}, - [5305] = {.lex_state = 66, .external_lex_state = 11}, - [5306] = {.lex_state = 66, .external_lex_state = 16}, - [5307] = {.lex_state = 66, .external_lex_state = 12}, + [5304] = {.lex_state = 66, .external_lex_state = 15}, + [5305] = {.lex_state = 66, .external_lex_state = 12}, + [5306] = {.lex_state = 66, .external_lex_state = 12}, + [5307] = {.lex_state = 6, .external_lex_state = 12}, [5308] = {.lex_state = 66, .external_lex_state = 12}, [5309] = {.lex_state = 66, .external_lex_state = 12}, - [5310] = {.lex_state = 6, .external_lex_state = 12}, - [5311] = {.lex_state = 66, .external_lex_state = 12}, - [5312] = {.lex_state = 66, .external_lex_state = 15}, + [5310] = {.lex_state = 66, .external_lex_state = 15}, + [5311] = {.lex_state = 6, .external_lex_state = 12}, + [5312] = {.lex_state = 66, .external_lex_state = 12}, [5313] = {.lex_state = 66, .external_lex_state = 15}, - [5314] = {.lex_state = 66, .external_lex_state = 14}, - [5315] = {.lex_state = 66, .external_lex_state = 16}, + [5314] = {.lex_state = 66, .external_lex_state = 12}, + [5315] = {.lex_state = 66, .external_lex_state = 12}, [5316] = {.lex_state = 66, .external_lex_state = 12}, [5317] = {.lex_state = 66, .external_lex_state = 12}, - [5318] = {.lex_state = 66, .external_lex_state = 14}, - [5319] = {.lex_state = 66, .external_lex_state = 13}, - [5320] = {.lex_state = 66, .external_lex_state = 12}, + [5318] = {.lex_state = 66, .external_lex_state = 12}, + [5319] = {.lex_state = 66, .external_lex_state = 14}, + [5320] = {.lex_state = 6, .external_lex_state = 12}, [5321] = {.lex_state = 66, .external_lex_state = 12}, [5322] = {.lex_state = 66, .external_lex_state = 12}, [5323] = {.lex_state = 66, .external_lex_state = 12}, - [5324] = {.lex_state = 66, .external_lex_state = 16}, - [5325] = {.lex_state = 66, .external_lex_state = 15}, - [5326] = {.lex_state = 66, .external_lex_state = 15}, + [5324] = {.lex_state = 66, .external_lex_state = 12}, + [5325] = {.lex_state = 66, .external_lex_state = 12}, + [5326] = {.lex_state = 66, .external_lex_state = 14}, [5327] = {.lex_state = 66, .external_lex_state = 12}, - [5328] = {.lex_state = 66, .external_lex_state = 16}, - [5329] = {.lex_state = 66, .external_lex_state = 12}, - [5330] = {.lex_state = 66, .external_lex_state = 15}, - [5331] = {.lex_state = 6, .external_lex_state = 12}, - [5332] = {.lex_state = 6, .external_lex_state = 12}, + [5328] = {.lex_state = 66, .external_lex_state = 12}, + [5329] = {.lex_state = 66, .external_lex_state = 16}, + [5330] = {.lex_state = 66, .external_lex_state = 12}, + [5331] = {.lex_state = 66, .external_lex_state = 12}, + [5332] = {.lex_state = 66, .external_lex_state = 15}, [5333] = {.lex_state = 66, .external_lex_state = 12}, - [5334] = {.lex_state = 6, .external_lex_state = 12}, + [5334] = {.lex_state = 66, .external_lex_state = 13}, [5335] = {.lex_state = 66, .external_lex_state = 12}, - [5336] = {.lex_state = 66, .external_lex_state = 12}, - [5337] = {.lex_state = 66, .external_lex_state = 12}, + [5336] = {.lex_state = 66, .external_lex_state = 16}, + [5337] = {.lex_state = 6, .external_lex_state = 12}, [5338] = {.lex_state = 66, .external_lex_state = 12}, [5339] = {.lex_state = 66, .external_lex_state = 12}, - [5340] = {.lex_state = 66, .external_lex_state = 16}, - [5341] = {.lex_state = 66, .external_lex_state = 12}, + [5340] = {.lex_state = 66, .external_lex_state = 12}, + [5341] = {.lex_state = 66, .external_lex_state = 14}, [5342] = {.lex_state = 66, .external_lex_state = 14}, - [5343] = {.lex_state = 66, .external_lex_state = 16}, - [5344] = {.lex_state = 66, .external_lex_state = 13}, - [5345] = {.lex_state = 66, .external_lex_state = 15}, + [5343] = {.lex_state = 66, .external_lex_state = 12}, + [5344] = {.lex_state = 66, .external_lex_state = 12}, + [5345] = {.lex_state = 66, .external_lex_state = 12}, [5346] = {.lex_state = 66, .external_lex_state = 15}, [5347] = {.lex_state = 66, .external_lex_state = 12}, - [5348] = {.lex_state = 66, .external_lex_state = 12}, - [5349] = {.lex_state = 66, .external_lex_state = 12}, + [5348] = {.lex_state = 66, .external_lex_state = 14}, + [5349] = {.lex_state = 66, .external_lex_state = 13}, [5350] = {.lex_state = 66, .external_lex_state = 12}, - [5351] = {.lex_state = 66, .external_lex_state = 12}, - [5352] = {.lex_state = 66, .external_lex_state = 13}, + [5351] = {.lex_state = 6, .external_lex_state = 12}, + [5352] = {.lex_state = 66, .external_lex_state = 12}, [5353] = {.lex_state = 66, .external_lex_state = 12}, [5354] = {.lex_state = 66, .external_lex_state = 12}, [5355] = {.lex_state = 66, .external_lex_state = 12}, - [5356] = {.lex_state = 66, .external_lex_state = 15}, - [5357] = {.lex_state = 66, .external_lex_state = 15}, + [5356] = {.lex_state = 66, .external_lex_state = 12}, + [5357] = {.lex_state = 66, .external_lex_state = 14}, [5358] = {.lex_state = 66, .external_lex_state = 12}, - [5359] = {.lex_state = 66, .external_lex_state = 14}, - [5360] = {.lex_state = 66, .external_lex_state = 12}, + [5359] = {.lex_state = 66, .external_lex_state = 16}, + [5360] = {.lex_state = 66, .external_lex_state = 15}, [5361] = {.lex_state = 66, .external_lex_state = 12}, - [5362] = {.lex_state = 66, .external_lex_state = 14}, - [5363] = {.lex_state = 66, .external_lex_state = 14}, + [5362] = {.lex_state = 66, .external_lex_state = 15}, + [5363] = {.lex_state = 66, .external_lex_state = 15}, [5364] = {.lex_state = 66, .external_lex_state = 12}, - [5365] = {.lex_state = 66, .external_lex_state = 12}, - [5366] = {.lex_state = 6, .external_lex_state = 12}, - [5367] = {.lex_state = 66, .external_lex_state = 12}, - [5368] = {.lex_state = 66, .external_lex_state = 12}, - [5369] = {.lex_state = 66, .external_lex_state = 14}, + [5365] = {.lex_state = 4, .external_lex_state = 12}, + [5366] = {.lex_state = 66, .external_lex_state = 12}, + [5367] = {.lex_state = 6, .external_lex_state = 12}, + [5368] = {.lex_state = 6, .external_lex_state = 12}, + [5369] = {.lex_state = 6, .external_lex_state = 12}, [5370] = {.lex_state = 66, .external_lex_state = 12}, - [5371] = {.lex_state = 66, .external_lex_state = 16}, - [5372] = {.lex_state = 66, .external_lex_state = 12}, + [5371] = {.lex_state = 66, .external_lex_state = 12}, + [5372] = {.lex_state = 66, .external_lex_state = 14}, [5373] = {.lex_state = 66, .external_lex_state = 12}, - [5374] = {.lex_state = 66, .external_lex_state = 12}, - [5375] = {.lex_state = 66, .external_lex_state = 16}, - [5376] = {.lex_state = 6, .external_lex_state = 12}, - [5377] = {.lex_state = 66, .external_lex_state = 15}, + [5374] = {.lex_state = 66, .external_lex_state = 14}, + [5375] = {.lex_state = 66, .external_lex_state = 14}, + [5376] = {.lex_state = 66, .external_lex_state = 16}, + [5377] = {.lex_state = 66, .external_lex_state = 12}, [5378] = {.lex_state = 66, .external_lex_state = 12}, - [5379] = {.lex_state = 66, .external_lex_state = 12}, + [5379] = {.lex_state = 66, .external_lex_state = 11}, [5380] = {.lex_state = 66, .external_lex_state = 12}, - [5381] = {.lex_state = 66, .external_lex_state = 16}, - [5382] = {.lex_state = 66, .external_lex_state = 15}, - [5383] = {.lex_state = 66, .external_lex_state = 12}, - [5384] = {.lex_state = 66, .external_lex_state = 12}, - [5385] = {.lex_state = 66, .external_lex_state = 13}, + [5381] = {.lex_state = 66, .external_lex_state = 12}, + [5382] = {.lex_state = 66, .external_lex_state = 12}, + [5383] = {.lex_state = 66, .external_lex_state = 14}, + [5384] = {.lex_state = 66, .external_lex_state = 16}, + [5385] = {.lex_state = 66, .external_lex_state = 12}, [5386] = {.lex_state = 66, .external_lex_state = 12}, - [5387] = {.lex_state = 66, .external_lex_state = 12}, + [5387] = {.lex_state = 66, .external_lex_state = 15}, [5388] = {.lex_state = 66, .external_lex_state = 12}, - [5389] = {.lex_state = 66, .external_lex_state = 12}, - [5390] = {.lex_state = 66, .external_lex_state = 12}, - [5391] = {.lex_state = 66, .external_lex_state = 14}, - [5392] = {.lex_state = 66, .external_lex_state = 12}, + [5389] = {.lex_state = 66, .external_lex_state = 13}, + [5390] = {.lex_state = 66, .external_lex_state = 15}, + [5391] = {.lex_state = 66, .external_lex_state = 12}, + [5392] = {.lex_state = 66, .external_lex_state = 15}, [5393] = {.lex_state = 66, .external_lex_state = 12}, [5394] = {.lex_state = 66, .external_lex_state = 12}, [5395] = {.lex_state = 66, .external_lex_state = 12}, [5396] = {.lex_state = 66, .external_lex_state = 12}, [5397] = {.lex_state = 66, .external_lex_state = 12}, - [5398] = {.lex_state = 66, .external_lex_state = 12}, - [5399] = {.lex_state = 66, .external_lex_state = 12}, + [5398] = {.lex_state = 66, .external_lex_state = 14}, + [5399] = {.lex_state = 6, .external_lex_state = 12}, [5400] = {.lex_state = 66, .external_lex_state = 12}, - [5401] = {.lex_state = 66, .external_lex_state = 15}, - [5402] = {.lex_state = 66, .external_lex_state = 12}, + [5401] = {.lex_state = 66, .external_lex_state = 12}, + [5402] = {.lex_state = 66, .external_lex_state = 14}, [5403] = {.lex_state = 66, .external_lex_state = 12}, - [5404] = {.lex_state = 66, .external_lex_state = 12}, + [5404] = {.lex_state = 6, .external_lex_state = 12}, [5405] = {.lex_state = 66, .external_lex_state = 12}, - [5406] = {.lex_state = 66, .external_lex_state = 15}, - [5407] = {.lex_state = 66, .external_lex_state = 15}, + [5406] = {.lex_state = 66, .external_lex_state = 12}, + [5407] = {.lex_state = 66, .external_lex_state = 12}, [5408] = {.lex_state = 66, .external_lex_state = 12}, [5409] = {.lex_state = 66, .external_lex_state = 12}, [5410] = {.lex_state = 66, .external_lex_state = 12}, - [5411] = {.lex_state = 66, .external_lex_state = 12}, - [5412] = {.lex_state = 66, .external_lex_state = 21}, + [5411] = {.lex_state = 66, .external_lex_state = 14}, + [5412] = {.lex_state = 66, .external_lex_state = 12}, [5413] = {.lex_state = 66, .external_lex_state = 12}, - [5414] = {.lex_state = 66, .external_lex_state = 15}, + [5414] = {.lex_state = 66, .external_lex_state = 14}, [5415] = {.lex_state = 66, .external_lex_state = 12}, - [5416] = {.lex_state = 66, .external_lex_state = 14}, - [5417] = {.lex_state = 66, .external_lex_state = 12}, - [5418] = {.lex_state = 66, .external_lex_state = 15}, + [5416] = {.lex_state = 66, .external_lex_state = 16}, + [5417] = {.lex_state = 66, .external_lex_state = 15}, + [5418] = {.lex_state = 66, .external_lex_state = 12}, [5419] = {.lex_state = 66, .external_lex_state = 12}, - [5420] = {.lex_state = 66, .external_lex_state = 15}, + [5420] = {.lex_state = 66, .external_lex_state = 21}, [5421] = {.lex_state = 66, .external_lex_state = 12}, [5422] = {.lex_state = 66, .external_lex_state = 12}, - [5423] = {.lex_state = 66, .external_lex_state = 21}, - [5424] = {.lex_state = 66, .external_lex_state = 21}, + [5423] = {.lex_state = 66, .external_lex_state = 12}, + [5424] = {.lex_state = 66, .external_lex_state = 15}, [5425] = {.lex_state = 66, .external_lex_state = 12}, [5426] = {.lex_state = 66, .external_lex_state = 12}, - [5427] = {.lex_state = 66, .external_lex_state = 14}, - [5428] = {.lex_state = 66, .external_lex_state = 15}, + [5427] = {.lex_state = 66, .external_lex_state = 12}, + [5428] = {.lex_state = 66, .external_lex_state = 13}, [5429] = {.lex_state = 66, .external_lex_state = 12}, [5430] = {.lex_state = 66, .external_lex_state = 12}, - [5431] = {.lex_state = 66, .external_lex_state = 12}, + [5431] = {.lex_state = 66, .external_lex_state = 21}, [5432] = {.lex_state = 66, .external_lex_state = 21}, - [5433] = {.lex_state = 66, .external_lex_state = 14}, - [5434] = {.lex_state = 66, .external_lex_state = 21}, - [5435] = {.lex_state = 66, .external_lex_state = 21}, + [5433] = {.lex_state = 66, .external_lex_state = 12}, + [5434] = {.lex_state = 66, .external_lex_state = 12}, + [5435] = {.lex_state = 66, .external_lex_state = 12}, [5436] = {.lex_state = 66, .external_lex_state = 12}, - [5437] = {.lex_state = 66, .external_lex_state = 14}, - [5438] = {.lex_state = 66, .external_lex_state = 16}, - [5439] = {.lex_state = 66, .external_lex_state = 12}, + [5437] = {.lex_state = 66, .external_lex_state = 12}, + [5438] = {.lex_state = 66, .external_lex_state = 12}, + [5439] = {.lex_state = 66, .external_lex_state = 16}, [5440] = {.lex_state = 66, .external_lex_state = 12}, - [5441] = {.lex_state = 66, .external_lex_state = 14}, - [5442] = {.lex_state = 66, .external_lex_state = 15}, - [5443] = {.lex_state = 6, .external_lex_state = 12}, + [5441] = {.lex_state = 66, .external_lex_state = 12}, + [5442] = {.lex_state = 66, .external_lex_state = 21}, + [5443] = {.lex_state = 66, .external_lex_state = 21}, [5444] = {.lex_state = 66, .external_lex_state = 12}, - [5445] = {.lex_state = 66, .external_lex_state = 12}, + [5445] = {.lex_state = 66, .external_lex_state = 15}, [5446] = {.lex_state = 66, .external_lex_state = 12}, [5447] = {.lex_state = 66, .external_lex_state = 12}, - [5448] = {.lex_state = 66, .external_lex_state = 14}, + [5448] = {.lex_state = 66, .external_lex_state = 21}, [5449] = {.lex_state = 66, .external_lex_state = 12}, - [5450] = {.lex_state = 66, .external_lex_state = 12}, + [5450] = {.lex_state = 66, .external_lex_state = 14}, [5451] = {.lex_state = 66, .external_lex_state = 12}, [5452] = {.lex_state = 66, .external_lex_state = 14}, [5453] = {.lex_state = 66, .external_lex_state = 12}, [5454] = {.lex_state = 66, .external_lex_state = 12}, [5455] = {.lex_state = 66, .external_lex_state = 12}, - [5456] = {.lex_state = 66, .external_lex_state = 13}, + [5456] = {.lex_state = 6, .external_lex_state = 12}, [5457] = {.lex_state = 66, .external_lex_state = 12}, - [5458] = {.lex_state = 66, .external_lex_state = 12}, - [5459] = {.lex_state = 66, .external_lex_state = 12}, - [5460] = {.lex_state = 66, .external_lex_state = 16}, - [5461] = {.lex_state = 66, .external_lex_state = 15}, - [5462] = {.lex_state = 66, .external_lex_state = 15}, - [5463] = {.lex_state = 66, .external_lex_state = 12}, - [5464] = {.lex_state = 66, .external_lex_state = 16}, + [5458] = {.lex_state = 66, .external_lex_state = 16}, + [5459] = {.lex_state = 66, .external_lex_state = 16}, + [5460] = {.lex_state = 66, .external_lex_state = 12}, + [5461] = {.lex_state = 66, .external_lex_state = 12}, + [5462] = {.lex_state = 66, .external_lex_state = 12}, + [5463] = {.lex_state = 66, .external_lex_state = 15}, + [5464] = {.lex_state = 66, .external_lex_state = 14}, [5465] = {.lex_state = 66, .external_lex_state = 15}, - [5466] = {.lex_state = 66, .external_lex_state = 12}, + [5466] = {.lex_state = 66, .external_lex_state = 21}, [5467] = {.lex_state = 66, .external_lex_state = 12}, - [5468] = {.lex_state = 66, .external_lex_state = 12}, - [5469] = {.lex_state = 66, .external_lex_state = 15}, - [5470] = {.lex_state = 66, .external_lex_state = 15}, - [5471] = {.lex_state = 66, .external_lex_state = 12}, + [5468] = {.lex_state = 66, .external_lex_state = 16}, + [5469] = {.lex_state = 66, .external_lex_state = 12}, + [5470] = {.lex_state = 66, .external_lex_state = 12}, + [5471] = {.lex_state = 66, .external_lex_state = 15}, [5472] = {.lex_state = 66, .external_lex_state = 12}, - [5473] = {.lex_state = 66, .external_lex_state = 13}, - [5474] = {.lex_state = 66, .external_lex_state = 12}, - [5475] = {.lex_state = 66, .external_lex_state = 12}, - [5476] = {.lex_state = 66, .external_lex_state = 12}, - [5477] = {.lex_state = 66, .external_lex_state = 12}, - [5478] = {.lex_state = 66, .external_lex_state = 12}, - [5479] = {.lex_state = 6, .external_lex_state = 12}, - [5480] = {.lex_state = 66, .external_lex_state = 12}, + [5473] = {.lex_state = 66, .external_lex_state = 12}, + [5474] = {.lex_state = 66, .external_lex_state = 15}, + [5475] = {.lex_state = 66, .external_lex_state = 14}, + [5476] = {.lex_state = 66, .external_lex_state = 15}, + [5477] = {.lex_state = 66, .external_lex_state = 21}, + [5478] = {.lex_state = 66, .external_lex_state = 14}, + [5479] = {.lex_state = 66, .external_lex_state = 16}, + [5480] = {.lex_state = 66, .external_lex_state = 21}, [5481] = {.lex_state = 66, .external_lex_state = 12}, [5482] = {.lex_state = 66, .external_lex_state = 12}, - [5483] = {.lex_state = 66, .external_lex_state = 12}, - [5484] = {.lex_state = 66, .external_lex_state = 14}, - [5485] = {.lex_state = 6, .external_lex_state = 12}, + [5483] = {.lex_state = 66, .external_lex_state = 13}, + [5484] = {.lex_state = 66, .external_lex_state = 15}, + [5485] = {.lex_state = 66, .external_lex_state = 21}, [5486] = {.lex_state = 66, .external_lex_state = 12}, - [5487] = {.lex_state = 66, .external_lex_state = 14}, - [5488] = {.lex_state = 66, .external_lex_state = 14}, + [5487] = {.lex_state = 6, .external_lex_state = 12}, + [5488] = {.lex_state = 66, .external_lex_state = 12}, [5489] = {.lex_state = 66, .external_lex_state = 12}, - [5490] = {.lex_state = 66, .external_lex_state = 12}, - [5491] = {.lex_state = 66, .external_lex_state = 16}, - [5492] = {.lex_state = 66, .external_lex_state = 14}, - [5493] = {.lex_state = 66, .external_lex_state = 12}, + [5490] = {.lex_state = 6, .external_lex_state = 12}, + [5491] = {.lex_state = 66, .external_lex_state = 12}, + [5492] = {.lex_state = 6, .external_lex_state = 12}, + [5493] = {.lex_state = 6, .external_lex_state = 12}, [5494] = {.lex_state = 66, .external_lex_state = 12}, - [5495] = {.lex_state = 66, .external_lex_state = 16}, - [5496] = {.lex_state = 66, .external_lex_state = 14}, - [5497] = {.lex_state = 66, .external_lex_state = 12}, - [5498] = {.lex_state = 66, .external_lex_state = 15}, + [5495] = {.lex_state = 66, .external_lex_state = 12}, + [5496] = {.lex_state = 66, .external_lex_state = 12}, + [5497] = {.lex_state = 66, .external_lex_state = 14}, + [5498] = {.lex_state = 66, .external_lex_state = 12}, [5499] = {.lex_state = 66, .external_lex_state = 16}, - [5500] = {.lex_state = 66, .external_lex_state = 15}, - [5501] = {.lex_state = 66, .external_lex_state = 15}, + [5500] = {.lex_state = 66, .external_lex_state = 12}, + [5501] = {.lex_state = 66, .external_lex_state = 12}, [5502] = {.lex_state = 66, .external_lex_state = 12}, - [5503] = {.lex_state = 66, .external_lex_state = 12}, - [5504] = {.lex_state = 66, .external_lex_state = 12}, - [5505] = {.lex_state = 66, .external_lex_state = 12}, + [5503] = {.lex_state = 66, .external_lex_state = 15}, + [5504] = {.lex_state = 66, .external_lex_state = 15}, + [5505] = {.lex_state = 66, .external_lex_state = 15}, [5506] = {.lex_state = 66, .external_lex_state = 12}, - [5507] = {.lex_state = 66, .external_lex_state = 12}, + [5507] = {.lex_state = 66, .external_lex_state = 15}, [5508] = {.lex_state = 66, .external_lex_state = 12}, - [5509] = {.lex_state = 66, .external_lex_state = 12}, + [5509] = {.lex_state = 66, .external_lex_state = 15}, [5510] = {.lex_state = 66, .external_lex_state = 12}, [5511] = {.lex_state = 66, .external_lex_state = 12}, - [5512] = {.lex_state = 66, .external_lex_state = 14}, - [5513] = {.lex_state = 66, .external_lex_state = 21}, + [5512] = {.lex_state = 66, .external_lex_state = 12}, + [5513] = {.lex_state = 66, .external_lex_state = 12}, [5514] = {.lex_state = 66, .external_lex_state = 12}, - [5515] = {.lex_state = 66, .external_lex_state = 14}, + [5515] = {.lex_state = 66, .external_lex_state = 12}, [5516] = {.lex_state = 66, .external_lex_state = 12}, [5517] = {.lex_state = 66, .external_lex_state = 12}, [5518] = {.lex_state = 66, .external_lex_state = 12}, - [5519] = {.lex_state = 6, .external_lex_state = 12}, + [5519] = {.lex_state = 66, .external_lex_state = 12}, [5520] = {.lex_state = 66, .external_lex_state = 12}, - [5521] = {.lex_state = 66, .external_lex_state = 12}, - [5522] = {.lex_state = 66, .external_lex_state = 14}, + [5521] = {.lex_state = 66, .external_lex_state = 13}, + [5522] = {.lex_state = 66, .external_lex_state = 12}, [5523] = {.lex_state = 66, .external_lex_state = 12}, [5524] = {.lex_state = 66, .external_lex_state = 12}, - [5525] = {.lex_state = 66, .external_lex_state = 16}, - [5526] = {.lex_state = 66, .external_lex_state = 14}, + [5525] = {.lex_state = 66, .external_lex_state = 12}, + [5526] = {.lex_state = 66, .external_lex_state = 12}, [5527] = {.lex_state = 66, .external_lex_state = 14}, - [5528] = {.lex_state = 6, .external_lex_state = 12}, - [5529] = {.lex_state = 66, .external_lex_state = 12}, - [5530] = {.lex_state = 66, .external_lex_state = 16}, - [5531] = {.lex_state = 66, .external_lex_state = 15}, - [5532] = {.lex_state = 66, .external_lex_state = 15}, - [5533] = {.lex_state = 66, .external_lex_state = 14}, - [5534] = {.lex_state = 6, .external_lex_state = 12}, - [5535] = {.lex_state = 66, .external_lex_state = 21}, - [5536] = {.lex_state = 66, .external_lex_state = 15}, + [5528] = {.lex_state = 66, .external_lex_state = 14}, + [5529] = {.lex_state = 66, .external_lex_state = 15}, + [5530] = {.lex_state = 66, .external_lex_state = 12}, + [5531] = {.lex_state = 66, .external_lex_state = 12}, + [5532] = {.lex_state = 66, .external_lex_state = 12}, + [5533] = {.lex_state = 66, .external_lex_state = 12}, + [5534] = {.lex_state = 66, .external_lex_state = 12}, + [5535] = {.lex_state = 66, .external_lex_state = 14}, + [5536] = {.lex_state = 66, .external_lex_state = 12}, [5537] = {.lex_state = 66, .external_lex_state = 12}, - [5538] = {.lex_state = 66, .external_lex_state = 12}, + [5538] = {.lex_state = 66, .external_lex_state = 14}, [5539] = {.lex_state = 66, .external_lex_state = 12}, [5540] = {.lex_state = 66, .external_lex_state = 12}, - [5541] = {.lex_state = 66, .external_lex_state = 12}, + [5541] = {.lex_state = 66, .external_lex_state = 15}, [5542] = {.lex_state = 66, .external_lex_state = 15}, [5543] = {.lex_state = 66, .external_lex_state = 12}, [5544] = {.lex_state = 66, .external_lex_state = 12}, [5545] = {.lex_state = 66, .external_lex_state = 12}, [5546] = {.lex_state = 66, .external_lex_state = 12}, [5547] = {.lex_state = 66, .external_lex_state = 16}, - [5548] = {.lex_state = 6, .external_lex_state = 12}, - [5549] = {.lex_state = 66, .external_lex_state = 12}, - [5550] = {.lex_state = 66, .external_lex_state = 12}, + [5548] = {.lex_state = 66, .external_lex_state = 21}, + [5549] = {.lex_state = 66, .external_lex_state = 15}, + [5550] = {.lex_state = 66, .external_lex_state = 14}, [5551] = {.lex_state = 6, .external_lex_state = 12}, - [5552] = {.lex_state = 66, .external_lex_state = 14}, + [5552] = {.lex_state = 66, .external_lex_state = 12}, + [5553] = {.lex_state = 66, .external_lex_state = 12}, + [5554] = {.lex_state = 66, .external_lex_state = 12}, + [5555] = {.lex_state = 66, .external_lex_state = 12}, + [5556] = {.lex_state = 6, .external_lex_state = 12}, + [5557] = {.lex_state = 66, .external_lex_state = 12}, + [5558] = {.lex_state = 66, .external_lex_state = 14}, + [5559] = {.lex_state = 66, .external_lex_state = 14}, + [5560] = {.lex_state = 66, .external_lex_state = 12}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -18354,7 +18377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(1), [anon_sym_PIPE_EQ] = ACTIONS(1), [anon_sym_yield] = ACTIONS(1), - [sym_ellipsis] = ACTIONS(1), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1), [anon_sym_None] = ACTIONS(1), [sym_escape_sequence] = ACTIONS(1), [anon_sym_BSLASH] = ACTIONS(1), @@ -18432,23 +18455,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_end] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(5355), + [sym_module] = STATE(5208), [sym__statement] = STATE(176), [sym__simple_statements] = STATE(176), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), [sym_if_statement] = STATE(176), [sym_match_statement] = STATE(176), [sym_for_statement] = STATE(176), @@ -18456,60 +18479,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(176), [sym_with_statement] = STATE(176), [sym_function_definition] = STATE(176), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), [sym_class_definition] = STATE(176), [sym_decorated_definition] = STATE(176), - [sym_decorator] = STATE(3070), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3091), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_run_directive] = STATE(177), [sym_property_definition] = STATE(176), - [sym_include_statement] = STATE(4618), + [sym_include_statement] = STATE(4598), [sym_def_statement] = STATE(176), [sym_cdef_statement] = STATE(176), [sym_ctypedef_statement] = STATE(176), - [sym_storageclass] = STATE(3759), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3804), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(176), - [aux_sym_class_definition_repeat1] = STATE(3759), - [aux_sym_decorated_definition_repeat1] = STATE(3070), + [aux_sym_class_definition_repeat1] = STATE(3804), + [aux_sym_decorated_definition_repeat1] = STATE(3091), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -18549,48 +18573,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_PYTHON] = ACTIONS(87), - [anon_sym_property] = ACTIONS(89), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(93), - [anon_sym_cdef] = ACTIONS(95), - [anon_sym_cpdef] = ACTIONS(95), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(99), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym_string_start] = ACTIONS(105), + [anon_sym_PYTHON] = ACTIONS(89), + [anon_sym_property] = ACTIONS(91), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(95), + [anon_sym_cdef] = ACTIONS(97), + [anon_sym_cpdef] = ACTIONS(97), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(101), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym_string_start] = ACTIONS(107), }, [2] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -18598,60 +18622,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), + [sym_decorator] = STATE(3060), [sym_block] = STATE(2749), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -18666,19 +18691,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -18690,48 +18715,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [3] = { [sym__statement] = STATE(179), [sym__simple_statements] = STATE(179), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(179), [sym_match_statement] = STATE(179), [sym_for_statement] = STATE(179), @@ -18739,60 +18764,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(179), [sym_with_statement] = STATE(179), [sym_function_definition] = STATE(179), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(179), [sym_decorated_definition] = STATE(179), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(3819), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(3816), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(179), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(179), [sym_cdef_statement] = STATE(179), [sym_ctypedef_statement] = STATE(179), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(179), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -18807,19 +18833,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -18831,48 +18857,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(137), + [sym_string_start] = ACTIONS(107), }, [4] = { [sym__statement] = STATE(179), [sym__simple_statements] = STATE(179), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(179), [sym_match_statement] = STATE(179), [sym_for_statement] = STATE(179), @@ -18880,60 +18906,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(179), [sym_with_statement] = STATE(179), [sym_function_definition] = STATE(179), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(179), [sym_decorated_definition] = STATE(179), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(3749), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(3773), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(179), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(179), [sym_cdef_statement] = STATE(179), [sym_ctypedef_statement] = STATE(179), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(179), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -18948,19 +18975,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -18972,48 +18999,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(137), + [sym_string_start] = ACTIONS(107), }, [5] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -19021,60 +19048,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(835), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(839), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19089,19 +19117,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -19113,48 +19141,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [6] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -19162,60 +19190,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(954), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(991), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19230,19 +19259,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -19254,48 +19283,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [7] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -19303,60 +19332,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(998), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1002), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19371,19 +19401,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -19395,48 +19425,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [8] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -19444,60 +19474,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1334), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1332), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19512,19 +19543,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -19536,48 +19567,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [9] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -19585,60 +19616,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1117), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1211), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19653,19 +19685,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -19677,48 +19709,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [10] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -19726,60 +19758,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1343), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1372), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19794,19 +19827,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -19818,48 +19851,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [11] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -19867,60 +19900,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1231), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1173), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19935,19 +19969,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -19959,48 +19993,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [12] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -20008,60 +20042,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(980), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(982), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20076,19 +20111,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -20100,48 +20135,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [13] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -20149,60 +20184,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1287), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1433), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20217,19 +20253,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -20241,48 +20277,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [14] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -20290,60 +20326,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1397), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1511), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20358,19 +20395,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -20382,48 +20419,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [15] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -20431,60 +20468,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1162), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1218), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20499,19 +20537,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -20523,48 +20561,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [16] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -20572,60 +20610,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1164), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1219), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20640,19 +20679,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -20664,48 +20703,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [17] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -20713,60 +20752,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1165), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1220), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20781,19 +20821,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -20805,48 +20845,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [18] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -20854,60 +20894,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1178), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1252), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20922,19 +20963,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -20946,48 +20987,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [19] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -20995,60 +21036,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1202), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1070), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21063,19 +21105,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -21087,48 +21129,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [20] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -21136,60 +21178,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1019), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1097), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21204,19 +21247,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -21228,48 +21271,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [21] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -21277,60 +21320,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1289), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1669), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21345,19 +21389,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -21369,48 +21413,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [22] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -21418,60 +21462,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1000), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1037), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21486,19 +21531,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -21510,48 +21555,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [23] = { [sym__statement] = STATE(180), [sym__simple_statements] = STATE(180), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(180), [sym_match_statement] = STATE(180), [sym_for_statement] = STATE(180), @@ -21559,60 +21604,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(180), [sym_with_statement] = STATE(180), [sym_function_definition] = STATE(180), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(180), [sym_decorated_definition] = STATE(180), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(877), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(972), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(180), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(180), [sym_cdef_statement] = STATE(180), [sym_ctypedef_statement] = STATE(180), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(180), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21627,19 +21673,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -21651,48 +21697,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(139), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(141), + [sym_string_start] = ACTIONS(107), }, [24] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -21700,60 +21746,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1370), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1683), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21768,19 +21815,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -21792,48 +21839,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [25] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -21841,60 +21888,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1380), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1701), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21909,19 +21957,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -21933,48 +21981,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [26] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -21982,60 +22030,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1111), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1264), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22050,19 +22099,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -22074,48 +22123,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [27] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -22123,60 +22172,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1112), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1265), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22191,19 +22241,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -22215,48 +22265,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [28] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -22264,60 +22314,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1115), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1268), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22332,19 +22383,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -22356,48 +22407,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [29] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -22405,60 +22456,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1125), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1195), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22473,19 +22525,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -22497,48 +22549,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [30] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -22546,60 +22598,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1146), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1115), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22614,19 +22667,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -22638,48 +22691,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [31] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -22687,60 +22740,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1150), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1117), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22755,19 +22809,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -22779,48 +22833,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [32] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -22828,60 +22882,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1151), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1119), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22896,19 +22951,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -22920,48 +22975,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [33] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -22969,60 +23024,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1163), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1151), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23037,19 +23093,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -23061,48 +23117,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [34] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -23110,60 +23166,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(955), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1014), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23178,19 +23235,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -23202,48 +23259,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [35] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -23251,60 +23308,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1297), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1309), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23319,19 +23377,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -23343,48 +23401,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [36] = { [sym__statement] = STATE(180), [sym__simple_statements] = STATE(180), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(180), [sym_match_statement] = STATE(180), [sym_for_statement] = STATE(180), @@ -23392,60 +23450,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(180), [sym_with_statement] = STATE(180), [sym_function_definition] = STATE(180), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(180), [sym_decorated_definition] = STATE(180), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(924), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(959), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(180), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(180), [sym_cdef_statement] = STATE(180), [sym_ctypedef_statement] = STATE(180), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(180), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23460,19 +23519,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -23484,48 +23543,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(139), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(141), + [sym_string_start] = ACTIONS(107), }, [37] = { [sym__statement] = STATE(184), [sym__simple_statements] = STATE(184), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(184), [sym_match_statement] = STATE(184), [sym_for_statement] = STATE(184), @@ -23533,60 +23592,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(184), [sym_with_statement] = STATE(184), [sym_function_definition] = STATE(184), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(184), [sym_decorated_definition] = STATE(184), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(928), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(960), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(184), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(184), [sym_cdef_statement] = STATE(184), [sym_ctypedef_statement] = STATE(184), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(184), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23601,19 +23661,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -23625,48 +23685,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(141), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(107), }, [38] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -23674,60 +23734,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1307), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1314), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23742,19 +23803,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -23766,48 +23827,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [39] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -23815,60 +23876,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1185), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1202), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23883,19 +23945,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -23907,48 +23969,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [40] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -23956,60 +24018,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1194), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1181), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24024,19 +24087,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -24048,48 +24111,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [41] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -24097,60 +24160,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1198), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1229), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24165,19 +24229,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -24189,48 +24253,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [42] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -24238,60 +24302,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1012), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1226), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24306,19 +24371,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -24330,48 +24395,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [43] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -24379,60 +24444,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1013), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1233), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24447,19 +24513,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -24471,48 +24537,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [44] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -24520,60 +24586,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(937), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1034), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24588,19 +24655,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -24612,48 +24679,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [45] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -24661,60 +24728,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(5109), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(5037), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24729,19 +24797,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -24753,48 +24821,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [46] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -24802,60 +24870,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1337), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1362), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24870,19 +24939,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -24894,48 +24963,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [47] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -24943,60 +25012,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1326), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1374), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25011,19 +25081,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -25035,48 +25105,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [48] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -25084,60 +25154,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1023), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1128), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25152,19 +25223,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -25176,48 +25247,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [49] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -25225,60 +25296,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1024), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1130), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25293,19 +25365,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -25317,48 +25389,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [50] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -25366,60 +25438,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1025), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1131), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25434,19 +25507,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -25458,48 +25531,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [51] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -25507,60 +25580,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1033), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1144), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25575,19 +25649,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -25599,48 +25673,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [52] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -25648,60 +25722,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1034), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1149), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25716,19 +25791,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -25740,48 +25815,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [53] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -25789,60 +25864,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1051), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1178), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25857,19 +25933,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -25881,48 +25957,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [54] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -25930,60 +26006,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(5029), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(5016), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25998,19 +26075,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -26022,48 +26099,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [55] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -26071,60 +26148,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(5135), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(5024), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26139,19 +26217,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -26163,48 +26241,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [56] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -26212,60 +26290,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1378), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1419), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26280,19 +26359,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -26304,48 +26383,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [57] = { [sym__statement] = STATE(180), [sym__simple_statements] = STATE(180), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(180), [sym_match_statement] = STATE(180), [sym_for_statement] = STATE(180), @@ -26353,60 +26432,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(180), [sym_with_statement] = STATE(180), [sym_function_definition] = STATE(180), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(180), [sym_decorated_definition] = STATE(180), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(890), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(964), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(180), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(180), [sym_cdef_statement] = STATE(180), [sym_ctypedef_statement] = STATE(180), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(180), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26421,19 +26501,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -26445,48 +26525,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(139), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(141), + [sym_string_start] = ACTIONS(107), }, [58] = { [sym__statement] = STATE(184), [sym__simple_statements] = STATE(184), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(184), [sym_match_statement] = STATE(184), [sym_for_statement] = STATE(184), @@ -26494,60 +26574,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(184), [sym_with_statement] = STATE(184), [sym_function_definition] = STATE(184), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(184), [sym_decorated_definition] = STATE(184), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(891), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(965), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(184), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(184), [sym_cdef_statement] = STATE(184), [sym_ctypedef_statement] = STATE(184), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(184), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26562,19 +26643,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -26586,48 +26667,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(141), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(107), }, [59] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -26635,60 +26716,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1056), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1207), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26703,19 +26785,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -26727,48 +26809,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [60] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -26776,60 +26858,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1057), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1208), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26844,19 +26927,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -26868,48 +26951,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [61] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -26917,60 +27000,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1058), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1210), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26985,19 +27069,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -27009,48 +27093,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [62] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -27058,60 +27142,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1061), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1234), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27126,19 +27211,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -27150,48 +27235,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [63] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -27199,60 +27284,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1072), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1270), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27267,19 +27353,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -27291,48 +27377,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [64] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -27340,60 +27426,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1073), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1124), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27408,19 +27495,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -27432,48 +27519,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [65] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -27481,60 +27568,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1074), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1238), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27549,19 +27637,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -27573,48 +27661,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [66] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -27622,60 +27710,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(5028), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(5112), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27690,19 +27779,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -27714,48 +27803,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [67] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -27763,60 +27852,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(5077), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(5130), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27831,19 +27921,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -27855,48 +27945,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [68] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -27904,60 +27994,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1082), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1184), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27972,19 +28063,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -27996,48 +28087,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [69] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -28045,60 +28136,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1088), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1240), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28113,19 +28205,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -28137,48 +28229,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [70] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -28186,60 +28278,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1089), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1259), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28254,19 +28347,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -28278,48 +28371,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [71] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -28327,60 +28420,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(5160), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(5190), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28395,19 +28489,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -28419,48 +28513,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [72] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -28468,60 +28562,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1090), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1087), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28536,19 +28631,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -28560,48 +28655,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [73] = { [sym__statement] = STATE(178), [sym__simple_statements] = STATE(178), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(178), [sym_match_statement] = STATE(178), [sym_for_statement] = STATE(178), @@ -28609,60 +28704,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(178), [sym_with_statement] = STATE(178), [sym_function_definition] = STATE(178), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(178), [sym_decorated_definition] = STATE(178), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1095), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1105), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(178), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(178), [sym_cdef_statement] = STATE(178), [sym_ctypedef_statement] = STATE(178), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(178), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28677,19 +28773,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -28701,48 +28797,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(137), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(107), }, [74] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -28750,60 +28846,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(776), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(827), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28818,19 +28915,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -28842,48 +28939,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [75] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -28891,60 +28988,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1002), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(992), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28959,19 +29057,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -28983,48 +29081,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [76] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -29032,60 +29130,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1003), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(995), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29100,19 +29199,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -29124,48 +29223,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [77] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -29173,60 +29272,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1399), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1532), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29241,19 +29341,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -29265,48 +29365,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [78] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -29314,60 +29414,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(557), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(559), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29382,19 +29483,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -29406,48 +29507,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [79] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -29455,60 +29556,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1341), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1536), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29523,19 +29625,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -29547,48 +29649,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [80] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -29596,60 +29698,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2832), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2875), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29664,19 +29767,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -29688,48 +29791,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [81] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -29737,60 +29840,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(967), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1017), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29805,19 +29909,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -29829,48 +29933,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [82] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -29878,60 +29982,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1265), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1560), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29946,19 +30051,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -29970,48 +30075,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [83] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -30019,60 +30124,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1315), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1568), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30087,19 +30193,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -30111,48 +30217,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [84] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -30160,60 +30266,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(574), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(576), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30228,19 +30335,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -30252,48 +30359,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [85] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -30301,60 +30408,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(575), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(577), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30369,19 +30477,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -30393,48 +30501,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [86] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -30442,60 +30550,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(577), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(579), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30510,19 +30619,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -30534,48 +30643,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [87] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -30583,60 +30692,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2840), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2822), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30651,19 +30761,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -30675,48 +30785,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [88] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -30724,60 +30834,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2744), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2739), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30792,19 +30903,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -30816,48 +30927,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [89] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -30865,60 +30976,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(592), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(594), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30933,19 +31045,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -30957,48 +31069,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [90] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -31006,60 +31118,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(958), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(987), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31074,19 +31187,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -31098,48 +31211,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [91] = { [sym__statement] = STATE(186), [sym__simple_statements] = STATE(186), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(186), [sym_match_statement] = STATE(186), [sym_for_statement] = STATE(186), @@ -31147,60 +31260,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(186), [sym_with_statement] = STATE(186), [sym_function_definition] = STATE(186), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(186), [sym_decorated_definition] = STATE(186), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(880), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(910), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(186), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(186), [sym_cdef_statement] = STATE(186), [sym_ctypedef_statement] = STATE(186), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(186), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31215,19 +31329,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -31239,48 +31353,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(107), }, [92] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -31288,60 +31402,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1373), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1587), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31356,19 +31471,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -31380,48 +31495,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [93] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -31429,60 +31544,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1259), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1590), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31497,19 +31613,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -31521,48 +31637,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [94] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -31570,60 +31686,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(624), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(444), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31638,19 +31755,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -31662,48 +31779,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [95] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -31711,60 +31828,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), + [sym_decorator] = STATE(3060), [sym_block] = STATE(516), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31779,19 +31897,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -31803,48 +31921,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [96] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -31852,60 +31970,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2850), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2837), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31920,19 +32039,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -31944,48 +32063,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [97] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -31993,60 +32112,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(598), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(600), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32061,19 +32181,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -32085,48 +32205,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [98] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -32134,60 +32254,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(600), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(602), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32202,19 +32323,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -32226,48 +32347,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [99] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -32275,60 +32396,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(602), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(603), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32343,19 +32465,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -32367,48 +32489,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [100] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -32416,60 +32538,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1169), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1237), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32484,19 +32607,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -32508,48 +32631,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [101] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -32557,60 +32680,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(972), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1064), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32625,19 +32749,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -32649,48 +32773,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [102] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -32698,60 +32822,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1275), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1608), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32766,19 +32891,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -32790,48 +32915,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [103] = { [sym__statement] = STATE(186), [sym__simple_statements] = STATE(186), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(186), [sym_match_statement] = STATE(186), [sym_for_statement] = STATE(186), @@ -32839,60 +32964,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(186), [sym_with_statement] = STATE(186), [sym_function_definition] = STATE(186), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(186), [sym_decorated_definition] = STATE(186), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(888), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(917), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(186), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(186), [sym_cdef_statement] = STATE(186), [sym_ctypedef_statement] = STATE(186), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(186), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32907,19 +33033,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -32931,48 +33057,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(107), }, [104] = { [sym__statement] = STATE(174), [sym__simple_statements] = STATE(174), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(174), [sym_match_statement] = STATE(174), [sym_for_statement] = STATE(174), @@ -32980,60 +33106,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(174), [sym_with_statement] = STATE(174), [sym_function_definition] = STATE(174), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(174), [sym_decorated_definition] = STATE(174), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(889), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(918), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(174), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(174), [sym_cdef_statement] = STATE(174), [sym_ctypedef_statement] = STATE(174), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(174), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33048,19 +33175,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -33072,48 +33199,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(147), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(107), }, [105] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -33121,60 +33248,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1285), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1615), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33189,19 +33317,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -33213,48 +33341,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [106] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -33262,60 +33390,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(606), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(607), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33330,19 +33459,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -33354,48 +33483,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [107] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -33403,60 +33532,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2868), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2870), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33471,19 +33601,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -33495,48 +33625,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [108] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -33544,60 +33674,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2769), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2782), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33612,19 +33743,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -33636,48 +33767,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [109] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -33685,60 +33816,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), + [sym_decorator] = STATE(3060), [sym_block] = STATE(446), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33753,19 +33885,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -33777,48 +33909,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [110] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -33826,60 +33958,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), + [sym_decorator] = STATE(3060), [sym_block] = STATE(447), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33894,19 +34027,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -33918,48 +34051,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [111] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -33967,60 +34100,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(995), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1035), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34035,19 +34169,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -34059,48 +34193,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [112] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -34108,60 +34242,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1254), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1689), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34176,19 +34311,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -34200,48 +34335,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [113] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -34249,60 +34384,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1375), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1699), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34317,19 +34453,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -34341,48 +34477,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [114] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -34390,60 +34526,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), + [sym_decorator] = STATE(3060), [sym_block] = STATE(448), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34458,19 +34595,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -34482,48 +34619,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [115] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -34531,60 +34668,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), + [sym_decorator] = STATE(3060), [sym_block] = STATE(449), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34599,19 +34737,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -34623,48 +34761,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [116] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -34672,60 +34810,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), + [sym_decorator] = STATE(3060), [sym_block] = STATE(450), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34740,19 +34879,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -34764,48 +34903,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [117] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -34813,60 +34952,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2877), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2917), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34881,19 +35021,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -34905,48 +35045,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [118] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -34954,60 +35094,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2780), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2742), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35022,19 +35163,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -35046,48 +35187,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [119] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -35095,60 +35236,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), + [sym_decorator] = STATE(3060), [sym_block] = STATE(466), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35163,19 +35305,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -35187,48 +35329,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [120] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -35236,60 +35378,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1279), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1276), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35304,19 +35447,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -35328,48 +35471,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [121] = { [sym__statement] = STATE(186), [sym__simple_statements] = STATE(186), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(186), [sym_match_statement] = STATE(186), [sym_for_statement] = STATE(186), @@ -35377,60 +35520,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(186), [sym_with_statement] = STATE(186), [sym_function_definition] = STATE(186), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(186), [sym_decorated_definition] = STATE(186), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(899), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(951), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(186), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(186), [sym_cdef_statement] = STATE(186), [sym_ctypedef_statement] = STATE(186), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(186), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35445,19 +35589,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -35469,48 +35613,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(107), }, [122] = { [sym__statement] = STATE(174), [sym__simple_statements] = STATE(174), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(174), [sym_match_statement] = STATE(174), [sym_for_statement] = STATE(174), @@ -35518,60 +35662,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(174), [sym_with_statement] = STATE(174), [sym_function_definition] = STATE(174), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(174), [sym_decorated_definition] = STATE(174), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(900), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(952), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(174), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(174), [sym_cdef_statement] = STATE(174), [sym_ctypedef_statement] = STATE(174), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(174), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35586,19 +35731,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -35610,48 +35755,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(147), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(107), }, [123] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -35659,60 +35804,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), + [sym_decorator] = STATE(3060), [sym_block] = STATE(470), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35727,19 +35873,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -35751,48 +35897,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [124] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -35800,60 +35946,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), + [sym_decorator] = STATE(3060), [sym_block] = STATE(471), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35868,19 +36015,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -35892,48 +36039,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [125] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -35941,60 +36088,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2885), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2845), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36009,19 +36157,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -36033,48 +36181,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [126] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -36082,60 +36230,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2783), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2760), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36150,19 +36299,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -36174,48 +36323,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [127] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -36223,60 +36372,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), + [sym_decorator] = STATE(3060), [sym_block] = STATE(482), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36291,19 +36441,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -36315,48 +36465,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [128] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -36364,60 +36514,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), + [sym_decorator] = STATE(3060), [sym_block] = STATE(483), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36432,19 +36583,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -36456,48 +36607,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [129] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -36505,60 +36656,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), + [sym_decorator] = STATE(3060), [sym_block] = STATE(484), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36573,19 +36725,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -36597,48 +36749,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [130] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -36646,60 +36798,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2888), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2909), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36714,19 +36867,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -36738,48 +36891,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [131] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -36787,60 +36940,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), + [sym_decorator] = STATE(3060), [sym_block] = STATE(492), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36855,19 +37009,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -36879,48 +37033,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [132] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -36928,60 +37082,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), + [sym_decorator] = STATE(3060), [sym_block] = STATE(493), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36996,19 +37151,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -37020,48 +37175,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [133] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -37069,60 +37224,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2889), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2897), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37137,19 +37293,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -37161,48 +37317,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [134] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -37210,60 +37366,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2891), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2908), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37278,19 +37435,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -37302,48 +37459,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [135] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -37351,60 +37508,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2900), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2907), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37419,19 +37577,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -37443,48 +37601,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [136] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -37492,60 +37650,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), + [sym_decorator] = STATE(3060), [sym_block] = STATE(511), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37560,19 +37719,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -37584,48 +37743,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [137] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -37633,60 +37792,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2907), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2880), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37701,19 +37861,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -37725,48 +37885,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [138] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -37774,60 +37934,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2908), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2881), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37842,19 +38003,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -37866,48 +38027,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [139] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -37915,60 +38076,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2909), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2882), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37983,19 +38145,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -38007,48 +38169,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [140] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -38056,60 +38218,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(526), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(527), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38124,19 +38287,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -38148,48 +38311,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [141] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -38197,60 +38360,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(532), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(533), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38265,19 +38429,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -38289,48 +38453,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [142] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -38338,60 +38502,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2835), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2872), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38406,19 +38571,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -38430,48 +38595,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [143] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -38479,60 +38644,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2870), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2902), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38547,19 +38713,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -38571,48 +38737,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [144] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -38620,60 +38786,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2884), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2904), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38688,19 +38855,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -38712,48 +38879,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [145] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -38761,60 +38928,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(537), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(538), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38829,19 +38997,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -38853,48 +39021,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [146] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -38902,60 +39070,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(543), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(544), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38970,19 +39139,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -38994,48 +39163,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [147] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -39043,60 +39212,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2815), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2807), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39111,19 +39281,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -39135,48 +39305,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [148] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -39184,60 +39354,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2816), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2809), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39252,19 +39423,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -39276,48 +39447,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [149] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -39325,60 +39496,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2817), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2810), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39393,19 +39565,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -39417,48 +39589,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [150] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -39466,60 +39638,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2822), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2813), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39534,19 +39707,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -39558,48 +39731,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [151] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -39607,60 +39780,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(549), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(551), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39675,19 +39849,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -39699,48 +39873,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [152] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -39748,60 +39922,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(551), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(553), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39816,19 +39991,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -39840,48 +40015,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [153] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -39889,60 +40064,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2872), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2859), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39957,19 +40133,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -39981,48 +40157,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [154] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -40030,60 +40206,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2873), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2860), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40098,19 +40275,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -40122,48 +40299,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [155] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -40171,60 +40348,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2878), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2918), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40239,19 +40417,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -40263,48 +40441,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [156] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -40312,60 +40490,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2879), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2863), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40380,19 +40559,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -40404,48 +40583,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [157] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -40453,60 +40632,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2880), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2864), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40521,19 +40701,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -40545,48 +40725,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [158] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -40594,60 +40774,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(567), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(569), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40662,19 +40843,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -40686,48 +40867,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [159] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -40735,60 +40916,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(568), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(570), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40803,19 +40985,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -40827,48 +41009,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [160] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -40876,60 +41058,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2826), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2877), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40944,19 +41127,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -40968,48 +41151,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [161] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -41017,60 +41200,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2818), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2887), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41085,19 +41269,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -41109,48 +41293,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [162] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -41158,60 +41342,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2821), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2889), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41226,19 +41411,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -41250,48 +41435,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [163] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -41299,60 +41484,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(571), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(573), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41367,19 +41553,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -41391,48 +41577,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [164] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -41440,60 +41626,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(576), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(578), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41508,19 +41695,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -41532,48 +41719,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [165] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -41581,60 +41768,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2796), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2914), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41649,19 +41837,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -41673,48 +41861,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [166] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -41722,60 +41910,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2801), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2848), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41790,19 +41979,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -41814,48 +42003,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [167] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -41863,60 +42052,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2802), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2868), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41931,19 +42121,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -41955,48 +42145,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [168] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -42004,60 +42194,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(583), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(585), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42072,19 +42263,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -42096,48 +42287,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [169] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -42145,60 +42336,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2860), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2842), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42213,19 +42405,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -42237,48 +42429,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [170] = { [sym__statement] = STATE(183), [sym__simple_statements] = STATE(183), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(183), [sym_match_statement] = STATE(183), [sym_for_statement] = STATE(183), @@ -42286,60 +42478,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(183), [sym_with_statement] = STATE(183), [sym_function_definition] = STATE(183), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(183), [sym_decorated_definition] = STATE(183), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(2862), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(2803), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(183), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(183), [sym_cdef_statement] = STATE(183), [sym_ctypedef_statement] = STATE(183), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(183), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42354,19 +42547,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -42378,48 +42571,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(133), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(135), + [sym_string_start] = ACTIONS(107), }, [171] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -42427,60 +42620,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(584), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(586), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42495,19 +42689,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -42519,48 +42713,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [172] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -42568,60 +42762,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(616), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(619), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42636,19 +42831,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -42660,48 +42855,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [173] = { [sym__statement] = STATE(185), [sym__simple_statements] = STATE(185), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(185), [sym_match_statement] = STATE(185), [sym_for_statement] = STATE(185), @@ -42709,60 +42904,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(185), [sym_with_statement] = STATE(185), [sym_function_definition] = STATE(185), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(185), [sym_decorated_definition] = STATE(185), - [sym_decorator] = STATE(3081), - [sym_block] = STATE(1365), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_block] = STATE(1580), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(185), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(185), [sym_cdef_statement] = STATE(185), [sym_ctypedef_statement] = STATE(185), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(185), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42777,19 +42973,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -42801,48 +42997,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(107), }, [174] = { [sym__statement] = STATE(175), [sym__simple_statements] = STATE(175), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(175), [sym_match_statement] = STATE(175), [sym_for_statement] = STATE(175), @@ -42850,59 +43046,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(175), [sym_with_statement] = STATE(175), [sym_function_definition] = STATE(175), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(175), [sym_decorated_definition] = STATE(175), - [sym_decorator] = STATE(3081), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(175), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(175), [sym_cdef_statement] = STATE(175), [sym_ctypedef_statement] = STATE(175), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(175), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42917,19 +43114,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -42941,48 +43138,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(149), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(151), + [sym_string_start] = ACTIONS(107), }, [175] = { [sym__statement] = STATE(175), [sym__simple_statements] = STATE(175), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(175), [sym_match_statement] = STATE(175), [sym_for_statement] = STATE(175), @@ -42990,139 +43187,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(175), [sym_with_statement] = STATE(175), [sym_function_definition] = STATE(175), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(175), [sym_decorated_definition] = STATE(175), - [sym_decorator] = STATE(3081), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(175), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(175), [sym_cdef_statement] = STATE(175), [sym_ctypedef_statement] = STATE(175), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(175), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), - [sym_identifier] = ACTIONS(151), - [anon_sym_import] = ACTIONS(154), - [anon_sym_cimport] = ACTIONS(154), - [anon_sym_from] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(163), - [anon_sym_print] = ACTIONS(166), - [anon_sym_assert] = ACTIONS(169), - [anon_sym_return] = ACTIONS(172), - [anon_sym_del] = ACTIONS(175), - [anon_sym_raise] = ACTIONS(178), - [anon_sym_pass] = ACTIONS(181), - [anon_sym_break] = ACTIONS(184), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_if] = ACTIONS(190), - [anon_sym_match] = ACTIONS(193), - [anon_sym_async] = ACTIONS(196), - [anon_sym_for] = ACTIONS(199), - [anon_sym_while] = ACTIONS(202), - [anon_sym_try] = ACTIONS(205), - [anon_sym_with] = ACTIONS(208), - [anon_sym_def] = ACTIONS(211), - [anon_sym_global] = ACTIONS(214), - [anon_sym_nonlocal] = ACTIONS(217), - [anon_sym_exec] = ACTIONS(220), - [anon_sym_type] = ACTIONS(223), - [anon_sym_class] = ACTIONS(226), - [anon_sym_LBRACK] = ACTIONS(229), - [anon_sym_AT] = ACTIONS(232), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_LBRACE] = ACTIONS(238), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_not] = ACTIONS(241), - [anon_sym_AMP] = ACTIONS(235), - [anon_sym_TILDE] = ACTIONS(235), - [anon_sym_LT] = ACTIONS(244), - [anon_sym_lambda] = ACTIONS(247), - [anon_sym_yield] = ACTIONS(250), - [sym_ellipsis] = ACTIONS(253), - [anon_sym_None] = ACTIONS(256), - [sym_integer] = ACTIONS(259), - [sym_float] = ACTIONS(253), - [anon_sym_await] = ACTIONS(262), - [anon_sym_api] = ACTIONS(265), - [sym_true] = ACTIONS(259), - [sym_false] = ACTIONS(259), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), + [sym_identifier] = ACTIONS(153), + [anon_sym_import] = ACTIONS(156), + [anon_sym_cimport] = ACTIONS(156), + [anon_sym_from] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(162), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_print] = ACTIONS(168), + [anon_sym_assert] = ACTIONS(171), + [anon_sym_return] = ACTIONS(174), + [anon_sym_del] = ACTIONS(177), + [anon_sym_raise] = ACTIONS(180), + [anon_sym_pass] = ACTIONS(183), + [anon_sym_break] = ACTIONS(186), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_if] = ACTIONS(192), + [anon_sym_match] = ACTIONS(195), + [anon_sym_async] = ACTIONS(198), + [anon_sym_for] = ACTIONS(201), + [anon_sym_while] = ACTIONS(204), + [anon_sym_try] = ACTIONS(207), + [anon_sym_with] = ACTIONS(210), + [anon_sym_def] = ACTIONS(213), + [anon_sym_global] = ACTIONS(216), + [anon_sym_nonlocal] = ACTIONS(219), + [anon_sym_exec] = ACTIONS(222), + [anon_sym_type] = ACTIONS(225), + [anon_sym_class] = ACTIONS(228), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_AT] = ACTIONS(234), + [anon_sym_DASH] = ACTIONS(237), + [anon_sym_LBRACE] = ACTIONS(240), + [anon_sym_PLUS] = ACTIONS(237), + [anon_sym_not] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(246), + [anon_sym_lambda] = ACTIONS(249), + [anon_sym_yield] = ACTIONS(252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(255), + [anon_sym_None] = ACTIONS(258), + [sym_integer] = ACTIONS(261), + [sym_float] = ACTIONS(264), + [anon_sym_await] = ACTIONS(267), + [anon_sym_api] = ACTIONS(270), + [sym_true] = ACTIONS(261), + [sym_false] = ACTIONS(261), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(268), - [anon_sym_include] = ACTIONS(271), - [anon_sym_DEF] = ACTIONS(274), - [anon_sym_cdef] = ACTIONS(277), - [anon_sym_cpdef] = ACTIONS(277), - [anon_sym_new] = ACTIONS(280), - [anon_sym_ctypedef] = ACTIONS(283), - [anon_sym_public] = ACTIONS(286), - [anon_sym_packed] = ACTIONS(286), - [anon_sym_inline] = ACTIONS(286), - [anon_sym_readonly] = ACTIONS(286), - [anon_sym_sizeof] = ACTIONS(289), - [sym__dedent] = ACTIONS(292), - [sym_string_start] = ACTIONS(294), + [anon_sym_property] = ACTIONS(273), + [anon_sym_include] = ACTIONS(276), + [anon_sym_DEF] = ACTIONS(279), + [anon_sym_cdef] = ACTIONS(282), + [anon_sym_cpdef] = ACTIONS(282), + [anon_sym_new] = ACTIONS(285), + [anon_sym_ctypedef] = ACTIONS(288), + [anon_sym_public] = ACTIONS(291), + [anon_sym_packed] = ACTIONS(291), + [anon_sym_inline] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_sizeof] = ACTIONS(294), + [sym__dedent] = ACTIONS(297), + [sym_string_start] = ACTIONS(299), }, [176] = { [sym__statement] = STATE(182), [sym__simple_statements] = STATE(182), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), [sym_if_statement] = STATE(182), [sym_match_statement] = STATE(182), [sym_for_statement] = STATE(182), @@ -43130,60 +43328,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(182), [sym_with_statement] = STATE(182), [sym_function_definition] = STATE(182), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), [sym_class_definition] = STATE(182), [sym_decorated_definition] = STATE(182), - [sym_decorator] = STATE(3070), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3091), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(182), - [sym_include_statement] = STATE(4618), + [sym_include_statement] = STATE(4598), [sym_def_statement] = STATE(182), [sym_cdef_statement] = STATE(182), [sym_ctypedef_statement] = STATE(182), - [sym_storageclass] = STATE(3759), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3804), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(182), - [aux_sym_class_definition_repeat1] = STATE(3759), - [aux_sym_decorated_definition_repeat1] = STATE(3070), - [ts_builtin_sym_end] = ACTIONS(297), + [aux_sym_class_definition_repeat1] = STATE(3804), + [aux_sym_decorated_definition_repeat1] = STATE(3091), + [ts_builtin_sym_end] = ACTIONS(302), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43222,47 +43421,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(89), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(93), - [anon_sym_cdef] = ACTIONS(95), - [anon_sym_cpdef] = ACTIONS(95), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(99), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(91), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(95), + [anon_sym_cdef] = ACTIONS(97), + [anon_sym_cpdef] = ACTIONS(97), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(101), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym_string_start] = ACTIONS(107), }, [177] = { [sym__statement] = STATE(181), [sym__simple_statements] = STATE(181), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), [sym_if_statement] = STATE(181), [sym_match_statement] = STATE(181), [sym_for_statement] = STATE(181), @@ -43270,60 +43469,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(181), [sym_with_statement] = STATE(181), [sym_function_definition] = STATE(181), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), [sym_class_definition] = STATE(181), [sym_decorated_definition] = STATE(181), - [sym_decorator] = STATE(3070), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3091), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(181), - [sym_include_statement] = STATE(4618), + [sym_include_statement] = STATE(4598), [sym_def_statement] = STATE(181), [sym_cdef_statement] = STATE(181), [sym_ctypedef_statement] = STATE(181), - [sym_storageclass] = STATE(3759), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3804), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(181), - [aux_sym_class_definition_repeat1] = STATE(3759), - [aux_sym_decorated_definition_repeat1] = STATE(3070), - [ts_builtin_sym_end] = ACTIONS(297), + [aux_sym_class_definition_repeat1] = STATE(3804), + [aux_sym_decorated_definition_repeat1] = STATE(3091), + [ts_builtin_sym_end] = ACTIONS(302), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43362,47 +43562,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(89), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(93), - [anon_sym_cdef] = ACTIONS(95), - [anon_sym_cpdef] = ACTIONS(95), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(99), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(91), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(95), + [anon_sym_cdef] = ACTIONS(97), + [anon_sym_cpdef] = ACTIONS(97), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(101), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym_string_start] = ACTIONS(107), }, [178] = { [sym__statement] = STATE(175), [sym__simple_statements] = STATE(175), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(175), [sym_match_statement] = STATE(175), [sym_for_statement] = STATE(175), @@ -43410,59 +43610,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(175), [sym_with_statement] = STATE(175), [sym_function_definition] = STATE(175), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(175), [sym_decorated_definition] = STATE(175), - [sym_decorator] = STATE(3081), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(175), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(175), [sym_cdef_statement] = STATE(175), [sym_ctypedef_statement] = STATE(175), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(175), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43477,19 +43678,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -43501,48 +43702,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(299), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(304), + [sym_string_start] = ACTIONS(107), }, [179] = { [sym__statement] = STATE(175), [sym__simple_statements] = STATE(175), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(175), [sym_match_statement] = STATE(175), [sym_for_statement] = STATE(175), @@ -43550,59 +43751,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(175), [sym_with_statement] = STATE(175), [sym_function_definition] = STATE(175), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(175), [sym_decorated_definition] = STATE(175), - [sym_decorator] = STATE(3081), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(175), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(175), [sym_cdef_statement] = STATE(175), [sym_ctypedef_statement] = STATE(175), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(175), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43617,19 +43819,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -43641,48 +43843,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(301), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(306), + [sym_string_start] = ACTIONS(107), }, [180] = { [sym__statement] = STATE(175), [sym__simple_statements] = STATE(175), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(175), [sym_match_statement] = STATE(175), [sym_for_statement] = STATE(175), @@ -43690,59 +43892,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(175), [sym_with_statement] = STATE(175), [sym_function_definition] = STATE(175), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(175), [sym_decorated_definition] = STATE(175), - [sym_decorator] = STATE(3081), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(175), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(175), [sym_cdef_statement] = STATE(175), [sym_ctypedef_statement] = STATE(175), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(175), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43757,19 +43960,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -43781,48 +43984,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(303), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(308), + [sym_string_start] = ACTIONS(107), }, [181] = { [sym__statement] = STATE(182), [sym__simple_statements] = STATE(182), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), [sym_if_statement] = STATE(182), [sym_match_statement] = STATE(182), [sym_for_statement] = STATE(182), @@ -43830,60 +44033,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(182), [sym_with_statement] = STATE(182), [sym_function_definition] = STATE(182), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), [sym_class_definition] = STATE(182), [sym_decorated_definition] = STATE(182), - [sym_decorator] = STATE(3070), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3091), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(182), - [sym_include_statement] = STATE(4618), + [sym_include_statement] = STATE(4598), [sym_def_statement] = STATE(182), [sym_cdef_statement] = STATE(182), [sym_ctypedef_statement] = STATE(182), - [sym_storageclass] = STATE(3759), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3804), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(182), - [aux_sym_class_definition_repeat1] = STATE(3759), - [aux_sym_decorated_definition_repeat1] = STATE(3070), - [ts_builtin_sym_end] = ACTIONS(305), + [aux_sym_class_definition_repeat1] = STATE(3804), + [aux_sym_decorated_definition_repeat1] = STATE(3091), + [ts_builtin_sym_end] = ACTIONS(310), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43922,47 +44126,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(89), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(93), - [anon_sym_cdef] = ACTIONS(95), - [anon_sym_cpdef] = ACTIONS(95), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(99), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(91), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(95), + [anon_sym_cdef] = ACTIONS(97), + [anon_sym_cpdef] = ACTIONS(97), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(101), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym_string_start] = ACTIONS(107), }, [182] = { [sym__statement] = STATE(182), [sym__simple_statements] = STATE(182), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), [sym_if_statement] = STATE(182), [sym_match_statement] = STATE(182), [sym_for_statement] = STATE(182), @@ -43970,139 +44174,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(182), [sym_with_statement] = STATE(182), [sym_function_definition] = STATE(182), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), [sym_class_definition] = STATE(182), [sym_decorated_definition] = STATE(182), - [sym_decorator] = STATE(3070), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3091), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(182), - [sym_include_statement] = STATE(4618), + [sym_include_statement] = STATE(4598), [sym_def_statement] = STATE(182), [sym_cdef_statement] = STATE(182), [sym_ctypedef_statement] = STATE(182), - [sym_storageclass] = STATE(3759), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3804), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(182), - [aux_sym_class_definition_repeat1] = STATE(3759), - [aux_sym_decorated_definition_repeat1] = STATE(3070), - [ts_builtin_sym_end] = ACTIONS(292), - [sym_identifier] = ACTIONS(151), - [anon_sym_import] = ACTIONS(154), - [anon_sym_cimport] = ACTIONS(154), - [anon_sym_from] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(163), - [anon_sym_print] = ACTIONS(166), - [anon_sym_assert] = ACTIONS(169), - [anon_sym_return] = ACTIONS(172), - [anon_sym_del] = ACTIONS(175), - [anon_sym_raise] = ACTIONS(178), - [anon_sym_pass] = ACTIONS(181), - [anon_sym_break] = ACTIONS(184), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_if] = ACTIONS(307), - [anon_sym_match] = ACTIONS(310), - [anon_sym_async] = ACTIONS(313), - [anon_sym_for] = ACTIONS(316), - [anon_sym_while] = ACTIONS(319), - [anon_sym_try] = ACTIONS(322), - [anon_sym_with] = ACTIONS(325), - [anon_sym_def] = ACTIONS(328), - [anon_sym_global] = ACTIONS(214), - [anon_sym_nonlocal] = ACTIONS(217), - [anon_sym_exec] = ACTIONS(220), - [anon_sym_type] = ACTIONS(223), - [anon_sym_class] = ACTIONS(331), - [anon_sym_LBRACK] = ACTIONS(229), - [anon_sym_AT] = ACTIONS(232), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_LBRACE] = ACTIONS(238), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_not] = ACTIONS(241), - [anon_sym_AMP] = ACTIONS(235), - [anon_sym_TILDE] = ACTIONS(235), - [anon_sym_LT] = ACTIONS(244), - [anon_sym_lambda] = ACTIONS(247), - [anon_sym_yield] = ACTIONS(250), - [sym_ellipsis] = ACTIONS(253), - [anon_sym_None] = ACTIONS(256), - [sym_integer] = ACTIONS(259), - [sym_float] = ACTIONS(253), - [anon_sym_await] = ACTIONS(262), - [anon_sym_api] = ACTIONS(265), - [sym_true] = ACTIONS(259), - [sym_false] = ACTIONS(259), + [aux_sym_class_definition_repeat1] = STATE(3804), + [aux_sym_decorated_definition_repeat1] = STATE(3091), + [ts_builtin_sym_end] = ACTIONS(297), + [sym_identifier] = ACTIONS(153), + [anon_sym_import] = ACTIONS(156), + [anon_sym_cimport] = ACTIONS(156), + [anon_sym_from] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(162), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_print] = ACTIONS(168), + [anon_sym_assert] = ACTIONS(171), + [anon_sym_return] = ACTIONS(174), + [anon_sym_del] = ACTIONS(177), + [anon_sym_raise] = ACTIONS(180), + [anon_sym_pass] = ACTIONS(183), + [anon_sym_break] = ACTIONS(186), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_if] = ACTIONS(312), + [anon_sym_match] = ACTIONS(315), + [anon_sym_async] = ACTIONS(318), + [anon_sym_for] = ACTIONS(321), + [anon_sym_while] = ACTIONS(324), + [anon_sym_try] = ACTIONS(327), + [anon_sym_with] = ACTIONS(330), + [anon_sym_def] = ACTIONS(333), + [anon_sym_global] = ACTIONS(216), + [anon_sym_nonlocal] = ACTIONS(219), + [anon_sym_exec] = ACTIONS(222), + [anon_sym_type] = ACTIONS(225), + [anon_sym_class] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_AT] = ACTIONS(234), + [anon_sym_DASH] = ACTIONS(237), + [anon_sym_LBRACE] = ACTIONS(240), + [anon_sym_PLUS] = ACTIONS(237), + [anon_sym_not] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(237), + [anon_sym_TILDE] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(246), + [anon_sym_lambda] = ACTIONS(249), + [anon_sym_yield] = ACTIONS(252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(255), + [anon_sym_None] = ACTIONS(258), + [sym_integer] = ACTIONS(261), + [sym_float] = ACTIONS(264), + [anon_sym_await] = ACTIONS(267), + [anon_sym_api] = ACTIONS(270), + [sym_true] = ACTIONS(261), + [sym_false] = ACTIONS(261), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(334), - [anon_sym_include] = ACTIONS(271), - [anon_sym_DEF] = ACTIONS(337), - [anon_sym_cdef] = ACTIONS(340), - [anon_sym_cpdef] = ACTIONS(340), - [anon_sym_new] = ACTIONS(280), - [anon_sym_ctypedef] = ACTIONS(343), - [anon_sym_public] = ACTIONS(286), - [anon_sym_packed] = ACTIONS(286), - [anon_sym_inline] = ACTIONS(286), - [anon_sym_readonly] = ACTIONS(286), - [anon_sym_sizeof] = ACTIONS(289), - [sym_string_start] = ACTIONS(294), + [anon_sym_property] = ACTIONS(339), + [anon_sym_include] = ACTIONS(276), + [anon_sym_DEF] = ACTIONS(342), + [anon_sym_cdef] = ACTIONS(345), + [anon_sym_cpdef] = ACTIONS(345), + [anon_sym_new] = ACTIONS(285), + [anon_sym_ctypedef] = ACTIONS(348), + [anon_sym_public] = ACTIONS(291), + [anon_sym_packed] = ACTIONS(291), + [anon_sym_inline] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_sizeof] = ACTIONS(294), + [sym_string_start] = ACTIONS(299), }, [183] = { [sym__statement] = STATE(175), [sym__simple_statements] = STATE(175), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(175), [sym_match_statement] = STATE(175), [sym_for_statement] = STATE(175), @@ -44110,59 +44315,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(175), [sym_with_statement] = STATE(175), [sym_function_definition] = STATE(175), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(175), [sym_decorated_definition] = STATE(175), - [sym_decorator] = STATE(3081), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(175), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(175), [sym_cdef_statement] = STATE(175), [sym_ctypedef_statement] = STATE(175), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(175), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44177,19 +44383,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -44201,48 +44407,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(346), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(351), + [sym_string_start] = ACTIONS(107), }, [184] = { [sym__statement] = STATE(175), [sym__simple_statements] = STATE(175), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(175), [sym_match_statement] = STATE(175), [sym_for_statement] = STATE(175), @@ -44250,59 +44456,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(175), [sym_with_statement] = STATE(175), [sym_function_definition] = STATE(175), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(175), [sym_decorated_definition] = STATE(175), - [sym_decorator] = STATE(3081), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(175), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(175), [sym_cdef_statement] = STATE(175), [sym_ctypedef_statement] = STATE(175), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(175), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44317,19 +44524,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -44341,48 +44548,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(348), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(353), + [sym_string_start] = ACTIONS(107), }, [185] = { [sym__statement] = STATE(175), [sym__simple_statements] = STATE(175), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(175), [sym_match_statement] = STATE(175), [sym_for_statement] = STATE(175), @@ -44390,59 +44597,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(175), [sym_with_statement] = STATE(175), [sym_function_definition] = STATE(175), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(175), [sym_decorated_definition] = STATE(175), - [sym_decorator] = STATE(3081), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(175), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(175), [sym_cdef_statement] = STATE(175), [sym_ctypedef_statement] = STATE(175), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(175), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44457,19 +44665,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -44481,48 +44689,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(350), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(355), + [sym_string_start] = ACTIONS(107), }, [186] = { [sym__statement] = STATE(175), [sym__simple_statements] = STATE(175), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), [sym_if_statement] = STATE(175), [sym_match_statement] = STATE(175), [sym_for_statement] = STATE(175), @@ -44530,59 +44738,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(175), [sym_with_statement] = STATE(175), [sym_function_definition] = STATE(175), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), [sym_class_definition] = STATE(175), [sym_decorated_definition] = STATE(175), - [sym_decorator] = STATE(3081), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), + [sym_decorator] = STATE(3060), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), [sym_property_definition] = STATE(175), - [sym_include_statement] = STATE(4570), + [sym_include_statement] = STATE(4783), [sym_def_statement] = STATE(175), [sym_cdef_statement] = STATE(175), [sym_ctypedef_statement] = STATE(175), - [sym_storageclass] = STATE(3792), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_storageclass] = STATE(3813), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [aux_sym_module_repeat1] = STATE(175), - [aux_sym_class_definition_repeat1] = STATE(3792), - [aux_sym_decorated_definition_repeat1] = STATE(3081), + [aux_sym_class_definition_repeat1] = STATE(3813), + [aux_sym_decorated_definition_repeat1] = STATE(3060), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44597,19 +44806,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(107), - [anon_sym_match] = ACTIONS(109), - [anon_sym_async] = ACTIONS(111), - [anon_sym_for] = ACTIONS(113), - [anon_sym_while] = ACTIONS(115), - [anon_sym_try] = ACTIONS(117), - [anon_sym_with] = ACTIONS(119), - [anon_sym_def] = ACTIONS(121), + [anon_sym_if] = ACTIONS(109), + [anon_sym_match] = ACTIONS(111), + [anon_sym_async] = ACTIONS(113), + [anon_sym_for] = ACTIONS(115), + [anon_sym_while] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_with] = ACTIONS(121), + [anon_sym_def] = ACTIONS(123), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(123), + [anon_sym_class] = ACTIONS(125), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -44621,99 +44830,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(85), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(87), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(125), - [anon_sym_include] = ACTIONS(91), - [anon_sym_DEF] = ACTIONS(127), - [anon_sym_cdef] = ACTIONS(129), - [anon_sym_cpdef] = ACTIONS(129), - [anon_sym_new] = ACTIONS(97), - [anon_sym_ctypedef] = ACTIONS(131), - [anon_sym_public] = ACTIONS(101), - [anon_sym_packed] = ACTIONS(101), - [anon_sym_inline] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_sizeof] = ACTIONS(103), - [sym__dedent] = ACTIONS(352), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(127), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), + [anon_sym_new] = ACTIONS(99), + [anon_sym_ctypedef] = ACTIONS(133), + [anon_sym_public] = ACTIONS(103), + [anon_sym_packed] = ACTIONS(103), + [anon_sym_inline] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_sizeof] = ACTIONS(105), + [sym__dedent] = ACTIONS(357), + [sym_string_start] = ACTIONS(107), }, [187] = { - [sym__simple_statements] = STATE(2851), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_int_type] = STATE(3464), - [sym__signedness] = STATE(2986), - [sym__longness] = STATE(3185), - [sym_function_pointer_type] = STATE(3464), - [sym_c_type] = STATE(4832), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(354), + [sym__simple_statements] = STATE(2838), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_int_type] = STATE(3420), + [sym__signedness] = STATE(3000), + [sym__longness] = STATE(3204), + [sym_function_pointer_type] = STATE(3420), + [sym_c_type] = STATE(4948), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(356), + [anon_sym_LPAREN] = ACTIONS(361), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -44723,8 +44933,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -44739,101 +44949,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_int] = ACTIONS(360), - [anon_sym_double] = ACTIONS(360), - [anon_sym_complex] = ACTIONS(360), - [anon_sym_new] = ACTIONS(97), - [anon_sym_signed] = ACTIONS(362), - [anon_sym_unsigned] = ACTIONS(362), - [anon_sym_char] = ACTIONS(364), - [anon_sym_short] = ACTIONS(364), - [anon_sym_long] = ACTIONS(366), - [anon_sym_const] = ACTIONS(368), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(370), - [sym__indent] = ACTIONS(372), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), + [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(375), + [sym__indent] = ACTIONS(377), + [sym_string_start] = ACTIONS(107), }, [188] = { - [sym__simple_statements] = STATE(1118), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_int_type] = STATE(3464), - [sym__signedness] = STATE(2986), - [sym__longness] = STATE(3185), - [sym_function_pointer_type] = STATE(3464), - [sym_c_type] = STATE(4546), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(354), + [sym__simple_statements] = STATE(1136), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_int_type] = STATE(3420), + [sym__signedness] = STATE(3000), + [sym__longness] = STATE(3204), + [sym_function_pointer_type] = STATE(3420), + [sym_c_type] = STATE(4617), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(356), + [anon_sym_LPAREN] = ACTIONS(361), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -44843,8 +45054,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -44859,101 +45070,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_int] = ACTIONS(360), - [anon_sym_double] = ACTIONS(360), - [anon_sym_complex] = ACTIONS(360), - [anon_sym_new] = ACTIONS(97), - [anon_sym_signed] = ACTIONS(362), - [anon_sym_unsigned] = ACTIONS(362), - [anon_sym_char] = ACTIONS(364), - [anon_sym_short] = ACTIONS(364), - [anon_sym_long] = ACTIONS(366), - [anon_sym_const] = ACTIONS(368), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(374), - [sym__indent] = ACTIONS(376), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), + [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(379), + [sym__indent] = ACTIONS(381), + [sym_string_start] = ACTIONS(107), }, [189] = { - [sym__simple_statements] = STATE(2841), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_int_type] = STATE(3464), - [sym__signedness] = STATE(2986), - [sym__longness] = STATE(3185), - [sym_function_pointer_type] = STATE(3464), - [sym_c_type] = STATE(4934), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(354), + [sym__simple_statements] = STATE(2823), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_int_type] = STATE(3420), + [sym__signedness] = STATE(3000), + [sym__longness] = STATE(3204), + [sym_function_pointer_type] = STATE(3420), + [sym_c_type] = STATE(4847), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(356), + [anon_sym_LPAREN] = ACTIONS(361), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -44963,8 +45175,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -44979,101 +45191,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_int] = ACTIONS(360), - [anon_sym_double] = ACTIONS(360), - [anon_sym_complex] = ACTIONS(360), - [anon_sym_new] = ACTIONS(97), - [anon_sym_signed] = ACTIONS(362), - [anon_sym_unsigned] = ACTIONS(362), - [anon_sym_char] = ACTIONS(364), - [anon_sym_short] = ACTIONS(364), - [anon_sym_long] = ACTIONS(366), - [anon_sym_const] = ACTIONS(368), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(378), - [sym__indent] = ACTIONS(380), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), + [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(383), + [sym__indent] = ACTIONS(385), + [sym_string_start] = ACTIONS(107), }, [190] = { - [sym__simple_statements] = STATE(563), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_int_type] = STATE(3464), - [sym__signedness] = STATE(2986), - [sym__longness] = STATE(3185), - [sym_function_pointer_type] = STATE(3464), - [sym_c_type] = STATE(4545), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(354), + [sym__simple_statements] = STATE(565), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_int_type] = STATE(3420), + [sym__signedness] = STATE(3000), + [sym__longness] = STATE(3204), + [sym_function_pointer_type] = STATE(3420), + [sym_c_type] = STATE(4557), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(356), + [anon_sym_LPAREN] = ACTIONS(361), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -45083,8 +45296,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -45099,101 +45312,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_int] = ACTIONS(360), - [anon_sym_double] = ACTIONS(360), - [anon_sym_complex] = ACTIONS(360), - [anon_sym_new] = ACTIONS(97), - [anon_sym_signed] = ACTIONS(362), - [anon_sym_unsigned] = ACTIONS(362), - [anon_sym_char] = ACTIONS(364), - [anon_sym_short] = ACTIONS(364), - [anon_sym_long] = ACTIONS(366), - [anon_sym_const] = ACTIONS(368), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(382), - [sym__indent] = ACTIONS(384), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), + [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(387), + [sym__indent] = ACTIONS(389), + [sym_string_start] = ACTIONS(107), }, [191] = { - [sym__simple_statements] = STATE(1238), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_int_type] = STATE(3464), - [sym__signedness] = STATE(2986), - [sym__longness] = STATE(3185), - [sym_function_pointer_type] = STATE(3464), - [sym_c_type] = STATE(4937), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(354), + [sym__simple_statements] = STATE(1174), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_int_type] = STATE(3420), + [sym__signedness] = STATE(3000), + [sym__longness] = STATE(3204), + [sym_function_pointer_type] = STATE(3420), + [sym_c_type] = STATE(4654), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(356), + [anon_sym_LPAREN] = ACTIONS(361), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -45203,8 +45417,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -45219,101 +45433,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_int] = ACTIONS(360), - [anon_sym_double] = ACTIONS(360), - [anon_sym_complex] = ACTIONS(360), - [anon_sym_new] = ACTIONS(97), - [anon_sym_signed] = ACTIONS(362), - [anon_sym_unsigned] = ACTIONS(362), - [anon_sym_char] = ACTIONS(364), - [anon_sym_short] = ACTIONS(364), - [anon_sym_long] = ACTIONS(366), - [anon_sym_const] = ACTIONS(368), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(386), - [sym__indent] = ACTIONS(388), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), + [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(391), + [sym__indent] = ACTIONS(393), + [sym_string_start] = ACTIONS(107), }, [192] = { - [sym__simple_statements] = STATE(538), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_int_type] = STATE(3464), - [sym__signedness] = STATE(2986), - [sym__longness] = STATE(3185), - [sym_function_pointer_type] = STATE(3464), - [sym_c_type] = STATE(4495), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(354), + [sym__simple_statements] = STATE(539), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_int_type] = STATE(3420), + [sym__signedness] = STATE(3000), + [sym__longness] = STATE(3204), + [sym_function_pointer_type] = STATE(3420), + [sym_c_type] = STATE(4506), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(356), + [anon_sym_LPAREN] = ACTIONS(361), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -45323,8 +45538,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -45339,101 +45554,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_int] = ACTIONS(360), - [anon_sym_double] = ACTIONS(360), - [anon_sym_complex] = ACTIONS(360), - [anon_sym_new] = ACTIONS(97), - [anon_sym_signed] = ACTIONS(362), - [anon_sym_unsigned] = ACTIONS(362), - [anon_sym_char] = ACTIONS(364), - [anon_sym_short] = ACTIONS(364), - [anon_sym_long] = ACTIONS(366), - [anon_sym_const] = ACTIONS(368), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(390), - [sym__indent] = ACTIONS(392), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), + [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(395), + [sym__indent] = ACTIONS(397), + [sym_string_start] = ACTIONS(107), }, [193] = { [sym__simple_statements] = STATE(512), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_int_type] = STATE(3464), - [sym__signedness] = STATE(2986), - [sym__longness] = STATE(3185), - [sym_function_pointer_type] = STATE(3464), - [sym_c_type] = STATE(4879), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(354), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_int_type] = STATE(3420), + [sym__signedness] = STATE(3000), + [sym__longness] = STATE(3204), + [sym_function_pointer_type] = STATE(3420), + [sym_c_type] = STATE(4912), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(356), + [anon_sym_LPAREN] = ACTIONS(361), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -45443,8 +45659,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -45459,101 +45675,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_int] = ACTIONS(360), - [anon_sym_double] = ACTIONS(360), - [anon_sym_complex] = ACTIONS(360), - [anon_sym_new] = ACTIONS(97), - [anon_sym_signed] = ACTIONS(362), - [anon_sym_unsigned] = ACTIONS(362), - [anon_sym_char] = ACTIONS(364), - [anon_sym_short] = ACTIONS(364), - [anon_sym_long] = ACTIONS(366), - [anon_sym_const] = ACTIONS(368), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(394), - [sym__indent] = ACTIONS(396), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), + [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(399), + [sym__indent] = ACTIONS(401), + [sym_string_start] = ACTIONS(107), }, [194] = { - [sym__simple_statements] = STATE(572), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_int_type] = STATE(3464), - [sym__signedness] = STATE(2986), - [sym__longness] = STATE(3185), - [sym_function_pointer_type] = STATE(3464), - [sym_c_type] = STATE(4561), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(354), + [sym__simple_statements] = STATE(574), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_int_type] = STATE(3420), + [sym__signedness] = STATE(3000), + [sym__longness] = STATE(3204), + [sym_function_pointer_type] = STATE(3420), + [sym_c_type] = STATE(4569), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(356), + [anon_sym_LPAREN] = ACTIONS(361), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -45563,8 +45780,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -45579,101 +45796,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_int] = ACTIONS(360), - [anon_sym_double] = ACTIONS(360), - [anon_sym_complex] = ACTIONS(360), - [anon_sym_new] = ACTIONS(97), - [anon_sym_signed] = ACTIONS(362), - [anon_sym_unsigned] = ACTIONS(362), - [anon_sym_char] = ACTIONS(364), - [anon_sym_short] = ACTIONS(364), - [anon_sym_long] = ACTIONS(366), - [anon_sym_const] = ACTIONS(368), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(398), - [sym__indent] = ACTIONS(400), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), + [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(403), + [sym__indent] = ACTIONS(405), + [sym_string_start] = ACTIONS(107), }, [195] = { - [sym__simple_statements] = STATE(2833), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_int_type] = STATE(3464), - [sym__signedness] = STATE(2986), - [sym__longness] = STATE(3185), - [sym_function_pointer_type] = STATE(3464), - [sym_c_type] = STATE(4890), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(354), + [sym__simple_statements] = STATE(2876), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_int_type] = STATE(3420), + [sym__signedness] = STATE(3000), + [sym__longness] = STATE(3204), + [sym_function_pointer_type] = STATE(3420), + [sym_c_type] = STATE(4683), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(356), + [anon_sym_LPAREN] = ACTIONS(361), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -45683,8 +45901,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -45699,101 +45917,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_int] = ACTIONS(360), - [anon_sym_double] = ACTIONS(360), - [anon_sym_complex] = ACTIONS(360), - [anon_sym_new] = ACTIONS(97), - [anon_sym_signed] = ACTIONS(362), - [anon_sym_unsigned] = ACTIONS(362), - [anon_sym_char] = ACTIONS(364), - [anon_sym_short] = ACTIONS(364), - [anon_sym_long] = ACTIONS(366), - [anon_sym_const] = ACTIONS(368), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(402), - [sym__indent] = ACTIONS(404), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), + [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(407), + [sym__indent] = ACTIONS(409), + [sym_string_start] = ACTIONS(107), }, [196] = { - [sym__simple_statements] = STATE(1196), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_int_type] = STATE(3464), - [sym__signedness] = STATE(2986), - [sym__longness] = STATE(3185), - [sym_function_pointer_type] = STATE(3464), - [sym_c_type] = STATE(4572), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(354), + [sym__simple_statements] = STATE(1197), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_int_type] = STATE(3420), + [sym__signedness] = STATE(3000), + [sym__longness] = STATE(3204), + [sym_function_pointer_type] = STATE(3420), + [sym_c_type] = STATE(4595), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(356), + [anon_sym_LPAREN] = ACTIONS(361), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -45803,8 +46022,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -45819,101 +46038,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_int] = ACTIONS(360), - [anon_sym_double] = ACTIONS(360), - [anon_sym_complex] = ACTIONS(360), - [anon_sym_new] = ACTIONS(97), - [anon_sym_signed] = ACTIONS(362), - [anon_sym_unsigned] = ACTIONS(362), - [anon_sym_char] = ACTIONS(364), - [anon_sym_short] = ACTIONS(364), - [anon_sym_long] = ACTIONS(366), - [anon_sym_const] = ACTIONS(368), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(406), - [sym__indent] = ACTIONS(408), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), + [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(411), + [sym__indent] = ACTIONS(413), + [sym_string_start] = ACTIONS(107), }, [197] = { - [sym__simple_statements] = STATE(550), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_int_type] = STATE(3464), - [sym__signedness] = STATE(2986), - [sym__longness] = STATE(3185), - [sym_function_pointer_type] = STATE(3464), - [sym_c_type] = STATE(4525), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(354), + [sym__simple_statements] = STATE(552), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_int_type] = STATE(3420), + [sym__signedness] = STATE(3000), + [sym__longness] = STATE(3204), + [sym_function_pointer_type] = STATE(3420), + [sym_c_type] = STATE(4533), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(356), + [anon_sym_LPAREN] = ACTIONS(361), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -45923,8 +46143,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -45939,101 +46159,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_int] = ACTIONS(360), - [anon_sym_double] = ACTIONS(360), - [anon_sym_complex] = ACTIONS(360), - [anon_sym_new] = ACTIONS(97), - [anon_sym_signed] = ACTIONS(362), - [anon_sym_unsigned] = ACTIONS(362), - [anon_sym_char] = ACTIONS(364), - [anon_sym_short] = ACTIONS(364), - [anon_sym_long] = ACTIONS(366), - [anon_sym_const] = ACTIONS(368), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(410), - [sym__indent] = ACTIONS(412), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), + [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(415), + [sym__indent] = ACTIONS(417), + [sym_string_start] = ACTIONS(107), }, [198] = { - [sym__simple_statements] = STATE(1179), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_int_type] = STATE(3464), - [sym__signedness] = STATE(2986), - [sym__longness] = STATE(3185), - [sym_function_pointer_type] = STATE(3464), - [sym_c_type] = STATE(4717), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(354), + [sym__simple_statements] = STATE(1255), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_int_type] = STATE(3420), + [sym__signedness] = STATE(3000), + [sym__longness] = STATE(3204), + [sym_function_pointer_type] = STATE(3420), + [sym_c_type] = STATE(4945), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(356), + [anon_sym_LPAREN] = ACTIONS(361), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -46043,8 +46264,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -46059,101 +46280,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_int] = ACTIONS(360), - [anon_sym_double] = ACTIONS(360), - [anon_sym_complex] = ACTIONS(360), - [anon_sym_new] = ACTIONS(97), - [anon_sym_signed] = ACTIONS(362), - [anon_sym_unsigned] = ACTIONS(362), - [anon_sym_char] = ACTIONS(364), - [anon_sym_short] = ACTIONS(364), - [anon_sym_long] = ACTIONS(366), - [anon_sym_const] = ACTIONS(368), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(414), - [sym__indent] = ACTIONS(416), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), + [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(419), + [sym__indent] = ACTIONS(421), + [sym_string_start] = ACTIONS(107), }, [199] = { - [sym__simple_statements] = STATE(527), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_int_type] = STATE(3464), - [sym__signedness] = STATE(2986), - [sym__longness] = STATE(3185), - [sym_function_pointer_type] = STATE(3464), - [sym_c_type] = STATE(4941), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(354), + [sym__simple_statements] = STATE(528), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_int_type] = STATE(3420), + [sym__signedness] = STATE(3000), + [sym__longness] = STATE(3204), + [sym_function_pointer_type] = STATE(3420), + [sym_c_type] = STATE(4947), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(356), + [anon_sym_LPAREN] = ACTIONS(361), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -46163,8 +46385,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -46179,101 +46401,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_int] = ACTIONS(360), - [anon_sym_double] = ACTIONS(360), - [anon_sym_complex] = ACTIONS(360), - [anon_sym_new] = ACTIONS(97), - [anon_sym_signed] = ACTIONS(362), - [anon_sym_unsigned] = ACTIONS(362), - [anon_sym_char] = ACTIONS(364), - [anon_sym_short] = ACTIONS(364), - [anon_sym_long] = ACTIONS(366), - [anon_sym_const] = ACTIONS(368), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(418), - [sym__indent] = ACTIONS(420), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), + [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(423), + [sym__indent] = ACTIONS(425), + [sym_string_start] = ACTIONS(107), }, [200] = { - [sym__simple_statements] = STATE(2876), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_int_type] = STATE(3464), - [sym__signedness] = STATE(2986), - [sym__longness] = STATE(3185), - [sym_function_pointer_type] = STATE(3464), - [sym_c_type] = STATE(4560), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(354), + [sym__simple_statements] = STATE(2916), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_int_type] = STATE(3420), + [sym__signedness] = STATE(3000), + [sym__longness] = STATE(3204), + [sym_function_pointer_type] = STATE(3420), + [sym_c_type] = STATE(4579), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(356), + [anon_sym_LPAREN] = ACTIONS(361), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -46283,8 +46506,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -46299,101 +46522,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_int] = ACTIONS(360), - [anon_sym_double] = ACTIONS(360), - [anon_sym_complex] = ACTIONS(360), - [anon_sym_new] = ACTIONS(97), - [anon_sym_signed] = ACTIONS(362), - [anon_sym_unsigned] = ACTIONS(362), - [anon_sym_char] = ACTIONS(364), - [anon_sym_short] = ACTIONS(364), - [anon_sym_long] = ACTIONS(366), - [anon_sym_const] = ACTIONS(368), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(422), - [sym__indent] = ACTIONS(424), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), + [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(427), + [sym__indent] = ACTIONS(429), + [sym_string_start] = ACTIONS(107), }, [201] = { - [sym__simple_statements] = STATE(1008), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_int_type] = STATE(3464), - [sym__signedness] = STATE(2986), - [sym__longness] = STATE(3185), - [sym_function_pointer_type] = STATE(3464), - [sym_c_type] = STATE(4523), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(354), + [sym__simple_statements] = STATE(1214), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_int_type] = STATE(3420), + [sym__signedness] = STATE(3000), + [sym__longness] = STATE(3204), + [sym_function_pointer_type] = STATE(3420), + [sym_c_type] = STATE(4584), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(356), + [anon_sym_LPAREN] = ACTIONS(361), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -46403,8 +46627,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -46419,101 +46643,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_int] = ACTIONS(360), - [anon_sym_double] = ACTIONS(360), - [anon_sym_complex] = ACTIONS(360), - [anon_sym_new] = ACTIONS(97), - [anon_sym_signed] = ACTIONS(362), - [anon_sym_unsigned] = ACTIONS(362), - [anon_sym_char] = ACTIONS(364), - [anon_sym_short] = ACTIONS(364), - [anon_sym_long] = ACTIONS(366), - [anon_sym_const] = ACTIONS(368), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(426), - [sym__indent] = ACTIONS(428), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), + [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(431), + [sym__indent] = ACTIONS(433), + [sym_string_start] = ACTIONS(107), }, [202] = { - [sym__simple_statements] = STATE(1031), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_int_type] = STATE(3464), - [sym__signedness] = STATE(2986), - [sym__longness] = STATE(3185), - [sym_function_pointer_type] = STATE(3464), - [sym_c_type] = STATE(4926), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(354), + [sym__simple_statements] = STATE(1141), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_int_type] = STATE(3420), + [sym__signedness] = STATE(3000), + [sym__longness] = STATE(3204), + [sym_function_pointer_type] = STATE(3420), + [sym_c_type] = STATE(4933), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(356), + [anon_sym_LPAREN] = ACTIONS(361), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -46523,8 +46748,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -46539,101 +46764,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_int] = ACTIONS(360), - [anon_sym_double] = ACTIONS(360), - [anon_sym_complex] = ACTIONS(360), - [anon_sym_new] = ACTIONS(97), - [anon_sym_signed] = ACTIONS(362), - [anon_sym_unsigned] = ACTIONS(362), - [anon_sym_char] = ACTIONS(364), - [anon_sym_short] = ACTIONS(364), - [anon_sym_long] = ACTIONS(366), - [anon_sym_const] = ACTIONS(368), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(430), - [sym__indent] = ACTIONS(432), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), + [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(435), + [sym__indent] = ACTIONS(437), + [sym_string_start] = ACTIONS(107), }, [203] = { - [sym__simple_statements] = STATE(2886), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_int_type] = STATE(3464), - [sym__signedness] = STATE(2986), - [sym__longness] = STATE(3185), - [sym_function_pointer_type] = STATE(3464), - [sym_c_type] = STATE(4676), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(354), + [sym__simple_statements] = STATE(2849), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_int_type] = STATE(3420), + [sym__signedness] = STATE(3000), + [sym__longness] = STATE(3204), + [sym_function_pointer_type] = STATE(3420), + [sym_c_type] = STATE(4610), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(356), + [anon_sym_LPAREN] = ACTIONS(361), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -46643,8 +46869,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -46659,101 +46885,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_int] = ACTIONS(360), - [anon_sym_double] = ACTIONS(360), - [anon_sym_complex] = ACTIONS(360), - [anon_sym_new] = ACTIONS(97), - [anon_sym_signed] = ACTIONS(362), - [anon_sym_unsigned] = ACTIONS(362), - [anon_sym_char] = ACTIONS(364), - [anon_sym_short] = ACTIONS(364), - [anon_sym_long] = ACTIONS(366), - [anon_sym_const] = ACTIONS(368), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(434), - [sym__indent] = ACTIONS(436), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), + [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(439), + [sym__indent] = ACTIONS(441), + [sym_string_start] = ACTIONS(107), }, [204] = { - [sym__simple_statements] = STATE(2869), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_int_type] = STATE(3464), - [sym__signedness] = STATE(2986), - [sym__longness] = STATE(3185), - [sym_function_pointer_type] = STATE(3464), - [sym_c_type] = STATE(4928), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(354), + [sym__simple_statements] = STATE(2871), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_int_type] = STATE(3420), + [sym__signedness] = STATE(3000), + [sym__longness] = STATE(3204), + [sym_function_pointer_type] = STATE(3420), + [sym_c_type] = STATE(4530), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(356), + [anon_sym_LPAREN] = ACTIONS(361), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -46763,8 +46990,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -46779,104 +47006,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_int] = ACTIONS(360), - [anon_sym_double] = ACTIONS(360), - [anon_sym_complex] = ACTIONS(360), - [anon_sym_new] = ACTIONS(97), - [anon_sym_signed] = ACTIONS(362), - [anon_sym_unsigned] = ACTIONS(362), - [anon_sym_char] = ACTIONS(364), - [anon_sym_short] = ACTIONS(364), - [anon_sym_long] = ACTIONS(366), - [anon_sym_const] = ACTIONS(368), - [anon_sym_volatile] = ACTIONS(368), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(438), - [sym__indent] = ACTIONS(440), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), + [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(443), + [sym__indent] = ACTIONS(445), + [sym_string_start] = ACTIONS(107), }, [205] = { - [sym__simple_statements] = STATE(1308), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1785), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3478), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1767), - [sym_subscript] = STATE(1767), - [sym_call] = STATE(1981), - [sym_type] = STATE(4919), - [sym_splat_type] = STATE(4465), - [sym_generic_type] = STATE(4465), - [sym_union_type] = STATE(4465), - [sym_constrained_type] = STATE(4465), - [sym_member_type] = STATE(4465), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(442), + [sym__simple_statements] = STATE(1315), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1776), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3568), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1778), + [sym_subscript] = STATE(1778), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_type] = STATE(4926), + [sym_splat_type] = STATE(4369), + [sym_generic_type] = STATE(4369), + [sym_union_type] = STATE(4369), + [sym_constrained_type] = STATE(4369), + [sym_member_type] = STATE(4369), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(447), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(444), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_print] = ACTIONS(448), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_print] = ACTIONS(453), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -46884,14 +47112,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(450), - [anon_sym_async] = ACTIONS(450), - [anon_sym_STAR_STAR] = ACTIONS(452), + [anon_sym_match] = ACTIONS(455), + [anon_sym_async] = ACTIONS(455), + [anon_sym_STAR_STAR] = ACTIONS(457), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(454), + [anon_sym_exec] = ACTIONS(459), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(461), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -46901,94 +47129,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(458), - [anon_sym_api] = ACTIONS(450), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(463), + [anon_sym_api] = ACTIONS(455), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(460), - [sym__indent] = ACTIONS(462), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(465), + [sym__indent] = ACTIONS(467), + [sym_string_start] = ACTIONS(107), }, [206] = { - [sym__simple_statements] = STATE(1258), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1785), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3478), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1767), - [sym_subscript] = STATE(1767), - [sym_call] = STATE(1981), - [sym_type] = STATE(4919), - [sym_splat_type] = STATE(4465), - [sym_generic_type] = STATE(4465), - [sym_union_type] = STATE(4465), - [sym_constrained_type] = STATE(4465), - [sym_member_type] = STATE(4465), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(442), + [sym__simple_statements] = STATE(1363), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1776), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3568), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1778), + [sym_subscript] = STATE(1778), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_type] = STATE(4926), + [sym_splat_type] = STATE(4369), + [sym_generic_type] = STATE(4369), + [sym_union_type] = STATE(4369), + [sym_constrained_type] = STATE(4369), + [sym_member_type] = STATE(4369), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(447), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(444), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_print] = ACTIONS(448), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_print] = ACTIONS(453), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -46996,14 +47225,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(450), - [anon_sym_async] = ACTIONS(450), - [anon_sym_STAR_STAR] = ACTIONS(452), + [anon_sym_match] = ACTIONS(455), + [anon_sym_async] = ACTIONS(455), + [anon_sym_STAR_STAR] = ACTIONS(457), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(454), + [anon_sym_exec] = ACTIONS(459), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(461), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -47013,94 +47242,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(458), - [anon_sym_api] = ACTIONS(450), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(463), + [anon_sym_api] = ACTIONS(455), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(464), - [sym__indent] = ACTIONS(466), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(469), + [sym__indent] = ACTIONS(471), + [sym_string_start] = ACTIONS(107), }, [207] = { - [sym__simple_statements] = STATE(1374), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1785), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3478), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1767), - [sym_subscript] = STATE(1767), - [sym_call] = STATE(1981), - [sym_type] = STATE(4919), - [sym_splat_type] = STATE(4465), - [sym_generic_type] = STATE(4465), - [sym_union_type] = STATE(4465), - [sym_constrained_type] = STATE(4465), - [sym_member_type] = STATE(4465), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(442), + [sym__simple_statements] = STATE(1589), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1776), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3568), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1778), + [sym_subscript] = STATE(1778), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_type] = STATE(4926), + [sym_splat_type] = STATE(4369), + [sym_generic_type] = STATE(4369), + [sym_union_type] = STATE(4369), + [sym_constrained_type] = STATE(4369), + [sym_member_type] = STATE(4369), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(447), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(444), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_print] = ACTIONS(448), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_print] = ACTIONS(453), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -47108,14 +47338,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(450), - [anon_sym_async] = ACTIONS(450), - [anon_sym_STAR_STAR] = ACTIONS(452), + [anon_sym_match] = ACTIONS(455), + [anon_sym_async] = ACTIONS(455), + [anon_sym_STAR_STAR] = ACTIONS(457), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(454), + [anon_sym_exec] = ACTIONS(459), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(461), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -47125,94 +47355,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(458), - [anon_sym_api] = ACTIONS(450), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(463), + [anon_sym_api] = ACTIONS(455), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(468), - [sym__indent] = ACTIONS(470), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(473), + [sym__indent] = ACTIONS(475), + [sym_string_start] = ACTIONS(107), }, [208] = { - [sym__simple_statements] = STATE(1369), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1785), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3478), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1767), - [sym_subscript] = STATE(1767), - [sym_call] = STATE(1981), - [sym_type] = STATE(4919), - [sym_splat_type] = STATE(4465), - [sym_generic_type] = STATE(4465), - [sym_union_type] = STATE(4465), - [sym_constrained_type] = STATE(4465), - [sym_member_type] = STATE(4465), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(442), + [sym__simple_statements] = STATE(1690), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1776), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3568), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1778), + [sym_subscript] = STATE(1778), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_type] = STATE(4926), + [sym_splat_type] = STATE(4369), + [sym_generic_type] = STATE(4369), + [sym_union_type] = STATE(4369), + [sym_constrained_type] = STATE(4369), + [sym_member_type] = STATE(4369), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(447), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(444), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_print] = ACTIONS(448), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_print] = ACTIONS(453), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -47220,14 +47451,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(450), - [anon_sym_async] = ACTIONS(450), - [anon_sym_STAR_STAR] = ACTIONS(452), + [anon_sym_match] = ACTIONS(455), + [anon_sym_async] = ACTIONS(455), + [anon_sym_STAR_STAR] = ACTIONS(457), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(454), + [anon_sym_exec] = ACTIONS(459), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(461), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -47237,94 +47468,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(458), - [anon_sym_api] = ACTIONS(450), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(463), + [anon_sym_api] = ACTIONS(455), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(472), - [sym__indent] = ACTIONS(474), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(477), + [sym__indent] = ACTIONS(479), + [sym_string_start] = ACTIONS(107), }, [209] = { - [sym__simple_statements] = STATE(1333), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1785), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3478), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1767), - [sym_subscript] = STATE(1767), - [sym_call] = STATE(1981), - [sym_type] = STATE(4919), - [sym_splat_type] = STATE(4465), - [sym_generic_type] = STATE(4465), - [sym_union_type] = STATE(4465), - [sym_constrained_type] = STATE(4465), - [sym_member_type] = STATE(4465), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(442), + [sym__simple_statements] = STATE(1606), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1776), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3568), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1778), + [sym_subscript] = STATE(1778), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_type] = STATE(4926), + [sym_splat_type] = STATE(4369), + [sym_generic_type] = STATE(4369), + [sym_union_type] = STATE(4369), + [sym_constrained_type] = STATE(4369), + [sym_member_type] = STATE(4369), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(447), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(444), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_print] = ACTIONS(448), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_print] = ACTIONS(453), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -47332,14 +47564,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(450), - [anon_sym_async] = ACTIONS(450), - [anon_sym_STAR_STAR] = ACTIONS(452), + [anon_sym_match] = ACTIONS(455), + [anon_sym_async] = ACTIONS(455), + [anon_sym_STAR_STAR] = ACTIONS(457), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(454), + [anon_sym_exec] = ACTIONS(459), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(461), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -47349,94 +47581,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(458), - [anon_sym_api] = ACTIONS(450), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(463), + [anon_sym_api] = ACTIONS(455), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(476), - [sym__indent] = ACTIONS(478), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(481), + [sym__indent] = ACTIONS(483), + [sym_string_start] = ACTIONS(107), }, [210] = { - [sym__simple_statements] = STATE(1283), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1785), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3478), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1767), - [sym_subscript] = STATE(1767), - [sym_call] = STATE(1981), - [sym_type] = STATE(4919), - [sym_splat_type] = STATE(4465), - [sym_generic_type] = STATE(4465), - [sym_union_type] = STATE(4465), - [sym_constrained_type] = STATE(4465), - [sym_member_type] = STATE(4465), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(442), + [sym__simple_statements] = STATE(1616), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1776), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3568), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1778), + [sym_subscript] = STATE(1778), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_type] = STATE(4926), + [sym_splat_type] = STATE(4369), + [sym_generic_type] = STATE(4369), + [sym_union_type] = STATE(4369), + [sym_constrained_type] = STATE(4369), + [sym_member_type] = STATE(4369), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(447), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(444), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_print] = ACTIONS(448), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_print] = ACTIONS(453), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -47444,14 +47677,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(450), - [anon_sym_async] = ACTIONS(450), - [anon_sym_STAR_STAR] = ACTIONS(452), + [anon_sym_match] = ACTIONS(455), + [anon_sym_async] = ACTIONS(455), + [anon_sym_STAR_STAR] = ACTIONS(457), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(454), + [anon_sym_exec] = ACTIONS(459), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(461), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -47461,94 +47694,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(458), - [anon_sym_api] = ACTIONS(450), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(463), + [anon_sym_api] = ACTIONS(455), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(480), - [sym__indent] = ACTIONS(482), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(485), + [sym__indent] = ACTIONS(487), + [sym_string_start] = ACTIONS(107), }, [211] = { - [sym__simple_statements] = STATE(1286), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1785), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3478), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1767), - [sym_subscript] = STATE(1767), - [sym_call] = STATE(1981), - [sym_type] = STATE(4919), - [sym_splat_type] = STATE(4465), - [sym_generic_type] = STATE(4465), - [sym_union_type] = STATE(4465), - [sym_constrained_type] = STATE(4465), - [sym_member_type] = STATE(4465), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(442), + [sym__simple_statements] = STATE(1308), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1776), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3568), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1778), + [sym_subscript] = STATE(1778), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_type] = STATE(4926), + [sym_splat_type] = STATE(4369), + [sym_generic_type] = STATE(4369), + [sym_union_type] = STATE(4369), + [sym_constrained_type] = STATE(4369), + [sym_member_type] = STATE(4369), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(447), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(444), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_print] = ACTIONS(448), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_print] = ACTIONS(453), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -47556,14 +47790,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(450), - [anon_sym_async] = ACTIONS(450), - [anon_sym_STAR_STAR] = ACTIONS(452), + [anon_sym_match] = ACTIONS(455), + [anon_sym_async] = ACTIONS(455), + [anon_sym_STAR_STAR] = ACTIONS(457), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(454), + [anon_sym_exec] = ACTIONS(459), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(461), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -47573,94 +47807,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(458), - [anon_sym_api] = ACTIONS(450), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(463), + [anon_sym_api] = ACTIONS(455), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(484), - [sym__indent] = ACTIONS(486), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(489), + [sym__indent] = ACTIONS(491), + [sym_string_start] = ACTIONS(107), }, [212] = { - [sym__simple_statements] = STATE(1376), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1785), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3478), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1767), - [sym_subscript] = STATE(1767), - [sym_call] = STATE(1981), - [sym_type] = STATE(4919), - [sym_splat_type] = STATE(4465), - [sym_generic_type] = STATE(4465), - [sym_union_type] = STATE(4465), - [sym_constrained_type] = STATE(4465), - [sym_member_type] = STATE(4465), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(442), + [sym__simple_statements] = STATE(1686), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1776), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3568), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1778), + [sym_subscript] = STATE(1778), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_type] = STATE(4926), + [sym_splat_type] = STATE(4369), + [sym_generic_type] = STATE(4369), + [sym_union_type] = STATE(4369), + [sym_constrained_type] = STATE(4369), + [sym_member_type] = STATE(4369), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(447), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(444), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_print] = ACTIONS(448), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_print] = ACTIONS(453), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -47668,14 +47903,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(450), - [anon_sym_async] = ACTIONS(450), - [anon_sym_STAR_STAR] = ACTIONS(452), + [anon_sym_match] = ACTIONS(455), + [anon_sym_async] = ACTIONS(455), + [anon_sym_STAR_STAR] = ACTIONS(457), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(454), + [anon_sym_exec] = ACTIONS(459), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(461), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -47685,81 +47920,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(458), - [anon_sym_api] = ACTIONS(450), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(463), + [anon_sym_api] = ACTIONS(455), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(488), - [sym__indent] = ACTIONS(490), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(493), + [sym__indent] = ACTIONS(495), + [sym_string_start] = ACTIONS(107), }, [213] = { - [sym__simple_statements] = STATE(3786), - [sym_import_statement] = STATE(4637), - [sym_future_import_statement] = STATE(4637), - [sym_import_from_statement] = STATE(4637), - [sym_print_statement] = STATE(4637), - [sym_assert_statement] = STATE(4637), - [sym_expression_statement] = STATE(4637), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4637), - [sym_delete_statement] = STATE(4637), - [sym_raise_statement] = STATE(4637), - [sym_pass_statement] = STATE(4637), - [sym_break_statement] = STATE(4637), - [sym_continue_statement] = STATE(4637), - [sym_global_statement] = STATE(4637), - [sym_nonlocal_statement] = STATE(4637), - [sym_exec_statement] = STATE(4637), - [sym_type_alias_statement] = STATE(4637), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4637), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1176), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47774,8 +48010,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -47790,81 +48026,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(492), - [sym__indent] = ACTIONS(494), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(497), + [sym__indent] = ACTIONS(499), + [sym_string_start] = ACTIONS(107), }, [214] = { - [sym__simple_statements] = STATE(3782), - [sym_import_statement] = STATE(4637), - [sym_future_import_statement] = STATE(4637), - [sym_import_from_statement] = STATE(4637), - [sym_print_statement] = STATE(4637), - [sym_assert_statement] = STATE(4637), - [sym_expression_statement] = STATE(4637), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4637), - [sym_delete_statement] = STATE(4637), - [sym_raise_statement] = STATE(4637), - [sym_pass_statement] = STATE(4637), - [sym_break_statement] = STATE(4637), - [sym_continue_statement] = STATE(4637), - [sym_global_statement] = STATE(4637), - [sym_nonlocal_statement] = STATE(4637), - [sym_exec_statement] = STATE(4637), - [sym_type_alias_statement] = STATE(4637), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4637), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(3743), + [sym_import_statement] = STATE(4725), + [sym_future_import_statement] = STATE(4725), + [sym_import_from_statement] = STATE(4725), + [sym_print_statement] = STATE(4725), + [sym_assert_statement] = STATE(4725), + [sym_expression_statement] = STATE(4725), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4725), + [sym_delete_statement] = STATE(4725), + [sym_raise_statement] = STATE(4725), + [sym_pass_statement] = STATE(4725), + [sym_break_statement] = STATE(4725), + [sym_continue_statement] = STATE(4725), + [sym_global_statement] = STATE(4725), + [sym_nonlocal_statement] = STATE(4725), + [sym_exec_statement] = STATE(4725), + [sym_type_alias_statement] = STATE(4725), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4725), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47879,8 +48116,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -47895,81 +48132,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(496), - [sym__indent] = ACTIONS(498), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(501), + [sym__indent] = ACTIONS(503), + [sym_string_start] = ACTIONS(107), }, [215] = { - [sym__simple_statements] = STATE(772), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(854), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47984,8 +48222,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -48000,81 +48238,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(500), - [sym__indent] = ACTIONS(502), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(505), + [sym__indent] = ACTIONS(507), + [sym_string_start] = ACTIONS(107), }, [216] = { - [sym__simple_statements] = STATE(981), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1060), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48089,8 +48328,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -48105,81 +48344,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(504), - [sym__indent] = ACTIONS(506), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(509), + [sym__indent] = ACTIONS(511), + [sym_string_start] = ACTIONS(107), }, [217] = { [sym__simple_statements] = STATE(983), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48194,8 +48434,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -48210,81 +48450,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(508), - [sym__indent] = ACTIONS(510), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(513), + [sym__indent] = ACTIONS(515), + [sym_string_start] = ACTIONS(107), }, [218] = { - [sym__simple_statements] = STATE(1288), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1516), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48299,8 +48540,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -48315,81 +48556,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(512), - [sym__indent] = ACTIONS(514), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(517), + [sym__indent] = ACTIONS(519), + [sym_string_start] = ACTIONS(107), }, [219] = { - [sym__simple_statements] = STATE(547), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(549), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48404,8 +48646,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -48420,81 +48662,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(516), - [sym__indent] = ACTIONS(518), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(521), + [sym__indent] = ACTIONS(523), + [sym_string_start] = ACTIONS(107), }, [220] = { - [sym__simple_statements] = STATE(1291), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1518), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48509,8 +48752,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -48525,81 +48768,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(520), - [sym__indent] = ACTIONS(522), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(525), + [sym__indent] = ACTIONS(527), + [sym_string_start] = ACTIONS(107), }, [221] = { - [sym__simple_statements] = STATE(2808), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2830), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48614,8 +48858,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -48630,81 +48874,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(524), - [sym__indent] = ACTIONS(526), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(529), + [sym__indent] = ACTIONS(531), + [sym_string_start] = ACTIONS(107), }, [222] = { - [sym__simple_statements] = STATE(1126), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(842), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48719,8 +48964,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -48735,81 +48980,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(528), - [sym__indent] = ACTIONS(530), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(533), + [sym__indent] = ACTIONS(535), + [sym_string_start] = ACTIONS(107), }, [223] = { - [sym__simple_statements] = STATE(1001), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(990), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48824,8 +49070,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -48840,81 +49086,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(532), - [sym__indent] = ACTIONS(534), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(537), + [sym__indent] = ACTIONS(539), + [sym_string_start] = ACTIONS(107), }, [224] = { - [sym__simple_statements] = STATE(1316), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1526), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48929,8 +49176,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -48945,81 +49192,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(536), - [sym__indent] = ACTIONS(538), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(541), + [sym__indent] = ACTIONS(543), + [sym_string_start] = ACTIONS(107), }, [225] = { - [sym__simple_statements] = STATE(1253), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1242), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49034,8 +49282,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -49050,81 +49298,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(540), - [sym__indent] = ACTIONS(542), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(545), + [sym__indent] = ACTIONS(547), + [sym_string_start] = ACTIONS(107), }, [226] = { - [sym__simple_statements] = STATE(1128), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1230), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49139,8 +49388,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -49155,81 +49404,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(544), - [sym__indent] = ACTIONS(546), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(549), + [sym__indent] = ACTIONS(551), + [sym_string_start] = ACTIONS(107), }, [227] = { - [sym__simple_statements] = STATE(1129), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1145), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49244,8 +49494,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -49260,81 +49510,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(548), - [sym__indent] = ACTIONS(550), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(553), + [sym__indent] = ACTIONS(555), + [sym_string_start] = ACTIONS(107), }, [228] = { - [sym__simple_statements] = STATE(1336), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1533), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49349,8 +49600,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -49365,186 +49616,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(552), - [sym__indent] = ACTIONS(554), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(557), + [sym__indent] = ACTIONS(559), + [sym_string_start] = ACTIONS(107), }, [229] = { - [sym__simple_statements] = STATE(558), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_cimport] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), + [sym_chevron] = STATE(4409), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_list_splat_pattern] = STATE(1975), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3777), + [sym_primary_expression] = STATE(1927), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_attribute] = STATE(2021), + [sym_subscript] = STATE(2021), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_print] = ACTIONS(576), + [anon_sym_GT_GT] = ACTIONS(578), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_match] = ACTIONS(576), + [anon_sym_async] = ACTIONS(576), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(565), + [anon_sym_exec] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(584), + [anon_sym_AT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(565), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(587), + [anon_sym_not] = ACTIONS(590), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(565), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), [anon_sym_lambda] = ACTIONS(73), - [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(596), + [anon_sym_DASH_EQ] = ACTIONS(596), + [anon_sym_STAR_EQ] = ACTIONS(596), + [anon_sym_SLASH_EQ] = ACTIONS(596), + [anon_sym_AT_EQ] = ACTIONS(596), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(596), + [anon_sym_PERCENT_EQ] = ACTIONS(596), + [anon_sym_STAR_STAR_EQ] = ACTIONS(596), + [anon_sym_GT_GT_EQ] = ACTIONS(596), + [anon_sym_LT_LT_EQ] = ACTIONS(596), + [anon_sym_AMP_EQ] = ACTIONS(596), + [anon_sym_CARET_EQ] = ACTIONS(596), + [anon_sym_PIPE_EQ] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(598), + [anon_sym_api] = ACTIONS(576), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(556), - [sym__indent] = ACTIONS(558), - [sym_string_start] = ACTIONS(105), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(563), + [sym_string_start] = ACTIONS(107), }, [230] = { - [sym__simple_statements] = STATE(559), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(560), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49559,8 +49812,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -49575,81 +49828,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(560), - [sym__indent] = ACTIONS(562), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(600), + [sym__indent] = ACTIONS(602), + [sym_string_start] = ACTIONS(107), }, [231] = { - [sym__simple_statements] = STATE(560), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(561), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49664,8 +49918,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -49680,81 +49934,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(564), - [sym__indent] = ACTIONS(566), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(604), + [sym__indent] = ACTIONS(606), + [sym_string_start] = ACTIONS(107), }, [232] = { - [sym__simple_statements] = STATE(1152), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(562), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49769,8 +50024,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -49785,81 +50040,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(568), - [sym__indent] = ACTIONS(570), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(608), + [sym__indent] = ACTIONS(610), + [sym_string_start] = ACTIONS(107), }, [233] = { - [sym__simple_statements] = STATE(1156), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1120), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49874,8 +50130,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -49890,81 +50146,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(572), - [sym__indent] = ACTIONS(574), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(612), + [sym__indent] = ACTIONS(614), + [sym_string_start] = ACTIONS(107), }, [234] = { - [sym__simple_statements] = STATE(2833), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1123), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49979,8 +50236,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -49995,81 +50252,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(402), - [sym__indent] = ACTIONS(404), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(616), + [sym__indent] = ACTIONS(618), + [sym_string_start] = ACTIONS(107), }, [235] = { - [sym__simple_statements] = STATE(961), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2876), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50084,8 +50342,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -50100,81 +50358,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(576), - [sym__indent] = ACTIONS(578), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(407), + [sym__indent] = ACTIONS(409), + [sym_string_start] = ACTIONS(107), }, [236] = { - [sym__simple_statements] = STATE(2742), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1005), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50189,8 +50448,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -50205,81 +50464,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(580), - [sym__indent] = ACTIONS(582), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(620), + [sym__indent] = ACTIONS(622), + [sym_string_start] = ACTIONS(107), }, [237] = { - [sym__simple_statements] = STATE(566), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2721), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50294,8 +50554,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -50310,81 +50570,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(584), - [sym__indent] = ACTIONS(586), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(624), + [sym__indent] = ACTIONS(626), + [sym_string_start] = ACTIONS(107), }, [238] = { - [sym__simple_statements] = STATE(836), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(568), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50399,8 +50660,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -50415,81 +50676,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(588), - [sym__indent] = ACTIONS(590), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(628), + [sym__indent] = ACTIONS(630), + [sym_string_start] = ACTIONS(107), }, [239] = { - [sym__simple_statements] = STATE(5155), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(5107), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50504,8 +50766,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -50520,81 +50782,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(592), - [sym__indent] = ACTIONS(594), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(632), + [sym__indent] = ACTIONS(634), + [sym_string_start] = ACTIONS(107), }, [240] = { - [sym__simple_statements] = STATE(1266), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1561), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50609,8 +50872,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -50625,81 +50888,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(596), - [sym__indent] = ACTIONS(598), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(636), + [sym__indent] = ACTIONS(638), + [sym_string_start] = ACTIONS(107), }, [241] = { - [sym__simple_statements] = STATE(975), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1025), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50714,8 +50978,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -50730,81 +50994,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(600), - [sym__indent] = ACTIONS(602), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(640), + [sym__indent] = ACTIONS(642), + [sym_string_start] = ACTIONS(107), }, [242] = { - [sym__simple_statements] = STATE(904), - [sym_import_statement] = STATE(4693), - [sym_future_import_statement] = STATE(4693), - [sym_import_from_statement] = STATE(4693), - [sym_print_statement] = STATE(4693), - [sym_assert_statement] = STATE(4693), - [sym_expression_statement] = STATE(4693), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4693), - [sym_delete_statement] = STATE(4693), - [sym_raise_statement] = STATE(4693), - [sym_pass_statement] = STATE(4693), - [sym_break_statement] = STATE(4693), - [sym_continue_statement] = STATE(4693), - [sym_global_statement] = STATE(4693), - [sym_nonlocal_statement] = STATE(4693), - [sym_exec_statement] = STATE(4693), - [sym_type_alias_statement] = STATE(4693), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4693), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(901), + [sym_import_statement] = STATE(4704), + [sym_future_import_statement] = STATE(4704), + [sym_import_from_statement] = STATE(4704), + [sym_print_statement] = STATE(4704), + [sym_assert_statement] = STATE(4704), + [sym_expression_statement] = STATE(4704), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4704), + [sym_delete_statement] = STATE(4704), + [sym_raise_statement] = STATE(4704), + [sym_pass_statement] = STATE(4704), + [sym_break_statement] = STATE(4704), + [sym_continue_statement] = STATE(4704), + [sym_global_statement] = STATE(4704), + [sym_nonlocal_statement] = STATE(4704), + [sym_exec_statement] = STATE(4704), + [sym_type_alias_statement] = STATE(4704), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4704), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50819,8 +51084,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -50835,81 +51100,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(604), - [sym__indent] = ACTIONS(606), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(644), + [sym__indent] = ACTIONS(646), + [sym_string_start] = ACTIONS(107), }, [243] = { - [sym__simple_statements] = STATE(1299), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1564), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50924,8 +51190,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -50940,81 +51206,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(608), - [sym__indent] = ACTIONS(610), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(648), + [sym__indent] = ACTIONS(650), + [sym_string_start] = ACTIONS(107), }, [244] = { - [sym__simple_statements] = STATE(971), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1019), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51029,8 +51296,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -51045,81 +51312,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(612), - [sym__indent] = ACTIONS(614), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(652), + [sym__indent] = ACTIONS(654), + [sym_string_start] = ACTIONS(107), }, [245] = { - [sym__simple_statements] = STATE(1325), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1569), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51134,8 +51402,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -51150,81 +51418,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(616), - [sym__indent] = ACTIONS(618), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(656), + [sym__indent] = ACTIONS(658), + [sym_string_start] = ACTIONS(107), }, [246] = { - [sym__simple_statements] = STATE(1006), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1030), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51239,8 +51508,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -51255,81 +51524,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(620), - [sym__indent] = ACTIONS(622), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(660), + [sym__indent] = ACTIONS(662), + [sym_string_start] = ACTIONS(107), }, [247] = { - [sym__simple_statements] = STATE(1238), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1174), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51344,8 +51614,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -51360,81 +51630,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(386), - [sym__indent] = ACTIONS(388), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(391), + [sym__indent] = ACTIONS(393), + [sym_string_start] = ACTIONS(107), }, [248] = { - [sym__simple_statements] = STATE(578), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(580), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51449,8 +51720,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -51465,81 +51736,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(624), - [sym__indent] = ACTIONS(626), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(664), + [sym__indent] = ACTIONS(666), + [sym_string_start] = ACTIONS(107), }, [249] = { - [sym__simple_statements] = STATE(579), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(581), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51554,8 +51826,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -51570,81 +51842,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(628), - [sym__indent] = ACTIONS(630), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(668), + [sym__indent] = ACTIONS(670), + [sym_string_start] = ACTIONS(107), }, [250] = { - [sym__simple_statements] = STATE(1161), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1205), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51659,8 +51932,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -51675,81 +51948,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(632), - [sym__indent] = ACTIONS(634), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(672), + [sym__indent] = ACTIONS(674), + [sym_string_start] = ACTIONS(107), }, [251] = { - [sym__simple_statements] = STATE(2743), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2738), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51764,8 +52038,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -51780,81 +52054,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(636), - [sym__indent] = ACTIONS(638), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(676), + [sym__indent] = ACTIONS(678), + [sym_string_start] = ACTIONS(107), }, [252] = { - [sym__simple_statements] = STATE(2841), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2823), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51869,8 +52144,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -51885,81 +52160,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(378), - [sym__indent] = ACTIONS(380), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(383), + [sym__indent] = ACTIONS(385), + [sym_string_start] = ACTIONS(107), }, [253] = { - [sym__simple_statements] = STATE(1102), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1108), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51974,8 +52250,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -51990,81 +52266,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(640), - [sym__indent] = ACTIONS(642), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(680), + [sym__indent] = ACTIONS(682), + [sym_string_start] = ACTIONS(107), }, [254] = { - [sym__simple_statements] = STATE(596), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(598), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52079,8 +52356,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -52095,81 +52372,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(644), - [sym__indent] = ACTIONS(646), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(684), + [sym__indent] = ACTIONS(686), + [sym_string_start] = ACTIONS(107), }, [255] = { - [sym__simple_statements] = STATE(599), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(601), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52184,8 +52462,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -52200,81 +52478,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(648), - [sym__indent] = ACTIONS(650), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(688), + [sym__indent] = ACTIONS(690), + [sym_string_start] = ACTIONS(107), }, [256] = { - [sym__simple_statements] = STATE(601), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(604), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52289,8 +52568,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -52305,81 +52584,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(652), - [sym__indent] = ACTIONS(654), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(692), + [sym__indent] = ACTIONS(694), + [sym_string_start] = ACTIONS(107), }, [257] = { - [sym__simple_statements] = STATE(1251), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1165), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52394,8 +52674,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -52410,81 +52690,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(656), - [sym__indent] = ACTIONS(658), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(696), + [sym__indent] = ACTIONS(698), + [sym_string_start] = ACTIONS(107), }, [258] = { - [sym__simple_statements] = STATE(987), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(986), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52499,8 +52780,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -52515,81 +52796,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(660), - [sym__indent] = ACTIONS(662), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(700), + [sym__indent] = ACTIONS(702), + [sym_string_start] = ACTIONS(107), }, [259] = { - [sym__simple_statements] = STATE(1186), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1225), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52604,8 +52886,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -52620,81 +52902,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(664), - [sym__indent] = ACTIONS(666), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(704), + [sym__indent] = ACTIONS(706), + [sym_string_start] = ACTIONS(107), }, [260] = { - [sym__simple_statements] = STATE(1354), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1582), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52709,8 +52992,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -52725,81 +53008,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(668), - [sym__indent] = ACTIONS(670), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(708), + [sym__indent] = ACTIONS(710), + [sym_string_start] = ACTIONS(107), }, [261] = { - [sym__simple_statements] = STATE(1188), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1146), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52814,8 +53098,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -52830,81 +53114,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(672), - [sym__indent] = ACTIONS(674), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(712), + [sym__indent] = ACTIONS(714), + [sym_string_start] = ACTIONS(107), }, [262] = { - [sym__simple_statements] = STATE(1190), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1122), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52919,8 +53204,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -52935,81 +53220,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(676), - [sym__indent] = ACTIONS(678), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(716), + [sym__indent] = ACTIONS(718), + [sym_string_start] = ACTIONS(107), }, [263] = { - [sym__simple_statements] = STATE(930), - [sym_import_statement] = STATE(4693), - [sym_future_import_statement] = STATE(4693), - [sym_import_from_statement] = STATE(4693), - [sym_print_statement] = STATE(4693), - [sym_assert_statement] = STATE(4693), - [sym_expression_statement] = STATE(4693), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4693), - [sym_delete_statement] = STATE(4693), - [sym_raise_statement] = STATE(4693), - [sym_pass_statement] = STATE(4693), - [sym_break_statement] = STATE(4693), - [sym_continue_statement] = STATE(4693), - [sym_global_statement] = STATE(4693), - [sym_nonlocal_statement] = STATE(4693), - [sym_exec_statement] = STATE(4693), - [sym_type_alias_statement] = STATE(4693), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4693), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(911), + [sym_import_statement] = STATE(4704), + [sym_future_import_statement] = STATE(4704), + [sym_import_from_statement] = STATE(4704), + [sym_print_statement] = STATE(4704), + [sym_assert_statement] = STATE(4704), + [sym_expression_statement] = STATE(4704), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4704), + [sym_delete_statement] = STATE(4704), + [sym_raise_statement] = STATE(4704), + [sym_pass_statement] = STATE(4704), + [sym_break_statement] = STATE(4704), + [sym_continue_statement] = STATE(4704), + [sym_global_statement] = STATE(4704), + [sym_nonlocal_statement] = STATE(4704), + [sym_exec_statement] = STATE(4704), + [sym_type_alias_statement] = STATE(4704), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4704), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53024,8 +53310,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -53040,81 +53326,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(680), - [sym__indent] = ACTIONS(682), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(720), + [sym__indent] = ACTIONS(722), + [sym_string_start] = ACTIONS(107), }, [264] = { - [sym__simple_statements] = STATE(920), - [sym_import_statement] = STATE(4719), - [sym_future_import_statement] = STATE(4719), - [sym_import_from_statement] = STATE(4719), - [sym_print_statement] = STATE(4719), - [sym_assert_statement] = STATE(4719), - [sym_expression_statement] = STATE(4719), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4719), - [sym_delete_statement] = STATE(4719), - [sym_raise_statement] = STATE(4719), - [sym_pass_statement] = STATE(4719), - [sym_break_statement] = STATE(4719), - [sym_continue_statement] = STATE(4719), - [sym_global_statement] = STATE(4719), - [sym_nonlocal_statement] = STATE(4719), - [sym_exec_statement] = STATE(4719), - [sym_type_alias_statement] = STATE(4719), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4719), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(912), + [sym_import_statement] = STATE(4727), + [sym_future_import_statement] = STATE(4727), + [sym_import_from_statement] = STATE(4727), + [sym_print_statement] = STATE(4727), + [sym_assert_statement] = STATE(4727), + [sym_expression_statement] = STATE(4727), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4727), + [sym_delete_statement] = STATE(4727), + [sym_raise_statement] = STATE(4727), + [sym_pass_statement] = STATE(4727), + [sym_break_statement] = STATE(4727), + [sym_continue_statement] = STATE(4727), + [sym_global_statement] = STATE(4727), + [sym_nonlocal_statement] = STATE(4727), + [sym_exec_statement] = STATE(4727), + [sym_type_alias_statement] = STATE(4727), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4727), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53129,8 +53416,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -53145,81 +53432,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(684), - [sym__indent] = ACTIONS(686), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(724), + [sym__indent] = ACTIONS(726), + [sym_string_start] = ACTIONS(107), }, [265] = { - [sym__simple_statements] = STATE(1196), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1197), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53234,8 +53522,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -53250,81 +53538,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(406), - [sym__indent] = ACTIONS(408), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(411), + [sym__indent] = ACTIONS(413), + [sym_string_start] = ACTIONS(107), }, [266] = { - [sym__simple_statements] = STATE(1362), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1600), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53339,8 +53628,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -53355,81 +53644,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(688), - [sym__indent] = ACTIONS(690), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(728), + [sym__indent] = ACTIONS(730), + [sym_string_start] = ACTIONS(107), }, [267] = { - [sym__simple_statements] = STATE(605), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(608), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53444,8 +53734,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -53460,81 +53750,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(692), - [sym__indent] = ACTIONS(694), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(732), + [sym__indent] = ACTIONS(734), + [sym_string_start] = ACTIONS(107), }, [268] = { - [sym__simple_statements] = STATE(1324), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1434), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53549,8 +53840,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -53565,81 +53856,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(696), - [sym__indent] = ACTIONS(698), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(736), + [sym__indent] = ACTIONS(738), + [sym_string_start] = ACTIONS(107), }, [269] = { - [sym__simple_statements] = STATE(1242), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1114), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53654,8 +53946,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -53670,81 +53962,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(700), - [sym__indent] = ACTIONS(702), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(740), + [sym__indent] = ACTIONS(742), + [sym_string_start] = ACTIONS(107), }, [270] = { - [sym__simple_statements] = STATE(2851), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2838), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53759,8 +54052,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -53775,81 +54068,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(370), - [sym__indent] = ACTIONS(372), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(375), + [sym__indent] = ACTIONS(377), + [sym_string_start] = ACTIONS(107), }, [271] = { - [sym__simple_statements] = STATE(973), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(997), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53864,8 +54158,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -53880,81 +54174,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(704), - [sym__indent] = ACTIONS(706), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(744), + [sym__indent] = ACTIONS(746), + [sym_string_start] = ACTIONS(107), }, [272] = { - [sym__simple_statements] = STATE(2751), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2750), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53969,8 +54264,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -53985,81 +54280,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(708), - [sym__indent] = ACTIONS(710), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(748), + [sym__indent] = ACTIONS(750), + [sym_string_start] = ACTIONS(107), }, [273] = { - [sym__simple_statements] = STATE(925), - [sym_import_statement] = STATE(4580), - [sym_future_import_statement] = STATE(4580), - [sym_import_from_statement] = STATE(4580), - [sym_print_statement] = STATE(4580), - [sym_assert_statement] = STATE(4580), - [sym_expression_statement] = STATE(4580), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4580), - [sym_delete_statement] = STATE(4580), - [sym_raise_statement] = STATE(4580), - [sym_pass_statement] = STATE(4580), - [sym_break_statement] = STATE(4580), - [sym_continue_statement] = STATE(4580), - [sym_global_statement] = STATE(4580), - [sym_nonlocal_statement] = STATE(4580), - [sym_exec_statement] = STATE(4580), - [sym_type_alias_statement] = STATE(4580), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4580), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(913), + [sym_import_statement] = STATE(4588), + [sym_future_import_statement] = STATE(4588), + [sym_import_from_statement] = STATE(4588), + [sym_print_statement] = STATE(4588), + [sym_assert_statement] = STATE(4588), + [sym_expression_statement] = STATE(4588), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4588), + [sym_delete_statement] = STATE(4588), + [sym_raise_statement] = STATE(4588), + [sym_pass_statement] = STATE(4588), + [sym_break_statement] = STATE(4588), + [sym_continue_statement] = STATE(4588), + [sym_global_statement] = STATE(4588), + [sym_nonlocal_statement] = STATE(4588), + [sym_exec_statement] = STATE(4588), + [sym_type_alias_statement] = STATE(4588), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4588), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54074,8 +54370,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -54090,81 +54386,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(712), - [sym__indent] = ACTIONS(714), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(752), + [sym__indent] = ACTIONS(754), + [sym_string_start] = ACTIONS(107), }, [274] = { - [sym__simple_statements] = STATE(1290), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1450), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54179,8 +54476,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -54195,81 +54492,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(716), - [sym__indent] = ACTIONS(718), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(756), + [sym__indent] = ACTIONS(758), + [sym_string_start] = ACTIONS(107), }, [275] = { - [sym__simple_statements] = STATE(5108), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(5020), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54284,8 +54582,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -54300,81 +54598,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(720), - [sym__indent] = ACTIONS(722), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(760), + [sym__indent] = ACTIONS(762), + [sym_string_start] = ACTIONS(107), }, [276] = { - [sym__simple_statements] = STATE(1106), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1187), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54389,8 +54688,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -54405,81 +54704,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(724), - [sym__indent] = ACTIONS(726), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(764), + [sym__indent] = ACTIONS(766), + [sym_string_start] = ACTIONS(107), }, [277] = { - [sym__simple_statements] = STATE(603), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(605), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54494,8 +54794,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -54510,81 +54810,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(728), - [sym__indent] = ACTIONS(730), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(768), + [sym__indent] = ACTIONS(770), + [sym_string_start] = ACTIONS(107), }, [278] = { - [sym__simple_statements] = STATE(604), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(606), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54599,8 +54900,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -54615,81 +54916,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(732), - [sym__indent] = ACTIONS(734), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(772), + [sym__indent] = ACTIONS(774), + [sym_string_start] = ACTIONS(107), }, [279] = { - [sym__simple_statements] = STATE(936), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1021), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54704,8 +55006,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -54720,81 +55022,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(736), - [sym__indent] = ACTIONS(738), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(776), + [sym__indent] = ACTIONS(778), + [sym_string_start] = ACTIONS(107), }, [280] = { - [sym__simple_statements] = STATE(5111), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(5044), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54809,8 +55112,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -54825,81 +55128,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(740), - [sym__indent] = ACTIONS(742), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(780), + [sym__indent] = ACTIONS(782), + [sym_string_start] = ACTIONS(107), }, [281] = { - [sym__simple_statements] = STATE(1255), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1512), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54914,8 +55218,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -54930,81 +55234,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(744), - [sym__indent] = ACTIONS(746), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(784), + [sym__indent] = ACTIONS(786), + [sym_string_start] = ACTIONS(107), }, [282] = { - [sym__simple_statements] = STATE(881), - [sym_import_statement] = STATE(4580), - [sym_future_import_statement] = STATE(4580), - [sym_import_from_statement] = STATE(4580), - [sym_print_statement] = STATE(4580), - [sym_assert_statement] = STATE(4580), - [sym_expression_statement] = STATE(4580), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4580), - [sym_delete_statement] = STATE(4580), - [sym_raise_statement] = STATE(4580), - [sym_pass_statement] = STATE(4580), - [sym_break_statement] = STATE(4580), - [sym_continue_statement] = STATE(4580), - [sym_global_statement] = STATE(4580), - [sym_nonlocal_statement] = STATE(4580), - [sym_exec_statement] = STATE(4580), - [sym_type_alias_statement] = STATE(4580), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4580), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(930), + [sym_import_statement] = STATE(4588), + [sym_future_import_statement] = STATE(4588), + [sym_import_from_statement] = STATE(4588), + [sym_print_statement] = STATE(4588), + [sym_assert_statement] = STATE(4588), + [sym_expression_statement] = STATE(4588), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4588), + [sym_delete_statement] = STATE(4588), + [sym_raise_statement] = STATE(4588), + [sym_pass_statement] = STATE(4588), + [sym_break_statement] = STATE(4588), + [sym_continue_statement] = STATE(4588), + [sym_global_statement] = STATE(4588), + [sym_nonlocal_statement] = STATE(4588), + [sym_exec_statement] = STATE(4588), + [sym_type_alias_statement] = STATE(4588), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4588), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55019,8 +55324,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -55035,81 +55340,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(748), - [sym__indent] = ACTIONS(750), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(788), + [sym__indent] = ACTIONS(790), + [sym_string_start] = ACTIONS(107), }, [283] = { - [sym__simple_statements] = STATE(1263), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1715), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55124,8 +55430,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -55140,81 +55446,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(752), - [sym__indent] = ACTIONS(754), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(792), + [sym__indent] = ACTIONS(794), + [sym_string_start] = ACTIONS(107), }, [284] = { - [sym__simple_statements] = STATE(1184), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(3753), + [sym_import_statement] = STATE(4725), + [sym_future_import_statement] = STATE(4725), + [sym_import_from_statement] = STATE(4725), + [sym_print_statement] = STATE(4725), + [sym_assert_statement] = STATE(4725), + [sym_expression_statement] = STATE(4725), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4725), + [sym_delete_statement] = STATE(4725), + [sym_raise_statement] = STATE(4725), + [sym_pass_statement] = STATE(4725), + [sym_break_statement] = STATE(4725), + [sym_continue_statement] = STATE(4725), + [sym_global_statement] = STATE(4725), + [sym_nonlocal_statement] = STATE(4725), + [sym_exec_statement] = STATE(4725), + [sym_type_alias_statement] = STATE(4725), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4725), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55229,8 +55536,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -55245,81 +55552,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(756), - [sym__indent] = ACTIONS(758), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(796), + [sym__indent] = ACTIONS(798), + [sym_string_start] = ACTIONS(107), }, [285] = { - [sym__simple_statements] = STATE(1166), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1222), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55334,8 +55642,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -55350,81 +55658,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(760), - [sym__indent] = ACTIONS(762), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(800), + [sym__indent] = ACTIONS(802), + [sym_string_start] = ACTIONS(107), }, [286] = { - [sym__simple_statements] = STATE(1167), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1227), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55439,8 +55748,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -55455,81 +55764,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(764), - [sym__indent] = ACTIONS(766), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(804), + [sym__indent] = ACTIONS(806), + [sym_string_start] = ACTIONS(107), }, [287] = { - [sym__simple_statements] = STATE(1026), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1132), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55544,8 +55854,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -55560,81 +55870,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(768), - [sym__indent] = ACTIONS(770), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(808), + [sym__indent] = ACTIONS(810), + [sym_string_start] = ACTIONS(107), }, [288] = { - [sym__simple_statements] = STATE(607), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(609), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55649,8 +55960,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -55665,81 +55976,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(772), - [sym__indent] = ACTIONS(774), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(812), + [sym__indent] = ACTIONS(814), + [sym_string_start] = ACTIONS(107), }, [289] = { - [sym__simple_statements] = STATE(608), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(610), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55754,8 +56066,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -55770,81 +56082,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(776), - [sym__indent] = ACTIONS(778), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(816), + [sym__indent] = ACTIONS(818), + [sym_string_start] = ACTIONS(107), }, [290] = { - [sym__simple_statements] = STATE(609), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(611), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55859,8 +56172,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -55875,81 +56188,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(780), - [sym__indent] = ACTIONS(782), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(820), + [sym__indent] = ACTIONS(822), + [sym_string_start] = ACTIONS(107), }, [291] = { - [sym__simple_statements] = STATE(2869), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2871), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55964,8 +56278,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -55980,81 +56294,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(438), - [sym__indent] = ACTIONS(440), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(443), + [sym__indent] = ACTIONS(445), + [sym_string_start] = ACTIONS(107), }, [292] = { - [sym__simple_statements] = STATE(1027), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1135), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56069,8 +56384,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -56085,81 +56400,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(784), - [sym__indent] = ACTIONS(786), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(824), + [sym__indent] = ACTIONS(826), + [sym_string_start] = ACTIONS(107), }, [293] = { - [sym__simple_statements] = STATE(2770), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1177), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56174,8 +56490,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -56190,81 +56506,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(788), - [sym__indent] = ACTIONS(790), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(828), + [sym__indent] = ACTIONS(830), + [sym_string_start] = ACTIONS(107), }, [294] = { - [sym__simple_statements] = STATE(444), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2783), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56279,8 +56596,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -56295,81 +56612,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(792), - [sym__indent] = ACTIONS(794), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(832), + [sym__indent] = ACTIONS(834), + [sym_string_start] = ACTIONS(107), }, [295] = { - [sym__simple_statements] = STATE(1191), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(629), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56384,8 +56702,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -56400,81 +56718,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(796), - [sym__indent] = ACTIONS(798), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(836), + [sym__indent] = ACTIONS(838), + [sym_string_start] = ACTIONS(107), }, [296] = { - [sym__simple_statements] = STATE(1035), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1067), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56489,8 +56808,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -56505,81 +56824,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(800), - [sym__indent] = ACTIONS(802), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(840), + [sym__indent] = ACTIONS(842), + [sym_string_start] = ACTIONS(107), }, [297] = { - [sym__simple_statements] = STATE(1031), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1150), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56594,8 +56914,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -56610,81 +56930,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(430), - [sym__indent] = ACTIONS(432), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(844), + [sym__indent] = ACTIONS(846), + [sym_string_start] = ACTIONS(107), }, [298] = { - [sym__simple_statements] = STATE(1052), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1141), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56699,8 +57020,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -56715,81 +57036,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(804), - [sym__indent] = ACTIONS(806), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(435), + [sym__indent] = ACTIONS(437), + [sym_string_start] = ACTIONS(107), }, [299] = { - [sym__simple_statements] = STATE(934), - [sym_import_statement] = STATE(4693), - [sym_future_import_statement] = STATE(4693), - [sym_import_from_statement] = STATE(4693), - [sym_print_statement] = STATE(4693), - [sym_assert_statement] = STATE(4693), - [sym_expression_statement] = STATE(4693), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4693), - [sym_delete_statement] = STATE(4693), - [sym_raise_statement] = STATE(4693), - [sym_pass_statement] = STATE(4693), - [sym_break_statement] = STATE(4693), - [sym_continue_statement] = STATE(4693), - [sym_global_statement] = STATE(4693), - [sym_nonlocal_statement] = STATE(4693), - [sym_exec_statement] = STATE(4693), - [sym_type_alias_statement] = STATE(4693), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4693), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1182), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56804,8 +57126,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -56820,81 +57142,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(808), - [sym__indent] = ACTIONS(810), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(848), + [sym__indent] = ACTIONS(850), + [sym_string_start] = ACTIONS(107), }, [300] = { - [sym__simple_statements] = STATE(1053), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(921), + [sym_import_statement] = STATE(4704), + [sym_future_import_statement] = STATE(4704), + [sym_import_from_statement] = STATE(4704), + [sym_print_statement] = STATE(4704), + [sym_assert_statement] = STATE(4704), + [sym_expression_statement] = STATE(4704), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4704), + [sym_delete_statement] = STATE(4704), + [sym_raise_statement] = STATE(4704), + [sym_pass_statement] = STATE(4704), + [sym_break_statement] = STATE(4704), + [sym_continue_statement] = STATE(4704), + [sym_global_statement] = STATE(4704), + [sym_nonlocal_statement] = STATE(4704), + [sym_exec_statement] = STATE(4704), + [sym_type_alias_statement] = STATE(4704), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4704), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56909,8 +57232,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -56925,81 +57248,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(812), - [sym__indent] = ACTIONS(814), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(852), + [sym__indent] = ACTIONS(854), + [sym_string_start] = ACTIONS(107), }, [301] = { - [sym__simple_statements] = STATE(1054), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1186), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57014,8 +57338,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57030,81 +57354,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(816), - [sym__indent] = ACTIONS(818), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(856), + [sym__indent] = ACTIONS(858), + [sym_string_start] = ACTIONS(107), }, [302] = { - [sym__simple_statements] = STATE(1179), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1189), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57119,8 +57444,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57135,81 +57460,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(414), - [sym__indent] = ACTIONS(416), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(860), + [sym__indent] = ACTIONS(862), + [sym_string_start] = ACTIONS(107), }, [303] = { - [sym__simple_statements] = STATE(5119), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1255), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57224,8 +57550,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57240,81 +57566,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(820), - [sym__indent] = ACTIONS(822), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(419), + [sym__indent] = ACTIONS(421), + [sym_string_start] = ACTIONS(107), }, [304] = { - [sym__simple_statements] = STATE(451), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(5018), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57329,8 +57656,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57345,81 +57672,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(824), - [sym__indent] = ACTIONS(826), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(864), + [sym__indent] = ACTIONS(866), + [sym_string_start] = ACTIONS(107), }, [305] = { - [sym__simple_statements] = STATE(452), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(451), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57434,8 +57762,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57450,186 +57778,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(828), - [sym__indent] = ACTIONS(830), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(868), + [sym__indent] = ACTIONS(870), + [sym_string_start] = ACTIONS(107), }, [306] = { - [sym_chevron] = STATE(4438), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_list_splat_pattern] = STATE(1985), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3808), - [sym_primary_expression] = STATE(1918), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_attribute] = STATE(1981), - [sym_subscript] = STATE(1981), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_print] = ACTIONS(847), - [anon_sym_GT_GT] = ACTIONS(849), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(836), - [anon_sym_COLON] = ACTIONS(853), - [anon_sym_match] = ACTIONS(847), - [anon_sym_async] = ACTIONS(847), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(836), - [anon_sym_exec] = ACTIONS(847), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(855), - [anon_sym_AT] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_not] = ACTIONS(861), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_SLASH_SLASH] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(836), - [anon_sym_LT_LT] = ACTIONS(836), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(864), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [anon_sym_lambda] = ACTIONS(73), - [anon_sym_PLUS_EQ] = ACTIONS(867), - [anon_sym_DASH_EQ] = ACTIONS(867), - [anon_sym_STAR_EQ] = ACTIONS(867), - [anon_sym_SLASH_EQ] = ACTIONS(867), - [anon_sym_AT_EQ] = ACTIONS(867), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(867), - [anon_sym_PERCENT_EQ] = ACTIONS(867), - [anon_sym_STAR_STAR_EQ] = ACTIONS(867), - [anon_sym_GT_GT_EQ] = ACTIONS(867), - [anon_sym_LT_LT_EQ] = ACTIONS(867), - [anon_sym_AMP_EQ] = ACTIONS(867), - [anon_sym_CARET_EQ] = ACTIONS(867), - [anon_sym_PIPE_EQ] = ACTIONS(867), - [sym_ellipsis] = ACTIONS(77), - [anon_sym_None] = ACTIONS(79), - [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(869), - [anon_sym_api] = ACTIONS(847), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(834), - [sym_string_start] = ACTIONS(105), - }, - [307] = { - [sym__simple_statements] = STATE(5138), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(452), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57644,8 +57868,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57660,81 +57884,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(871), - [sym__indent] = ACTIONS(873), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(872), + [sym__indent] = ACTIONS(874), + [sym_string_start] = ACTIONS(107), }, - [308] = { - [sym__simple_statements] = STATE(1020), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [307] = { + [sym__simple_statements] = STATE(5026), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57749,8 +57974,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57765,81 +57990,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(875), - [sym__indent] = ACTIONS(877), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(876), + [sym__indent] = ACTIONS(878), + [sym_string_start] = ACTIONS(107), + }, + [308] = { + [sym__simple_statements] = STATE(1098), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_cimport] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(880), + [sym__indent] = ACTIONS(882), + [sym_string_start] = ACTIONS(107), }, [309] = { - [sym__simple_statements] = STATE(2781), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2737), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57854,8 +58186,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57870,81 +58202,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(879), - [sym__indent] = ACTIONS(881), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(884), + [sym__indent] = ACTIONS(886), + [sym_string_start] = ACTIONS(107), }, [310] = { - [sym__simple_statements] = STATE(2876), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2916), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57959,8 +58292,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57975,81 +58308,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(422), - [sym__indent] = ACTIONS(424), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(427), + [sym__indent] = ACTIONS(429), + [sym_string_start] = ACTIONS(107), }, [311] = { - [sym__simple_statements] = STATE(1032), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1116), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58064,8 +58398,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58080,81 +58414,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(883), - [sym__indent] = ACTIONS(885), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(888), + [sym__indent] = ACTIONS(890), + [sym_string_start] = ACTIONS(107), }, [312] = { [sym__simple_statements] = STATE(467), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58169,8 +58504,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58185,81 +58520,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(887), - [sym__indent] = ACTIONS(889), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(892), + [sym__indent] = ACTIONS(894), + [sym_string_start] = ACTIONS(107), }, [313] = { [sym__simple_statements] = STATE(468), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58274,8 +58610,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58290,81 +58626,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(891), - [sym__indent] = ACTIONS(893), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(896), + [sym__indent] = ACTIONS(898), + [sym_string_start] = ACTIONS(107), }, [314] = { [sym__simple_statements] = STATE(469), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58379,8 +58716,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58395,81 +58732,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(895), - [sym__indent] = ACTIONS(897), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(900), + [sym__indent] = ACTIONS(902), + [sym_string_start] = ACTIONS(107), }, [315] = { - [sym__simple_statements] = STATE(1036), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1065), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58484,8 +58822,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58500,81 +58838,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(899), - [sym__indent] = ACTIONS(901), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(904), + [sym__indent] = ACTIONS(906), + [sym_string_start] = ACTIONS(107), }, [316] = { - [sym__simple_statements] = STATE(1079), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1156), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58589,8 +58928,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58605,81 +58944,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(903), - [sym__indent] = ACTIONS(905), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(908), + [sym__indent] = ACTIONS(910), + [sym_string_start] = ACTIONS(107), }, [317] = { - [sym__simple_statements] = STATE(970), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1015), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58694,8 +59034,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58710,81 +59050,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(907), - [sym__indent] = ACTIONS(909), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(912), + [sym__indent] = ACTIONS(914), + [sym_string_start] = ACTIONS(107), }, [318] = { - [sym__simple_statements] = STATE(1008), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1214), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58799,8 +59140,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58815,81 +59156,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(426), - [sym__indent] = ACTIONS(428), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(431), + [sym__indent] = ACTIONS(433), + [sym_string_start] = ACTIONS(107), }, [319] = { - [sym__simple_statements] = STATE(939), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2849), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58904,8 +59246,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58920,81 +59262,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(911), - [sym__indent] = ACTIONS(913), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(439), + [sym__indent] = ACTIONS(441), + [sym_string_start] = ACTIONS(107), }, [320] = { - [sym__simple_statements] = STATE(2886), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1673), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59009,8 +59352,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59025,81 +59368,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(434), - [sym__indent] = ACTIONS(436), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(916), + [sym__indent] = ACTIONS(918), + [sym_string_start] = ACTIONS(107), }, [321] = { - [sym__simple_statements] = STATE(1339), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1040), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59114,8 +59458,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59130,81 +59474,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(915), - [sym__indent] = ACTIONS(917), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(920), + [sym__indent] = ACTIONS(922), + [sym_string_start] = ACTIONS(107), }, [322] = { - [sym__simple_statements] = STATE(1355), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1323), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59219,8 +59564,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59235,81 +59580,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(919), - [sym__indent] = ACTIONS(921), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(924), + [sym__indent] = ACTIONS(926), + [sym_string_start] = ACTIONS(107), }, [323] = { - [sym__simple_statements] = STATE(887), - [sym_import_statement] = STATE(4580), - [sym_future_import_statement] = STATE(4580), - [sym_import_from_statement] = STATE(4580), - [sym_print_statement] = STATE(4580), - [sym_assert_statement] = STATE(4580), - [sym_expression_statement] = STATE(4580), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4580), - [sym_delete_statement] = STATE(4580), - [sym_raise_statement] = STATE(4580), - [sym_pass_statement] = STATE(4580), - [sym_break_statement] = STATE(4580), - [sym_continue_statement] = STATE(4580), - [sym_global_statement] = STATE(4580), - [sym_nonlocal_statement] = STATE(4580), - [sym_exec_statement] = STATE(4580), - [sym_type_alias_statement] = STATE(4580), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4580), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(973), + [sym_import_statement] = STATE(4588), + [sym_future_import_statement] = STATE(4588), + [sym_import_from_statement] = STATE(4588), + [sym_print_statement] = STATE(4588), + [sym_assert_statement] = STATE(4588), + [sym_expression_statement] = STATE(4588), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4588), + [sym_delete_statement] = STATE(4588), + [sym_raise_statement] = STATE(4588), + [sym_pass_statement] = STATE(4588), + [sym_break_statement] = STATE(4588), + [sym_continue_statement] = STATE(4588), + [sym_global_statement] = STATE(4588), + [sym_nonlocal_statement] = STATE(4588), + [sym_exec_statement] = STATE(4588), + [sym_type_alias_statement] = STATE(4588), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4588), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59324,8 +59670,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59340,81 +59686,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(923), - [sym__indent] = ACTIONS(925), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(928), + [sym__indent] = ACTIONS(930), + [sym_string_start] = ACTIONS(107), }, [324] = { - [sym__simple_statements] = STATE(1075), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1106), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59429,8 +59776,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59445,81 +59792,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(927), - [sym__indent] = ACTIONS(929), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(932), + [sym__indent] = ACTIONS(934), + [sym_string_start] = ACTIONS(107), }, [325] = { [sym__simple_statements] = STATE(485), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59534,8 +59882,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59550,81 +59898,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(931), - [sym__indent] = ACTIONS(933), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(936), + [sym__indent] = ACTIONS(938), + [sym_string_start] = ACTIONS(107), }, [326] = { [sym__simple_statements] = STATE(486), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59639,8 +59988,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59655,81 +60004,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(935), - [sym__indent] = ACTIONS(937), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(940), + [sym__indent] = ACTIONS(942), + [sym_string_start] = ACTIONS(107), }, [327] = { - [sym__simple_statements] = STATE(2887), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2846), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59744,8 +60094,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59760,81 +60110,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(939), - [sym__indent] = ACTIONS(941), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(944), + [sym__indent] = ACTIONS(946), + [sym_string_start] = ACTIONS(107), }, [328] = { - [sym__simple_statements] = STATE(1077), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1125), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59849,8 +60200,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59865,81 +60216,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(943), - [sym__indent] = ACTIONS(945), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(948), + [sym__indent] = ACTIONS(950), + [sym_string_start] = ACTIONS(107), }, [329] = { - [sym__simple_statements] = STATE(918), - [sym_import_statement] = STATE(4664), - [sym_future_import_statement] = STATE(4664), - [sym_import_from_statement] = STATE(4664), - [sym_print_statement] = STATE(4664), - [sym_assert_statement] = STATE(4664), - [sym_expression_statement] = STATE(4664), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4664), - [sym_delete_statement] = STATE(4664), - [sym_raise_statement] = STATE(4664), - [sym_pass_statement] = STATE(4664), - [sym_break_statement] = STATE(4664), - [sym_continue_statement] = STATE(4664), - [sym_global_statement] = STATE(4664), - [sym_nonlocal_statement] = STATE(4664), - [sym_exec_statement] = STATE(4664), - [sym_type_alias_statement] = STATE(4664), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4664), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(974), + [sym_import_statement] = STATE(4673), + [sym_future_import_statement] = STATE(4673), + [sym_import_from_statement] = STATE(4673), + [sym_print_statement] = STATE(4673), + [sym_assert_statement] = STATE(4673), + [sym_expression_statement] = STATE(4673), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4673), + [sym_delete_statement] = STATE(4673), + [sym_raise_statement] = STATE(4673), + [sym_pass_statement] = STATE(4673), + [sym_break_statement] = STATE(4673), + [sym_continue_statement] = STATE(4673), + [sym_global_statement] = STATE(4673), + [sym_nonlocal_statement] = STATE(4673), + [sym_exec_statement] = STATE(4673), + [sym_type_alias_statement] = STATE(4673), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4673), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59954,8 +60306,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59970,81 +60322,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(947), - [sym__indent] = ACTIONS(949), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(952), + [sym__indent] = ACTIONS(954), + [sym_string_start] = ACTIONS(107), }, [330] = { - [sym__simple_statements] = STATE(5095), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(5134), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60059,8 +60412,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60075,81 +60428,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(951), - [sym__indent] = ACTIONS(953), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(956), + [sym__indent] = ACTIONS(958), + [sym_string_start] = ACTIONS(107), }, [331] = { - [sym__simple_statements] = STATE(2890), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2905), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60164,8 +60518,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60180,81 +60534,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(955), - [sym__indent] = ACTIONS(957), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(960), + [sym__indent] = ACTIONS(962), + [sym_string_start] = ACTIONS(107), }, [332] = { - [sym__simple_statements] = STATE(1078), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1147), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60269,8 +60624,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60285,81 +60640,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(959), - [sym__indent] = ACTIONS(961), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(964), + [sym__indent] = ACTIONS(966), + [sym_string_start] = ACTIONS(107), }, [333] = { - [sym__simple_statements] = STATE(2896), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2831), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60374,8 +60730,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60390,81 +60746,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(963), - [sym__indent] = ACTIONS(965), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(968), + [sym__indent] = ACTIONS(970), + [sym_string_start] = ACTIONS(107), }, [334] = { [sym__simple_statements] = STATE(502), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60479,8 +60836,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60495,81 +60852,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(967), - [sym__indent] = ACTIONS(969), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(972), + [sym__indent] = ACTIONS(974), + [sym_string_start] = ACTIONS(107), }, [335] = { - [sym__simple_statements] = STATE(2901), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2910), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60584,8 +60942,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60600,81 +60958,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(971), - [sym__indent] = ACTIONS(973), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(976), + [sym__indent] = ACTIONS(978), + [sym_string_start] = ACTIONS(107), }, [336] = { - [sym__simple_statements] = STATE(2902), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2912), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60689,8 +61048,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60705,81 +61064,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(975), - [sym__indent] = ACTIONS(977), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(980), + [sym__indent] = ACTIONS(982), + [sym_string_start] = ACTIONS(107), }, [337] = { - [sym__simple_statements] = STATE(2903), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2913), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60794,8 +61154,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60810,81 +61170,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(979), - [sym__indent] = ACTIONS(981), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(984), + [sym__indent] = ACTIONS(986), + [sym_string_start] = ACTIONS(107), }, [338] = { - [sym__simple_statements] = STATE(1100), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1231), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60899,8 +61260,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60915,81 +61276,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(983), - [sym__indent] = ACTIONS(985), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(988), + [sym__indent] = ACTIONS(990), + [sym_string_start] = ACTIONS(107), }, [339] = { [sym__simple_statements] = STATE(512), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61004,8 +61366,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61020,81 +61382,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(394), - [sym__indent] = ACTIONS(396), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(399), + [sym__indent] = ACTIONS(401), + [sym_string_start] = ACTIONS(107), }, [340] = { - [sym__simple_statements] = STATE(1260), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(443), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61109,8 +61472,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61125,81 +61488,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(987), - [sym__indent] = ACTIONS(989), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(992), + [sym__indent] = ACTIONS(994), + [sym_string_start] = ACTIONS(107), }, [341] = { - [sym__simple_statements] = STATE(443), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2852), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61214,8 +61578,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61230,81 +61594,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(991), - [sym__indent] = ACTIONS(993), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(996), + [sym__indent] = ACTIONS(998), + [sym_string_start] = ACTIONS(107), }, [342] = { - [sym__simple_statements] = STATE(2904), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1335), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61319,8 +61684,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61335,81 +61700,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(995), - [sym__indent] = ACTIONS(997), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1000), + [sym__indent] = ACTIONS(1002), + [sym_string_start] = ACTIONS(107), }, [343] = { - [sym__simple_statements] = STATE(1091), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1089), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61424,8 +61790,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61440,81 +61806,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(999), - [sym__indent] = ACTIONS(1001), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1004), + [sym__indent] = ACTIONS(1006), + [sym_string_start] = ACTIONS(107), }, [344] = { - [sym__simple_statements] = STATE(2855), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2885), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61529,8 +61896,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61545,81 +61912,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1003), - [sym__indent] = ACTIONS(1005), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1008), + [sym__indent] = ACTIONS(1010), + [sym_string_start] = ACTIONS(107), }, [345] = { - [sym__simple_statements] = STATE(2806), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2894), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61634,8 +62002,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61650,186 +62018,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1007), - [sym__indent] = ACTIONS(1009), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1012), + [sym__indent] = ACTIONS(1014), + [sym_string_start] = ACTIONS(107), }, [346] = { - [sym_chevron] = STATE(4438), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_list_splat_pattern] = STATE(1985), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3808), - [sym_primary_expression] = STATE(1918), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_attribute] = STATE(1981), - [sym_subscript] = STATE(1981), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(838), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_print] = ACTIONS(847), - [anon_sym_GT_GT] = ACTIONS(849), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(836), - [anon_sym_COLON] = ACTIONS(1011), - [anon_sym_match] = ACTIONS(847), - [anon_sym_async] = ACTIONS(847), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(836), - [anon_sym_exec] = ACTIONS(847), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(855), - [anon_sym_AT] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(858), - [anon_sym_PIPE] = ACTIONS(836), + [sym_chevron] = STATE(4409), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_list_splat_pattern] = STATE(1975), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3777), + [sym_primary_expression] = STATE(1927), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_attribute] = STATE(2021), + [sym_subscript] = STATE(2021), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_print] = ACTIONS(576), + [anon_sym_GT_GT] = ACTIONS(578), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_match] = ACTIONS(576), + [anon_sym_async] = ACTIONS(576), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(565), + [anon_sym_exec] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(584), + [anon_sym_AT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(565), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(858), - [anon_sym_not] = ACTIONS(861), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_SLASH_SLASH] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_CARET] = ACTIONS(836), - [anon_sym_LT_LT] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(587), + [anon_sym_not] = ACTIONS(590), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(565), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(864), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), [anon_sym_lambda] = ACTIONS(73), - [anon_sym_PLUS_EQ] = ACTIONS(867), - [anon_sym_DASH_EQ] = ACTIONS(867), - [anon_sym_STAR_EQ] = ACTIONS(867), - [anon_sym_SLASH_EQ] = ACTIONS(867), - [anon_sym_AT_EQ] = ACTIONS(867), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(867), - [anon_sym_PERCENT_EQ] = ACTIONS(867), - [anon_sym_STAR_STAR_EQ] = ACTIONS(867), - [anon_sym_GT_GT_EQ] = ACTIONS(867), - [anon_sym_LT_LT_EQ] = ACTIONS(867), - [anon_sym_AMP_EQ] = ACTIONS(867), - [anon_sym_CARET_EQ] = ACTIONS(867), - [anon_sym_PIPE_EQ] = ACTIONS(867), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_PLUS_EQ] = ACTIONS(596), + [anon_sym_DASH_EQ] = ACTIONS(596), + [anon_sym_STAR_EQ] = ACTIONS(596), + [anon_sym_SLASH_EQ] = ACTIONS(596), + [anon_sym_AT_EQ] = ACTIONS(596), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(596), + [anon_sym_PERCENT_EQ] = ACTIONS(596), + [anon_sym_STAR_STAR_EQ] = ACTIONS(596), + [anon_sym_GT_GT_EQ] = ACTIONS(596), + [anon_sym_LT_LT_EQ] = ACTIONS(596), + [anon_sym_AMP_EQ] = ACTIONS(596), + [anon_sym_CARET_EQ] = ACTIONS(596), + [anon_sym_PIPE_EQ] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(869), - [anon_sym_api] = ACTIONS(847), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(598), + [anon_sym_api] = ACTIONS(576), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(834), - [sym_string_start] = ACTIONS(105), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(563), + [sym_string_start] = ACTIONS(107), }, [347] = { [sym__simple_statements] = STATE(531), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61844,8 +62214,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61860,81 +62230,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1014), - [sym__indent] = ACTIONS(1016), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1019), + [sym__indent] = ACTIONS(1021), + [sym_string_start] = ACTIONS(107), }, [348] = { - [sym__simple_statements] = STATE(527), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(528), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61949,8 +62320,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61965,81 +62336,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(418), - [sym__indent] = ACTIONS(420), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(423), + [sym__indent] = ACTIONS(425), + [sym_string_start] = ACTIONS(107), }, [349] = { - [sym__simple_statements] = STATE(2853), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2873), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62054,8 +62426,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62070,81 +62442,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1018), - [sym__indent] = ACTIONS(1020), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1023), + [sym__indent] = ACTIONS(1025), + [sym_string_start] = ACTIONS(107), }, [350] = { - [sym__simple_statements] = STATE(2856), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2890), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62159,8 +62532,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62175,81 +62548,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1022), - [sym__indent] = ACTIONS(1024), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1027), + [sym__indent] = ACTIONS(1029), + [sym_string_start] = ACTIONS(107), }, [351] = { - [sym__simple_statements] = STATE(2857), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2895), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62264,8 +62638,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62280,81 +62654,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1026), - [sym__indent] = ACTIONS(1028), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1031), + [sym__indent] = ACTIONS(1033), + [sym_string_start] = ACTIONS(107), }, [352] = { - [sym__simple_statements] = STATE(2861), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2900), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62369,8 +62744,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62385,81 +62760,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1030), - [sym__indent] = ACTIONS(1032), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1035), + [sym__indent] = ACTIONS(1037), + [sym_string_start] = ACTIONS(107), }, [353] = { - [sym__simple_statements] = STATE(1118), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1136), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62474,8 +62850,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62490,81 +62866,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(374), - [sym__indent] = ACTIONS(376), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(379), + [sym__indent] = ACTIONS(381), + [sym_string_start] = ACTIONS(107), }, [354] = { - [sym__simple_statements] = STATE(538), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(539), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62579,8 +62956,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62595,81 +62972,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(390), - [sym__indent] = ACTIONS(392), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(395), + [sym__indent] = ACTIONS(397), + [sym_string_start] = ACTIONS(107), }, [355] = { - [sym__simple_statements] = STATE(545), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(547), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62684,8 +63062,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62700,81 +63078,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1034), - [sym__indent] = ACTIONS(1036), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1039), + [sym__indent] = ACTIONS(1041), + [sym_string_start] = ACTIONS(107), }, [356] = { - [sym__simple_statements] = STATE(2819), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2811), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62789,8 +63168,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62805,81 +63184,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1038), - [sym__indent] = ACTIONS(1040), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1043), + [sym__indent] = ACTIONS(1045), + [sym_string_start] = ACTIONS(107), }, [357] = { - [sym__simple_statements] = STATE(2820), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2812), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62894,8 +63274,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62910,81 +63290,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1042), - [sym__indent] = ACTIONS(1044), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1047), + [sym__indent] = ACTIONS(1049), + [sym_string_start] = ACTIONS(107), }, [358] = { - [sym__simple_statements] = STATE(2824), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2815), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62999,8 +63380,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63015,81 +63396,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1046), - [sym__indent] = ACTIONS(1048), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1051), + [sym__indent] = ACTIONS(1053), + [sym_string_start] = ACTIONS(107), }, [359] = { - [sym__simple_statements] = STATE(2825), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2816), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63104,8 +63486,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63120,81 +63502,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1050), - [sym__indent] = ACTIONS(1052), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1055), + [sym__indent] = ACTIONS(1057), + [sym_string_start] = ACTIONS(107), }, [360] = { - [sym__simple_statements] = STATE(2828), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2817), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63209,8 +63592,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63225,81 +63608,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1054), - [sym__indent] = ACTIONS(1056), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1059), + [sym__indent] = ACTIONS(1061), + [sym_string_start] = ACTIONS(107), }, [361] = { - [sym__simple_statements] = STATE(550), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(552), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63314,8 +63698,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63330,81 +63714,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(410), - [sym__indent] = ACTIONS(412), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(415), + [sym__indent] = ACTIONS(417), + [sym_string_start] = ACTIONS(107), }, [362] = { - [sym__simple_statements] = STATE(555), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(557), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63419,8 +63804,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63435,81 +63820,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1058), - [sym__indent] = ACTIONS(1060), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1063), + [sym__indent] = ACTIONS(1065), + [sym_string_start] = ACTIONS(107), }, [363] = { - [sym__simple_statements] = STATE(2864), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2857), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63524,8 +63910,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63540,81 +63926,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1062), - [sym__indent] = ACTIONS(1064), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1067), + [sym__indent] = ACTIONS(1069), + [sym_string_start] = ACTIONS(107), }, [364] = { - [sym__simple_statements] = STATE(2881), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2865), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63629,8 +64016,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63645,81 +64032,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1066), - [sym__indent] = ACTIONS(1068), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1071), + [sym__indent] = ACTIONS(1073), + [sym_string_start] = ACTIONS(107), }, [365] = { - [sym__simple_statements] = STATE(2882), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2866), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63734,8 +64122,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63750,81 +64138,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1070), - [sym__indent] = ACTIONS(1072), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1075), + [sym__indent] = ACTIONS(1077), + [sym_string_start] = ACTIONS(107), }, [366] = { - [sym__simple_statements] = STATE(570), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(572), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63839,8 +64228,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63855,81 +64244,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1074), - [sym__indent] = ACTIONS(1076), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1079), + [sym__indent] = ACTIONS(1081), + [sym_string_start] = ACTIONS(107), }, [367] = { - [sym__simple_statements] = STATE(563), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(565), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63944,8 +64334,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63960,81 +64350,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(382), - [sym__indent] = ACTIONS(384), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(387), + [sym__indent] = ACTIONS(389), + [sym_string_start] = ACTIONS(107), }, [368] = { - [sym__simple_statements] = STATE(2827), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2879), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64049,8 +64440,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64065,81 +64456,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1078), - [sym__indent] = ACTIONS(1080), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1083), + [sym__indent] = ACTIONS(1085), + [sym_string_start] = ACTIONS(107), }, [369] = { - [sym__simple_statements] = STATE(2844), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2883), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64154,8 +64546,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64170,81 +64562,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1082), - [sym__indent] = ACTIONS(1084), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1087), + [sym__indent] = ACTIONS(1089), + [sym_string_start] = ACTIONS(107), }, [370] = { - [sym__simple_statements] = STATE(2863), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2886), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64259,8 +64652,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64275,81 +64668,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1086), - [sym__indent] = ACTIONS(1088), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1091), + [sym__indent] = ACTIONS(1093), + [sym_string_start] = ACTIONS(107), }, [371] = { - [sym__simple_statements] = STATE(572), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(574), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64364,8 +64758,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64380,81 +64774,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(398), - [sym__indent] = ACTIONS(400), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(403), + [sym__indent] = ACTIONS(405), + [sym_string_start] = ACTIONS(107), }, [372] = { - [sym__simple_statements] = STATE(2811), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2862), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64469,8 +64864,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64485,81 +64880,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1090), - [sym__indent] = ACTIONS(1092), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1095), + [sym__indent] = ACTIONS(1097), + [sym_string_start] = ACTIONS(107), }, [373] = { - [sym__simple_statements] = STATE(2812), - [sym_import_statement] = STATE(4634), - [sym_future_import_statement] = STATE(4634), - [sym_import_from_statement] = STATE(4634), - [sym_print_statement] = STATE(4634), - [sym_assert_statement] = STATE(4634), - [sym_expression_statement] = STATE(4634), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4634), - [sym_delete_statement] = STATE(4634), - [sym_raise_statement] = STATE(4634), - [sym_pass_statement] = STATE(4634), - [sym_break_statement] = STATE(4634), - [sym_continue_statement] = STATE(4634), - [sym_global_statement] = STATE(4634), - [sym_nonlocal_statement] = STATE(4634), - [sym_exec_statement] = STATE(4634), - [sym_type_alias_statement] = STATE(4634), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4634), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(2851), + [sym_import_statement] = STATE(4644), + [sym_future_import_statement] = STATE(4644), + [sym_import_from_statement] = STATE(4644), + [sym_print_statement] = STATE(4644), + [sym_assert_statement] = STATE(4644), + [sym_expression_statement] = STATE(4644), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4644), + [sym_delete_statement] = STATE(4644), + [sym_raise_statement] = STATE(4644), + [sym_pass_statement] = STATE(4644), + [sym_break_statement] = STATE(4644), + [sym_continue_statement] = STATE(4644), + [sym_global_statement] = STATE(4644), + [sym_nonlocal_statement] = STATE(4644), + [sym_exec_statement] = STATE(4644), + [sym_type_alias_statement] = STATE(4644), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4644), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64574,8 +64970,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64590,81 +64986,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1094), - [sym__indent] = ACTIONS(1096), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1099), + [sym__indent] = ACTIONS(1101), + [sym_string_start] = ACTIONS(107), }, [374] = { - [sym__simple_statements] = STATE(582), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(584), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64679,8 +65076,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64695,81 +65092,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1098), - [sym__indent] = ACTIONS(1100), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1103), + [sym__indent] = ACTIONS(1105), + [sym_string_start] = ACTIONS(107), }, [375] = { - [sym__simple_statements] = STATE(589), - [sym_import_statement] = STATE(4570), - [sym_future_import_statement] = STATE(4570), - [sym_import_from_statement] = STATE(4570), - [sym_print_statement] = STATE(4570), - [sym_assert_statement] = STATE(4570), - [sym_expression_statement] = STATE(4570), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4570), - [sym_delete_statement] = STATE(4570), - [sym_raise_statement] = STATE(4570), - [sym_pass_statement] = STATE(4570), - [sym_break_statement] = STATE(4570), - [sym_continue_statement] = STATE(4570), - [sym_global_statement] = STATE(4570), - [sym_nonlocal_statement] = STATE(4570), - [sym_exec_statement] = STATE(4570), - [sym_type_alias_statement] = STATE(4570), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4570), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(591), + [sym_import_statement] = STATE(4783), + [sym_future_import_statement] = STATE(4783), + [sym_import_from_statement] = STATE(4783), + [sym_print_statement] = STATE(4783), + [sym_assert_statement] = STATE(4783), + [sym_expression_statement] = STATE(4783), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4783), + [sym_delete_statement] = STATE(4783), + [sym_raise_statement] = STATE(4783), + [sym_pass_statement] = STATE(4783), + [sym_break_statement] = STATE(4783), + [sym_continue_statement] = STATE(4783), + [sym_global_statement] = STATE(4783), + [sym_nonlocal_statement] = STATE(4783), + [sym_exec_statement] = STATE(4783), + [sym_type_alias_statement] = STATE(4783), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4783), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64784,8 +65182,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64800,81 +65198,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1102), - [sym__indent] = ACTIONS(1104), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1107), + [sym__indent] = ACTIONS(1109), + [sym_string_start] = ACTIONS(107), }, [376] = { - [sym__simple_statements] = STATE(1199), - [sym_import_statement] = STATE(4618), - [sym_future_import_statement] = STATE(4618), - [sym_import_from_statement] = STATE(4618), - [sym_print_statement] = STATE(4618), - [sym_assert_statement] = STATE(4618), - [sym_expression_statement] = STATE(4618), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(4618), - [sym_delete_statement] = STATE(4618), - [sym_raise_statement] = STATE(4618), - [sym_pass_statement] = STATE(4618), - [sym_break_statement] = STATE(4618), - [sym_continue_statement] = STATE(4618), - [sym_global_statement] = STATE(4618), - [sym_nonlocal_statement] = STATE(4618), - [sym_exec_statement] = STATE(4618), - [sym_type_alias_statement] = STATE(4618), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(4618), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym__simple_statements] = STATE(1241), + [sym_import_statement] = STATE(4598), + [sym_future_import_statement] = STATE(4598), + [sym_import_from_statement] = STATE(4598), + [sym_print_statement] = STATE(4598), + [sym_assert_statement] = STATE(4598), + [sym_expression_statement] = STATE(4598), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(4598), + [sym_delete_statement] = STATE(4598), + [sym_raise_statement] = STATE(4598), + [sym_pass_statement] = STATE(4598), + [sym_break_statement] = STATE(4598), + [sym_continue_statement] = STATE(4598), + [sym_global_statement] = STATE(4598), + [sym_nonlocal_statement] = STATE(4598), + [sym_exec_statement] = STATE(4598), + [sym_type_alias_statement] = STATE(4598), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(4598), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64889,8 +65288,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64905,288 +65304,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1106), - [sym__indent] = ACTIONS(1108), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1111), + [sym__indent] = ACTIONS(1113), + [sym_string_start] = ACTIONS(107), }, [377] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(3982), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1110), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_GT_GT] = ACTIONS(836), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(836), - [anon_sym_COLON] = ACTIONS(853), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(836), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_AT] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(1120), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1120), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_SLASH_SLASH] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(1120), - [anon_sym_CARET] = ACTIONS(836), - [anon_sym_LT_LT] = ACTIONS(836), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [anon_sym_lambda] = ACTIONS(1130), - [anon_sym_PLUS_EQ] = ACTIONS(867), - [anon_sym_DASH_EQ] = ACTIONS(867), - [anon_sym_STAR_EQ] = ACTIONS(867), - [anon_sym_SLASH_EQ] = ACTIONS(867), - [anon_sym_AT_EQ] = ACTIONS(867), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(867), - [anon_sym_PERCENT_EQ] = ACTIONS(867), - [anon_sym_STAR_STAR_EQ] = ACTIONS(867), - [anon_sym_GT_GT_EQ] = ACTIONS(867), - [anon_sym_LT_LT_EQ] = ACTIONS(867), - [anon_sym_AMP_EQ] = ACTIONS(867), - [anon_sym_CARET_EQ] = ACTIONS(867), - [anon_sym_PIPE_EQ] = ACTIONS(867), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(3995), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1115), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_GT_GT] = ACTIONS(565), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(565), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_AT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(1125), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1125), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(565), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(1133), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_PLUS_EQ] = ACTIONS(596), + [anon_sym_DASH_EQ] = ACTIONS(596), + [anon_sym_STAR_EQ] = ACTIONS(596), + [anon_sym_SLASH_EQ] = ACTIONS(596), + [anon_sym_AT_EQ] = ACTIONS(596), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(596), + [anon_sym_PERCENT_EQ] = ACTIONS(596), + [anon_sym_STAR_STAR_EQ] = ACTIONS(596), + [anon_sym_GT_GT_EQ] = ACTIONS(596), + [anon_sym_LT_LT_EQ] = ACTIONS(596), + [anon_sym_AMP_EQ] = ACTIONS(596), + [anon_sym_CARET_EQ] = ACTIONS(596), + [anon_sym_PIPE_EQ] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym__newline] = ACTIONS(834), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym__newline] = ACTIONS(563), + [sym_string_start] = ACTIONS(1151), }, [378] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(3949), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1110), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_GT_GT] = ACTIONS(836), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(836), - [anon_sym_COLON] = ACTIONS(853), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(836), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_AT] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(1120), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1120), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_SLASH_SLASH] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(1120), - [anon_sym_CARET] = ACTIONS(836), - [anon_sym_LT_LT] = ACTIONS(836), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [anon_sym_lambda] = ACTIONS(1130), - [anon_sym_PLUS_EQ] = ACTIONS(867), - [anon_sym_DASH_EQ] = ACTIONS(867), - [anon_sym_STAR_EQ] = ACTIONS(867), - [anon_sym_SLASH_EQ] = ACTIONS(867), - [anon_sym_AT_EQ] = ACTIONS(867), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(867), - [anon_sym_PERCENT_EQ] = ACTIONS(867), - [anon_sym_STAR_STAR_EQ] = ACTIONS(867), - [anon_sym_GT_GT_EQ] = ACTIONS(867), - [anon_sym_LT_LT_EQ] = ACTIONS(867), - [anon_sym_AMP_EQ] = ACTIONS(867), - [anon_sym_CARET_EQ] = ACTIONS(867), - [anon_sym_PIPE_EQ] = ACTIONS(867), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(3973), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1115), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_GT_GT] = ACTIONS(565), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(565), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_AT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(1125), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1125), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(565), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(1133), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_PLUS_EQ] = ACTIONS(596), + [anon_sym_DASH_EQ] = ACTIONS(596), + [anon_sym_STAR_EQ] = ACTIONS(596), + [anon_sym_SLASH_EQ] = ACTIONS(596), + [anon_sym_AT_EQ] = ACTIONS(596), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(596), + [anon_sym_PERCENT_EQ] = ACTIONS(596), + [anon_sym_STAR_STAR_EQ] = ACTIONS(596), + [anon_sym_GT_GT_EQ] = ACTIONS(596), + [anon_sym_LT_LT_EQ] = ACTIONS(596), + [anon_sym_AMP_EQ] = ACTIONS(596), + [anon_sym_CARET_EQ] = ACTIONS(596), + [anon_sym_PIPE_EQ] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym__newline] = ACTIONS(834), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym__newline] = ACTIONS(563), + [sym_string_start] = ACTIONS(1151), }, [379] = { - [sym_import_statement] = STATE(5059), - [sym_future_import_statement] = STATE(5059), - [sym_import_from_statement] = STATE(5059), - [sym_print_statement] = STATE(5059), - [sym_assert_statement] = STATE(5059), - [sym_expression_statement] = STATE(5059), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(5059), - [sym_delete_statement] = STATE(5059), - [sym_raise_statement] = STATE(5059), - [sym_pass_statement] = STATE(5059), - [sym_break_statement] = STATE(5059), - [sym_continue_statement] = STATE(5059), - [sym_global_statement] = STATE(5059), - [sym_nonlocal_statement] = STATE(5059), - [sym_exec_statement] = STATE(5059), - [sym_type_alias_statement] = STATE(5059), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(5059), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(5124), + [sym_future_import_statement] = STATE(5124), + [sym_import_from_statement] = STATE(5124), + [sym_print_statement] = STATE(5124), + [sym_assert_statement] = STATE(5124), + [sym_expression_statement] = STATE(5124), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(5124), + [sym_delete_statement] = STATE(5124), + [sym_raise_statement] = STATE(5124), + [sym_pass_statement] = STATE(5124), + [sym_break_statement] = STATE(5124), + [sym_continue_statement] = STATE(5124), + [sym_global_statement] = STATE(5124), + [sym_nonlocal_statement] = STATE(5124), + [sym_exec_statement] = STATE(5124), + [sym_type_alias_statement] = STATE(5124), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(5124), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65201,8 +65603,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65217,79 +65619,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1146), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1153), + [sym_string_start] = ACTIONS(107), }, [380] = { - [sym_import_statement] = STATE(5059), - [sym_future_import_statement] = STATE(5059), - [sym_import_from_statement] = STATE(5059), - [sym_print_statement] = STATE(5059), - [sym_assert_statement] = STATE(5059), - [sym_expression_statement] = STATE(5059), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(5059), - [sym_delete_statement] = STATE(5059), - [sym_raise_statement] = STATE(5059), - [sym_pass_statement] = STATE(5059), - [sym_break_statement] = STATE(5059), - [sym_continue_statement] = STATE(5059), - [sym_global_statement] = STATE(5059), - [sym_nonlocal_statement] = STATE(5059), - [sym_exec_statement] = STATE(5059), - [sym_type_alias_statement] = STATE(5059), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(5059), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(5124), + [sym_future_import_statement] = STATE(5124), + [sym_import_from_statement] = STATE(5124), + [sym_print_statement] = STATE(5124), + [sym_assert_statement] = STATE(5124), + [sym_expression_statement] = STATE(5124), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(5124), + [sym_delete_statement] = STATE(5124), + [sym_raise_statement] = STATE(5124), + [sym_pass_statement] = STATE(5124), + [sym_break_statement] = STATE(5124), + [sym_continue_statement] = STATE(5124), + [sym_global_statement] = STATE(5124), + [sym_nonlocal_statement] = STATE(5124), + [sym_exec_statement] = STATE(5124), + [sym_type_alias_statement] = STATE(5124), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(5124), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65304,8 +65707,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65320,79 +65723,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1148), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1155), + [sym_string_start] = ACTIONS(107), }, [381] = { - [sym_import_statement] = STATE(5059), - [sym_future_import_statement] = STATE(5059), - [sym_import_from_statement] = STATE(5059), - [sym_print_statement] = STATE(5059), - [sym_assert_statement] = STATE(5059), - [sym_expression_statement] = STATE(5059), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(5059), - [sym_delete_statement] = STATE(5059), - [sym_raise_statement] = STATE(5059), - [sym_pass_statement] = STATE(5059), - [sym_break_statement] = STATE(5059), - [sym_continue_statement] = STATE(5059), - [sym_global_statement] = STATE(5059), - [sym_nonlocal_statement] = STATE(5059), - [sym_exec_statement] = STATE(5059), - [sym_type_alias_statement] = STATE(5059), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(5059), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(5124), + [sym_future_import_statement] = STATE(5124), + [sym_import_from_statement] = STATE(5124), + [sym_print_statement] = STATE(5124), + [sym_assert_statement] = STATE(5124), + [sym_expression_statement] = STATE(5124), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(5124), + [sym_delete_statement] = STATE(5124), + [sym_raise_statement] = STATE(5124), + [sym_pass_statement] = STATE(5124), + [sym_break_statement] = STATE(5124), + [sym_continue_statement] = STATE(5124), + [sym_global_statement] = STATE(5124), + [sym_nonlocal_statement] = STATE(5124), + [sym_exec_statement] = STATE(5124), + [sym_type_alias_statement] = STATE(5124), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(5124), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65407,8 +65811,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65423,79 +65827,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1150), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1157), + [sym_string_start] = ACTIONS(107), }, [382] = { - [sym_import_statement] = STATE(5059), - [sym_future_import_statement] = STATE(5059), - [sym_import_from_statement] = STATE(5059), - [sym_print_statement] = STATE(5059), - [sym_assert_statement] = STATE(5059), - [sym_expression_statement] = STATE(5059), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(5059), - [sym_delete_statement] = STATE(5059), - [sym_raise_statement] = STATE(5059), - [sym_pass_statement] = STATE(5059), - [sym_break_statement] = STATE(5059), - [sym_continue_statement] = STATE(5059), - [sym_global_statement] = STATE(5059), - [sym_nonlocal_statement] = STATE(5059), - [sym_exec_statement] = STATE(5059), - [sym_type_alias_statement] = STATE(5059), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(5059), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(5124), + [sym_future_import_statement] = STATE(5124), + [sym_import_from_statement] = STATE(5124), + [sym_print_statement] = STATE(5124), + [sym_assert_statement] = STATE(5124), + [sym_expression_statement] = STATE(5124), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(5124), + [sym_delete_statement] = STATE(5124), + [sym_raise_statement] = STATE(5124), + [sym_pass_statement] = STATE(5124), + [sym_break_statement] = STATE(5124), + [sym_continue_statement] = STATE(5124), + [sym_global_statement] = STATE(5124), + [sym_nonlocal_statement] = STATE(5124), + [sym_exec_statement] = STATE(5124), + [sym_type_alias_statement] = STATE(5124), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(5124), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65510,8 +65915,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65526,79 +65931,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1152), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1159), + [sym_string_start] = ACTIONS(107), }, [383] = { - [sym_import_statement] = STATE(5059), - [sym_future_import_statement] = STATE(5059), - [sym_import_from_statement] = STATE(5059), - [sym_print_statement] = STATE(5059), - [sym_assert_statement] = STATE(5059), - [sym_expression_statement] = STATE(5059), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(5059), - [sym_delete_statement] = STATE(5059), - [sym_raise_statement] = STATE(5059), - [sym_pass_statement] = STATE(5059), - [sym_break_statement] = STATE(5059), - [sym_continue_statement] = STATE(5059), - [sym_global_statement] = STATE(5059), - [sym_nonlocal_statement] = STATE(5059), - [sym_exec_statement] = STATE(5059), - [sym_type_alias_statement] = STATE(5059), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(5059), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(5124), + [sym_future_import_statement] = STATE(5124), + [sym_import_from_statement] = STATE(5124), + [sym_print_statement] = STATE(5124), + [sym_assert_statement] = STATE(5124), + [sym_expression_statement] = STATE(5124), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(5124), + [sym_delete_statement] = STATE(5124), + [sym_raise_statement] = STATE(5124), + [sym_pass_statement] = STATE(5124), + [sym_break_statement] = STATE(5124), + [sym_continue_statement] = STATE(5124), + [sym_global_statement] = STATE(5124), + [sym_nonlocal_statement] = STATE(5124), + [sym_exec_statement] = STATE(5124), + [sym_type_alias_statement] = STATE(5124), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(5124), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65613,8 +66019,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65629,79 +66035,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1154), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1161), + [sym_string_start] = ACTIONS(107), }, [384] = { - [sym_import_statement] = STATE(5059), - [sym_future_import_statement] = STATE(5059), - [sym_import_from_statement] = STATE(5059), - [sym_print_statement] = STATE(5059), - [sym_assert_statement] = STATE(5059), - [sym_expression_statement] = STATE(5059), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(5059), - [sym_delete_statement] = STATE(5059), - [sym_raise_statement] = STATE(5059), - [sym_pass_statement] = STATE(5059), - [sym_break_statement] = STATE(5059), - [sym_continue_statement] = STATE(5059), - [sym_global_statement] = STATE(5059), - [sym_nonlocal_statement] = STATE(5059), - [sym_exec_statement] = STATE(5059), - [sym_type_alias_statement] = STATE(5059), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(5059), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(5124), + [sym_future_import_statement] = STATE(5124), + [sym_import_from_statement] = STATE(5124), + [sym_print_statement] = STATE(5124), + [sym_assert_statement] = STATE(5124), + [sym_expression_statement] = STATE(5124), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(5124), + [sym_delete_statement] = STATE(5124), + [sym_raise_statement] = STATE(5124), + [sym_pass_statement] = STATE(5124), + [sym_break_statement] = STATE(5124), + [sym_continue_statement] = STATE(5124), + [sym_global_statement] = STATE(5124), + [sym_nonlocal_statement] = STATE(5124), + [sym_exec_statement] = STATE(5124), + [sym_type_alias_statement] = STATE(5124), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(5124), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65716,8 +66123,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65732,79 +66139,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1156), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1163), + [sym_string_start] = ACTIONS(107), }, [385] = { - [sym_import_statement] = STATE(5059), - [sym_future_import_statement] = STATE(5059), - [sym_import_from_statement] = STATE(5059), - [sym_print_statement] = STATE(5059), - [sym_assert_statement] = STATE(5059), - [sym_expression_statement] = STATE(5059), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(5059), - [sym_delete_statement] = STATE(5059), - [sym_raise_statement] = STATE(5059), - [sym_pass_statement] = STATE(5059), - [sym_break_statement] = STATE(5059), - [sym_continue_statement] = STATE(5059), - [sym_global_statement] = STATE(5059), - [sym_nonlocal_statement] = STATE(5059), - [sym_exec_statement] = STATE(5059), - [sym_type_alias_statement] = STATE(5059), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(5059), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(5124), + [sym_future_import_statement] = STATE(5124), + [sym_import_from_statement] = STATE(5124), + [sym_print_statement] = STATE(5124), + [sym_assert_statement] = STATE(5124), + [sym_expression_statement] = STATE(5124), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(5124), + [sym_delete_statement] = STATE(5124), + [sym_raise_statement] = STATE(5124), + [sym_pass_statement] = STATE(5124), + [sym_break_statement] = STATE(5124), + [sym_continue_statement] = STATE(5124), + [sym_global_statement] = STATE(5124), + [sym_nonlocal_statement] = STATE(5124), + [sym_exec_statement] = STATE(5124), + [sym_type_alias_statement] = STATE(5124), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(5124), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65819,8 +66227,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65835,79 +66243,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1158), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1165), + [sym_string_start] = ACTIONS(107), }, [386] = { - [sym_import_statement] = STATE(5059), - [sym_future_import_statement] = STATE(5059), - [sym_import_from_statement] = STATE(5059), - [sym_print_statement] = STATE(5059), - [sym_assert_statement] = STATE(5059), - [sym_expression_statement] = STATE(5059), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(5059), - [sym_delete_statement] = STATE(5059), - [sym_raise_statement] = STATE(5059), - [sym_pass_statement] = STATE(5059), - [sym_break_statement] = STATE(5059), - [sym_continue_statement] = STATE(5059), - [sym_global_statement] = STATE(5059), - [sym_nonlocal_statement] = STATE(5059), - [sym_exec_statement] = STATE(5059), - [sym_type_alias_statement] = STATE(5059), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(5059), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(5124), + [sym_future_import_statement] = STATE(5124), + [sym_import_from_statement] = STATE(5124), + [sym_print_statement] = STATE(5124), + [sym_assert_statement] = STATE(5124), + [sym_expression_statement] = STATE(5124), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(5124), + [sym_delete_statement] = STATE(5124), + [sym_raise_statement] = STATE(5124), + [sym_pass_statement] = STATE(5124), + [sym_break_statement] = STATE(5124), + [sym_continue_statement] = STATE(5124), + [sym_global_statement] = STATE(5124), + [sym_nonlocal_statement] = STATE(5124), + [sym_exec_statement] = STATE(5124), + [sym_type_alias_statement] = STATE(5124), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(5124), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65922,8 +66331,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65938,79 +66347,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1160), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1167), + [sym_string_start] = ACTIONS(107), }, [387] = { - [sym_import_statement] = STATE(5059), - [sym_future_import_statement] = STATE(5059), - [sym_import_from_statement] = STATE(5059), - [sym_print_statement] = STATE(5059), - [sym_assert_statement] = STATE(5059), - [sym_expression_statement] = STATE(5059), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(5059), - [sym_delete_statement] = STATE(5059), - [sym_raise_statement] = STATE(5059), - [sym_pass_statement] = STATE(5059), - [sym_break_statement] = STATE(5059), - [sym_continue_statement] = STATE(5059), - [sym_global_statement] = STATE(5059), - [sym_nonlocal_statement] = STATE(5059), - [sym_exec_statement] = STATE(5059), - [sym_type_alias_statement] = STATE(5059), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(5059), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(5124), + [sym_future_import_statement] = STATE(5124), + [sym_import_from_statement] = STATE(5124), + [sym_print_statement] = STATE(5124), + [sym_assert_statement] = STATE(5124), + [sym_expression_statement] = STATE(5124), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(5124), + [sym_delete_statement] = STATE(5124), + [sym_raise_statement] = STATE(5124), + [sym_pass_statement] = STATE(5124), + [sym_break_statement] = STATE(5124), + [sym_continue_statement] = STATE(5124), + [sym_global_statement] = STATE(5124), + [sym_nonlocal_statement] = STATE(5124), + [sym_exec_statement] = STATE(5124), + [sym_type_alias_statement] = STATE(5124), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(5124), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66025,8 +66435,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66041,79 +66451,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1162), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1169), + [sym_string_start] = ACTIONS(107), }, [388] = { - [sym_import_statement] = STATE(5059), - [sym_future_import_statement] = STATE(5059), - [sym_import_from_statement] = STATE(5059), - [sym_print_statement] = STATE(5059), - [sym_assert_statement] = STATE(5059), - [sym_expression_statement] = STATE(5059), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(5059), - [sym_delete_statement] = STATE(5059), - [sym_raise_statement] = STATE(5059), - [sym_pass_statement] = STATE(5059), - [sym_break_statement] = STATE(5059), - [sym_continue_statement] = STATE(5059), - [sym_global_statement] = STATE(5059), - [sym_nonlocal_statement] = STATE(5059), - [sym_exec_statement] = STATE(5059), - [sym_type_alias_statement] = STATE(5059), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(5059), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(5124), + [sym_future_import_statement] = STATE(5124), + [sym_import_from_statement] = STATE(5124), + [sym_print_statement] = STATE(5124), + [sym_assert_statement] = STATE(5124), + [sym_expression_statement] = STATE(5124), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(5124), + [sym_delete_statement] = STATE(5124), + [sym_raise_statement] = STATE(5124), + [sym_pass_statement] = STATE(5124), + [sym_break_statement] = STATE(5124), + [sym_continue_statement] = STATE(5124), + [sym_global_statement] = STATE(5124), + [sym_nonlocal_statement] = STATE(5124), + [sym_exec_statement] = STATE(5124), + [sym_type_alias_statement] = STATE(5124), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(5124), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66128,8 +66539,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66144,79 +66555,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1164), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1171), + [sym_string_start] = ACTIONS(107), }, [389] = { - [sym_import_statement] = STATE(5059), - [sym_future_import_statement] = STATE(5059), - [sym_import_from_statement] = STATE(5059), - [sym_print_statement] = STATE(5059), - [sym_assert_statement] = STATE(5059), - [sym_expression_statement] = STATE(5059), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(5059), - [sym_delete_statement] = STATE(5059), - [sym_raise_statement] = STATE(5059), - [sym_pass_statement] = STATE(5059), - [sym_break_statement] = STATE(5059), - [sym_continue_statement] = STATE(5059), - [sym_global_statement] = STATE(5059), - [sym_nonlocal_statement] = STATE(5059), - [sym_exec_statement] = STATE(5059), - [sym_type_alias_statement] = STATE(5059), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(5059), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(5124), + [sym_future_import_statement] = STATE(5124), + [sym_import_from_statement] = STATE(5124), + [sym_print_statement] = STATE(5124), + [sym_assert_statement] = STATE(5124), + [sym_expression_statement] = STATE(5124), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(5124), + [sym_delete_statement] = STATE(5124), + [sym_raise_statement] = STATE(5124), + [sym_pass_statement] = STATE(5124), + [sym_break_statement] = STATE(5124), + [sym_continue_statement] = STATE(5124), + [sym_global_statement] = STATE(5124), + [sym_nonlocal_statement] = STATE(5124), + [sym_exec_statement] = STATE(5124), + [sym_type_alias_statement] = STATE(5124), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(5124), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66231,8 +66643,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66247,79 +66659,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1166), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1173), + [sym_string_start] = ACTIONS(107), }, [390] = { - [sym_import_statement] = STATE(5059), - [sym_future_import_statement] = STATE(5059), - [sym_import_from_statement] = STATE(5059), - [sym_print_statement] = STATE(5059), - [sym_assert_statement] = STATE(5059), - [sym_expression_statement] = STATE(5059), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(5059), - [sym_delete_statement] = STATE(5059), - [sym_raise_statement] = STATE(5059), - [sym_pass_statement] = STATE(5059), - [sym_break_statement] = STATE(5059), - [sym_continue_statement] = STATE(5059), - [sym_global_statement] = STATE(5059), - [sym_nonlocal_statement] = STATE(5059), - [sym_exec_statement] = STATE(5059), - [sym_type_alias_statement] = STATE(5059), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(5059), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(5124), + [sym_future_import_statement] = STATE(5124), + [sym_import_from_statement] = STATE(5124), + [sym_print_statement] = STATE(5124), + [sym_assert_statement] = STATE(5124), + [sym_expression_statement] = STATE(5124), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(5124), + [sym_delete_statement] = STATE(5124), + [sym_raise_statement] = STATE(5124), + [sym_pass_statement] = STATE(5124), + [sym_break_statement] = STATE(5124), + [sym_continue_statement] = STATE(5124), + [sym_global_statement] = STATE(5124), + [sym_nonlocal_statement] = STATE(5124), + [sym_exec_statement] = STATE(5124), + [sym_type_alias_statement] = STATE(5124), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(5124), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66334,8 +66747,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66350,79 +66763,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1168), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1175), + [sym_string_start] = ACTIONS(107), }, [391] = { - [sym_import_statement] = STATE(5059), - [sym_future_import_statement] = STATE(5059), - [sym_import_from_statement] = STATE(5059), - [sym_print_statement] = STATE(5059), - [sym_assert_statement] = STATE(5059), - [sym_expression_statement] = STATE(5059), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(5059), - [sym_delete_statement] = STATE(5059), - [sym_raise_statement] = STATE(5059), - [sym_pass_statement] = STATE(5059), - [sym_break_statement] = STATE(5059), - [sym_continue_statement] = STATE(5059), - [sym_global_statement] = STATE(5059), - [sym_nonlocal_statement] = STATE(5059), - [sym_exec_statement] = STATE(5059), - [sym_type_alias_statement] = STATE(5059), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(5059), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(5124), + [sym_future_import_statement] = STATE(5124), + [sym_import_from_statement] = STATE(5124), + [sym_print_statement] = STATE(5124), + [sym_assert_statement] = STATE(5124), + [sym_expression_statement] = STATE(5124), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(5124), + [sym_delete_statement] = STATE(5124), + [sym_raise_statement] = STATE(5124), + [sym_pass_statement] = STATE(5124), + [sym_break_statement] = STATE(5124), + [sym_continue_statement] = STATE(5124), + [sym_global_statement] = STATE(5124), + [sym_nonlocal_statement] = STATE(5124), + [sym_exec_statement] = STATE(5124), + [sym_type_alias_statement] = STATE(5124), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(5124), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66437,8 +66851,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66453,79 +66867,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1170), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1177), + [sym_string_start] = ACTIONS(107), }, [392] = { - [sym_import_statement] = STATE(5059), - [sym_future_import_statement] = STATE(5059), - [sym_import_from_statement] = STATE(5059), - [sym_print_statement] = STATE(5059), - [sym_assert_statement] = STATE(5059), - [sym_expression_statement] = STATE(5059), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(5059), - [sym_delete_statement] = STATE(5059), - [sym_raise_statement] = STATE(5059), - [sym_pass_statement] = STATE(5059), - [sym_break_statement] = STATE(5059), - [sym_continue_statement] = STATE(5059), - [sym_global_statement] = STATE(5059), - [sym_nonlocal_statement] = STATE(5059), - [sym_exec_statement] = STATE(5059), - [sym_type_alias_statement] = STATE(5059), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(5059), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(5124), + [sym_future_import_statement] = STATE(5124), + [sym_import_from_statement] = STATE(5124), + [sym_print_statement] = STATE(5124), + [sym_assert_statement] = STATE(5124), + [sym_expression_statement] = STATE(5124), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(5124), + [sym_delete_statement] = STATE(5124), + [sym_raise_statement] = STATE(5124), + [sym_pass_statement] = STATE(5124), + [sym_break_statement] = STATE(5124), + [sym_continue_statement] = STATE(5124), + [sym_global_statement] = STATE(5124), + [sym_nonlocal_statement] = STATE(5124), + [sym_exec_statement] = STATE(5124), + [sym_type_alias_statement] = STATE(5124), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(5124), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66540,8 +66955,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66556,79 +66971,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1172), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1179), + [sym_string_start] = ACTIONS(107), }, [393] = { - [sym_import_statement] = STATE(5059), - [sym_future_import_statement] = STATE(5059), - [sym_import_from_statement] = STATE(5059), - [sym_print_statement] = STATE(5059), - [sym_assert_statement] = STATE(5059), - [sym_expression_statement] = STATE(5059), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(5059), - [sym_delete_statement] = STATE(5059), - [sym_raise_statement] = STATE(5059), - [sym_pass_statement] = STATE(5059), - [sym_break_statement] = STATE(5059), - [sym_continue_statement] = STATE(5059), - [sym_global_statement] = STATE(5059), - [sym_nonlocal_statement] = STATE(5059), - [sym_exec_statement] = STATE(5059), - [sym_type_alias_statement] = STATE(5059), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(5059), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(5124), + [sym_future_import_statement] = STATE(5124), + [sym_import_from_statement] = STATE(5124), + [sym_print_statement] = STATE(5124), + [sym_assert_statement] = STATE(5124), + [sym_expression_statement] = STATE(5124), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(5124), + [sym_delete_statement] = STATE(5124), + [sym_raise_statement] = STATE(5124), + [sym_pass_statement] = STATE(5124), + [sym_break_statement] = STATE(5124), + [sym_continue_statement] = STATE(5124), + [sym_global_statement] = STATE(5124), + [sym_nonlocal_statement] = STATE(5124), + [sym_exec_statement] = STATE(5124), + [sym_type_alias_statement] = STATE(5124), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(5124), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66643,8 +67059,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66659,79 +67075,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1174), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1181), + [sym_string_start] = ACTIONS(107), }, [394] = { - [sym_import_statement] = STATE(5059), - [sym_future_import_statement] = STATE(5059), - [sym_import_from_statement] = STATE(5059), - [sym_print_statement] = STATE(5059), - [sym_assert_statement] = STATE(5059), - [sym_expression_statement] = STATE(5059), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(5059), - [sym_delete_statement] = STATE(5059), - [sym_raise_statement] = STATE(5059), - [sym_pass_statement] = STATE(5059), - [sym_break_statement] = STATE(5059), - [sym_continue_statement] = STATE(5059), - [sym_global_statement] = STATE(5059), - [sym_nonlocal_statement] = STATE(5059), - [sym_exec_statement] = STATE(5059), - [sym_type_alias_statement] = STATE(5059), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(5059), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(5124), + [sym_future_import_statement] = STATE(5124), + [sym_import_from_statement] = STATE(5124), + [sym_print_statement] = STATE(5124), + [sym_assert_statement] = STATE(5124), + [sym_expression_statement] = STATE(5124), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(5124), + [sym_delete_statement] = STATE(5124), + [sym_raise_statement] = STATE(5124), + [sym_pass_statement] = STATE(5124), + [sym_break_statement] = STATE(5124), + [sym_continue_statement] = STATE(5124), + [sym_global_statement] = STATE(5124), + [sym_nonlocal_statement] = STATE(5124), + [sym_exec_statement] = STATE(5124), + [sym_type_alias_statement] = STATE(5124), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(5124), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66746,8 +67163,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66762,79 +67179,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(1176), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(1183), + [sym_string_start] = ACTIONS(107), }, [395] = { - [sym_import_statement] = STATE(5059), - [sym_future_import_statement] = STATE(5059), - [sym_import_from_statement] = STATE(5059), - [sym_print_statement] = STATE(5059), - [sym_assert_statement] = STATE(5059), - [sym_expression_statement] = STATE(5059), - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_return_statement] = STATE(5059), - [sym_delete_statement] = STATE(5059), - [sym_raise_statement] = STATE(5059), - [sym_pass_statement] = STATE(5059), - [sym_break_statement] = STATE(5059), - [sym_continue_statement] = STATE(5059), - [sym_global_statement] = STATE(5059), - [sym_nonlocal_statement] = STATE(5059), - [sym_exec_statement] = STATE(5059), - [sym_type_alias_statement] = STATE(5059), - [sym_pattern] = STATE(3106), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5054), - [sym_augmented_assignment] = STATE(5054), - [sym_pattern_list] = STATE(3255), - [sym_yield] = STATE(5054), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_include_statement] = STATE(5059), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_import_statement] = STATE(5124), + [sym_future_import_statement] = STATE(5124), + [sym_import_from_statement] = STATE(5124), + [sym_print_statement] = STATE(5124), + [sym_assert_statement] = STATE(5124), + [sym_expression_statement] = STATE(5124), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_return_statement] = STATE(5124), + [sym_delete_statement] = STATE(5124), + [sym_raise_statement] = STATE(5124), + [sym_pass_statement] = STATE(5124), + [sym_break_statement] = STATE(5124), + [sym_continue_statement] = STATE(5124), + [sym_global_statement] = STATE(5124), + [sym_nonlocal_statement] = STATE(5124), + [sym_exec_statement] = STATE(5124), + [sym_type_alias_statement] = STATE(5124), + [sym_pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4988), + [sym_augmented_assignment] = STATE(4988), + [sym_pattern_list] = STATE(3260), + [sym_yield] = STATE(4988), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_include_statement] = STATE(5124), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66849,8 +67267,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66865,4023 +67283,3735 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_include] = ACTIONS(91), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym_string_start] = ACTIONS(105), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym_string_start] = ACTIONS(107), }, [396] = { - [sym_list_splat_pattern] = STATE(1985), - [sym_primary_expression] = STATE(1946), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_attribute] = STATE(1981), - [sym_subscript] = STATE(1981), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_list_splat_pattern] = STATE(1975), + [sym_primary_expression] = STATE(1943), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_attribute] = STATE(2021), + [sym_subscript] = STATE(2021), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(81), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_print] = ACTIONS(1182), - [anon_sym_GT_GT] = ACTIONS(836), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(836), - [anon_sym_COLON] = ACTIONS(1011), - [anon_sym_match] = ACTIONS(1182), - [anon_sym_async] = ACTIONS(1182), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(836), - [anon_sym_exec] = ACTIONS(1182), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(1184), - [anon_sym_AT] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_print] = ACTIONS(1189), + [anon_sym_GT_GT] = ACTIONS(565), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(1016), + [anon_sym_match] = ACTIONS(1189), + [anon_sym_async] = ACTIONS(1189), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(565), + [anon_sym_exec] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_AT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_PIPE] = ACTIONS(565), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_SLASH_SLASH] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(836), - [anon_sym_LT_LT] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(565), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [anon_sym_PLUS_EQ] = ACTIONS(867), - [anon_sym_DASH_EQ] = ACTIONS(867), - [anon_sym_STAR_EQ] = ACTIONS(867), - [anon_sym_SLASH_EQ] = ACTIONS(867), - [anon_sym_AT_EQ] = ACTIONS(867), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(867), - [anon_sym_PERCENT_EQ] = ACTIONS(867), - [anon_sym_STAR_STAR_EQ] = ACTIONS(867), - [anon_sym_GT_GT_EQ] = ACTIONS(867), - [anon_sym_LT_LT_EQ] = ACTIONS(867), - [anon_sym_AMP_EQ] = ACTIONS(867), - [anon_sym_CARET_EQ] = ACTIONS(867), - [anon_sym_PIPE_EQ] = ACTIONS(867), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_PLUS_EQ] = ACTIONS(596), + [anon_sym_DASH_EQ] = ACTIONS(596), + [anon_sym_STAR_EQ] = ACTIONS(596), + [anon_sym_SLASH_EQ] = ACTIONS(596), + [anon_sym_AT_EQ] = ACTIONS(596), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(596), + [anon_sym_PERCENT_EQ] = ACTIONS(596), + [anon_sym_STAR_STAR_EQ] = ACTIONS(596), + [anon_sym_GT_GT_EQ] = ACTIONS(596), + [anon_sym_LT_LT_EQ] = ACTIONS(596), + [anon_sym_AMP_EQ] = ACTIONS(596), + [anon_sym_CARET_EQ] = ACTIONS(596), + [anon_sym_PIPE_EQ] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_api] = ACTIONS(1182), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(1197), + [anon_sym_api] = ACTIONS(1189), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(834), - [sym_string_start] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(563), + [sym_string_start] = ACTIONS(107), }, [397] = { - [sym_list_splat_pattern] = STATE(1985), - [sym_primary_expression] = STATE(1946), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_attribute] = STATE(1981), - [sym_subscript] = STATE(1981), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_list_splat_pattern] = STATE(1975), + [sym_primary_expression] = STATE(1943), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_attribute] = STATE(2021), + [sym_subscript] = STATE(2021), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(81), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_print] = ACTIONS(1182), - [anon_sym_GT_GT] = ACTIONS(836), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(836), - [anon_sym_COLON] = ACTIONS(853), - [anon_sym_match] = ACTIONS(1182), - [anon_sym_async] = ACTIONS(1182), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(836), - [anon_sym_exec] = ACTIONS(1182), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(1184), - [anon_sym_AT] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_print] = ACTIONS(1189), + [anon_sym_GT_GT] = ACTIONS(565), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(582), + [anon_sym_match] = ACTIONS(1189), + [anon_sym_async] = ACTIONS(1189), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(565), + [anon_sym_exec] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_AT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_PIPE] = ACTIONS(565), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_SLASH_SLASH] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(1186), - [anon_sym_CARET] = ACTIONS(836), - [anon_sym_LT_LT] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(565), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [anon_sym_PLUS_EQ] = ACTIONS(867), - [anon_sym_DASH_EQ] = ACTIONS(867), - [anon_sym_STAR_EQ] = ACTIONS(867), - [anon_sym_SLASH_EQ] = ACTIONS(867), - [anon_sym_AT_EQ] = ACTIONS(867), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(867), - [anon_sym_PERCENT_EQ] = ACTIONS(867), - [anon_sym_STAR_STAR_EQ] = ACTIONS(867), - [anon_sym_GT_GT_EQ] = ACTIONS(867), - [anon_sym_LT_LT_EQ] = ACTIONS(867), - [anon_sym_AMP_EQ] = ACTIONS(867), - [anon_sym_CARET_EQ] = ACTIONS(867), - [anon_sym_PIPE_EQ] = ACTIONS(867), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_PLUS_EQ] = ACTIONS(596), + [anon_sym_DASH_EQ] = ACTIONS(596), + [anon_sym_STAR_EQ] = ACTIONS(596), + [anon_sym_SLASH_EQ] = ACTIONS(596), + [anon_sym_AT_EQ] = ACTIONS(596), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(596), + [anon_sym_PERCENT_EQ] = ACTIONS(596), + [anon_sym_STAR_STAR_EQ] = ACTIONS(596), + [anon_sym_GT_GT_EQ] = ACTIONS(596), + [anon_sym_LT_LT_EQ] = ACTIONS(596), + [anon_sym_AMP_EQ] = ACTIONS(596), + [anon_sym_CARET_EQ] = ACTIONS(596), + [anon_sym_PIPE_EQ] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_api] = ACTIONS(1182), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(1197), + [anon_sym_api] = ACTIONS(1189), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(834), - [sym_string_start] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(563), + [sym_string_start] = ACTIONS(107), }, [398] = { - [sym_list_splat_pattern] = STATE(2402), - [sym_primary_expression] = STATE(3025), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1136), - [anon_sym_SEMI] = ACTIONS(1192), - [anon_sym_DOT] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1192), - [anon_sym_as] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_print] = ACTIONS(1201), - [anon_sym_GT_GT] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_COLON] = ACTIONS(1192), - [anon_sym_match] = ACTIONS(1201), - [anon_sym_async] = ACTIONS(1201), - [anon_sym_in] = ACTIONS(1197), - [anon_sym_STAR_STAR] = ACTIONS(1194), - [anon_sym_exec] = ACTIONS(1201), - [anon_sym_EQ] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_AT] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_not] = ACTIONS(1197), - [anon_sym_and] = ACTIONS(1197), - [anon_sym_or] = ACTIONS(1197), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_PERCENT] = ACTIONS(1194), - [anon_sym_SLASH_SLASH] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_CARET] = ACTIONS(1194), - [anon_sym_LT_LT] = ACTIONS(1194), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_is] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(1207), - [anon_sym_LT_EQ] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_BANG_EQ] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_LT_GT] = ACTIONS(1192), - [anon_sym_PLUS_EQ] = ACTIONS(1192), - [anon_sym_DASH_EQ] = ACTIONS(1192), - [anon_sym_STAR_EQ] = ACTIONS(1192), - [anon_sym_SLASH_EQ] = ACTIONS(1192), - [anon_sym_AT_EQ] = ACTIONS(1192), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1192), - [anon_sym_PERCENT_EQ] = ACTIONS(1192), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1192), - [anon_sym_GT_GT_EQ] = ACTIONS(1192), - [anon_sym_LT_LT_EQ] = ACTIONS(1192), - [anon_sym_AMP_EQ] = ACTIONS(1192), - [anon_sym_CARET_EQ] = ACTIONS(1192), - [anon_sym_PIPE_EQ] = ACTIONS(1192), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1209), - [anon_sym_api] = ACTIONS(1201), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_list_splat_pattern] = STATE(2340), + [sym_primary_expression] = STATE(3038), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym_DOT] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_COMMA] = ACTIONS(1199), + [anon_sym_as] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_print] = ACTIONS(1208), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_COLON] = ACTIONS(1199), + [anon_sym_match] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_in] = ACTIONS(1204), + [anon_sym_STAR_STAR] = ACTIONS(1201), + [anon_sym_exec] = ACTIONS(1208), + [anon_sym_EQ] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_AT] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_not] = ACTIONS(1204), + [anon_sym_and] = ACTIONS(1204), + [anon_sym_or] = ACTIONS(1204), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_SLASH_SLASH] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_is] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_LT_EQ] = ACTIONS(1199), + [anon_sym_EQ_EQ] = ACTIONS(1199), + [anon_sym_BANG_EQ] = ACTIONS(1199), + [anon_sym_GT_EQ] = ACTIONS(1199), + [anon_sym_GT] = ACTIONS(1204), + [anon_sym_LT_GT] = ACTIONS(1199), + [anon_sym_PLUS_EQ] = ACTIONS(1199), + [anon_sym_DASH_EQ] = ACTIONS(1199), + [anon_sym_STAR_EQ] = ACTIONS(1199), + [anon_sym_SLASH_EQ] = ACTIONS(1199), + [anon_sym_AT_EQ] = ACTIONS(1199), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1199), + [anon_sym_PERCENT_EQ] = ACTIONS(1199), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1199), + [anon_sym_GT_GT_EQ] = ACTIONS(1199), + [anon_sym_LT_LT_EQ] = ACTIONS(1199), + [anon_sym_AMP_EQ] = ACTIONS(1199), + [anon_sym_CARET_EQ] = ACTIONS(1199), + [anon_sym_PIPE_EQ] = ACTIONS(1199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1216), + [anon_sym_api] = ACTIONS(1208), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1142), - [sym__newline] = ACTIONS(1192), - [sym_string_start] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1149), + [sym__newline] = ACTIONS(1199), + [sym_string_start] = ACTIONS(1151), }, [399] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4723), - [sym_parenthesized_list_splat] = STATE(4723), - [sym__patterns] = STATE(5215), - [sym_pattern] = STATE(4859), - [sym_tuple_pattern] = STATE(5181), - [sym_list_pattern] = STATE(5181), - [sym_list_splat_pattern] = STATE(2407), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3556), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4887), + [sym__patterns] = STATE(5243), + [sym_pattern] = STATE(4940), + [sym_tuple_pattern] = STATE(5009), + [sym_list_pattern] = STATE(5009), + [sym_list_splat_pattern] = STATE(2304), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3530), [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4578), - [sym_attribute] = STATE(2408), - [sym_subscript] = STATE(2408), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5484), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(5184), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1219), - [anon_sym_match] = ACTIONS(1219), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_exec] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_api] = ACTIONS(1219), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4785), + [sym_attribute] = STATE(2305), + [sym_subscript] = STATE(2305), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5212), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(5036), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(1218), + [anon_sym_LPAREN] = ACTIONS(1220), + [anon_sym_RPAREN] = ACTIONS(1222), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1226), + [anon_sym_match] = ACTIONS(1226), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_exec] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1250), + [anon_sym_api] = ACTIONS(1226), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [400] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4513), - [sym_parenthesized_list_splat] = STATE(4521), - [sym__patterns] = STATE(5215), - [sym_pattern] = STATE(4859), - [sym_tuple_pattern] = STATE(5181), - [sym_list_pattern] = STATE(5181), - [sym_list_splat_pattern] = STATE(2407), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3552), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4819), + [sym_parenthesized_list_splat] = STATE(4822), + [sym__patterns] = STATE(5243), + [sym_pattern] = STATE(4940), + [sym_tuple_pattern] = STATE(5009), + [sym_list_pattern] = STATE(5009), + [sym_list_splat_pattern] = STATE(2304), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3504), [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4650), - [sym_attribute] = STATE(2408), - [sym_subscript] = STATE(2408), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5225), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(5184), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1219), - [anon_sym_match] = ACTIONS(1219), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_exec] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_api] = ACTIONS(1219), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4922), + [sym_attribute] = STATE(2305), + [sym_subscript] = STATE(2305), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5475), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(5036), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(1218), + [anon_sym_LPAREN] = ACTIONS(1220), + [anon_sym_RPAREN] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1226), + [anon_sym_match] = ACTIONS(1226), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_exec] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1250), + [anon_sym_api] = ACTIONS(1226), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [401] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4723), - [sym_parenthesized_list_splat] = STATE(4723), - [sym__patterns] = STATE(5363), - [sym_pattern] = STATE(4859), - [sym_tuple_pattern] = STATE(5181), - [sym_list_pattern] = STATE(5181), - [sym_list_splat_pattern] = STATE(2407), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3550), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4887), + [sym__patterns] = STATE(5374), + [sym_pattern] = STATE(4940), + [sym_tuple_pattern] = STATE(5009), + [sym_list_pattern] = STATE(5009), + [sym_list_splat_pattern] = STATE(2304), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3561), [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4645), - [sym_attribute] = STATE(2408), - [sym_subscript] = STATE(2408), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5235), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4501), + [sym_attribute] = STATE(2305), + [sym_subscript] = STATE(2305), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5249), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), [sym_c_type] = STATE(5011), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1261), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1219), - [anon_sym_match] = ACTIONS(1219), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_exec] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_api] = ACTIONS(1219), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(1218), + [anon_sym_LPAREN] = ACTIONS(1220), + [anon_sym_RPAREN] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1226), + [anon_sym_match] = ACTIONS(1226), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_exec] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1250), + [anon_sym_api] = ACTIONS(1226), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [402] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4646), - [sym_dictionary_splat] = STATE(4646), - [sym_parenthesized_list_splat] = STATE(4647), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3938), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4646), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(4425), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1267), - [anon_sym_COMMA] = ACTIONS(1269), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4655), + [sym_dictionary_splat] = STATE(4655), + [sym_parenthesized_list_splat] = STATE(4656), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3946), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4655), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(4394), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1276), + [anon_sym_COMMA] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [403] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4773), - [sym_dictionary_splat] = STATE(4773), - [sym_parenthesized_list_splat] = STATE(4774), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3891), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4773), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(4425), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1303), - [anon_sym_COMMA] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4755), + [sym_dictionary_splat] = STATE(4755), + [sym_parenthesized_list_splat] = STATE(4757), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3877), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4755), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(4394), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1314), + [anon_sym_COMMA] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [404] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4725), - [sym_dictionary_splat] = STATE(4725), - [sym_parenthesized_list_splat] = STATE(4729), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3995), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4725), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(5080), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_COMMA] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4843), + [sym_dictionary_splat] = STATE(4843), + [sym_parenthesized_list_splat] = STATE(4844), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3931), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4843), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(5109), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1320), + [anon_sym_COMMA] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [405] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4725), - [sym_dictionary_splat] = STATE(4725), - [sym_parenthesized_list_splat] = STATE(4729), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3995), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4725), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(5179), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_COMMA] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4843), + [sym_dictionary_splat] = STATE(4843), + [sym_parenthesized_list_splat] = STATE(4844), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3931), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4843), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(5192), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1320), + [anon_sym_COMMA] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [406] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4725), - [sym_dictionary_splat] = STATE(4725), - [sym_parenthesized_list_splat] = STATE(4729), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3995), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4725), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(5166), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_COMMA] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4843), + [sym_dictionary_splat] = STATE(4843), + [sym_parenthesized_list_splat] = STATE(4844), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3931), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4843), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(5181), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1320), + [anon_sym_COMMA] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [407] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4731), - [sym_dictionary_splat] = STATE(4731), - [sym_parenthesized_list_splat] = STATE(4732), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3833), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4731), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(4425), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1313), - [anon_sym_COMMA] = ACTIONS(1315), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4738), + [sym_dictionary_splat] = STATE(4738), + [sym_parenthesized_list_splat] = STATE(4739), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3928), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4738), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(4394), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1324), + [anon_sym_COMMA] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [408] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4783), - [sym_dictionary_splat] = STATE(4783), - [sym_parenthesized_list_splat] = STATE(4798), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3947), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4783), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(4425), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1317), - [anon_sym_COMMA] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4889), + [sym_dictionary_splat] = STATE(4889), + [sym_parenthesized_list_splat] = STATE(4890), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3875), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4889), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(4394), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1328), + [anon_sym_COMMA] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [409] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4593), - [sym_dictionary_splat] = STATE(4593), - [sym_parenthesized_list_splat] = STATE(4594), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3905), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4593), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(4425), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1321), - [anon_sym_COMMA] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4606), + [sym_dictionary_splat] = STATE(4606), + [sym_parenthesized_list_splat] = STATE(4607), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3940), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4606), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(4394), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1332), + [anon_sym_COMMA] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [410] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4725), - [sym_dictionary_splat] = STATE(4725), - [sym_parenthesized_list_splat] = STATE(4729), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3995), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4725), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(5099), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_COMMA] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4843), + [sym_dictionary_splat] = STATE(4843), + [sym_parenthesized_list_splat] = STATE(4844), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3931), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4843), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(5092), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1320), + [anon_sym_COMMA] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [411] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4725), - [sym_dictionary_splat] = STATE(4725), - [sym_parenthesized_list_splat] = STATE(4729), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3995), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4725), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(5141), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_COMMA] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4843), + [sym_dictionary_splat] = STATE(4843), + [sym_parenthesized_list_splat] = STATE(4844), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3931), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4843), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(5146), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1320), + [anon_sym_COMMA] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [412] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4761), - [sym_dictionary_splat] = STATE(4761), - [sym_parenthesized_list_splat] = STATE(4762), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3988), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4761), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(4425), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4772), + [sym_dictionary_splat] = STATE(4772), + [sym_parenthesized_list_splat] = STATE(4773), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3951), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4772), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(4394), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [413] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4702), - [sym_dictionary_splat] = STATE(4702), - [sym_parenthesized_list_splat] = STATE(4703), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3840), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4702), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(4425), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1329), - [anon_sym_COMMA] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4712), + [sym_dictionary_splat] = STATE(4712), + [sym_parenthesized_list_splat] = STATE(4713), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3956), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4712), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(4394), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1340), + [anon_sym_COMMA] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [414] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4745), - [sym_dictionary_splat] = STATE(4745), - [sym_parenthesized_list_splat] = STATE(4746), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3965), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4745), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(4425), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1333), - [anon_sym_COMMA] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4760), + [sym_dictionary_splat] = STATE(4760), + [sym_parenthesized_list_splat] = STATE(4761), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3964), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4760), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(4394), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1344), + [anon_sym_COMMA] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [415] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4677), - [sym_dictionary_splat] = STATE(4677), - [sym_parenthesized_list_splat] = STATE(4678), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3842), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4677), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(4425), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4686), + [sym_dictionary_splat] = STATE(4686), + [sym_parenthesized_list_splat] = STATE(4687), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3965), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4686), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(4394), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [416] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4783), - [sym_dictionary_splat] = STATE(4783), - [sym_parenthesized_list_splat] = STATE(4798), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3947), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4783), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(4425), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1339), - [anon_sym_COMMA] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4889), + [sym_dictionary_splat] = STATE(4889), + [sym_parenthesized_list_splat] = STATE(4890), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3875), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4889), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(4394), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1350), + [anon_sym_COMMA] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [417] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4773), - [sym_dictionary_splat] = STATE(4773), - [sym_parenthesized_list_splat] = STATE(4774), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3891), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4773), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(4425), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1341), - [anon_sym_COMMA] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4755), + [sym_dictionary_splat] = STATE(4755), + [sym_parenthesized_list_splat] = STATE(4757), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3877), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4755), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(4394), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1352), + [anon_sym_COMMA] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [418] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4725), - [sym_dictionary_splat] = STATE(4725), - [sym_parenthesized_list_splat] = STATE(4729), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3995), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4725), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(4425), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1343), - [anon_sym_COMMA] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4843), + [sym_dictionary_splat] = STATE(4843), + [sym_parenthesized_list_splat] = STATE(4844), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3931), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4843), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(4394), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1354), + [anon_sym_COMMA] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [419] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4593), - [sym_dictionary_splat] = STATE(4593), - [sym_parenthesized_list_splat] = STATE(4594), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3905), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4593), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(4425), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1345), - [anon_sym_COMMA] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4606), + [sym_dictionary_splat] = STATE(4606), + [sym_parenthesized_list_splat] = STATE(4607), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3940), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4606), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(4394), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1356), + [anon_sym_COMMA] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [420] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4646), - [sym_dictionary_splat] = STATE(4646), - [sym_parenthesized_list_splat] = STATE(4647), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3938), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4646), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(4425), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1347), - [anon_sym_COMMA] = ACTIONS(1269), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4655), + [sym_dictionary_splat] = STATE(4655), + [sym_parenthesized_list_splat] = STATE(4656), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3946), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4655), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(4394), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1358), + [anon_sym_COMMA] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [421] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4677), - [sym_dictionary_splat] = STATE(4677), - [sym_parenthesized_list_splat] = STATE(4678), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3842), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4677), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(4425), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1349), - [anon_sym_COMMA] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4686), + [sym_dictionary_splat] = STATE(4686), + [sym_parenthesized_list_splat] = STATE(4687), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3965), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4686), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(4394), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1360), + [anon_sym_COMMA] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [422] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4702), - [sym_dictionary_splat] = STATE(4702), - [sym_parenthesized_list_splat] = STATE(4703), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3840), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4702), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(4425), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1351), - [anon_sym_COMMA] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4712), + [sym_dictionary_splat] = STATE(4712), + [sym_parenthesized_list_splat] = STATE(4713), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3956), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4712), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(4394), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1362), + [anon_sym_COMMA] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [423] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4745), - [sym_dictionary_splat] = STATE(4745), - [sym_parenthesized_list_splat] = STATE(4746), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3965), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4745), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(4425), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1353), - [anon_sym_COMMA] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4760), + [sym_dictionary_splat] = STATE(4760), + [sym_parenthesized_list_splat] = STATE(4761), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3964), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4760), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(4394), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1364), + [anon_sym_COMMA] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [424] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4775), - [sym_dictionary_splat] = STATE(4775), - [sym_parenthesized_list_splat] = STATE(4776), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3861), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4775), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(4425), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1317), - [anon_sym_COMMA] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4786), + [sym_dictionary_splat] = STATE(4786), + [sym_parenthesized_list_splat] = STATE(4787), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3968), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4786), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(4394), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1328), + [anon_sym_COMMA] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [425] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4725), - [sym_dictionary_splat] = STATE(4725), - [sym_parenthesized_list_splat] = STATE(4729), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3995), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4725), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(5039), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_COMMA] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4843), + [sym_dictionary_splat] = STATE(4843), + [sym_parenthesized_list_splat] = STATE(4844), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3931), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4843), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(5041), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1320), + [anon_sym_COMMA] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [426] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4725), - [sym_dictionary_splat] = STATE(4725), - [sym_parenthesized_list_splat] = STATE(4729), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3995), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4725), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4843), + [sym_dictionary_splat] = STATE(4843), + [sym_parenthesized_list_splat] = STATE(4844), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3931), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4843), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), [sym_c_type] = STATE(5048), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_COMMA] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1320), + [anon_sym_COMMA] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [427] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4725), - [sym_dictionary_splat] = STATE(4725), - [sym_parenthesized_list_splat] = STATE(4729), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3995), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4725), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(5052), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_COMMA] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4843), + [sym_dictionary_splat] = STATE(4843), + [sym_parenthesized_list_splat] = STATE(4844), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3931), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4843), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(5054), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1320), + [anon_sym_COMMA] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [428] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4725), - [sym_dictionary_splat] = STATE(4725), - [sym_parenthesized_list_splat] = STATE(4729), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3995), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4725), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(5056), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_COMMA] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4843), + [sym_dictionary_splat] = STATE(4843), + [sym_parenthesized_list_splat] = STATE(4844), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3931), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4843), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(5060), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1320), + [anon_sym_COMMA] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [429] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4725), - [sym_dictionary_splat] = STATE(4725), - [sym_parenthesized_list_splat] = STATE(4729), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3995), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4725), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(5186), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_COMMA] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4843), + [sym_dictionary_splat] = STATE(4843), + [sym_parenthesized_list_splat] = STATE(4844), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3931), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4843), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(5080), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1320), + [anon_sym_COMMA] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [430] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4725), - [sym_dictionary_splat] = STATE(4725), - [sym_parenthesized_list_splat] = STATE(4729), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3995), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4725), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(5091), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_COMMA] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4843), + [sym_dictionary_splat] = STATE(4843), + [sym_parenthesized_list_splat] = STATE(4844), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3931), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4843), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(5083), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1320), + [anon_sym_COMMA] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [431] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4725), - [sym_dictionary_splat] = STATE(4725), - [sym_parenthesized_list_splat] = STATE(4729), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3995), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4725), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(5096), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_COMMA] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4843), + [sym_dictionary_splat] = STATE(4843), + [sym_parenthesized_list_splat] = STATE(4844), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3931), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4843), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(5088), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1320), + [anon_sym_COMMA] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [432] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4725), - [sym_dictionary_splat] = STATE(4725), - [sym_parenthesized_list_splat] = STATE(4729), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3995), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4725), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(4425), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1313), - [anon_sym_COMMA] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4843), + [sym_dictionary_splat] = STATE(4843), + [sym_parenthesized_list_splat] = STATE(4844), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3931), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4843), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(4394), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1324), + [anon_sym_COMMA] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [433] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4513), - [sym_parenthesized_list_splat] = STATE(4521), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3552), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4819), + [sym_parenthesized_list_splat] = STATE(4822), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3504), [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4650), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5225), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(5184), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_RPAREN] = ACTIONS(1361), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1363), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(1363), - [anon_sym_exec] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_api] = ACTIONS(1363), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4922), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5475), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(5036), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1370), + [anon_sym_RPAREN] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_exec] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1374), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [434] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4513), - [sym_parenthesized_list_splat] = STATE(4521), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3522), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4819), + [sym_parenthesized_list_splat] = STATE(4822), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3503), [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4695), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5314), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(5184), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1363), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(1363), - [anon_sym_exec] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_api] = ACTIONS(1363), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4706), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5326), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(5036), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1370), + [anon_sym_RPAREN] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_exec] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1374), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [435] = { - [sym_identifier] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_import] = ACTIONS(1371), - [anon_sym_cimport] = ACTIONS(1371), - [anon_sym_from] = ACTIONS(1371), - [anon_sym_LPAREN] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1373), - [anon_sym_print] = ACTIONS(1371), - [anon_sym_assert] = ACTIONS(1371), - [anon_sym_return] = ACTIONS(1371), - [anon_sym_del] = ACTIONS(1371), - [anon_sym_raise] = ACTIONS(1371), - [anon_sym_pass] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(1371), - [anon_sym_continue] = ACTIONS(1371), - [anon_sym_if] = ACTIONS(1371), - [anon_sym_elif] = ACTIONS(1371), - [anon_sym_else] = ACTIONS(1371), - [anon_sym_match] = ACTIONS(1371), - [anon_sym_async] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1371), - [anon_sym_while] = ACTIONS(1371), - [anon_sym_try] = ACTIONS(1371), - [anon_sym_finally] = ACTIONS(1371), - [anon_sym_with] = ACTIONS(1371), - [anon_sym_def] = ACTIONS(1371), - [anon_sym_global] = ACTIONS(1371), - [anon_sym_nonlocal] = ACTIONS(1371), - [anon_sym_exec] = ACTIONS(1371), - [anon_sym_type] = ACTIONS(1371), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1373), - [anon_sym_AT] = ACTIONS(1373), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_not] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_LT] = ACTIONS(1373), - [anon_sym_lambda] = ACTIONS(1371), - [anon_sym_yield] = ACTIONS(1371), - [sym_ellipsis] = ACTIONS(1373), - [anon_sym_None] = ACTIONS(1371), - [sym_integer] = ACTIONS(1371), - [sym_float] = ACTIONS(1373), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_api] = ACTIONS(1371), - [sym_true] = ACTIONS(1371), - [sym_false] = ACTIONS(1371), + [sym_identifier] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym_import] = ACTIONS(1382), + [anon_sym_cimport] = ACTIONS(1382), + [anon_sym_from] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_print] = ACTIONS(1382), + [anon_sym_assert] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_del] = ACTIONS(1382), + [anon_sym_raise] = ACTIONS(1382), + [anon_sym_pass] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_elif] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1382), + [anon_sym_match] = ACTIONS(1382), + [anon_sym_async] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_finally] = ACTIONS(1382), + [anon_sym_with] = ACTIONS(1382), + [anon_sym_def] = ACTIONS(1382), + [anon_sym_global] = ACTIONS(1382), + [anon_sym_nonlocal] = ACTIONS(1382), + [anon_sym_exec] = ACTIONS(1382), + [anon_sym_type] = ACTIONS(1382), + [anon_sym_class] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1384), + [anon_sym_AT] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_lambda] = ACTIONS(1382), + [anon_sym_yield] = ACTIONS(1382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1384), + [anon_sym_None] = ACTIONS(1382), + [sym_integer] = ACTIONS(1382), + [sym_float] = ACTIONS(1384), + [anon_sym_await] = ACTIONS(1382), + [anon_sym_api] = ACTIONS(1382), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1371), - [anon_sym_include] = ACTIONS(1371), - [anon_sym_DEF] = ACTIONS(1371), - [anon_sym_cdef] = ACTIONS(1371), - [anon_sym_cpdef] = ACTIONS(1371), - [anon_sym_int] = ACTIONS(1371), - [anon_sym_double] = ACTIONS(1371), - [anon_sym_complex] = ACTIONS(1371), - [anon_sym_new] = ACTIONS(1371), - [anon_sym_signed] = ACTIONS(1371), - [anon_sym_unsigned] = ACTIONS(1371), - [anon_sym_char] = ACTIONS(1371), - [anon_sym_short] = ACTIONS(1371), - [anon_sym_long] = ACTIONS(1371), - [anon_sym_const] = ACTIONS(1371), - [anon_sym_volatile] = ACTIONS(1371), - [anon_sym_ctypedef] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1371), - [anon_sym_union] = ACTIONS(1371), - [anon_sym_enum] = ACTIONS(1371), - [anon_sym_cppclass] = ACTIONS(1371), - [anon_sym_fused] = ACTIONS(1371), - [anon_sym_public] = ACTIONS(1371), - [anon_sym_packed] = ACTIONS(1371), - [anon_sym_inline] = ACTIONS(1371), - [anon_sym_readonly] = ACTIONS(1371), - [anon_sym_sizeof] = ACTIONS(1371), - [sym__dedent] = ACTIONS(1373), - [sym_string_start] = ACTIONS(1373), + [anon_sym_property] = ACTIONS(1382), + [anon_sym_include] = ACTIONS(1382), + [anon_sym_DEF] = ACTIONS(1382), + [anon_sym_cdef] = ACTIONS(1382), + [anon_sym_cpdef] = ACTIONS(1382), + [anon_sym_int] = ACTIONS(1382), + [anon_sym_double] = ACTIONS(1382), + [anon_sym_complex] = ACTIONS(1382), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_char] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_ctypedef] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_cppclass] = ACTIONS(1382), + [anon_sym_fused] = ACTIONS(1382), + [anon_sym_public] = ACTIONS(1382), + [anon_sym_packed] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym_readonly] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1382), + [sym__dedent] = ACTIONS(1384), + [sym_string_start] = ACTIONS(1384), }, [436] = { - [sym_identifier] = ACTIONS(1375), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(1375), - [anon_sym_cimport] = ACTIONS(1375), - [anon_sym_from] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_print] = ACTIONS(1375), - [anon_sym_assert] = ACTIONS(1375), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_del] = ACTIONS(1375), - [anon_sym_raise] = ACTIONS(1375), - [anon_sym_pass] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1375), - [anon_sym_continue] = ACTIONS(1375), - [anon_sym_if] = ACTIONS(1375), - [anon_sym_elif] = ACTIONS(1375), - [anon_sym_else] = ACTIONS(1375), - [anon_sym_match] = ACTIONS(1375), - [anon_sym_async] = ACTIONS(1375), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_while] = ACTIONS(1375), - [anon_sym_try] = ACTIONS(1375), - [anon_sym_finally] = ACTIONS(1375), - [anon_sym_with] = ACTIONS(1375), - [anon_sym_def] = ACTIONS(1375), - [anon_sym_global] = ACTIONS(1375), - [anon_sym_nonlocal] = ACTIONS(1375), - [anon_sym_exec] = ACTIONS(1375), - [anon_sym_type] = ACTIONS(1375), - [anon_sym_class] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1377), - [anon_sym_AT] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_not] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_lambda] = ACTIONS(1375), - [anon_sym_yield] = ACTIONS(1375), - [sym_ellipsis] = ACTIONS(1377), - [anon_sym_None] = ACTIONS(1375), - [sym_integer] = ACTIONS(1375), - [sym_float] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(1375), - [anon_sym_api] = ACTIONS(1375), - [sym_true] = ACTIONS(1375), - [sym_false] = ACTIONS(1375), + [sym_identifier] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_import] = ACTIONS(1386), + [anon_sym_cimport] = ACTIONS(1386), + [anon_sym_from] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_print] = ACTIONS(1386), + [anon_sym_assert] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_del] = ACTIONS(1386), + [anon_sym_raise] = ACTIONS(1386), + [anon_sym_pass] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_elif] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_match] = ACTIONS(1386), + [anon_sym_async] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_try] = ACTIONS(1386), + [anon_sym_finally] = ACTIONS(1386), + [anon_sym_with] = ACTIONS(1386), + [anon_sym_def] = ACTIONS(1386), + [anon_sym_global] = ACTIONS(1386), + [anon_sym_nonlocal] = ACTIONS(1386), + [anon_sym_exec] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_class] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_AT] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_not] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_lambda] = ACTIONS(1386), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + [anon_sym_None] = ACTIONS(1386), + [sym_integer] = ACTIONS(1386), + [sym_float] = ACTIONS(1388), + [anon_sym_await] = ACTIONS(1386), + [anon_sym_api] = ACTIONS(1386), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1375), - [anon_sym_include] = ACTIONS(1375), - [anon_sym_DEF] = ACTIONS(1375), - [anon_sym_cdef] = ACTIONS(1375), - [anon_sym_cpdef] = ACTIONS(1375), - [anon_sym_int] = ACTIONS(1375), - [anon_sym_double] = ACTIONS(1375), - [anon_sym_complex] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1375), - [anon_sym_signed] = ACTIONS(1375), - [anon_sym_unsigned] = ACTIONS(1375), - [anon_sym_char] = ACTIONS(1375), - [anon_sym_short] = ACTIONS(1375), - [anon_sym_long] = ACTIONS(1375), - [anon_sym_const] = ACTIONS(1375), - [anon_sym_volatile] = ACTIONS(1375), - [anon_sym_ctypedef] = ACTIONS(1375), - [anon_sym_struct] = ACTIONS(1375), - [anon_sym_union] = ACTIONS(1375), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_cppclass] = ACTIONS(1375), - [anon_sym_fused] = ACTIONS(1375), - [anon_sym_public] = ACTIONS(1375), - [anon_sym_packed] = ACTIONS(1375), - [anon_sym_inline] = ACTIONS(1375), - [anon_sym_readonly] = ACTIONS(1375), - [anon_sym_sizeof] = ACTIONS(1375), - [sym__dedent] = ACTIONS(1377), - [sym_string_start] = ACTIONS(1377), + [anon_sym_property] = ACTIONS(1386), + [anon_sym_include] = ACTIONS(1386), + [anon_sym_DEF] = ACTIONS(1386), + [anon_sym_cdef] = ACTIONS(1386), + [anon_sym_cpdef] = ACTIONS(1386), + [anon_sym_int] = ACTIONS(1386), + [anon_sym_double] = ACTIONS(1386), + [anon_sym_complex] = ACTIONS(1386), + [anon_sym_new] = ACTIONS(1386), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_ctypedef] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_cppclass] = ACTIONS(1386), + [anon_sym_fused] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_packed] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1386), + [sym__dedent] = ACTIONS(1388), + [sym_string_start] = ACTIONS(1388), }, [437] = { - [sym_identifier] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_import] = ACTIONS(1379), - [anon_sym_cimport] = ACTIONS(1379), - [anon_sym_from] = ACTIONS(1379), - [anon_sym_LPAREN] = ACTIONS(1381), - [anon_sym_STAR] = ACTIONS(1381), - [anon_sym_print] = ACTIONS(1379), - [anon_sym_assert] = ACTIONS(1379), - [anon_sym_return] = ACTIONS(1379), - [anon_sym_del] = ACTIONS(1379), - [anon_sym_raise] = ACTIONS(1379), - [anon_sym_pass] = ACTIONS(1379), - [anon_sym_break] = ACTIONS(1379), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_elif] = ACTIONS(1379), - [anon_sym_else] = ACTIONS(1379), - [anon_sym_match] = ACTIONS(1379), - [anon_sym_async] = ACTIONS(1379), - [anon_sym_for] = ACTIONS(1379), - [anon_sym_while] = ACTIONS(1379), - [anon_sym_try] = ACTIONS(1379), - [anon_sym_finally] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(1379), - [anon_sym_global] = ACTIONS(1379), - [anon_sym_nonlocal] = ACTIONS(1379), - [anon_sym_exec] = ACTIONS(1379), - [anon_sym_type] = ACTIONS(1379), - [anon_sym_class] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_AT] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(1381), - [anon_sym_not] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(1381), - [anon_sym_lambda] = ACTIONS(1379), - [anon_sym_yield] = ACTIONS(1379), - [sym_ellipsis] = ACTIONS(1381), - [anon_sym_None] = ACTIONS(1379), - [sym_integer] = ACTIONS(1379), - [sym_float] = ACTIONS(1381), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_api] = ACTIONS(1379), - [sym_true] = ACTIONS(1379), - [sym_false] = ACTIONS(1379), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1379), - [anon_sym_include] = ACTIONS(1379), - [anon_sym_DEF] = ACTIONS(1379), - [anon_sym_cdef] = ACTIONS(1379), - [anon_sym_cpdef] = ACTIONS(1379), - [anon_sym_int] = ACTIONS(1379), - [anon_sym_double] = ACTIONS(1379), - [anon_sym_complex] = ACTIONS(1379), - [anon_sym_new] = ACTIONS(1379), - [anon_sym_signed] = ACTIONS(1379), - [anon_sym_unsigned] = ACTIONS(1379), - [anon_sym_char] = ACTIONS(1379), - [anon_sym_short] = ACTIONS(1379), - [anon_sym_long] = ACTIONS(1379), - [anon_sym_const] = ACTIONS(1379), - [anon_sym_volatile] = ACTIONS(1379), - [anon_sym_ctypedef] = ACTIONS(1379), - [anon_sym_struct] = ACTIONS(1379), - [anon_sym_union] = ACTIONS(1379), - [anon_sym_enum] = ACTIONS(1379), - [anon_sym_cppclass] = ACTIONS(1379), - [anon_sym_fused] = ACTIONS(1379), - [anon_sym_public] = ACTIONS(1379), - [anon_sym_packed] = ACTIONS(1379), - [anon_sym_inline] = ACTIONS(1379), - [anon_sym_readonly] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1379), - [sym__dedent] = ACTIONS(1381), - [sym_string_start] = ACTIONS(1381), - }, - [438] = { - [sym_identifier] = ACTIONS(1383), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_import] = ACTIONS(1383), - [anon_sym_cimport] = ACTIONS(1383), - [anon_sym_from] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_print] = ACTIONS(1383), - [anon_sym_assert] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(1383), - [anon_sym_del] = ACTIONS(1383), - [anon_sym_raise] = ACTIONS(1383), - [anon_sym_pass] = ACTIONS(1383), - [anon_sym_break] = ACTIONS(1383), - [anon_sym_continue] = ACTIONS(1383), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_elif] = ACTIONS(1383), - [anon_sym_else] = ACTIONS(1383), - [anon_sym_match] = ACTIONS(1383), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_for] = ACTIONS(1383), - [anon_sym_while] = ACTIONS(1383), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_finally] = ACTIONS(1383), - [anon_sym_with] = ACTIONS(1383), - [anon_sym_def] = ACTIONS(1383), - [anon_sym_global] = ACTIONS(1383), - [anon_sym_nonlocal] = ACTIONS(1383), - [anon_sym_exec] = ACTIONS(1383), - [anon_sym_type] = ACTIONS(1383), - [anon_sym_class] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_AT] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_not] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT] = ACTIONS(1385), - [anon_sym_lambda] = ACTIONS(1383), - [anon_sym_yield] = ACTIONS(1383), - [sym_ellipsis] = ACTIONS(1385), - [anon_sym_None] = ACTIONS(1383), - [sym_integer] = ACTIONS(1383), - [sym_float] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_api] = ACTIONS(1383), - [sym_true] = ACTIONS(1383), - [sym_false] = ACTIONS(1383), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1383), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_DEF] = ACTIONS(1383), - [anon_sym_cdef] = ACTIONS(1383), - [anon_sym_cpdef] = ACTIONS(1383), - [anon_sym_int] = ACTIONS(1383), - [anon_sym_double] = ACTIONS(1383), - [anon_sym_complex] = ACTIONS(1383), - [anon_sym_new] = ACTIONS(1383), - [anon_sym_signed] = ACTIONS(1383), - [anon_sym_unsigned] = ACTIONS(1383), - [anon_sym_char] = ACTIONS(1383), - [anon_sym_short] = ACTIONS(1383), - [anon_sym_long] = ACTIONS(1383), - [anon_sym_const] = ACTIONS(1383), - [anon_sym_volatile] = ACTIONS(1383), - [anon_sym_ctypedef] = ACTIONS(1383), - [anon_sym_struct] = ACTIONS(1383), - [anon_sym_union] = ACTIONS(1383), - [anon_sym_enum] = ACTIONS(1383), - [anon_sym_cppclass] = ACTIONS(1383), - [anon_sym_fused] = ACTIONS(1383), - [anon_sym_public] = ACTIONS(1383), - [anon_sym_packed] = ACTIONS(1383), - [anon_sym_inline] = ACTIONS(1383), - [anon_sym_readonly] = ACTIONS(1383), - [anon_sym_sizeof] = ACTIONS(1383), - [sym__dedent] = ACTIONS(1385), - [sym_string_start] = ACTIONS(1385), - }, - [439] = { - [sym_identifier] = ACTIONS(1387), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_import] = ACTIONS(1387), - [anon_sym_cimport] = ACTIONS(1387), - [anon_sym_from] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_print] = ACTIONS(1387), - [anon_sym_assert] = ACTIONS(1387), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_del] = ACTIONS(1387), - [anon_sym_raise] = ACTIONS(1387), - [anon_sym_pass] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1387), - [anon_sym_continue] = ACTIONS(1387), - [anon_sym_if] = ACTIONS(1387), - [anon_sym_elif] = ACTIONS(1387), - [anon_sym_else] = ACTIONS(1387), - [anon_sym_match] = ACTIONS(1387), - [anon_sym_async] = ACTIONS(1387), - [anon_sym_for] = ACTIONS(1387), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_try] = ACTIONS(1387), - [anon_sym_finally] = ACTIONS(1387), - [anon_sym_with] = ACTIONS(1387), - [anon_sym_def] = ACTIONS(1387), - [anon_sym_global] = ACTIONS(1387), - [anon_sym_nonlocal] = ACTIONS(1387), - [anon_sym_exec] = ACTIONS(1387), - [anon_sym_type] = ACTIONS(1387), - [anon_sym_class] = ACTIONS(1387), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_AT] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_not] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1389), - [anon_sym_lambda] = ACTIONS(1387), - [anon_sym_yield] = ACTIONS(1387), - [sym_ellipsis] = ACTIONS(1389), - [anon_sym_None] = ACTIONS(1387), - [sym_integer] = ACTIONS(1387), - [sym_float] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_api] = ACTIONS(1387), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1387), - [anon_sym_include] = ACTIONS(1387), - [anon_sym_DEF] = ACTIONS(1387), - [anon_sym_cdef] = ACTIONS(1387), - [anon_sym_cpdef] = ACTIONS(1387), - [anon_sym_int] = ACTIONS(1387), - [anon_sym_double] = ACTIONS(1387), - [anon_sym_complex] = ACTIONS(1387), - [anon_sym_new] = ACTIONS(1387), - [anon_sym_signed] = ACTIONS(1387), - [anon_sym_unsigned] = ACTIONS(1387), - [anon_sym_char] = ACTIONS(1387), - [anon_sym_short] = ACTIONS(1387), - [anon_sym_long] = ACTIONS(1387), - [anon_sym_const] = ACTIONS(1387), - [anon_sym_volatile] = ACTIONS(1387), - [anon_sym_ctypedef] = ACTIONS(1387), - [anon_sym_struct] = ACTIONS(1387), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_enum] = ACTIONS(1387), - [anon_sym_cppclass] = ACTIONS(1387), - [anon_sym_fused] = ACTIONS(1387), - [anon_sym_public] = ACTIONS(1387), - [anon_sym_packed] = ACTIONS(1387), - [anon_sym_inline] = ACTIONS(1387), - [anon_sym_readonly] = ACTIONS(1387), - [anon_sym_sizeof] = ACTIONS(1387), - [sym__dedent] = ACTIONS(1389), - [sym_string_start] = ACTIONS(1389), - }, - [440] = { - [sym_list_splat_pattern] = STATE(1985), - [sym_primary_expression] = STATE(1946), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_attribute] = STATE(1981), - [sym_subscript] = STATE(1981), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_list_splat_pattern] = STATE(1975), + [sym_primary_expression] = STATE(1943), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_attribute] = STATE(2021), + [sym_subscript] = STATE(2021), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(81), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_from] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_print] = ACTIONS(1182), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(836), - [anon_sym_COLON] = ACTIONS(836), - [anon_sym_match] = ACTIONS(1182), - [anon_sym_async] = ACTIONS(1182), - [anon_sym_in] = ACTIONS(836), - [anon_sym_with] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(834), - [anon_sym_exec] = ACTIONS(1182), - [anon_sym_EQ] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(1184), - [anon_sym_AT] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_from] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_print] = ACTIONS(1189), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_match] = ACTIONS(1189), + [anon_sym_async] = ACTIONS(1189), + [anon_sym_in] = ACTIONS(565), + [anon_sym_with] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_exec] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_AT] = ACTIONS(563), [anon_sym_DASH] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(563), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(834), - [anon_sym_SLASH_SLASH] = ACTIONS(834), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_SLASH_SLASH] = ACTIONS(563), [anon_sym_AMP] = ACTIONS(65), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_api] = ACTIONS(1182), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(1197), + [anon_sym_api] = ACTIONS(1189), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_nogil] = ACTIONS(836), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(834), - [sym_string_start] = ACTIONS(105), + [anon_sym_nogil] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(563), + [sym_string_start] = ACTIONS(107), }, - [441] = { - [sym_list_splat_pattern] = STATE(1985), - [sym_primary_expression] = STATE(1946), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_attribute] = STATE(1981), - [sym_subscript] = STATE(1981), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(81), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_from] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_print] = ACTIONS(1182), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_if] = ACTIONS(836), - [anon_sym_COLON] = ACTIONS(834), - [anon_sym_match] = ACTIONS(1182), - [anon_sym_async] = ACTIONS(1182), - [anon_sym_in] = ACTIONS(836), - [anon_sym_with] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(834), - [anon_sym_exec] = ACTIONS(1182), - [anon_sym_EQ] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(1184), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(834), - [anon_sym_SLASH_SLASH] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(65), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [sym_ellipsis] = ACTIONS(77), - [anon_sym_None] = ACTIONS(79), - [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_api] = ACTIONS(1182), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_nogil] = ACTIONS(836), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(834), - [sym_string_start] = ACTIONS(105), - }, - [442] = { - [sym_list_splat_pattern] = STATE(2402), - [sym_primary_expression] = STATE(3025), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1136), - [anon_sym_SEMI] = ACTIONS(1192), - [anon_sym_DOT] = ACTIONS(1194), - [anon_sym_from] = ACTIONS(1197), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1192), - [anon_sym_as] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_print] = ACTIONS(1201), - [anon_sym_GT_GT] = ACTIONS(1391), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_COLON] = ACTIONS(1192), - [anon_sym_match] = ACTIONS(1201), - [anon_sym_async] = ACTIONS(1201), - [anon_sym_in] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(1197), - [anon_sym_STAR_STAR] = ACTIONS(1391), - [anon_sym_exec] = ACTIONS(1201), - [anon_sym_EQ] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_AT] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_PIPE] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_not] = ACTIONS(1197), - [anon_sym_and] = ACTIONS(1197), - [anon_sym_or] = ACTIONS(1197), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_PERCENT] = ACTIONS(1391), - [anon_sym_SLASH_SLASH] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_LT_LT] = ACTIONS(1391), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_is] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(1207), - [anon_sym_LT_EQ] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_BANG_EQ] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_LT_GT] = ACTIONS(1192), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1209), - [anon_sym_api] = ACTIONS(1201), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [438] = { + [sym_identifier] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym_import] = ACTIONS(1390), + [anon_sym_cimport] = ACTIONS(1390), + [anon_sym_from] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_print] = ACTIONS(1390), + [anon_sym_assert] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_del] = ACTIONS(1390), + [anon_sym_raise] = ACTIONS(1390), + [anon_sym_pass] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_elif] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_match] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1390), + [anon_sym_finally] = ACTIONS(1390), + [anon_sym_with] = ACTIONS(1390), + [anon_sym_def] = ACTIONS(1390), + [anon_sym_global] = ACTIONS(1390), + [anon_sym_nonlocal] = ACTIONS(1390), + [anon_sym_exec] = ACTIONS(1390), + [anon_sym_type] = ACTIONS(1390), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1392), + [anon_sym_AT] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1392), + [anon_sym_lambda] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1392), + [anon_sym_None] = ACTIONS(1390), + [sym_integer] = ACTIONS(1390), + [sym_float] = ACTIONS(1392), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_api] = ACTIONS(1390), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_nogil] = ACTIONS(1197), - [anon_sym_sizeof] = ACTIONS(1142), - [sym__newline] = ACTIONS(1192), - [sym_string_start] = ACTIONS(1144), + [anon_sym_property] = ACTIONS(1390), + [anon_sym_include] = ACTIONS(1390), + [anon_sym_DEF] = ACTIONS(1390), + [anon_sym_cdef] = ACTIONS(1390), + [anon_sym_cpdef] = ACTIONS(1390), + [anon_sym_int] = ACTIONS(1390), + [anon_sym_double] = ACTIONS(1390), + [anon_sym_complex] = ACTIONS(1390), + [anon_sym_new] = ACTIONS(1390), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_char] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_ctypedef] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_cppclass] = ACTIONS(1390), + [anon_sym_fused] = ACTIONS(1390), + [anon_sym_public] = ACTIONS(1390), + [anon_sym_packed] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym_readonly] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1390), + [sym__dedent] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1392), }, - [443] = { + [439] = { [sym_identifier] = ACTIONS(1394), [anon_sym_SEMI] = ACTIONS(1396), [anon_sym_import] = ACTIONS(1394), @@ -70898,11 +71028,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1394), [anon_sym_continue] = ACTIONS(1394), [anon_sym_if] = ACTIONS(1394), + [anon_sym_elif] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), [anon_sym_match] = ACTIONS(1394), [anon_sym_async] = ACTIONS(1394), [anon_sym_for] = ACTIONS(1394), [anon_sym_while] = ACTIONS(1394), [anon_sym_try] = ACTIONS(1394), + [anon_sym_finally] = ACTIONS(1394), [anon_sym_with] = ACTIONS(1394), [anon_sym_def] = ACTIONS(1394), [anon_sym_global] = ACTIONS(1394), @@ -70921,7 +71054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1396), [anon_sym_lambda] = ACTIONS(1394), [anon_sym_yield] = ACTIONS(1394), - [sym_ellipsis] = ACTIONS(1396), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1396), [anon_sym_None] = ACTIONS(1394), [sym_integer] = ACTIONS(1394), [sym_float] = ACTIONS(1396), @@ -70961,7 +71094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1396), [sym_string_start] = ACTIONS(1396), }, - [444] = { + [440] = { [sym_identifier] = ACTIONS(1398), [anon_sym_SEMI] = ACTIONS(1400), [anon_sym_import] = ACTIONS(1398), @@ -70978,11 +71111,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1398), [anon_sym_continue] = ACTIONS(1398), [anon_sym_if] = ACTIONS(1398), + [anon_sym_elif] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), [anon_sym_match] = ACTIONS(1398), [anon_sym_async] = ACTIONS(1398), [anon_sym_for] = ACTIONS(1398), [anon_sym_while] = ACTIONS(1398), [anon_sym_try] = ACTIONS(1398), + [anon_sym_finally] = ACTIONS(1398), [anon_sym_with] = ACTIONS(1398), [anon_sym_def] = ACTIONS(1398), [anon_sym_global] = ACTIONS(1398), @@ -71001,7 +71137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1400), [anon_sym_lambda] = ACTIONS(1398), [anon_sym_yield] = ACTIONS(1398), - [sym_ellipsis] = ACTIONS(1400), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1400), [anon_sym_None] = ACTIONS(1398), [sym_integer] = ACTIONS(1398), [sym_float] = ACTIONS(1400), @@ -71041,17944 +71177,18302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1400), [sym_string_start] = ACTIONS(1400), }, + [441] = { + [sym_list_splat_pattern] = STATE(1975), + [sym_primary_expression] = STATE(1943), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_attribute] = STATE(2021), + [sym_subscript] = STATE(2021), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_from] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_print] = ACTIONS(1189), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_if] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_match] = ACTIONS(1189), + [anon_sym_async] = ACTIONS(1189), + [anon_sym_in] = ACTIONS(565), + [anon_sym_with] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_exec] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_SLASH_SLASH] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(1197), + [anon_sym_api] = ACTIONS(1189), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_nogil] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(563), + [sym_string_start] = ACTIONS(107), + }, + [442] = { + [sym_list_splat_pattern] = STATE(2340), + [sym_primary_expression] = STATE(3038), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym_DOT] = ACTIONS(1201), + [anon_sym_from] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_COMMA] = ACTIONS(1199), + [anon_sym_as] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_print] = ACTIONS(1208), + [anon_sym_GT_GT] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_COLON] = ACTIONS(1199), + [anon_sym_match] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_in] = ACTIONS(1204), + [anon_sym_with] = ACTIONS(1204), + [anon_sym_STAR_STAR] = ACTIONS(1402), + [anon_sym_exec] = ACTIONS(1208), + [anon_sym_EQ] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_AT] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_not] = ACTIONS(1204), + [anon_sym_and] = ACTIONS(1204), + [anon_sym_or] = ACTIONS(1204), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_CARET] = ACTIONS(1402), + [anon_sym_LT_LT] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_is] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_LT_EQ] = ACTIONS(1199), + [anon_sym_EQ_EQ] = ACTIONS(1199), + [anon_sym_BANG_EQ] = ACTIONS(1199), + [anon_sym_GT_EQ] = ACTIONS(1199), + [anon_sym_GT] = ACTIONS(1204), + [anon_sym_LT_GT] = ACTIONS(1199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1216), + [anon_sym_api] = ACTIONS(1208), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_nogil] = ACTIONS(1204), + [anon_sym_sizeof] = ACTIONS(1149), + [sym__newline] = ACTIONS(1199), + [sym_string_start] = ACTIONS(1151), + }, + [443] = { + [sym_identifier] = ACTIONS(1405), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_import] = ACTIONS(1405), + [anon_sym_cimport] = ACTIONS(1405), + [anon_sym_from] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_print] = ACTIONS(1405), + [anon_sym_assert] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1405), + [anon_sym_del] = ACTIONS(1405), + [anon_sym_raise] = ACTIONS(1405), + [anon_sym_pass] = ACTIONS(1405), + [anon_sym_break] = ACTIONS(1405), + [anon_sym_continue] = ACTIONS(1405), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_match] = ACTIONS(1405), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_while] = ACTIONS(1405), + [anon_sym_try] = ACTIONS(1405), + [anon_sym_with] = ACTIONS(1405), + [anon_sym_def] = ACTIONS(1405), + [anon_sym_global] = ACTIONS(1405), + [anon_sym_nonlocal] = ACTIONS(1405), + [anon_sym_exec] = ACTIONS(1405), + [anon_sym_type] = ACTIONS(1405), + [anon_sym_class] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(1407), + [anon_sym_AT] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_not] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1407), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_LT] = ACTIONS(1407), + [anon_sym_lambda] = ACTIONS(1405), + [anon_sym_yield] = ACTIONS(1405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1407), + [anon_sym_None] = ACTIONS(1405), + [sym_integer] = ACTIONS(1405), + [sym_float] = ACTIONS(1407), + [anon_sym_await] = ACTIONS(1405), + [anon_sym_api] = ACTIONS(1405), + [sym_true] = ACTIONS(1405), + [sym_false] = ACTIONS(1405), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1405), + [anon_sym_include] = ACTIONS(1405), + [anon_sym_DEF] = ACTIONS(1405), + [anon_sym_cdef] = ACTIONS(1405), + [anon_sym_cpdef] = ACTIONS(1405), + [anon_sym_int] = ACTIONS(1405), + [anon_sym_double] = ACTIONS(1405), + [anon_sym_complex] = ACTIONS(1405), + [anon_sym_new] = ACTIONS(1405), + [anon_sym_signed] = ACTIONS(1405), + [anon_sym_unsigned] = ACTIONS(1405), + [anon_sym_char] = ACTIONS(1405), + [anon_sym_short] = ACTIONS(1405), + [anon_sym_long] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_volatile] = ACTIONS(1405), + [anon_sym_ctypedef] = ACTIONS(1405), + [anon_sym_struct] = ACTIONS(1405), + [anon_sym_union] = ACTIONS(1405), + [anon_sym_enum] = ACTIONS(1405), + [anon_sym_cppclass] = ACTIONS(1405), + [anon_sym_fused] = ACTIONS(1405), + [anon_sym_public] = ACTIONS(1405), + [anon_sym_packed] = ACTIONS(1405), + [anon_sym_inline] = ACTIONS(1405), + [anon_sym_readonly] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1405), + [sym__dedent] = ACTIONS(1407), + [sym_string_start] = ACTIONS(1407), + }, + [444] = { + [sym_identifier] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(1409), + [anon_sym_cimport] = ACTIONS(1409), + [anon_sym_from] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_print] = ACTIONS(1409), + [anon_sym_assert] = ACTIONS(1409), + [anon_sym_return] = ACTIONS(1409), + [anon_sym_del] = ACTIONS(1409), + [anon_sym_raise] = ACTIONS(1409), + [anon_sym_pass] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1409), + [anon_sym_continue] = ACTIONS(1409), + [anon_sym_if] = ACTIONS(1409), + [anon_sym_match] = ACTIONS(1409), + [anon_sym_async] = ACTIONS(1409), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_try] = ACTIONS(1409), + [anon_sym_with] = ACTIONS(1409), + [anon_sym_def] = ACTIONS(1409), + [anon_sym_global] = ACTIONS(1409), + [anon_sym_nonlocal] = ACTIONS(1409), + [anon_sym_exec] = ACTIONS(1409), + [anon_sym_type] = ACTIONS(1409), + [anon_sym_class] = ACTIONS(1409), + [anon_sym_LBRACK] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT] = ACTIONS(1411), + [anon_sym_lambda] = ACTIONS(1409), + [anon_sym_yield] = ACTIONS(1409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), + [anon_sym_None] = ACTIONS(1409), + [sym_integer] = ACTIONS(1409), + [sym_float] = ACTIONS(1411), + [anon_sym_await] = ACTIONS(1409), + [anon_sym_api] = ACTIONS(1409), + [sym_true] = ACTIONS(1409), + [sym_false] = ACTIONS(1409), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1409), + [anon_sym_include] = ACTIONS(1409), + [anon_sym_DEF] = ACTIONS(1409), + [anon_sym_cdef] = ACTIONS(1409), + [anon_sym_cpdef] = ACTIONS(1409), + [anon_sym_int] = ACTIONS(1409), + [anon_sym_double] = ACTIONS(1409), + [anon_sym_complex] = ACTIONS(1409), + [anon_sym_new] = ACTIONS(1409), + [anon_sym_signed] = ACTIONS(1409), + [anon_sym_unsigned] = ACTIONS(1409), + [anon_sym_char] = ACTIONS(1409), + [anon_sym_short] = ACTIONS(1409), + [anon_sym_long] = ACTIONS(1409), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_volatile] = ACTIONS(1409), + [anon_sym_ctypedef] = ACTIONS(1409), + [anon_sym_struct] = ACTIONS(1409), + [anon_sym_union] = ACTIONS(1409), + [anon_sym_enum] = ACTIONS(1409), + [anon_sym_cppclass] = ACTIONS(1409), + [anon_sym_fused] = ACTIONS(1409), + [anon_sym_public] = ACTIONS(1409), + [anon_sym_packed] = ACTIONS(1409), + [anon_sym_inline] = ACTIONS(1409), + [anon_sym_readonly] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1409), + [sym__dedent] = ACTIONS(1411), + [sym_string_start] = ACTIONS(1411), + }, [445] = { - [sym_identifier] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_import] = ACTIONS(1402), - [anon_sym_cimport] = ACTIONS(1402), - [anon_sym_from] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_print] = ACTIONS(1402), - [anon_sym_assert] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_del] = ACTIONS(1402), - [anon_sym_raise] = ACTIONS(1402), - [anon_sym_pass] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_async] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_try] = ACTIONS(1402), - [anon_sym_with] = ACTIONS(1402), - [anon_sym_def] = ACTIONS(1402), - [anon_sym_global] = ACTIONS(1402), - [anon_sym_nonlocal] = ACTIONS(1402), - [anon_sym_exec] = ACTIONS(1402), - [anon_sym_type] = ACTIONS(1402), - [anon_sym_class] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_AT] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1404), - [anon_sym_not] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1404), - [anon_sym_lambda] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1402), - [sym_ellipsis] = ACTIONS(1404), - [anon_sym_None] = ACTIONS(1402), - [sym_integer] = ACTIONS(1402), - [sym_float] = ACTIONS(1404), - [anon_sym_await] = ACTIONS(1402), - [anon_sym_api] = ACTIONS(1402), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), + [sym_identifier] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_import] = ACTIONS(1413), + [anon_sym_cimport] = ACTIONS(1413), + [anon_sym_from] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_print] = ACTIONS(1413), + [anon_sym_assert] = ACTIONS(1413), + [anon_sym_return] = ACTIONS(1413), + [anon_sym_del] = ACTIONS(1413), + [anon_sym_raise] = ACTIONS(1413), + [anon_sym_pass] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1413), + [anon_sym_continue] = ACTIONS(1413), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_match] = ACTIONS(1413), + [anon_sym_async] = ACTIONS(1413), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_try] = ACTIONS(1413), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_def] = ACTIONS(1413), + [anon_sym_global] = ACTIONS(1413), + [anon_sym_nonlocal] = ACTIONS(1413), + [anon_sym_exec] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_class] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1415), + [anon_sym_lambda] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_None] = ACTIONS(1413), + [sym_integer] = ACTIONS(1413), + [sym_float] = ACTIONS(1415), + [anon_sym_await] = ACTIONS(1413), + [anon_sym_api] = ACTIONS(1413), + [sym_true] = ACTIONS(1413), + [sym_false] = ACTIONS(1413), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1402), - [anon_sym_include] = ACTIONS(1402), - [anon_sym_DEF] = ACTIONS(1402), - [anon_sym_cdef] = ACTIONS(1402), - [anon_sym_cpdef] = ACTIONS(1402), - [anon_sym_int] = ACTIONS(1402), - [anon_sym_double] = ACTIONS(1402), - [anon_sym_complex] = ACTIONS(1402), - [anon_sym_new] = ACTIONS(1402), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_char] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_ctypedef] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_cppclass] = ACTIONS(1402), - [anon_sym_fused] = ACTIONS(1402), - [anon_sym_public] = ACTIONS(1402), - [anon_sym_packed] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym_readonly] = ACTIONS(1402), - [anon_sym_sizeof] = ACTIONS(1402), - [sym__dedent] = ACTIONS(1404), - [sym_string_start] = ACTIONS(1404), + [anon_sym_property] = ACTIONS(1413), + [anon_sym_include] = ACTIONS(1413), + [anon_sym_DEF] = ACTIONS(1413), + [anon_sym_cdef] = ACTIONS(1413), + [anon_sym_cpdef] = ACTIONS(1413), + [anon_sym_int] = ACTIONS(1413), + [anon_sym_double] = ACTIONS(1413), + [anon_sym_complex] = ACTIONS(1413), + [anon_sym_new] = ACTIONS(1413), + [anon_sym_signed] = ACTIONS(1413), + [anon_sym_unsigned] = ACTIONS(1413), + [anon_sym_char] = ACTIONS(1413), + [anon_sym_short] = ACTIONS(1413), + [anon_sym_long] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1413), + [anon_sym_volatile] = ACTIONS(1413), + [anon_sym_ctypedef] = ACTIONS(1413), + [anon_sym_struct] = ACTIONS(1413), + [anon_sym_union] = ACTIONS(1413), + [anon_sym_enum] = ACTIONS(1413), + [anon_sym_cppclass] = ACTIONS(1413), + [anon_sym_fused] = ACTIONS(1413), + [anon_sym_public] = ACTIONS(1413), + [anon_sym_packed] = ACTIONS(1413), + [anon_sym_inline] = ACTIONS(1413), + [anon_sym_readonly] = ACTIONS(1413), + [anon_sym_sizeof] = ACTIONS(1413), + [sym__dedent] = ACTIONS(1415), + [sym_string_start] = ACTIONS(1415), }, [446] = { - [sym_identifier] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(1406), - [anon_sym_cimport] = ACTIONS(1406), - [anon_sym_from] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1406), - [anon_sym_assert] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_del] = ACTIONS(1406), - [anon_sym_raise] = ACTIONS(1406), - [anon_sym_pass] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_match] = ACTIONS(1406), - [anon_sym_async] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_try] = ACTIONS(1406), - [anon_sym_with] = ACTIONS(1406), - [anon_sym_def] = ACTIONS(1406), - [anon_sym_global] = ACTIONS(1406), - [anon_sym_nonlocal] = ACTIONS(1406), - [anon_sym_exec] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_class] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_AT] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_not] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_LT] = ACTIONS(1408), - [anon_sym_lambda] = ACTIONS(1406), - [anon_sym_yield] = ACTIONS(1406), - [sym_ellipsis] = ACTIONS(1408), - [anon_sym_None] = ACTIONS(1406), - [sym_integer] = ACTIONS(1406), - [sym_float] = ACTIONS(1408), - [anon_sym_await] = ACTIONS(1406), - [anon_sym_api] = ACTIONS(1406), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), + [sym_identifier] = ACTIONS(1417), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_import] = ACTIONS(1417), + [anon_sym_cimport] = ACTIONS(1417), + [anon_sym_from] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_print] = ACTIONS(1417), + [anon_sym_assert] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(1417), + [anon_sym_del] = ACTIONS(1417), + [anon_sym_raise] = ACTIONS(1417), + [anon_sym_pass] = ACTIONS(1417), + [anon_sym_break] = ACTIONS(1417), + [anon_sym_continue] = ACTIONS(1417), + [anon_sym_if] = ACTIONS(1417), + [anon_sym_match] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_for] = ACTIONS(1417), + [anon_sym_while] = ACTIONS(1417), + [anon_sym_try] = ACTIONS(1417), + [anon_sym_with] = ACTIONS(1417), + [anon_sym_def] = ACTIONS(1417), + [anon_sym_global] = ACTIONS(1417), + [anon_sym_nonlocal] = ACTIONS(1417), + [anon_sym_exec] = ACTIONS(1417), + [anon_sym_type] = ACTIONS(1417), + [anon_sym_class] = ACTIONS(1417), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_AT] = ACTIONS(1419), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_not] = ACTIONS(1417), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_LT] = ACTIONS(1419), + [anon_sym_lambda] = ACTIONS(1417), + [anon_sym_yield] = ACTIONS(1417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), + [anon_sym_None] = ACTIONS(1417), + [sym_integer] = ACTIONS(1417), + [sym_float] = ACTIONS(1419), + [anon_sym_await] = ACTIONS(1417), + [anon_sym_api] = ACTIONS(1417), + [sym_true] = ACTIONS(1417), + [sym_false] = ACTIONS(1417), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1406), - [anon_sym_include] = ACTIONS(1406), - [anon_sym_DEF] = ACTIONS(1406), - [anon_sym_cdef] = ACTIONS(1406), - [anon_sym_cpdef] = ACTIONS(1406), - [anon_sym_int] = ACTIONS(1406), - [anon_sym_double] = ACTIONS(1406), - [anon_sym_complex] = ACTIONS(1406), - [anon_sym_new] = ACTIONS(1406), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_char] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_ctypedef] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_cppclass] = ACTIONS(1406), - [anon_sym_fused] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_packed] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym_readonly] = ACTIONS(1406), - [anon_sym_sizeof] = ACTIONS(1406), - [sym__dedent] = ACTIONS(1408), - [sym_string_start] = ACTIONS(1408), + [anon_sym_property] = ACTIONS(1417), + [anon_sym_include] = ACTIONS(1417), + [anon_sym_DEF] = ACTIONS(1417), + [anon_sym_cdef] = ACTIONS(1417), + [anon_sym_cpdef] = ACTIONS(1417), + [anon_sym_int] = ACTIONS(1417), + [anon_sym_double] = ACTIONS(1417), + [anon_sym_complex] = ACTIONS(1417), + [anon_sym_new] = ACTIONS(1417), + [anon_sym_signed] = ACTIONS(1417), + [anon_sym_unsigned] = ACTIONS(1417), + [anon_sym_char] = ACTIONS(1417), + [anon_sym_short] = ACTIONS(1417), + [anon_sym_long] = ACTIONS(1417), + [anon_sym_const] = ACTIONS(1417), + [anon_sym_volatile] = ACTIONS(1417), + [anon_sym_ctypedef] = ACTIONS(1417), + [anon_sym_struct] = ACTIONS(1417), + [anon_sym_union] = ACTIONS(1417), + [anon_sym_enum] = ACTIONS(1417), + [anon_sym_cppclass] = ACTIONS(1417), + [anon_sym_fused] = ACTIONS(1417), + [anon_sym_public] = ACTIONS(1417), + [anon_sym_packed] = ACTIONS(1417), + [anon_sym_inline] = ACTIONS(1417), + [anon_sym_readonly] = ACTIONS(1417), + [anon_sym_sizeof] = ACTIONS(1417), + [sym__dedent] = ACTIONS(1419), + [sym_string_start] = ACTIONS(1419), }, [447] = { - [sym_identifier] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_import] = ACTIONS(1410), - [anon_sym_cimport] = ACTIONS(1410), - [anon_sym_from] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_assert] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_del] = ACTIONS(1410), - [anon_sym_raise] = ACTIONS(1410), - [anon_sym_pass] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_try] = ACTIONS(1410), - [anon_sym_with] = ACTIONS(1410), - [anon_sym_def] = ACTIONS(1410), - [anon_sym_global] = ACTIONS(1410), - [anon_sym_nonlocal] = ACTIONS(1410), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_type] = ACTIONS(1410), - [anon_sym_class] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_not] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1412), - [anon_sym_lambda] = ACTIONS(1410), - [anon_sym_yield] = ACTIONS(1410), - [sym_ellipsis] = ACTIONS(1412), - [anon_sym_None] = ACTIONS(1410), - [sym_integer] = ACTIONS(1410), - [sym_float] = ACTIONS(1412), - [anon_sym_await] = ACTIONS(1410), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), + [sym_identifier] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1423), + [anon_sym_import] = ACTIONS(1421), + [anon_sym_cimport] = ACTIONS(1421), + [anon_sym_from] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_print] = ACTIONS(1421), + [anon_sym_assert] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_del] = ACTIONS(1421), + [anon_sym_raise] = ACTIONS(1421), + [anon_sym_pass] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1421), + [anon_sym_with] = ACTIONS(1421), + [anon_sym_def] = ACTIONS(1421), + [anon_sym_global] = ACTIONS(1421), + [anon_sym_nonlocal] = ACTIONS(1421), + [anon_sym_exec] = ACTIONS(1421), + [anon_sym_type] = ACTIONS(1421), + [anon_sym_class] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_AT] = ACTIONS(1423), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_not] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(1423), + [anon_sym_LT] = ACTIONS(1423), + [anon_sym_lambda] = ACTIONS(1421), + [anon_sym_yield] = ACTIONS(1421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1423), + [anon_sym_None] = ACTIONS(1421), + [sym_integer] = ACTIONS(1421), + [sym_float] = ACTIONS(1423), + [anon_sym_await] = ACTIONS(1421), + [anon_sym_api] = ACTIONS(1421), + [sym_true] = ACTIONS(1421), + [sym_false] = ACTIONS(1421), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1410), - [anon_sym_include] = ACTIONS(1410), - [anon_sym_DEF] = ACTIONS(1410), - [anon_sym_cdef] = ACTIONS(1410), - [anon_sym_cpdef] = ACTIONS(1410), - [anon_sym_int] = ACTIONS(1410), - [anon_sym_double] = ACTIONS(1410), - [anon_sym_complex] = ACTIONS(1410), - [anon_sym_new] = ACTIONS(1410), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_ctypedef] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_cppclass] = ACTIONS(1410), - [anon_sym_fused] = ACTIONS(1410), - [anon_sym_public] = ACTIONS(1410), - [anon_sym_packed] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym_readonly] = ACTIONS(1410), - [anon_sym_sizeof] = ACTIONS(1410), - [sym__dedent] = ACTIONS(1412), - [sym_string_start] = ACTIONS(1412), + [anon_sym_property] = ACTIONS(1421), + [anon_sym_include] = ACTIONS(1421), + [anon_sym_DEF] = ACTIONS(1421), + [anon_sym_cdef] = ACTIONS(1421), + [anon_sym_cpdef] = ACTIONS(1421), + [anon_sym_int] = ACTIONS(1421), + [anon_sym_double] = ACTIONS(1421), + [anon_sym_complex] = ACTIONS(1421), + [anon_sym_new] = ACTIONS(1421), + [anon_sym_signed] = ACTIONS(1421), + [anon_sym_unsigned] = ACTIONS(1421), + [anon_sym_char] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_volatile] = ACTIONS(1421), + [anon_sym_ctypedef] = ACTIONS(1421), + [anon_sym_struct] = ACTIONS(1421), + [anon_sym_union] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1421), + [anon_sym_cppclass] = ACTIONS(1421), + [anon_sym_fused] = ACTIONS(1421), + [anon_sym_public] = ACTIONS(1421), + [anon_sym_packed] = ACTIONS(1421), + [anon_sym_inline] = ACTIONS(1421), + [anon_sym_readonly] = ACTIONS(1421), + [anon_sym_sizeof] = ACTIONS(1421), + [sym__dedent] = ACTIONS(1423), + [sym_string_start] = ACTIONS(1423), }, [448] = { - [sym_identifier] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_import] = ACTIONS(1414), - [anon_sym_cimport] = ACTIONS(1414), - [anon_sym_from] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_print] = ACTIONS(1414), - [anon_sym_assert] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_del] = ACTIONS(1414), - [anon_sym_raise] = ACTIONS(1414), - [anon_sym_pass] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_async] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_try] = ACTIONS(1414), - [anon_sym_with] = ACTIONS(1414), - [anon_sym_def] = ACTIONS(1414), - [anon_sym_global] = ACTIONS(1414), - [anon_sym_nonlocal] = ACTIONS(1414), - [anon_sym_exec] = ACTIONS(1414), - [anon_sym_type] = ACTIONS(1414), - [anon_sym_class] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1416), - [anon_sym_AT] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1416), - [anon_sym_lambda] = ACTIONS(1414), - [anon_sym_yield] = ACTIONS(1414), - [sym_ellipsis] = ACTIONS(1416), - [anon_sym_None] = ACTIONS(1414), - [sym_integer] = ACTIONS(1414), - [sym_float] = ACTIONS(1416), - [anon_sym_await] = ACTIONS(1414), - [anon_sym_api] = ACTIONS(1414), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), + [sym_identifier] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_import] = ACTIONS(1425), + [anon_sym_cimport] = ACTIONS(1425), + [anon_sym_from] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_print] = ACTIONS(1425), + [anon_sym_assert] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_del] = ACTIONS(1425), + [anon_sym_raise] = ACTIONS(1425), + [anon_sym_pass] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_match] = ACTIONS(1425), + [anon_sym_async] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_try] = ACTIONS(1425), + [anon_sym_with] = ACTIONS(1425), + [anon_sym_def] = ACTIONS(1425), + [anon_sym_global] = ACTIONS(1425), + [anon_sym_nonlocal] = ACTIONS(1425), + [anon_sym_exec] = ACTIONS(1425), + [anon_sym_type] = ACTIONS(1425), + [anon_sym_class] = ACTIONS(1425), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_AT] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1427), + [anon_sym_not] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1427), + [anon_sym_LT] = ACTIONS(1427), + [anon_sym_lambda] = ACTIONS(1425), + [anon_sym_yield] = ACTIONS(1425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), + [anon_sym_None] = ACTIONS(1425), + [sym_integer] = ACTIONS(1425), + [sym_float] = ACTIONS(1427), + [anon_sym_await] = ACTIONS(1425), + [anon_sym_api] = ACTIONS(1425), + [sym_true] = ACTIONS(1425), + [sym_false] = ACTIONS(1425), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1414), - [anon_sym_include] = ACTIONS(1414), - [anon_sym_DEF] = ACTIONS(1414), - [anon_sym_cdef] = ACTIONS(1414), - [anon_sym_cpdef] = ACTIONS(1414), - [anon_sym_int] = ACTIONS(1414), - [anon_sym_double] = ACTIONS(1414), - [anon_sym_complex] = ACTIONS(1414), - [anon_sym_new] = ACTIONS(1414), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_char] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_ctypedef] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_cppclass] = ACTIONS(1414), - [anon_sym_fused] = ACTIONS(1414), - [anon_sym_public] = ACTIONS(1414), - [anon_sym_packed] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym_readonly] = ACTIONS(1414), - [anon_sym_sizeof] = ACTIONS(1414), - [sym__dedent] = ACTIONS(1416), - [sym_string_start] = ACTIONS(1416), + [anon_sym_property] = ACTIONS(1425), + [anon_sym_include] = ACTIONS(1425), + [anon_sym_DEF] = ACTIONS(1425), + [anon_sym_cdef] = ACTIONS(1425), + [anon_sym_cpdef] = ACTIONS(1425), + [anon_sym_int] = ACTIONS(1425), + [anon_sym_double] = ACTIONS(1425), + [anon_sym_complex] = ACTIONS(1425), + [anon_sym_new] = ACTIONS(1425), + [anon_sym_signed] = ACTIONS(1425), + [anon_sym_unsigned] = ACTIONS(1425), + [anon_sym_char] = ACTIONS(1425), + [anon_sym_short] = ACTIONS(1425), + [anon_sym_long] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_volatile] = ACTIONS(1425), + [anon_sym_ctypedef] = ACTIONS(1425), + [anon_sym_struct] = ACTIONS(1425), + [anon_sym_union] = ACTIONS(1425), + [anon_sym_enum] = ACTIONS(1425), + [anon_sym_cppclass] = ACTIONS(1425), + [anon_sym_fused] = ACTIONS(1425), + [anon_sym_public] = ACTIONS(1425), + [anon_sym_packed] = ACTIONS(1425), + [anon_sym_inline] = ACTIONS(1425), + [anon_sym_readonly] = ACTIONS(1425), + [anon_sym_sizeof] = ACTIONS(1425), + [sym__dedent] = ACTIONS(1427), + [sym_string_start] = ACTIONS(1427), }, [449] = { - [sym_identifier] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_import] = ACTIONS(1418), - [anon_sym_cimport] = ACTIONS(1418), - [anon_sym_from] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_print] = ACTIONS(1418), - [anon_sym_assert] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_del] = ACTIONS(1418), - [anon_sym_raise] = ACTIONS(1418), - [anon_sym_pass] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_match] = ACTIONS(1418), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_try] = ACTIONS(1418), - [anon_sym_with] = ACTIONS(1418), - [anon_sym_def] = ACTIONS(1418), - [anon_sym_global] = ACTIONS(1418), - [anon_sym_nonlocal] = ACTIONS(1418), - [anon_sym_exec] = ACTIONS(1418), - [anon_sym_type] = ACTIONS(1418), - [anon_sym_class] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_AT] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1420), - [anon_sym_not] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_lambda] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1418), - [sym_ellipsis] = ACTIONS(1420), - [anon_sym_None] = ACTIONS(1418), - [sym_integer] = ACTIONS(1418), - [sym_float] = ACTIONS(1420), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_api] = ACTIONS(1418), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), + [sym_identifier] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_import] = ACTIONS(1429), + [anon_sym_cimport] = ACTIONS(1429), + [anon_sym_from] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_print] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_del] = ACTIONS(1429), + [anon_sym_raise] = ACTIONS(1429), + [anon_sym_pass] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_match] = ACTIONS(1429), + [anon_sym_async] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_try] = ACTIONS(1429), + [anon_sym_with] = ACTIONS(1429), + [anon_sym_def] = ACTIONS(1429), + [anon_sym_global] = ACTIONS(1429), + [anon_sym_nonlocal] = ACTIONS(1429), + [anon_sym_exec] = ACTIONS(1429), + [anon_sym_type] = ACTIONS(1429), + [anon_sym_class] = ACTIONS(1429), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_AT] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_not] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_LT] = ACTIONS(1431), + [anon_sym_lambda] = ACTIONS(1429), + [anon_sym_yield] = ACTIONS(1429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), + [anon_sym_None] = ACTIONS(1429), + [sym_integer] = ACTIONS(1429), + [sym_float] = ACTIONS(1431), + [anon_sym_await] = ACTIONS(1429), + [anon_sym_api] = ACTIONS(1429), + [sym_true] = ACTIONS(1429), + [sym_false] = ACTIONS(1429), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1418), - [anon_sym_include] = ACTIONS(1418), - [anon_sym_DEF] = ACTIONS(1418), - [anon_sym_cdef] = ACTIONS(1418), - [anon_sym_cpdef] = ACTIONS(1418), - [anon_sym_int] = ACTIONS(1418), - [anon_sym_double] = ACTIONS(1418), - [anon_sym_complex] = ACTIONS(1418), - [anon_sym_new] = ACTIONS(1418), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_char] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_ctypedef] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_cppclass] = ACTIONS(1418), - [anon_sym_fused] = ACTIONS(1418), - [anon_sym_public] = ACTIONS(1418), - [anon_sym_packed] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym_readonly] = ACTIONS(1418), - [anon_sym_sizeof] = ACTIONS(1418), - [sym__dedent] = ACTIONS(1420), - [sym_string_start] = ACTIONS(1420), + [anon_sym_property] = ACTIONS(1429), + [anon_sym_include] = ACTIONS(1429), + [anon_sym_DEF] = ACTIONS(1429), + [anon_sym_cdef] = ACTIONS(1429), + [anon_sym_cpdef] = ACTIONS(1429), + [anon_sym_int] = ACTIONS(1429), + [anon_sym_double] = ACTIONS(1429), + [anon_sym_complex] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_signed] = ACTIONS(1429), + [anon_sym_unsigned] = ACTIONS(1429), + [anon_sym_char] = ACTIONS(1429), + [anon_sym_short] = ACTIONS(1429), + [anon_sym_long] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_volatile] = ACTIONS(1429), + [anon_sym_ctypedef] = ACTIONS(1429), + [anon_sym_struct] = ACTIONS(1429), + [anon_sym_union] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1429), + [anon_sym_cppclass] = ACTIONS(1429), + [anon_sym_fused] = ACTIONS(1429), + [anon_sym_public] = ACTIONS(1429), + [anon_sym_packed] = ACTIONS(1429), + [anon_sym_inline] = ACTIONS(1429), + [anon_sym_readonly] = ACTIONS(1429), + [anon_sym_sizeof] = ACTIONS(1429), + [sym__dedent] = ACTIONS(1431), + [sym_string_start] = ACTIONS(1431), }, [450] = { - [sym_identifier] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_import] = ACTIONS(1422), - [anon_sym_cimport] = ACTIONS(1422), - [anon_sym_from] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_del] = ACTIONS(1422), - [anon_sym_raise] = ACTIONS(1422), - [anon_sym_pass] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_match] = ACTIONS(1422), - [anon_sym_async] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_try] = ACTIONS(1422), - [anon_sym_with] = ACTIONS(1422), - [anon_sym_def] = ACTIONS(1422), - [anon_sym_global] = ACTIONS(1422), - [anon_sym_nonlocal] = ACTIONS(1422), - [anon_sym_exec] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_class] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_AT] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_not] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_LT] = ACTIONS(1424), - [anon_sym_lambda] = ACTIONS(1422), - [anon_sym_yield] = ACTIONS(1422), - [sym_ellipsis] = ACTIONS(1424), - [anon_sym_None] = ACTIONS(1422), - [sym_integer] = ACTIONS(1422), - [sym_float] = ACTIONS(1424), - [anon_sym_await] = ACTIONS(1422), - [anon_sym_api] = ACTIONS(1422), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), + [sym_identifier] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_import] = ACTIONS(1433), + [anon_sym_cimport] = ACTIONS(1433), + [anon_sym_from] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_print] = ACTIONS(1433), + [anon_sym_assert] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_del] = ACTIONS(1433), + [anon_sym_raise] = ACTIONS(1433), + [anon_sym_pass] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_match] = ACTIONS(1433), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_try] = ACTIONS(1433), + [anon_sym_with] = ACTIONS(1433), + [anon_sym_def] = ACTIONS(1433), + [anon_sym_global] = ACTIONS(1433), + [anon_sym_nonlocal] = ACTIONS(1433), + [anon_sym_exec] = ACTIONS(1433), + [anon_sym_type] = ACTIONS(1433), + [anon_sym_class] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1435), + [anon_sym_AT] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1435), + [anon_sym_not] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_lambda] = ACTIONS(1433), + [anon_sym_yield] = ACTIONS(1433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), + [anon_sym_None] = ACTIONS(1433), + [sym_integer] = ACTIONS(1433), + [sym_float] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(1433), + [anon_sym_api] = ACTIONS(1433), + [sym_true] = ACTIONS(1433), + [sym_false] = ACTIONS(1433), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1422), - [anon_sym_include] = ACTIONS(1422), - [anon_sym_DEF] = ACTIONS(1422), - [anon_sym_cdef] = ACTIONS(1422), - [anon_sym_cpdef] = ACTIONS(1422), - [anon_sym_int] = ACTIONS(1422), - [anon_sym_double] = ACTIONS(1422), - [anon_sym_complex] = ACTIONS(1422), - [anon_sym_new] = ACTIONS(1422), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_char] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_ctypedef] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_cppclass] = ACTIONS(1422), - [anon_sym_fused] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_packed] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1422), - [anon_sym_sizeof] = ACTIONS(1422), - [sym__dedent] = ACTIONS(1424), - [sym_string_start] = ACTIONS(1424), + [anon_sym_property] = ACTIONS(1433), + [anon_sym_include] = ACTIONS(1433), + [anon_sym_DEF] = ACTIONS(1433), + [anon_sym_cdef] = ACTIONS(1433), + [anon_sym_cpdef] = ACTIONS(1433), + [anon_sym_int] = ACTIONS(1433), + [anon_sym_double] = ACTIONS(1433), + [anon_sym_complex] = ACTIONS(1433), + [anon_sym_new] = ACTIONS(1433), + [anon_sym_signed] = ACTIONS(1433), + [anon_sym_unsigned] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_short] = ACTIONS(1433), + [anon_sym_long] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_volatile] = ACTIONS(1433), + [anon_sym_ctypedef] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1433), + [anon_sym_union] = ACTIONS(1433), + [anon_sym_enum] = ACTIONS(1433), + [anon_sym_cppclass] = ACTIONS(1433), + [anon_sym_fused] = ACTIONS(1433), + [anon_sym_public] = ACTIONS(1433), + [anon_sym_packed] = ACTIONS(1433), + [anon_sym_inline] = ACTIONS(1433), + [anon_sym_readonly] = ACTIONS(1433), + [anon_sym_sizeof] = ACTIONS(1433), + [sym__dedent] = ACTIONS(1435), + [sym_string_start] = ACTIONS(1435), }, [451] = { - [sym_identifier] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_import] = ACTIONS(1426), - [anon_sym_cimport] = ACTIONS(1426), - [anon_sym_from] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_print] = ACTIONS(1426), - [anon_sym_assert] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_del] = ACTIONS(1426), - [anon_sym_raise] = ACTIONS(1426), - [anon_sym_pass] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_match] = ACTIONS(1426), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_try] = ACTIONS(1426), - [anon_sym_with] = ACTIONS(1426), - [anon_sym_def] = ACTIONS(1426), - [anon_sym_global] = ACTIONS(1426), - [anon_sym_nonlocal] = ACTIONS(1426), - [anon_sym_exec] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_class] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_AT] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_not] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_lambda] = ACTIONS(1426), - [anon_sym_yield] = ACTIONS(1426), - [sym_ellipsis] = ACTIONS(1428), - [anon_sym_None] = ACTIONS(1426), - [sym_integer] = ACTIONS(1426), - [sym_float] = ACTIONS(1428), - [anon_sym_await] = ACTIONS(1426), - [anon_sym_api] = ACTIONS(1426), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), + [sym_identifier] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_import] = ACTIONS(1437), + [anon_sym_cimport] = ACTIONS(1437), + [anon_sym_from] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_print] = ACTIONS(1437), + [anon_sym_assert] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_del] = ACTIONS(1437), + [anon_sym_raise] = ACTIONS(1437), + [anon_sym_pass] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_async] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_with] = ACTIONS(1437), + [anon_sym_def] = ACTIONS(1437), + [anon_sym_global] = ACTIONS(1437), + [anon_sym_nonlocal] = ACTIONS(1437), + [anon_sym_exec] = ACTIONS(1437), + [anon_sym_type] = ACTIONS(1437), + [anon_sym_class] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1439), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_LBRACE] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_not] = ACTIONS(1437), + [anon_sym_AMP] = ACTIONS(1439), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_lambda] = ACTIONS(1437), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1439), + [anon_sym_None] = ACTIONS(1437), + [sym_integer] = ACTIONS(1437), + [sym_float] = ACTIONS(1439), + [anon_sym_await] = ACTIONS(1437), + [anon_sym_api] = ACTIONS(1437), + [sym_true] = ACTIONS(1437), + [sym_false] = ACTIONS(1437), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1426), - [anon_sym_include] = ACTIONS(1426), - [anon_sym_DEF] = ACTIONS(1426), - [anon_sym_cdef] = ACTIONS(1426), - [anon_sym_cpdef] = ACTIONS(1426), - [anon_sym_int] = ACTIONS(1426), - [anon_sym_double] = ACTIONS(1426), - [anon_sym_complex] = ACTIONS(1426), - [anon_sym_new] = ACTIONS(1426), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_char] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_volatile] = ACTIONS(1426), - [anon_sym_ctypedef] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_cppclass] = ACTIONS(1426), - [anon_sym_fused] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_packed] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_sizeof] = ACTIONS(1426), - [sym__dedent] = ACTIONS(1428), - [sym_string_start] = ACTIONS(1428), + [anon_sym_property] = ACTIONS(1437), + [anon_sym_include] = ACTIONS(1437), + [anon_sym_DEF] = ACTIONS(1437), + [anon_sym_cdef] = ACTIONS(1437), + [anon_sym_cpdef] = ACTIONS(1437), + [anon_sym_int] = ACTIONS(1437), + [anon_sym_double] = ACTIONS(1437), + [anon_sym_complex] = ACTIONS(1437), + [anon_sym_new] = ACTIONS(1437), + [anon_sym_signed] = ACTIONS(1437), + [anon_sym_unsigned] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_short] = ACTIONS(1437), + [anon_sym_long] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_volatile] = ACTIONS(1437), + [anon_sym_ctypedef] = ACTIONS(1437), + [anon_sym_struct] = ACTIONS(1437), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_enum] = ACTIONS(1437), + [anon_sym_cppclass] = ACTIONS(1437), + [anon_sym_fused] = ACTIONS(1437), + [anon_sym_public] = ACTIONS(1437), + [anon_sym_packed] = ACTIONS(1437), + [anon_sym_inline] = ACTIONS(1437), + [anon_sym_readonly] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1437), + [sym__dedent] = ACTIONS(1439), + [sym_string_start] = ACTIONS(1439), }, [452] = { - [sym_identifier] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(1430), - [anon_sym_cimport] = ACTIONS(1430), - [anon_sym_from] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1430), - [anon_sym_assert] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_del] = ACTIONS(1430), - [anon_sym_raise] = ACTIONS(1430), - [anon_sym_pass] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_match] = ACTIONS(1430), - [anon_sym_async] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_try] = ACTIONS(1430), - [anon_sym_with] = ACTIONS(1430), - [anon_sym_def] = ACTIONS(1430), - [anon_sym_global] = ACTIONS(1430), - [anon_sym_nonlocal] = ACTIONS(1430), - [anon_sym_exec] = ACTIONS(1430), - [anon_sym_type] = ACTIONS(1430), - [anon_sym_class] = ACTIONS(1430), - [anon_sym_LBRACK] = ACTIONS(1432), - [anon_sym_AT] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_not] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_LT] = ACTIONS(1432), - [anon_sym_lambda] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1430), - [sym_ellipsis] = ACTIONS(1432), - [anon_sym_None] = ACTIONS(1430), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_api] = ACTIONS(1430), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(1441), + [anon_sym_cimport] = ACTIONS(1441), + [anon_sym_from] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_print] = ACTIONS(1441), + [anon_sym_assert] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_del] = ACTIONS(1441), + [anon_sym_raise] = ACTIONS(1441), + [anon_sym_pass] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_match] = ACTIONS(1441), + [anon_sym_async] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_try] = ACTIONS(1441), + [anon_sym_with] = ACTIONS(1441), + [anon_sym_def] = ACTIONS(1441), + [anon_sym_global] = ACTIONS(1441), + [anon_sym_nonlocal] = ACTIONS(1441), + [anon_sym_exec] = ACTIONS(1441), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_class] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1441), + [anon_sym_AMP] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_lambda] = ACTIONS(1441), + [anon_sym_yield] = ACTIONS(1441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1443), + [anon_sym_None] = ACTIONS(1441), + [sym_integer] = ACTIONS(1441), + [sym_float] = ACTIONS(1443), + [anon_sym_await] = ACTIONS(1441), + [anon_sym_api] = ACTIONS(1441), + [sym_true] = ACTIONS(1441), + [sym_false] = ACTIONS(1441), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1430), - [anon_sym_include] = ACTIONS(1430), - [anon_sym_DEF] = ACTIONS(1430), - [anon_sym_cdef] = ACTIONS(1430), - [anon_sym_cpdef] = ACTIONS(1430), - [anon_sym_int] = ACTIONS(1430), - [anon_sym_double] = ACTIONS(1430), - [anon_sym_complex] = ACTIONS(1430), - [anon_sym_new] = ACTIONS(1430), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_char] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_ctypedef] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_cppclass] = ACTIONS(1430), - [anon_sym_fused] = ACTIONS(1430), - [anon_sym_public] = ACTIONS(1430), - [anon_sym_packed] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym_readonly] = ACTIONS(1430), - [anon_sym_sizeof] = ACTIONS(1430), - [sym__dedent] = ACTIONS(1432), - [sym_string_start] = ACTIONS(1432), + [anon_sym_property] = ACTIONS(1441), + [anon_sym_include] = ACTIONS(1441), + [anon_sym_DEF] = ACTIONS(1441), + [anon_sym_cdef] = ACTIONS(1441), + [anon_sym_cpdef] = ACTIONS(1441), + [anon_sym_int] = ACTIONS(1441), + [anon_sym_double] = ACTIONS(1441), + [anon_sym_complex] = ACTIONS(1441), + [anon_sym_new] = ACTIONS(1441), + [anon_sym_signed] = ACTIONS(1441), + [anon_sym_unsigned] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_volatile] = ACTIONS(1441), + [anon_sym_ctypedef] = ACTIONS(1441), + [anon_sym_struct] = ACTIONS(1441), + [anon_sym_union] = ACTIONS(1441), + [anon_sym_enum] = ACTIONS(1441), + [anon_sym_cppclass] = ACTIONS(1441), + [anon_sym_fused] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_packed] = ACTIONS(1441), + [anon_sym_inline] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_sizeof] = ACTIONS(1441), + [sym__dedent] = ACTIONS(1443), + [sym_string_start] = ACTIONS(1443), }, [453] = { - [sym_identifier] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_import] = ACTIONS(1434), - [anon_sym_cimport] = ACTIONS(1434), - [anon_sym_from] = ACTIONS(1434), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_print] = ACTIONS(1434), - [anon_sym_assert] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_del] = ACTIONS(1434), - [anon_sym_raise] = ACTIONS(1434), - [anon_sym_pass] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_match] = ACTIONS(1434), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_try] = ACTIONS(1434), - [anon_sym_with] = ACTIONS(1434), - [anon_sym_def] = ACTIONS(1434), - [anon_sym_global] = ACTIONS(1434), - [anon_sym_nonlocal] = ACTIONS(1434), - [anon_sym_exec] = ACTIONS(1434), - [anon_sym_type] = ACTIONS(1434), - [anon_sym_class] = ACTIONS(1434), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_AT] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_not] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(1436), - [anon_sym_lambda] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1434), - [sym_ellipsis] = ACTIONS(1436), - [anon_sym_None] = ACTIONS(1434), - [sym_integer] = ACTIONS(1434), - [sym_float] = ACTIONS(1436), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), + [sym_identifier] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_import] = ACTIONS(1445), + [anon_sym_cimport] = ACTIONS(1445), + [anon_sym_from] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_print] = ACTIONS(1445), + [anon_sym_assert] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_del] = ACTIONS(1445), + [anon_sym_raise] = ACTIONS(1445), + [anon_sym_pass] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_match] = ACTIONS(1445), + [anon_sym_async] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_try] = ACTIONS(1445), + [anon_sym_with] = ACTIONS(1445), + [anon_sym_def] = ACTIONS(1445), + [anon_sym_global] = ACTIONS(1445), + [anon_sym_nonlocal] = ACTIONS(1445), + [anon_sym_exec] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_class] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1447), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1445), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_lambda] = ACTIONS(1445), + [anon_sym_yield] = ACTIONS(1445), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [anon_sym_None] = ACTIONS(1445), + [sym_integer] = ACTIONS(1445), + [sym_float] = ACTIONS(1447), + [anon_sym_await] = ACTIONS(1445), + [anon_sym_api] = ACTIONS(1445), + [sym_true] = ACTIONS(1445), + [sym_false] = ACTIONS(1445), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1434), - [anon_sym_include] = ACTIONS(1434), - [anon_sym_DEF] = ACTIONS(1434), - [anon_sym_cdef] = ACTIONS(1434), - [anon_sym_cpdef] = ACTIONS(1434), - [anon_sym_int] = ACTIONS(1434), - [anon_sym_double] = ACTIONS(1434), - [anon_sym_complex] = ACTIONS(1434), - [anon_sym_new] = ACTIONS(1434), - [anon_sym_signed] = ACTIONS(1434), - [anon_sym_unsigned] = ACTIONS(1434), - [anon_sym_char] = ACTIONS(1434), - [anon_sym_short] = ACTIONS(1434), - [anon_sym_long] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_volatile] = ACTIONS(1434), - [anon_sym_ctypedef] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_cppclass] = ACTIONS(1434), - [anon_sym_fused] = ACTIONS(1434), - [anon_sym_public] = ACTIONS(1434), - [anon_sym_packed] = ACTIONS(1434), - [anon_sym_inline] = ACTIONS(1434), - [anon_sym_readonly] = ACTIONS(1434), - [anon_sym_sizeof] = ACTIONS(1434), - [sym__dedent] = ACTIONS(1436), - [sym_string_start] = ACTIONS(1436), + [anon_sym_property] = ACTIONS(1445), + [anon_sym_include] = ACTIONS(1445), + [anon_sym_DEF] = ACTIONS(1445), + [anon_sym_cdef] = ACTIONS(1445), + [anon_sym_cpdef] = ACTIONS(1445), + [anon_sym_int] = ACTIONS(1445), + [anon_sym_double] = ACTIONS(1445), + [anon_sym_complex] = ACTIONS(1445), + [anon_sym_new] = ACTIONS(1445), + [anon_sym_signed] = ACTIONS(1445), + [anon_sym_unsigned] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_volatile] = ACTIONS(1445), + [anon_sym_ctypedef] = ACTIONS(1445), + [anon_sym_struct] = ACTIONS(1445), + [anon_sym_union] = ACTIONS(1445), + [anon_sym_enum] = ACTIONS(1445), + [anon_sym_cppclass] = ACTIONS(1445), + [anon_sym_fused] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_packed] = ACTIONS(1445), + [anon_sym_inline] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_sizeof] = ACTIONS(1445), + [sym__dedent] = ACTIONS(1447), + [sym_string_start] = ACTIONS(1447), }, [454] = { - [sym_identifier] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_import] = ACTIONS(1438), - [anon_sym_cimport] = ACTIONS(1438), - [anon_sym_from] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_print] = ACTIONS(1438), - [anon_sym_assert] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_del] = ACTIONS(1438), - [anon_sym_raise] = ACTIONS(1438), - [anon_sym_pass] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1438), - [anon_sym_async] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_try] = ACTIONS(1438), - [anon_sym_with] = ACTIONS(1438), - [anon_sym_def] = ACTIONS(1438), - [anon_sym_global] = ACTIONS(1438), - [anon_sym_nonlocal] = ACTIONS(1438), - [anon_sym_exec] = ACTIONS(1438), - [anon_sym_type] = ACTIONS(1438), - [anon_sym_class] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_not] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_LT] = ACTIONS(1440), - [anon_sym_lambda] = ACTIONS(1438), - [anon_sym_yield] = ACTIONS(1438), - [sym_ellipsis] = ACTIONS(1440), - [anon_sym_None] = ACTIONS(1438), - [sym_integer] = ACTIONS(1438), - [sym_float] = ACTIONS(1440), - [anon_sym_await] = ACTIONS(1438), - [anon_sym_api] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), + [sym_identifier] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_import] = ACTIONS(1449), + [anon_sym_cimport] = ACTIONS(1449), + [anon_sym_from] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_print] = ACTIONS(1449), + [anon_sym_assert] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_del] = ACTIONS(1449), + [anon_sym_raise] = ACTIONS(1449), + [anon_sym_pass] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_match] = ACTIONS(1449), + [anon_sym_async] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1449), + [anon_sym_with] = ACTIONS(1449), + [anon_sym_def] = ACTIONS(1449), + [anon_sym_global] = ACTIONS(1449), + [anon_sym_nonlocal] = ACTIONS(1449), + [anon_sym_exec] = ACTIONS(1449), + [anon_sym_type] = ACTIONS(1449), + [anon_sym_class] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_AT] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_LBRACE] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_not] = ACTIONS(1449), + [anon_sym_AMP] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_lambda] = ACTIONS(1449), + [anon_sym_yield] = ACTIONS(1449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), + [anon_sym_None] = ACTIONS(1449), + [sym_integer] = ACTIONS(1449), + [sym_float] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_api] = ACTIONS(1449), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1438), - [anon_sym_include] = ACTIONS(1438), - [anon_sym_DEF] = ACTIONS(1438), - [anon_sym_cdef] = ACTIONS(1438), - [anon_sym_cpdef] = ACTIONS(1438), - [anon_sym_int] = ACTIONS(1438), - [anon_sym_double] = ACTIONS(1438), - [anon_sym_complex] = ACTIONS(1438), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_signed] = ACTIONS(1438), - [anon_sym_unsigned] = ACTIONS(1438), - [anon_sym_char] = ACTIONS(1438), - [anon_sym_short] = ACTIONS(1438), - [anon_sym_long] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_volatile] = ACTIONS(1438), - [anon_sym_ctypedef] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1438), - [anon_sym_union] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_cppclass] = ACTIONS(1438), - [anon_sym_fused] = ACTIONS(1438), - [anon_sym_public] = ACTIONS(1438), - [anon_sym_packed] = ACTIONS(1438), - [anon_sym_inline] = ACTIONS(1438), - [anon_sym_readonly] = ACTIONS(1438), - [anon_sym_sizeof] = ACTIONS(1438), - [sym__dedent] = ACTIONS(1440), - [sym_string_start] = ACTIONS(1440), + [anon_sym_property] = ACTIONS(1449), + [anon_sym_include] = ACTIONS(1449), + [anon_sym_DEF] = ACTIONS(1449), + [anon_sym_cdef] = ACTIONS(1449), + [anon_sym_cpdef] = ACTIONS(1449), + [anon_sym_int] = ACTIONS(1449), + [anon_sym_double] = ACTIONS(1449), + [anon_sym_complex] = ACTIONS(1449), + [anon_sym_new] = ACTIONS(1449), + [anon_sym_signed] = ACTIONS(1449), + [anon_sym_unsigned] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_volatile] = ACTIONS(1449), + [anon_sym_ctypedef] = ACTIONS(1449), + [anon_sym_struct] = ACTIONS(1449), + [anon_sym_union] = ACTIONS(1449), + [anon_sym_enum] = ACTIONS(1449), + [anon_sym_cppclass] = ACTIONS(1449), + [anon_sym_fused] = ACTIONS(1449), + [anon_sym_public] = ACTIONS(1449), + [anon_sym_packed] = ACTIONS(1449), + [anon_sym_inline] = ACTIONS(1449), + [anon_sym_readonly] = ACTIONS(1449), + [anon_sym_sizeof] = ACTIONS(1449), + [sym__dedent] = ACTIONS(1451), + [sym_string_start] = ACTIONS(1451), }, [455] = { - [sym_identifier] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(1442), - [anon_sym_cimport] = ACTIONS(1442), - [anon_sym_from] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_print] = ACTIONS(1442), - [anon_sym_assert] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_del] = ACTIONS(1442), - [anon_sym_raise] = ACTIONS(1442), - [anon_sym_pass] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1442), - [anon_sym_async] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_try] = ACTIONS(1442), - [anon_sym_with] = ACTIONS(1442), - [anon_sym_def] = ACTIONS(1442), - [anon_sym_global] = ACTIONS(1442), - [anon_sym_nonlocal] = ACTIONS(1442), - [anon_sym_exec] = ACTIONS(1442), - [anon_sym_type] = ACTIONS(1442), - [anon_sym_class] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1444), - [anon_sym_AT] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_not] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_lambda] = ACTIONS(1442), - [anon_sym_yield] = ACTIONS(1442), - [sym_ellipsis] = ACTIONS(1444), - [anon_sym_None] = ACTIONS(1442), - [sym_integer] = ACTIONS(1442), - [sym_float] = ACTIONS(1444), - [anon_sym_await] = ACTIONS(1442), - [anon_sym_api] = ACTIONS(1442), - [sym_true] = ACTIONS(1442), - [sym_false] = ACTIONS(1442), + [sym_identifier] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_import] = ACTIONS(1453), + [anon_sym_cimport] = ACTIONS(1453), + [anon_sym_from] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_print] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_del] = ACTIONS(1453), + [anon_sym_raise] = ACTIONS(1453), + [anon_sym_pass] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_async] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_try] = ACTIONS(1453), + [anon_sym_with] = ACTIONS(1453), + [anon_sym_def] = ACTIONS(1453), + [anon_sym_global] = ACTIONS(1453), + [anon_sym_nonlocal] = ACTIONS(1453), + [anon_sym_exec] = ACTIONS(1453), + [anon_sym_type] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_AT] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_not] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_LT] = ACTIONS(1455), + [anon_sym_lambda] = ACTIONS(1453), + [anon_sym_yield] = ACTIONS(1453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1455), + [anon_sym_None] = ACTIONS(1453), + [sym_integer] = ACTIONS(1453), + [sym_float] = ACTIONS(1455), + [anon_sym_await] = ACTIONS(1453), + [anon_sym_api] = ACTIONS(1453), + [sym_true] = ACTIONS(1453), + [sym_false] = ACTIONS(1453), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1442), - [anon_sym_include] = ACTIONS(1442), - [anon_sym_DEF] = ACTIONS(1442), - [anon_sym_cdef] = ACTIONS(1442), - [anon_sym_cpdef] = ACTIONS(1442), - [anon_sym_int] = ACTIONS(1442), - [anon_sym_double] = ACTIONS(1442), - [anon_sym_complex] = ACTIONS(1442), - [anon_sym_new] = ACTIONS(1442), - [anon_sym_signed] = ACTIONS(1442), - [anon_sym_unsigned] = ACTIONS(1442), - [anon_sym_char] = ACTIONS(1442), - [anon_sym_short] = ACTIONS(1442), - [anon_sym_long] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_volatile] = ACTIONS(1442), - [anon_sym_ctypedef] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_cppclass] = ACTIONS(1442), - [anon_sym_fused] = ACTIONS(1442), - [anon_sym_public] = ACTIONS(1442), - [anon_sym_packed] = ACTIONS(1442), - [anon_sym_inline] = ACTIONS(1442), - [anon_sym_readonly] = ACTIONS(1442), - [anon_sym_sizeof] = ACTIONS(1442), - [sym__dedent] = ACTIONS(1444), - [sym_string_start] = ACTIONS(1444), + [anon_sym_property] = ACTIONS(1453), + [anon_sym_include] = ACTIONS(1453), + [anon_sym_DEF] = ACTIONS(1453), + [anon_sym_cdef] = ACTIONS(1453), + [anon_sym_cpdef] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_double] = ACTIONS(1453), + [anon_sym_complex] = ACTIONS(1453), + [anon_sym_new] = ACTIONS(1453), + [anon_sym_signed] = ACTIONS(1453), + [anon_sym_unsigned] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_short] = ACTIONS(1453), + [anon_sym_long] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_volatile] = ACTIONS(1453), + [anon_sym_ctypedef] = ACTIONS(1453), + [anon_sym_struct] = ACTIONS(1453), + [anon_sym_union] = ACTIONS(1453), + [anon_sym_enum] = ACTIONS(1453), + [anon_sym_cppclass] = ACTIONS(1453), + [anon_sym_fused] = ACTIONS(1453), + [anon_sym_public] = ACTIONS(1453), + [anon_sym_packed] = ACTIONS(1453), + [anon_sym_inline] = ACTIONS(1453), + [anon_sym_readonly] = ACTIONS(1453), + [anon_sym_sizeof] = ACTIONS(1453), + [sym__dedent] = ACTIONS(1455), + [sym_string_start] = ACTIONS(1455), }, [456] = { - [sym_identifier] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_import] = ACTIONS(1446), - [anon_sym_cimport] = ACTIONS(1446), - [anon_sym_from] = ACTIONS(1446), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_print] = ACTIONS(1446), - [anon_sym_assert] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_del] = ACTIONS(1446), - [anon_sym_raise] = ACTIONS(1446), - [anon_sym_pass] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_match] = ACTIONS(1446), - [anon_sym_async] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_try] = ACTIONS(1446), - [anon_sym_with] = ACTIONS(1446), - [anon_sym_def] = ACTIONS(1446), - [anon_sym_global] = ACTIONS(1446), - [anon_sym_nonlocal] = ACTIONS(1446), - [anon_sym_exec] = ACTIONS(1446), - [anon_sym_type] = ACTIONS(1446), - [anon_sym_class] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_AT] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_not] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_lambda] = ACTIONS(1446), - [anon_sym_yield] = ACTIONS(1446), - [sym_ellipsis] = ACTIONS(1448), - [anon_sym_None] = ACTIONS(1446), - [sym_integer] = ACTIONS(1446), - [sym_float] = ACTIONS(1448), - [anon_sym_await] = ACTIONS(1446), - [anon_sym_api] = ACTIONS(1446), - [sym_true] = ACTIONS(1446), - [sym_false] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_import] = ACTIONS(1457), + [anon_sym_cimport] = ACTIONS(1457), + [anon_sym_from] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_print] = ACTIONS(1457), + [anon_sym_assert] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_del] = ACTIONS(1457), + [anon_sym_raise] = ACTIONS(1457), + [anon_sym_pass] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_match] = ACTIONS(1457), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_try] = ACTIONS(1457), + [anon_sym_with] = ACTIONS(1457), + [anon_sym_def] = ACTIONS(1457), + [anon_sym_global] = ACTIONS(1457), + [anon_sym_nonlocal] = ACTIONS(1457), + [anon_sym_exec] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_class] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1459), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1459), + [anon_sym_lambda] = ACTIONS(1457), + [anon_sym_yield] = ACTIONS(1457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1459), + [anon_sym_None] = ACTIONS(1457), + [sym_integer] = ACTIONS(1457), + [sym_float] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1457), + [anon_sym_api] = ACTIONS(1457), + [sym_true] = ACTIONS(1457), + [sym_false] = ACTIONS(1457), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1446), - [anon_sym_include] = ACTIONS(1446), - [anon_sym_DEF] = ACTIONS(1446), - [anon_sym_cdef] = ACTIONS(1446), - [anon_sym_cpdef] = ACTIONS(1446), - [anon_sym_int] = ACTIONS(1446), - [anon_sym_double] = ACTIONS(1446), - [anon_sym_complex] = ACTIONS(1446), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_signed] = ACTIONS(1446), - [anon_sym_unsigned] = ACTIONS(1446), - [anon_sym_char] = ACTIONS(1446), - [anon_sym_short] = ACTIONS(1446), - [anon_sym_long] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_volatile] = ACTIONS(1446), - [anon_sym_ctypedef] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_cppclass] = ACTIONS(1446), - [anon_sym_fused] = ACTIONS(1446), - [anon_sym_public] = ACTIONS(1446), - [anon_sym_packed] = ACTIONS(1446), - [anon_sym_inline] = ACTIONS(1446), - [anon_sym_readonly] = ACTIONS(1446), - [anon_sym_sizeof] = ACTIONS(1446), - [sym__dedent] = ACTIONS(1448), - [sym_string_start] = ACTIONS(1448), + [anon_sym_property] = ACTIONS(1457), + [anon_sym_include] = ACTIONS(1457), + [anon_sym_DEF] = ACTIONS(1457), + [anon_sym_cdef] = ACTIONS(1457), + [anon_sym_cpdef] = ACTIONS(1457), + [anon_sym_int] = ACTIONS(1457), + [anon_sym_double] = ACTIONS(1457), + [anon_sym_complex] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_signed] = ACTIONS(1457), + [anon_sym_unsigned] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_short] = ACTIONS(1457), + [anon_sym_long] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_volatile] = ACTIONS(1457), + [anon_sym_ctypedef] = ACTIONS(1457), + [anon_sym_struct] = ACTIONS(1457), + [anon_sym_union] = ACTIONS(1457), + [anon_sym_enum] = ACTIONS(1457), + [anon_sym_cppclass] = ACTIONS(1457), + [anon_sym_fused] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_packed] = ACTIONS(1457), + [anon_sym_inline] = ACTIONS(1457), + [anon_sym_readonly] = ACTIONS(1457), + [anon_sym_sizeof] = ACTIONS(1457), + [sym__dedent] = ACTIONS(1459), + [sym_string_start] = ACTIONS(1459), }, [457] = { - [sym_identifier] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_import] = ACTIONS(1450), - [anon_sym_cimport] = ACTIONS(1450), - [anon_sym_from] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_print] = ACTIONS(1450), - [anon_sym_assert] = ACTIONS(1450), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_del] = ACTIONS(1450), - [anon_sym_raise] = ACTIONS(1450), - [anon_sym_pass] = ACTIONS(1450), - [anon_sym_break] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_match] = ACTIONS(1450), - [anon_sym_async] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1450), - [anon_sym_try] = ACTIONS(1450), - [anon_sym_with] = ACTIONS(1450), - [anon_sym_def] = ACTIONS(1450), - [anon_sym_global] = ACTIONS(1450), - [anon_sym_nonlocal] = ACTIONS(1450), - [anon_sym_exec] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_class] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_not] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_lambda] = ACTIONS(1450), - [anon_sym_yield] = ACTIONS(1450), - [sym_ellipsis] = ACTIONS(1452), - [anon_sym_None] = ACTIONS(1450), - [sym_integer] = ACTIONS(1450), - [sym_float] = ACTIONS(1452), - [anon_sym_await] = ACTIONS(1450), - [anon_sym_api] = ACTIONS(1450), - [sym_true] = ACTIONS(1450), - [sym_false] = ACTIONS(1450), + [sym_identifier] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_import] = ACTIONS(1461), + [anon_sym_cimport] = ACTIONS(1461), + [anon_sym_from] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_print] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_del] = ACTIONS(1461), + [anon_sym_raise] = ACTIONS(1461), + [anon_sym_pass] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_match] = ACTIONS(1461), + [anon_sym_async] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_try] = ACTIONS(1461), + [anon_sym_with] = ACTIONS(1461), + [anon_sym_def] = ACTIONS(1461), + [anon_sym_global] = ACTIONS(1461), + [anon_sym_nonlocal] = ACTIONS(1461), + [anon_sym_exec] = ACTIONS(1461), + [anon_sym_type] = ACTIONS(1461), + [anon_sym_class] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_AT] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1463), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_not] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_LT] = ACTIONS(1463), + [anon_sym_lambda] = ACTIONS(1461), + [anon_sym_yield] = ACTIONS(1461), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1463), + [anon_sym_None] = ACTIONS(1461), + [sym_integer] = ACTIONS(1461), + [sym_float] = ACTIONS(1463), + [anon_sym_await] = ACTIONS(1461), + [anon_sym_api] = ACTIONS(1461), + [sym_true] = ACTIONS(1461), + [sym_false] = ACTIONS(1461), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1450), - [anon_sym_include] = ACTIONS(1450), - [anon_sym_DEF] = ACTIONS(1450), - [anon_sym_cdef] = ACTIONS(1450), - [anon_sym_cpdef] = ACTIONS(1450), - [anon_sym_int] = ACTIONS(1450), - [anon_sym_double] = ACTIONS(1450), - [anon_sym_complex] = ACTIONS(1450), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_signed] = ACTIONS(1450), - [anon_sym_unsigned] = ACTIONS(1450), - [anon_sym_char] = ACTIONS(1450), - [anon_sym_short] = ACTIONS(1450), - [anon_sym_long] = ACTIONS(1450), - [anon_sym_const] = ACTIONS(1450), - [anon_sym_volatile] = ACTIONS(1450), - [anon_sym_ctypedef] = ACTIONS(1450), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_union] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1450), - [anon_sym_cppclass] = ACTIONS(1450), - [anon_sym_fused] = ACTIONS(1450), - [anon_sym_public] = ACTIONS(1450), - [anon_sym_packed] = ACTIONS(1450), - [anon_sym_inline] = ACTIONS(1450), - [anon_sym_readonly] = ACTIONS(1450), - [anon_sym_sizeof] = ACTIONS(1450), - [sym__dedent] = ACTIONS(1452), - [sym_string_start] = ACTIONS(1452), + [anon_sym_property] = ACTIONS(1461), + [anon_sym_include] = ACTIONS(1461), + [anon_sym_DEF] = ACTIONS(1461), + [anon_sym_cdef] = ACTIONS(1461), + [anon_sym_cpdef] = ACTIONS(1461), + [anon_sym_int] = ACTIONS(1461), + [anon_sym_double] = ACTIONS(1461), + [anon_sym_complex] = ACTIONS(1461), + [anon_sym_new] = ACTIONS(1461), + [anon_sym_signed] = ACTIONS(1461), + [anon_sym_unsigned] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_volatile] = ACTIONS(1461), + [anon_sym_ctypedef] = ACTIONS(1461), + [anon_sym_struct] = ACTIONS(1461), + [anon_sym_union] = ACTIONS(1461), + [anon_sym_enum] = ACTIONS(1461), + [anon_sym_cppclass] = ACTIONS(1461), + [anon_sym_fused] = ACTIONS(1461), + [anon_sym_public] = ACTIONS(1461), + [anon_sym_packed] = ACTIONS(1461), + [anon_sym_inline] = ACTIONS(1461), + [anon_sym_readonly] = ACTIONS(1461), + [anon_sym_sizeof] = ACTIONS(1461), + [sym__dedent] = ACTIONS(1463), + [sym_string_start] = ACTIONS(1463), }, [458] = { - [sym_identifier] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym_import] = ACTIONS(1454), - [anon_sym_cimport] = ACTIONS(1454), - [anon_sym_from] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_print] = ACTIONS(1454), - [anon_sym_assert] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_del] = ACTIONS(1454), - [anon_sym_raise] = ACTIONS(1454), - [anon_sym_pass] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_match] = ACTIONS(1454), - [anon_sym_async] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_try] = ACTIONS(1454), - [anon_sym_with] = ACTIONS(1454), - [anon_sym_def] = ACTIONS(1454), - [anon_sym_global] = ACTIONS(1454), - [anon_sym_nonlocal] = ACTIONS(1454), - [anon_sym_exec] = ACTIONS(1454), - [anon_sym_type] = ACTIONS(1454), - [anon_sym_class] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1456), - [anon_sym_AT] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_not] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_TILDE] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_lambda] = ACTIONS(1454), - [anon_sym_yield] = ACTIONS(1454), - [sym_ellipsis] = ACTIONS(1456), - [anon_sym_None] = ACTIONS(1454), - [sym_integer] = ACTIONS(1454), - [sym_float] = ACTIONS(1456), - [anon_sym_await] = ACTIONS(1454), - [anon_sym_api] = ACTIONS(1454), - [sym_true] = ACTIONS(1454), - [sym_false] = ACTIONS(1454), + [sym_identifier] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_import] = ACTIONS(1465), + [anon_sym_cimport] = ACTIONS(1465), + [anon_sym_from] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_print] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_del] = ACTIONS(1465), + [anon_sym_raise] = ACTIONS(1465), + [anon_sym_pass] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_match] = ACTIONS(1465), + [anon_sym_async] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_try] = ACTIONS(1465), + [anon_sym_with] = ACTIONS(1465), + [anon_sym_def] = ACTIONS(1465), + [anon_sym_global] = ACTIONS(1465), + [anon_sym_nonlocal] = ACTIONS(1465), + [anon_sym_exec] = ACTIONS(1465), + [anon_sym_type] = ACTIONS(1465), + [anon_sym_class] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1467), + [anon_sym_AT] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_not] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_LT] = ACTIONS(1467), + [anon_sym_lambda] = ACTIONS(1465), + [anon_sym_yield] = ACTIONS(1465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_None] = ACTIONS(1465), + [sym_integer] = ACTIONS(1465), + [sym_float] = ACTIONS(1467), + [anon_sym_await] = ACTIONS(1465), + [anon_sym_api] = ACTIONS(1465), + [sym_true] = ACTIONS(1465), + [sym_false] = ACTIONS(1465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1454), - [anon_sym_include] = ACTIONS(1454), - [anon_sym_DEF] = ACTIONS(1454), - [anon_sym_cdef] = ACTIONS(1454), - [anon_sym_cpdef] = ACTIONS(1454), - [anon_sym_int] = ACTIONS(1454), - [anon_sym_double] = ACTIONS(1454), - [anon_sym_complex] = ACTIONS(1454), - [anon_sym_new] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_char] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [anon_sym_ctypedef] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_cppclass] = ACTIONS(1454), - [anon_sym_fused] = ACTIONS(1454), - [anon_sym_public] = ACTIONS(1454), - [anon_sym_packed] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym_readonly] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1454), - [sym__dedent] = ACTIONS(1456), - [sym_string_start] = ACTIONS(1456), + [anon_sym_property] = ACTIONS(1465), + [anon_sym_include] = ACTIONS(1465), + [anon_sym_DEF] = ACTIONS(1465), + [anon_sym_cdef] = ACTIONS(1465), + [anon_sym_cpdef] = ACTIONS(1465), + [anon_sym_int] = ACTIONS(1465), + [anon_sym_double] = ACTIONS(1465), + [anon_sym_complex] = ACTIONS(1465), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_signed] = ACTIONS(1465), + [anon_sym_unsigned] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_volatile] = ACTIONS(1465), + [anon_sym_ctypedef] = ACTIONS(1465), + [anon_sym_struct] = ACTIONS(1465), + [anon_sym_union] = ACTIONS(1465), + [anon_sym_enum] = ACTIONS(1465), + [anon_sym_cppclass] = ACTIONS(1465), + [anon_sym_fused] = ACTIONS(1465), + [anon_sym_public] = ACTIONS(1465), + [anon_sym_packed] = ACTIONS(1465), + [anon_sym_inline] = ACTIONS(1465), + [anon_sym_readonly] = ACTIONS(1465), + [anon_sym_sizeof] = ACTIONS(1465), + [sym__dedent] = ACTIONS(1467), + [sym_string_start] = ACTIONS(1467), }, [459] = { - [sym_identifier] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_import] = ACTIONS(1458), - [anon_sym_cimport] = ACTIONS(1458), - [anon_sym_from] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_print] = ACTIONS(1458), - [anon_sym_assert] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_del] = ACTIONS(1458), - [anon_sym_raise] = ACTIONS(1458), - [anon_sym_pass] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_match] = ACTIONS(1458), - [anon_sym_async] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_try] = ACTIONS(1458), - [anon_sym_with] = ACTIONS(1458), - [anon_sym_def] = ACTIONS(1458), - [anon_sym_global] = ACTIONS(1458), - [anon_sym_nonlocal] = ACTIONS(1458), - [anon_sym_exec] = ACTIONS(1458), - [anon_sym_type] = ACTIONS(1458), - [anon_sym_class] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1460), - [anon_sym_AT] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_not] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1460), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_lambda] = ACTIONS(1458), - [anon_sym_yield] = ACTIONS(1458), - [sym_ellipsis] = ACTIONS(1460), - [anon_sym_None] = ACTIONS(1458), - [sym_integer] = ACTIONS(1458), - [sym_float] = ACTIONS(1460), - [anon_sym_await] = ACTIONS(1458), - [anon_sym_api] = ACTIONS(1458), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), + [sym_identifier] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_import] = ACTIONS(1469), + [anon_sym_cimport] = ACTIONS(1469), + [anon_sym_from] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_print] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_del] = ACTIONS(1469), + [anon_sym_raise] = ACTIONS(1469), + [anon_sym_pass] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_match] = ACTIONS(1469), + [anon_sym_async] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_try] = ACTIONS(1469), + [anon_sym_with] = ACTIONS(1469), + [anon_sym_def] = ACTIONS(1469), + [anon_sym_global] = ACTIONS(1469), + [anon_sym_nonlocal] = ACTIONS(1469), + [anon_sym_exec] = ACTIONS(1469), + [anon_sym_type] = ACTIONS(1469), + [anon_sym_class] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_LT] = ACTIONS(1471), + [anon_sym_lambda] = ACTIONS(1469), + [anon_sym_yield] = ACTIONS(1469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), + [anon_sym_None] = ACTIONS(1469), + [sym_integer] = ACTIONS(1469), + [sym_float] = ACTIONS(1471), + [anon_sym_await] = ACTIONS(1469), + [anon_sym_api] = ACTIONS(1469), + [sym_true] = ACTIONS(1469), + [sym_false] = ACTIONS(1469), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1458), - [anon_sym_include] = ACTIONS(1458), - [anon_sym_DEF] = ACTIONS(1458), - [anon_sym_cdef] = ACTIONS(1458), - [anon_sym_cpdef] = ACTIONS(1458), - [anon_sym_int] = ACTIONS(1458), - [anon_sym_double] = ACTIONS(1458), - [anon_sym_complex] = ACTIONS(1458), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_signed] = ACTIONS(1458), - [anon_sym_unsigned] = ACTIONS(1458), - [anon_sym_char] = ACTIONS(1458), - [anon_sym_short] = ACTIONS(1458), - [anon_sym_long] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_volatile] = ACTIONS(1458), - [anon_sym_ctypedef] = ACTIONS(1458), - [anon_sym_struct] = ACTIONS(1458), - [anon_sym_union] = ACTIONS(1458), - [anon_sym_enum] = ACTIONS(1458), - [anon_sym_cppclass] = ACTIONS(1458), - [anon_sym_fused] = ACTIONS(1458), - [anon_sym_public] = ACTIONS(1458), - [anon_sym_packed] = ACTIONS(1458), - [anon_sym_inline] = ACTIONS(1458), - [anon_sym_readonly] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1458), - [sym__dedent] = ACTIONS(1460), - [sym_string_start] = ACTIONS(1460), + [anon_sym_property] = ACTIONS(1469), + [anon_sym_include] = ACTIONS(1469), + [anon_sym_DEF] = ACTIONS(1469), + [anon_sym_cdef] = ACTIONS(1469), + [anon_sym_cpdef] = ACTIONS(1469), + [anon_sym_int] = ACTIONS(1469), + [anon_sym_double] = ACTIONS(1469), + [anon_sym_complex] = ACTIONS(1469), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_signed] = ACTIONS(1469), + [anon_sym_unsigned] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_short] = ACTIONS(1469), + [anon_sym_long] = ACTIONS(1469), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_volatile] = ACTIONS(1469), + [anon_sym_ctypedef] = ACTIONS(1469), + [anon_sym_struct] = ACTIONS(1469), + [anon_sym_union] = ACTIONS(1469), + [anon_sym_enum] = ACTIONS(1469), + [anon_sym_cppclass] = ACTIONS(1469), + [anon_sym_fused] = ACTIONS(1469), + [anon_sym_public] = ACTIONS(1469), + [anon_sym_packed] = ACTIONS(1469), + [anon_sym_inline] = ACTIONS(1469), + [anon_sym_readonly] = ACTIONS(1469), + [anon_sym_sizeof] = ACTIONS(1469), + [sym__dedent] = ACTIONS(1471), + [sym_string_start] = ACTIONS(1471), }, [460] = { - [sym_identifier] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_import] = ACTIONS(1462), - [anon_sym_cimport] = ACTIONS(1462), - [anon_sym_from] = ACTIONS(1462), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_print] = ACTIONS(1462), - [anon_sym_assert] = ACTIONS(1462), - [anon_sym_return] = ACTIONS(1462), - [anon_sym_del] = ACTIONS(1462), - [anon_sym_raise] = ACTIONS(1462), - [anon_sym_pass] = ACTIONS(1462), - [anon_sym_break] = ACTIONS(1462), - [anon_sym_continue] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_for] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1462), - [anon_sym_try] = ACTIONS(1462), - [anon_sym_with] = ACTIONS(1462), - [anon_sym_def] = ACTIONS(1462), - [anon_sym_global] = ACTIONS(1462), - [anon_sym_nonlocal] = ACTIONS(1462), - [anon_sym_exec] = ACTIONS(1462), - [anon_sym_type] = ACTIONS(1462), - [anon_sym_class] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_AT] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_not] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_TILDE] = ACTIONS(1464), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_lambda] = ACTIONS(1462), - [anon_sym_yield] = ACTIONS(1462), - [sym_ellipsis] = ACTIONS(1464), - [anon_sym_None] = ACTIONS(1462), - [sym_integer] = ACTIONS(1462), - [sym_float] = ACTIONS(1464), - [anon_sym_await] = ACTIONS(1462), - [anon_sym_api] = ACTIONS(1462), - [sym_true] = ACTIONS(1462), - [sym_false] = ACTIONS(1462), + [sym_identifier] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_import] = ACTIONS(1473), + [anon_sym_cimport] = ACTIONS(1473), + [anon_sym_from] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_print] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_del] = ACTIONS(1473), + [anon_sym_raise] = ACTIONS(1473), + [anon_sym_pass] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_async] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_try] = ACTIONS(1473), + [anon_sym_with] = ACTIONS(1473), + [anon_sym_def] = ACTIONS(1473), + [anon_sym_global] = ACTIONS(1473), + [anon_sym_nonlocal] = ACTIONS(1473), + [anon_sym_exec] = ACTIONS(1473), + [anon_sym_type] = ACTIONS(1473), + [anon_sym_class] = ACTIONS(1473), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_AT] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1475), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1475), + [anon_sym_not] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_LT] = ACTIONS(1475), + [anon_sym_lambda] = ACTIONS(1473), + [anon_sym_yield] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), + [anon_sym_None] = ACTIONS(1473), + [sym_integer] = ACTIONS(1473), + [sym_float] = ACTIONS(1475), + [anon_sym_await] = ACTIONS(1473), + [anon_sym_api] = ACTIONS(1473), + [sym_true] = ACTIONS(1473), + [sym_false] = ACTIONS(1473), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1462), - [anon_sym_include] = ACTIONS(1462), - [anon_sym_DEF] = ACTIONS(1462), - [anon_sym_cdef] = ACTIONS(1462), - [anon_sym_cpdef] = ACTIONS(1462), - [anon_sym_int] = ACTIONS(1462), - [anon_sym_double] = ACTIONS(1462), - [anon_sym_complex] = ACTIONS(1462), - [anon_sym_new] = ACTIONS(1462), - [anon_sym_signed] = ACTIONS(1462), - [anon_sym_unsigned] = ACTIONS(1462), - [anon_sym_char] = ACTIONS(1462), - [anon_sym_short] = ACTIONS(1462), - [anon_sym_long] = ACTIONS(1462), - [anon_sym_const] = ACTIONS(1462), - [anon_sym_volatile] = ACTIONS(1462), - [anon_sym_ctypedef] = ACTIONS(1462), - [anon_sym_struct] = ACTIONS(1462), - [anon_sym_union] = ACTIONS(1462), - [anon_sym_enum] = ACTIONS(1462), - [anon_sym_cppclass] = ACTIONS(1462), - [anon_sym_fused] = ACTIONS(1462), - [anon_sym_public] = ACTIONS(1462), - [anon_sym_packed] = ACTIONS(1462), - [anon_sym_inline] = ACTIONS(1462), - [anon_sym_readonly] = ACTIONS(1462), - [anon_sym_sizeof] = ACTIONS(1462), - [sym__dedent] = ACTIONS(1464), - [sym_string_start] = ACTIONS(1464), + [anon_sym_property] = ACTIONS(1473), + [anon_sym_include] = ACTIONS(1473), + [anon_sym_DEF] = ACTIONS(1473), + [anon_sym_cdef] = ACTIONS(1473), + [anon_sym_cpdef] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_complex] = ACTIONS(1473), + [anon_sym_new] = ACTIONS(1473), + [anon_sym_signed] = ACTIONS(1473), + [anon_sym_unsigned] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_volatile] = ACTIONS(1473), + [anon_sym_ctypedef] = ACTIONS(1473), + [anon_sym_struct] = ACTIONS(1473), + [anon_sym_union] = ACTIONS(1473), + [anon_sym_enum] = ACTIONS(1473), + [anon_sym_cppclass] = ACTIONS(1473), + [anon_sym_fused] = ACTIONS(1473), + [anon_sym_public] = ACTIONS(1473), + [anon_sym_packed] = ACTIONS(1473), + [anon_sym_inline] = ACTIONS(1473), + [anon_sym_readonly] = ACTIONS(1473), + [anon_sym_sizeof] = ACTIONS(1473), + [sym__dedent] = ACTIONS(1475), + [sym_string_start] = ACTIONS(1475), }, [461] = { - [sym_identifier] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_import] = ACTIONS(1466), - [anon_sym_cimport] = ACTIONS(1466), - [anon_sym_from] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_print] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1466), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_del] = ACTIONS(1466), - [anon_sym_raise] = ACTIONS(1466), - [anon_sym_pass] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1466), - [anon_sym_while] = ACTIONS(1466), - [anon_sym_try] = ACTIONS(1466), - [anon_sym_with] = ACTIONS(1466), - [anon_sym_def] = ACTIONS(1466), - [anon_sym_global] = ACTIONS(1466), - [anon_sym_nonlocal] = ACTIONS(1466), - [anon_sym_exec] = ACTIONS(1466), - [anon_sym_type] = ACTIONS(1466), - [anon_sym_class] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1468), - [anon_sym_AT] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_not] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_LT] = ACTIONS(1468), - [anon_sym_lambda] = ACTIONS(1466), - [anon_sym_yield] = ACTIONS(1466), - [sym_ellipsis] = ACTIONS(1468), - [anon_sym_None] = ACTIONS(1466), - [sym_integer] = ACTIONS(1466), - [sym_float] = ACTIONS(1468), - [anon_sym_await] = ACTIONS(1466), - [anon_sym_api] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_import] = ACTIONS(1477), + [anon_sym_cimport] = ACTIONS(1477), + [anon_sym_from] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_print] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_del] = ACTIONS(1477), + [anon_sym_raise] = ACTIONS(1477), + [anon_sym_pass] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_match] = ACTIONS(1477), + [anon_sym_async] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_try] = ACTIONS(1477), + [anon_sym_with] = ACTIONS(1477), + [anon_sym_def] = ACTIONS(1477), + [anon_sym_global] = ACTIONS(1477), + [anon_sym_nonlocal] = ACTIONS(1477), + [anon_sym_exec] = ACTIONS(1477), + [anon_sym_type] = ACTIONS(1477), + [anon_sym_class] = ACTIONS(1477), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1479), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_not] = ACTIONS(1477), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_LT] = ACTIONS(1479), + [anon_sym_lambda] = ACTIONS(1477), + [anon_sym_yield] = ACTIONS(1477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1479), + [anon_sym_None] = ACTIONS(1477), + [sym_integer] = ACTIONS(1477), + [sym_float] = ACTIONS(1479), + [anon_sym_await] = ACTIONS(1477), + [anon_sym_api] = ACTIONS(1477), + [sym_true] = ACTIONS(1477), + [sym_false] = ACTIONS(1477), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1466), - [anon_sym_include] = ACTIONS(1466), - [anon_sym_DEF] = ACTIONS(1466), - [anon_sym_cdef] = ACTIONS(1466), - [anon_sym_cpdef] = ACTIONS(1466), - [anon_sym_int] = ACTIONS(1466), - [anon_sym_double] = ACTIONS(1466), - [anon_sym_complex] = ACTIONS(1466), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1466), - [anon_sym_unsigned] = ACTIONS(1466), - [anon_sym_char] = ACTIONS(1466), - [anon_sym_short] = ACTIONS(1466), - [anon_sym_long] = ACTIONS(1466), - [anon_sym_const] = ACTIONS(1466), - [anon_sym_volatile] = ACTIONS(1466), - [anon_sym_ctypedef] = ACTIONS(1466), - [anon_sym_struct] = ACTIONS(1466), - [anon_sym_union] = ACTIONS(1466), - [anon_sym_enum] = ACTIONS(1466), - [anon_sym_cppclass] = ACTIONS(1466), - [anon_sym_fused] = ACTIONS(1466), - [anon_sym_public] = ACTIONS(1466), - [anon_sym_packed] = ACTIONS(1466), - [anon_sym_inline] = ACTIONS(1466), - [anon_sym_readonly] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1466), - [sym__dedent] = ACTIONS(1468), - [sym_string_start] = ACTIONS(1468), + [anon_sym_property] = ACTIONS(1477), + [anon_sym_include] = ACTIONS(1477), + [anon_sym_DEF] = ACTIONS(1477), + [anon_sym_cdef] = ACTIONS(1477), + [anon_sym_cpdef] = ACTIONS(1477), + [anon_sym_int] = ACTIONS(1477), + [anon_sym_double] = ACTIONS(1477), + [anon_sym_complex] = ACTIONS(1477), + [anon_sym_new] = ACTIONS(1477), + [anon_sym_signed] = ACTIONS(1477), + [anon_sym_unsigned] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_short] = ACTIONS(1477), + [anon_sym_long] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_volatile] = ACTIONS(1477), + [anon_sym_ctypedef] = ACTIONS(1477), + [anon_sym_struct] = ACTIONS(1477), + [anon_sym_union] = ACTIONS(1477), + [anon_sym_enum] = ACTIONS(1477), + [anon_sym_cppclass] = ACTIONS(1477), + [anon_sym_fused] = ACTIONS(1477), + [anon_sym_public] = ACTIONS(1477), + [anon_sym_packed] = ACTIONS(1477), + [anon_sym_inline] = ACTIONS(1477), + [anon_sym_readonly] = ACTIONS(1477), + [anon_sym_sizeof] = ACTIONS(1477), + [sym__dedent] = ACTIONS(1479), + [sym_string_start] = ACTIONS(1479), }, [462] = { - [sym_identifier] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_import] = ACTIONS(1470), - [anon_sym_cimport] = ACTIONS(1470), - [anon_sym_from] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_print] = ACTIONS(1470), - [anon_sym_assert] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_del] = ACTIONS(1470), - [anon_sym_raise] = ACTIONS(1470), - [anon_sym_pass] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_async] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_try] = ACTIONS(1470), - [anon_sym_with] = ACTIONS(1470), - [anon_sym_def] = ACTIONS(1470), - [anon_sym_global] = ACTIONS(1470), - [anon_sym_nonlocal] = ACTIONS(1470), - [anon_sym_exec] = ACTIONS(1470), - [anon_sym_type] = ACTIONS(1470), - [anon_sym_class] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_AT] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_not] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_TILDE] = ACTIONS(1472), - [anon_sym_LT] = ACTIONS(1472), - [anon_sym_lambda] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1470), - [sym_ellipsis] = ACTIONS(1472), - [anon_sym_None] = ACTIONS(1470), - [sym_integer] = ACTIONS(1470), - [sym_float] = ACTIONS(1472), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_api] = ACTIONS(1470), - [sym_true] = ACTIONS(1470), - [sym_false] = ACTIONS(1470), + [sym_identifier] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_import] = ACTIONS(1481), + [anon_sym_cimport] = ACTIONS(1481), + [anon_sym_from] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_print] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_del] = ACTIONS(1481), + [anon_sym_raise] = ACTIONS(1481), + [anon_sym_pass] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_match] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_try] = ACTIONS(1481), + [anon_sym_with] = ACTIONS(1481), + [anon_sym_def] = ACTIONS(1481), + [anon_sym_global] = ACTIONS(1481), + [anon_sym_nonlocal] = ACTIONS(1481), + [anon_sym_exec] = ACTIONS(1481), + [anon_sym_type] = ACTIONS(1481), + [anon_sym_class] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(1483), + [anon_sym_AT] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_LBRACE] = ACTIONS(1483), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_not] = ACTIONS(1481), + [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(1483), + [anon_sym_lambda] = ACTIONS(1481), + [anon_sym_yield] = ACTIONS(1481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1483), + [anon_sym_None] = ACTIONS(1481), + [sym_integer] = ACTIONS(1481), + [sym_float] = ACTIONS(1483), + [anon_sym_await] = ACTIONS(1481), + [anon_sym_api] = ACTIONS(1481), + [sym_true] = ACTIONS(1481), + [sym_false] = ACTIONS(1481), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1470), - [anon_sym_include] = ACTIONS(1470), - [anon_sym_DEF] = ACTIONS(1470), - [anon_sym_cdef] = ACTIONS(1470), - [anon_sym_cpdef] = ACTIONS(1470), - [anon_sym_int] = ACTIONS(1470), - [anon_sym_double] = ACTIONS(1470), - [anon_sym_complex] = ACTIONS(1470), - [anon_sym_new] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1470), - [anon_sym_unsigned] = ACTIONS(1470), - [anon_sym_char] = ACTIONS(1470), - [anon_sym_short] = ACTIONS(1470), - [anon_sym_long] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [anon_sym_volatile] = ACTIONS(1470), - [anon_sym_ctypedef] = ACTIONS(1470), - [anon_sym_struct] = ACTIONS(1470), - [anon_sym_union] = ACTIONS(1470), - [anon_sym_enum] = ACTIONS(1470), - [anon_sym_cppclass] = ACTIONS(1470), - [anon_sym_fused] = ACTIONS(1470), - [anon_sym_public] = ACTIONS(1470), - [anon_sym_packed] = ACTIONS(1470), - [anon_sym_inline] = ACTIONS(1470), - [anon_sym_readonly] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1470), - [sym__dedent] = ACTIONS(1472), - [sym_string_start] = ACTIONS(1472), + [anon_sym_property] = ACTIONS(1481), + [anon_sym_include] = ACTIONS(1481), + [anon_sym_DEF] = ACTIONS(1481), + [anon_sym_cdef] = ACTIONS(1481), + [anon_sym_cpdef] = ACTIONS(1481), + [anon_sym_int] = ACTIONS(1481), + [anon_sym_double] = ACTIONS(1481), + [anon_sym_complex] = ACTIONS(1481), + [anon_sym_new] = ACTIONS(1481), + [anon_sym_signed] = ACTIONS(1481), + [anon_sym_unsigned] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_short] = ACTIONS(1481), + [anon_sym_long] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_volatile] = ACTIONS(1481), + [anon_sym_ctypedef] = ACTIONS(1481), + [anon_sym_struct] = ACTIONS(1481), + [anon_sym_union] = ACTIONS(1481), + [anon_sym_enum] = ACTIONS(1481), + [anon_sym_cppclass] = ACTIONS(1481), + [anon_sym_fused] = ACTIONS(1481), + [anon_sym_public] = ACTIONS(1481), + [anon_sym_packed] = ACTIONS(1481), + [anon_sym_inline] = ACTIONS(1481), + [anon_sym_readonly] = ACTIONS(1481), + [anon_sym_sizeof] = ACTIONS(1481), + [sym__dedent] = ACTIONS(1483), + [sym_string_start] = ACTIONS(1483), }, [463] = { - [sym_identifier] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_import] = ACTIONS(1474), - [anon_sym_cimport] = ACTIONS(1474), - [anon_sym_from] = ACTIONS(1474), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_print] = ACTIONS(1474), - [anon_sym_assert] = ACTIONS(1474), - [anon_sym_return] = ACTIONS(1474), - [anon_sym_del] = ACTIONS(1474), - [anon_sym_raise] = ACTIONS(1474), - [anon_sym_pass] = ACTIONS(1474), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1474), - [anon_sym_match] = ACTIONS(1474), - [anon_sym_async] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1474), - [anon_sym_try] = ACTIONS(1474), - [anon_sym_with] = ACTIONS(1474), - [anon_sym_def] = ACTIONS(1474), - [anon_sym_global] = ACTIONS(1474), - [anon_sym_nonlocal] = ACTIONS(1474), - [anon_sym_exec] = ACTIONS(1474), - [anon_sym_type] = ACTIONS(1474), - [anon_sym_class] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_not] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_TILDE] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_lambda] = ACTIONS(1474), - [anon_sym_yield] = ACTIONS(1474), - [sym_ellipsis] = ACTIONS(1476), - [anon_sym_None] = ACTIONS(1474), - [sym_integer] = ACTIONS(1474), - [sym_float] = ACTIONS(1476), - [anon_sym_await] = ACTIONS(1474), - [anon_sym_api] = ACTIONS(1474), - [sym_true] = ACTIONS(1474), - [sym_false] = ACTIONS(1474), + [sym_identifier] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_import] = ACTIONS(1485), + [anon_sym_cimport] = ACTIONS(1485), + [anon_sym_from] = ACTIONS(1485), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_print] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_del] = ACTIONS(1485), + [anon_sym_raise] = ACTIONS(1485), + [anon_sym_pass] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_async] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_try] = ACTIONS(1485), + [anon_sym_with] = ACTIONS(1485), + [anon_sym_def] = ACTIONS(1485), + [anon_sym_global] = ACTIONS(1485), + [anon_sym_nonlocal] = ACTIONS(1485), + [anon_sym_exec] = ACTIONS(1485), + [anon_sym_type] = ACTIONS(1485), + [anon_sym_class] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1487), + [anon_sym_AT] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1487), + [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_not] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1487), + [anon_sym_lambda] = ACTIONS(1485), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1487), + [anon_sym_None] = ACTIONS(1485), + [sym_integer] = ACTIONS(1485), + [sym_float] = ACTIONS(1487), + [anon_sym_await] = ACTIONS(1485), + [anon_sym_api] = ACTIONS(1485), + [sym_true] = ACTIONS(1485), + [sym_false] = ACTIONS(1485), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1474), - [anon_sym_include] = ACTIONS(1474), - [anon_sym_DEF] = ACTIONS(1474), - [anon_sym_cdef] = ACTIONS(1474), - [anon_sym_cpdef] = ACTIONS(1474), - [anon_sym_int] = ACTIONS(1474), - [anon_sym_double] = ACTIONS(1474), - [anon_sym_complex] = ACTIONS(1474), - [anon_sym_new] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1474), - [anon_sym_unsigned] = ACTIONS(1474), - [anon_sym_char] = ACTIONS(1474), - [anon_sym_short] = ACTIONS(1474), - [anon_sym_long] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1474), - [anon_sym_volatile] = ACTIONS(1474), - [anon_sym_ctypedef] = ACTIONS(1474), - [anon_sym_struct] = ACTIONS(1474), - [anon_sym_union] = ACTIONS(1474), - [anon_sym_enum] = ACTIONS(1474), - [anon_sym_cppclass] = ACTIONS(1474), - [anon_sym_fused] = ACTIONS(1474), - [anon_sym_public] = ACTIONS(1474), - [anon_sym_packed] = ACTIONS(1474), - [anon_sym_inline] = ACTIONS(1474), - [anon_sym_readonly] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1474), - [sym__dedent] = ACTIONS(1476), - [sym_string_start] = ACTIONS(1476), + [anon_sym_property] = ACTIONS(1485), + [anon_sym_include] = ACTIONS(1485), + [anon_sym_DEF] = ACTIONS(1485), + [anon_sym_cdef] = ACTIONS(1485), + [anon_sym_cpdef] = ACTIONS(1485), + [anon_sym_int] = ACTIONS(1485), + [anon_sym_double] = ACTIONS(1485), + [anon_sym_complex] = ACTIONS(1485), + [anon_sym_new] = ACTIONS(1485), + [anon_sym_signed] = ACTIONS(1485), + [anon_sym_unsigned] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_volatile] = ACTIONS(1485), + [anon_sym_ctypedef] = ACTIONS(1485), + [anon_sym_struct] = ACTIONS(1485), + [anon_sym_union] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1485), + [anon_sym_cppclass] = ACTIONS(1485), + [anon_sym_fused] = ACTIONS(1485), + [anon_sym_public] = ACTIONS(1485), + [anon_sym_packed] = ACTIONS(1485), + [anon_sym_inline] = ACTIONS(1485), + [anon_sym_readonly] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1485), + [sym__dedent] = ACTIONS(1487), + [sym_string_start] = ACTIONS(1487), }, [464] = { - [sym_identifier] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_import] = ACTIONS(1478), - [anon_sym_cimport] = ACTIONS(1478), - [anon_sym_from] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1480), - [anon_sym_print] = ACTIONS(1478), - [anon_sym_assert] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_del] = ACTIONS(1478), - [anon_sym_raise] = ACTIONS(1478), - [anon_sym_pass] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_match] = ACTIONS(1478), - [anon_sym_async] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_try] = ACTIONS(1478), - [anon_sym_with] = ACTIONS(1478), - [anon_sym_def] = ACTIONS(1478), - [anon_sym_global] = ACTIONS(1478), - [anon_sym_nonlocal] = ACTIONS(1478), - [anon_sym_exec] = ACTIONS(1478), - [anon_sym_type] = ACTIONS(1478), - [anon_sym_class] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_AT] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_not] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_TILDE] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_lambda] = ACTIONS(1478), - [anon_sym_yield] = ACTIONS(1478), - [sym_ellipsis] = ACTIONS(1480), - [anon_sym_None] = ACTIONS(1478), - [sym_integer] = ACTIONS(1478), - [sym_float] = ACTIONS(1480), - [anon_sym_await] = ACTIONS(1478), - [anon_sym_api] = ACTIONS(1478), - [sym_true] = ACTIONS(1478), - [sym_false] = ACTIONS(1478), + [sym_identifier] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_import] = ACTIONS(1489), + [anon_sym_cimport] = ACTIONS(1489), + [anon_sym_from] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_print] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_del] = ACTIONS(1489), + [anon_sym_raise] = ACTIONS(1489), + [anon_sym_pass] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_match] = ACTIONS(1489), + [anon_sym_async] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_try] = ACTIONS(1489), + [anon_sym_with] = ACTIONS(1489), + [anon_sym_def] = ACTIONS(1489), + [anon_sym_global] = ACTIONS(1489), + [anon_sym_nonlocal] = ACTIONS(1489), + [anon_sym_exec] = ACTIONS(1489), + [anon_sym_type] = ACTIONS(1489), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_AT] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_LBRACE] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_not] = ACTIONS(1489), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_lambda] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), + [anon_sym_None] = ACTIONS(1489), + [sym_integer] = ACTIONS(1489), + [sym_float] = ACTIONS(1491), + [anon_sym_await] = ACTIONS(1489), + [anon_sym_api] = ACTIONS(1489), + [sym_true] = ACTIONS(1489), + [sym_false] = ACTIONS(1489), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1478), - [anon_sym_include] = ACTIONS(1478), - [anon_sym_DEF] = ACTIONS(1478), - [anon_sym_cdef] = ACTIONS(1478), - [anon_sym_cpdef] = ACTIONS(1478), - [anon_sym_int] = ACTIONS(1478), - [anon_sym_double] = ACTIONS(1478), - [anon_sym_complex] = ACTIONS(1478), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1478), - [anon_sym_unsigned] = ACTIONS(1478), - [anon_sym_char] = ACTIONS(1478), - [anon_sym_short] = ACTIONS(1478), - [anon_sym_long] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_volatile] = ACTIONS(1478), - [anon_sym_ctypedef] = ACTIONS(1478), - [anon_sym_struct] = ACTIONS(1478), - [anon_sym_union] = ACTIONS(1478), - [anon_sym_enum] = ACTIONS(1478), - [anon_sym_cppclass] = ACTIONS(1478), - [anon_sym_fused] = ACTIONS(1478), - [anon_sym_public] = ACTIONS(1478), - [anon_sym_packed] = ACTIONS(1478), - [anon_sym_inline] = ACTIONS(1478), - [anon_sym_readonly] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1478), - [sym__dedent] = ACTIONS(1480), - [sym_string_start] = ACTIONS(1480), + [anon_sym_property] = ACTIONS(1489), + [anon_sym_include] = ACTIONS(1489), + [anon_sym_DEF] = ACTIONS(1489), + [anon_sym_cdef] = ACTIONS(1489), + [anon_sym_cpdef] = ACTIONS(1489), + [anon_sym_int] = ACTIONS(1489), + [anon_sym_double] = ACTIONS(1489), + [anon_sym_complex] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1489), + [anon_sym_signed] = ACTIONS(1489), + [anon_sym_unsigned] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_volatile] = ACTIONS(1489), + [anon_sym_ctypedef] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1489), + [anon_sym_union] = ACTIONS(1489), + [anon_sym_enum] = ACTIONS(1489), + [anon_sym_cppclass] = ACTIONS(1489), + [anon_sym_fused] = ACTIONS(1489), + [anon_sym_public] = ACTIONS(1489), + [anon_sym_packed] = ACTIONS(1489), + [anon_sym_inline] = ACTIONS(1489), + [anon_sym_readonly] = ACTIONS(1489), + [anon_sym_sizeof] = ACTIONS(1489), + [sym__dedent] = ACTIONS(1491), + [sym_string_start] = ACTIONS(1491), }, [465] = { - [sym_identifier] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(1482), - [anon_sym_cimport] = ACTIONS(1482), - [anon_sym_from] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_print] = ACTIONS(1482), - [anon_sym_assert] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_del] = ACTIONS(1482), - [anon_sym_raise] = ACTIONS(1482), - [anon_sym_pass] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_match] = ACTIONS(1482), - [anon_sym_async] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_try] = ACTIONS(1482), - [anon_sym_with] = ACTIONS(1482), - [anon_sym_def] = ACTIONS(1482), - [anon_sym_global] = ACTIONS(1482), - [anon_sym_nonlocal] = ACTIONS(1482), - [anon_sym_exec] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_class] = ACTIONS(1482), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_AT] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_not] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_TILDE] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_lambda] = ACTIONS(1482), - [anon_sym_yield] = ACTIONS(1482), - [sym_ellipsis] = ACTIONS(1484), - [anon_sym_None] = ACTIONS(1482), - [sym_integer] = ACTIONS(1482), - [sym_float] = ACTIONS(1484), - [anon_sym_await] = ACTIONS(1482), - [anon_sym_api] = ACTIONS(1482), - [sym_true] = ACTIONS(1482), - [sym_false] = ACTIONS(1482), + [sym_identifier] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_import] = ACTIONS(1493), + [anon_sym_cimport] = ACTIONS(1493), + [anon_sym_from] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_print] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_del] = ACTIONS(1493), + [anon_sym_raise] = ACTIONS(1493), + [anon_sym_pass] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_match] = ACTIONS(1493), + [anon_sym_async] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_try] = ACTIONS(1493), + [anon_sym_with] = ACTIONS(1493), + [anon_sym_def] = ACTIONS(1493), + [anon_sym_global] = ACTIONS(1493), + [anon_sym_nonlocal] = ACTIONS(1493), + [anon_sym_exec] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_class] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_LT] = ACTIONS(1495), + [anon_sym_lambda] = ACTIONS(1493), + [anon_sym_yield] = ACTIONS(1493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1495), + [anon_sym_None] = ACTIONS(1493), + [sym_integer] = ACTIONS(1493), + [sym_float] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1493), + [anon_sym_api] = ACTIONS(1493), + [sym_true] = ACTIONS(1493), + [sym_false] = ACTIONS(1493), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1482), - [anon_sym_include] = ACTIONS(1482), - [anon_sym_DEF] = ACTIONS(1482), - [anon_sym_cdef] = ACTIONS(1482), - [anon_sym_cpdef] = ACTIONS(1482), - [anon_sym_int] = ACTIONS(1482), - [anon_sym_double] = ACTIONS(1482), - [anon_sym_complex] = ACTIONS(1482), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1482), - [anon_sym_unsigned] = ACTIONS(1482), - [anon_sym_char] = ACTIONS(1482), - [anon_sym_short] = ACTIONS(1482), - [anon_sym_long] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_volatile] = ACTIONS(1482), - [anon_sym_ctypedef] = ACTIONS(1482), - [anon_sym_struct] = ACTIONS(1482), - [anon_sym_union] = ACTIONS(1482), - [anon_sym_enum] = ACTIONS(1482), - [anon_sym_cppclass] = ACTIONS(1482), - [anon_sym_fused] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_packed] = ACTIONS(1482), - [anon_sym_inline] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1482), - [sym__dedent] = ACTIONS(1484), - [sym_string_start] = ACTIONS(1484), + [anon_sym_property] = ACTIONS(1493), + [anon_sym_include] = ACTIONS(1493), + [anon_sym_DEF] = ACTIONS(1493), + [anon_sym_cdef] = ACTIONS(1493), + [anon_sym_cpdef] = ACTIONS(1493), + [anon_sym_int] = ACTIONS(1493), + [anon_sym_double] = ACTIONS(1493), + [anon_sym_complex] = ACTIONS(1493), + [anon_sym_new] = ACTIONS(1493), + [anon_sym_signed] = ACTIONS(1493), + [anon_sym_unsigned] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_volatile] = ACTIONS(1493), + [anon_sym_ctypedef] = ACTIONS(1493), + [anon_sym_struct] = ACTIONS(1493), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_enum] = ACTIONS(1493), + [anon_sym_cppclass] = ACTIONS(1493), + [anon_sym_fused] = ACTIONS(1493), + [anon_sym_public] = ACTIONS(1493), + [anon_sym_packed] = ACTIONS(1493), + [anon_sym_inline] = ACTIONS(1493), + [anon_sym_readonly] = ACTIONS(1493), + [anon_sym_sizeof] = ACTIONS(1493), + [sym__dedent] = ACTIONS(1495), + [sym_string_start] = ACTIONS(1495), }, [466] = { - [sym_identifier] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym_import] = ACTIONS(1486), - [anon_sym_cimport] = ACTIONS(1486), - [anon_sym_from] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1488), - [anon_sym_print] = ACTIONS(1486), - [anon_sym_assert] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_del] = ACTIONS(1486), - [anon_sym_raise] = ACTIONS(1486), - [anon_sym_pass] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_match] = ACTIONS(1486), - [anon_sym_async] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_try] = ACTIONS(1486), - [anon_sym_with] = ACTIONS(1486), - [anon_sym_def] = ACTIONS(1486), - [anon_sym_global] = ACTIONS(1486), - [anon_sym_nonlocal] = ACTIONS(1486), - [anon_sym_exec] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_class] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_not] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_TILDE] = ACTIONS(1488), - [anon_sym_LT] = ACTIONS(1488), - [anon_sym_lambda] = ACTIONS(1486), - [anon_sym_yield] = ACTIONS(1486), - [sym_ellipsis] = ACTIONS(1488), - [anon_sym_None] = ACTIONS(1486), - [sym_integer] = ACTIONS(1486), - [sym_float] = ACTIONS(1488), - [anon_sym_await] = ACTIONS(1486), - [anon_sym_api] = ACTIONS(1486), - [sym_true] = ACTIONS(1486), - [sym_false] = ACTIONS(1486), + [sym_identifier] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_import] = ACTIONS(1497), + [anon_sym_cimport] = ACTIONS(1497), + [anon_sym_from] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_print] = ACTIONS(1497), + [anon_sym_assert] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_del] = ACTIONS(1497), + [anon_sym_raise] = ACTIONS(1497), + [anon_sym_pass] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(1497), + [anon_sym_async] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_try] = ACTIONS(1497), + [anon_sym_with] = ACTIONS(1497), + [anon_sym_def] = ACTIONS(1497), + [anon_sym_global] = ACTIONS(1497), + [anon_sym_nonlocal] = ACTIONS(1497), + [anon_sym_exec] = ACTIONS(1497), + [anon_sym_type] = ACTIONS(1497), + [anon_sym_class] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_AT] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_not] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_lambda] = ACTIONS(1497), + [anon_sym_yield] = ACTIONS(1497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1499), + [anon_sym_None] = ACTIONS(1497), + [sym_integer] = ACTIONS(1497), + [sym_float] = ACTIONS(1499), + [anon_sym_await] = ACTIONS(1497), + [anon_sym_api] = ACTIONS(1497), + [sym_true] = ACTIONS(1497), + [sym_false] = ACTIONS(1497), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1486), - [anon_sym_include] = ACTIONS(1486), - [anon_sym_DEF] = ACTIONS(1486), - [anon_sym_cdef] = ACTIONS(1486), - [anon_sym_cpdef] = ACTIONS(1486), - [anon_sym_int] = ACTIONS(1486), - [anon_sym_double] = ACTIONS(1486), - [anon_sym_complex] = ACTIONS(1486), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1486), - [anon_sym_unsigned] = ACTIONS(1486), - [anon_sym_char] = ACTIONS(1486), - [anon_sym_short] = ACTIONS(1486), - [anon_sym_long] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_volatile] = ACTIONS(1486), - [anon_sym_ctypedef] = ACTIONS(1486), - [anon_sym_struct] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1486), - [anon_sym_enum] = ACTIONS(1486), - [anon_sym_cppclass] = ACTIONS(1486), - [anon_sym_fused] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_packed] = ACTIONS(1486), - [anon_sym_inline] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1486), - [sym__dedent] = ACTIONS(1488), - [sym_string_start] = ACTIONS(1488), + [anon_sym_property] = ACTIONS(1497), + [anon_sym_include] = ACTIONS(1497), + [anon_sym_DEF] = ACTIONS(1497), + [anon_sym_cdef] = ACTIONS(1497), + [anon_sym_cpdef] = ACTIONS(1497), + [anon_sym_int] = ACTIONS(1497), + [anon_sym_double] = ACTIONS(1497), + [anon_sym_complex] = ACTIONS(1497), + [anon_sym_new] = ACTIONS(1497), + [anon_sym_signed] = ACTIONS(1497), + [anon_sym_unsigned] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_volatile] = ACTIONS(1497), + [anon_sym_ctypedef] = ACTIONS(1497), + [anon_sym_struct] = ACTIONS(1497), + [anon_sym_union] = ACTIONS(1497), + [anon_sym_enum] = ACTIONS(1497), + [anon_sym_cppclass] = ACTIONS(1497), + [anon_sym_fused] = ACTIONS(1497), + [anon_sym_public] = ACTIONS(1497), + [anon_sym_packed] = ACTIONS(1497), + [anon_sym_inline] = ACTIONS(1497), + [anon_sym_readonly] = ACTIONS(1497), + [anon_sym_sizeof] = ACTIONS(1497), + [sym__dedent] = ACTIONS(1499), + [sym_string_start] = ACTIONS(1499), }, [467] = { - [sym_identifier] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_import] = ACTIONS(1490), - [anon_sym_cimport] = ACTIONS(1490), - [anon_sym_from] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_print] = ACTIONS(1490), - [anon_sym_assert] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_del] = ACTIONS(1490), - [anon_sym_raise] = ACTIONS(1490), - [anon_sym_pass] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_match] = ACTIONS(1490), - [anon_sym_async] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_try] = ACTIONS(1490), - [anon_sym_with] = ACTIONS(1490), - [anon_sym_def] = ACTIONS(1490), - [anon_sym_global] = ACTIONS(1490), - [anon_sym_nonlocal] = ACTIONS(1490), - [anon_sym_exec] = ACTIONS(1490), - [anon_sym_type] = ACTIONS(1490), - [anon_sym_class] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_AT] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_not] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1492), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_lambda] = ACTIONS(1490), - [anon_sym_yield] = ACTIONS(1490), - [sym_ellipsis] = ACTIONS(1492), - [anon_sym_None] = ACTIONS(1490), - [sym_integer] = ACTIONS(1490), - [sym_float] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1490), - [anon_sym_api] = ACTIONS(1490), - [sym_true] = ACTIONS(1490), - [sym_false] = ACTIONS(1490), + [sym_identifier] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_import] = ACTIONS(1501), + [anon_sym_cimport] = ACTIONS(1501), + [anon_sym_from] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_print] = ACTIONS(1501), + [anon_sym_assert] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_del] = ACTIONS(1501), + [anon_sym_raise] = ACTIONS(1501), + [anon_sym_pass] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_match] = ACTIONS(1501), + [anon_sym_async] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_try] = ACTIONS(1501), + [anon_sym_with] = ACTIONS(1501), + [anon_sym_def] = ACTIONS(1501), + [anon_sym_global] = ACTIONS(1501), + [anon_sym_nonlocal] = ACTIONS(1501), + [anon_sym_exec] = ACTIONS(1501), + [anon_sym_type] = ACTIONS(1501), + [anon_sym_class] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_AT] = ACTIONS(1503), + [anon_sym_DASH] = ACTIONS(1503), + [anon_sym_LBRACE] = ACTIONS(1503), + [anon_sym_PLUS] = ACTIONS(1503), + [anon_sym_not] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1503), + [anon_sym_lambda] = ACTIONS(1501), + [anon_sym_yield] = ACTIONS(1501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1503), + [anon_sym_None] = ACTIONS(1501), + [sym_integer] = ACTIONS(1501), + [sym_float] = ACTIONS(1503), + [anon_sym_await] = ACTIONS(1501), + [anon_sym_api] = ACTIONS(1501), + [sym_true] = ACTIONS(1501), + [sym_false] = ACTIONS(1501), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1490), - [anon_sym_include] = ACTIONS(1490), - [anon_sym_DEF] = ACTIONS(1490), - [anon_sym_cdef] = ACTIONS(1490), - [anon_sym_cpdef] = ACTIONS(1490), - [anon_sym_int] = ACTIONS(1490), - [anon_sym_double] = ACTIONS(1490), - [anon_sym_complex] = ACTIONS(1490), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_signed] = ACTIONS(1490), - [anon_sym_unsigned] = ACTIONS(1490), - [anon_sym_char] = ACTIONS(1490), - [anon_sym_short] = ACTIONS(1490), - [anon_sym_long] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [anon_sym_volatile] = ACTIONS(1490), - [anon_sym_ctypedef] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_union] = ACTIONS(1490), - [anon_sym_enum] = ACTIONS(1490), - [anon_sym_cppclass] = ACTIONS(1490), - [anon_sym_fused] = ACTIONS(1490), - [anon_sym_public] = ACTIONS(1490), - [anon_sym_packed] = ACTIONS(1490), - [anon_sym_inline] = ACTIONS(1490), - [anon_sym_readonly] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1490), - [sym__dedent] = ACTIONS(1492), - [sym_string_start] = ACTIONS(1492), + [anon_sym_property] = ACTIONS(1501), + [anon_sym_include] = ACTIONS(1501), + [anon_sym_DEF] = ACTIONS(1501), + [anon_sym_cdef] = ACTIONS(1501), + [anon_sym_cpdef] = ACTIONS(1501), + [anon_sym_int] = ACTIONS(1501), + [anon_sym_double] = ACTIONS(1501), + [anon_sym_complex] = ACTIONS(1501), + [anon_sym_new] = ACTIONS(1501), + [anon_sym_signed] = ACTIONS(1501), + [anon_sym_unsigned] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_volatile] = ACTIONS(1501), + [anon_sym_ctypedef] = ACTIONS(1501), + [anon_sym_struct] = ACTIONS(1501), + [anon_sym_union] = ACTIONS(1501), + [anon_sym_enum] = ACTIONS(1501), + [anon_sym_cppclass] = ACTIONS(1501), + [anon_sym_fused] = ACTIONS(1501), + [anon_sym_public] = ACTIONS(1501), + [anon_sym_packed] = ACTIONS(1501), + [anon_sym_inline] = ACTIONS(1501), + [anon_sym_readonly] = ACTIONS(1501), + [anon_sym_sizeof] = ACTIONS(1501), + [sym__dedent] = ACTIONS(1503), + [sym_string_start] = ACTIONS(1503), }, [468] = { - [sym_identifier] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_import] = ACTIONS(1494), - [anon_sym_cimport] = ACTIONS(1494), - [anon_sym_from] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1496), - [anon_sym_print] = ACTIONS(1494), - [anon_sym_assert] = ACTIONS(1494), - [anon_sym_return] = ACTIONS(1494), - [anon_sym_del] = ACTIONS(1494), - [anon_sym_raise] = ACTIONS(1494), - [anon_sym_pass] = ACTIONS(1494), - [anon_sym_break] = ACTIONS(1494), - [anon_sym_continue] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1494), - [anon_sym_match] = ACTIONS(1494), - [anon_sym_async] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1494), - [anon_sym_try] = ACTIONS(1494), - [anon_sym_with] = ACTIONS(1494), - [anon_sym_def] = ACTIONS(1494), - [anon_sym_global] = ACTIONS(1494), - [anon_sym_nonlocal] = ACTIONS(1494), - [anon_sym_exec] = ACTIONS(1494), - [anon_sym_type] = ACTIONS(1494), - [anon_sym_class] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1496), - [anon_sym_AT] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_not] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_TILDE] = ACTIONS(1496), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_lambda] = ACTIONS(1494), - [anon_sym_yield] = ACTIONS(1494), - [sym_ellipsis] = ACTIONS(1496), - [anon_sym_None] = ACTIONS(1494), - [sym_integer] = ACTIONS(1494), - [sym_float] = ACTIONS(1496), - [anon_sym_await] = ACTIONS(1494), - [anon_sym_api] = ACTIONS(1494), - [sym_true] = ACTIONS(1494), - [sym_false] = ACTIONS(1494), + [sym_identifier] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_import] = ACTIONS(1505), + [anon_sym_cimport] = ACTIONS(1505), + [anon_sym_from] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_print] = ACTIONS(1505), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_del] = ACTIONS(1505), + [anon_sym_raise] = ACTIONS(1505), + [anon_sym_pass] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_match] = ACTIONS(1505), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_try] = ACTIONS(1505), + [anon_sym_with] = ACTIONS(1505), + [anon_sym_def] = ACTIONS(1505), + [anon_sym_global] = ACTIONS(1505), + [anon_sym_nonlocal] = ACTIONS(1505), + [anon_sym_exec] = ACTIONS(1505), + [anon_sym_type] = ACTIONS(1505), + [anon_sym_class] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_not] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1507), + [anon_sym_lambda] = ACTIONS(1505), + [anon_sym_yield] = ACTIONS(1505), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), + [anon_sym_None] = ACTIONS(1505), + [sym_integer] = ACTIONS(1505), + [sym_float] = ACTIONS(1507), + [anon_sym_await] = ACTIONS(1505), + [anon_sym_api] = ACTIONS(1505), + [sym_true] = ACTIONS(1505), + [sym_false] = ACTIONS(1505), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1494), - [anon_sym_include] = ACTIONS(1494), - [anon_sym_DEF] = ACTIONS(1494), - [anon_sym_cdef] = ACTIONS(1494), - [anon_sym_cpdef] = ACTIONS(1494), - [anon_sym_int] = ACTIONS(1494), - [anon_sym_double] = ACTIONS(1494), - [anon_sym_complex] = ACTIONS(1494), - [anon_sym_new] = ACTIONS(1494), - [anon_sym_signed] = ACTIONS(1494), - [anon_sym_unsigned] = ACTIONS(1494), - [anon_sym_char] = ACTIONS(1494), - [anon_sym_short] = ACTIONS(1494), - [anon_sym_long] = ACTIONS(1494), - [anon_sym_const] = ACTIONS(1494), - [anon_sym_volatile] = ACTIONS(1494), - [anon_sym_ctypedef] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1494), - [anon_sym_union] = ACTIONS(1494), - [anon_sym_enum] = ACTIONS(1494), - [anon_sym_cppclass] = ACTIONS(1494), - [anon_sym_fused] = ACTIONS(1494), - [anon_sym_public] = ACTIONS(1494), - [anon_sym_packed] = ACTIONS(1494), - [anon_sym_inline] = ACTIONS(1494), - [anon_sym_readonly] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1494), - [sym__dedent] = ACTIONS(1496), - [sym_string_start] = ACTIONS(1496), + [anon_sym_property] = ACTIONS(1505), + [anon_sym_include] = ACTIONS(1505), + [anon_sym_DEF] = ACTIONS(1505), + [anon_sym_cdef] = ACTIONS(1505), + [anon_sym_cpdef] = ACTIONS(1505), + [anon_sym_int] = ACTIONS(1505), + [anon_sym_double] = ACTIONS(1505), + [anon_sym_complex] = ACTIONS(1505), + [anon_sym_new] = ACTIONS(1505), + [anon_sym_signed] = ACTIONS(1505), + [anon_sym_unsigned] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1505), + [anon_sym_long] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_volatile] = ACTIONS(1505), + [anon_sym_ctypedef] = ACTIONS(1505), + [anon_sym_struct] = ACTIONS(1505), + [anon_sym_union] = ACTIONS(1505), + [anon_sym_enum] = ACTIONS(1505), + [anon_sym_cppclass] = ACTIONS(1505), + [anon_sym_fused] = ACTIONS(1505), + [anon_sym_public] = ACTIONS(1505), + [anon_sym_packed] = ACTIONS(1505), + [anon_sym_inline] = ACTIONS(1505), + [anon_sym_readonly] = ACTIONS(1505), + [anon_sym_sizeof] = ACTIONS(1505), + [sym__dedent] = ACTIONS(1507), + [sym_string_start] = ACTIONS(1507), }, [469] = { - [sym_identifier] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym_import] = ACTIONS(1498), - [anon_sym_cimport] = ACTIONS(1498), - [anon_sym_from] = ACTIONS(1498), - [anon_sym_LPAREN] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1500), - [anon_sym_print] = ACTIONS(1498), - [anon_sym_assert] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1498), - [anon_sym_del] = ACTIONS(1498), - [anon_sym_raise] = ACTIONS(1498), - [anon_sym_pass] = ACTIONS(1498), - [anon_sym_break] = ACTIONS(1498), - [anon_sym_continue] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1498), - [anon_sym_match] = ACTIONS(1498), - [anon_sym_async] = ACTIONS(1498), - [anon_sym_for] = ACTIONS(1498), - [anon_sym_while] = ACTIONS(1498), - [anon_sym_try] = ACTIONS(1498), - [anon_sym_with] = ACTIONS(1498), - [anon_sym_def] = ACTIONS(1498), - [anon_sym_global] = ACTIONS(1498), - [anon_sym_nonlocal] = ACTIONS(1498), - [anon_sym_exec] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_class] = ACTIONS(1498), - [anon_sym_LBRACK] = ACTIONS(1500), - [anon_sym_AT] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_not] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_TILDE] = ACTIONS(1500), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_lambda] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1498), - [sym_ellipsis] = ACTIONS(1500), - [anon_sym_None] = ACTIONS(1498), - [sym_integer] = ACTIONS(1498), - [sym_float] = ACTIONS(1500), - [anon_sym_await] = ACTIONS(1498), - [anon_sym_api] = ACTIONS(1498), - [sym_true] = ACTIONS(1498), - [sym_false] = ACTIONS(1498), + [sym_identifier] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_import] = ACTIONS(1509), + [anon_sym_cimport] = ACTIONS(1509), + [anon_sym_from] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_print] = ACTIONS(1509), + [anon_sym_assert] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_del] = ACTIONS(1509), + [anon_sym_raise] = ACTIONS(1509), + [anon_sym_pass] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_match] = ACTIONS(1509), + [anon_sym_async] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_try] = ACTIONS(1509), + [anon_sym_with] = ACTIONS(1509), + [anon_sym_def] = ACTIONS(1509), + [anon_sym_global] = ACTIONS(1509), + [anon_sym_nonlocal] = ACTIONS(1509), + [anon_sym_exec] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_class] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_not] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1511), + [anon_sym_lambda] = ACTIONS(1509), + [anon_sym_yield] = ACTIONS(1509), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1511), + [anon_sym_None] = ACTIONS(1509), + [sym_integer] = ACTIONS(1509), + [sym_float] = ACTIONS(1511), + [anon_sym_await] = ACTIONS(1509), + [anon_sym_api] = ACTIONS(1509), + [sym_true] = ACTIONS(1509), + [sym_false] = ACTIONS(1509), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1498), - [anon_sym_include] = ACTIONS(1498), - [anon_sym_DEF] = ACTIONS(1498), - [anon_sym_cdef] = ACTIONS(1498), - [anon_sym_cpdef] = ACTIONS(1498), - [anon_sym_int] = ACTIONS(1498), - [anon_sym_double] = ACTIONS(1498), - [anon_sym_complex] = ACTIONS(1498), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_signed] = ACTIONS(1498), - [anon_sym_unsigned] = ACTIONS(1498), - [anon_sym_char] = ACTIONS(1498), - [anon_sym_short] = ACTIONS(1498), - [anon_sym_long] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(1498), - [anon_sym_volatile] = ACTIONS(1498), - [anon_sym_ctypedef] = ACTIONS(1498), - [anon_sym_struct] = ACTIONS(1498), - [anon_sym_union] = ACTIONS(1498), - [anon_sym_enum] = ACTIONS(1498), - [anon_sym_cppclass] = ACTIONS(1498), - [anon_sym_fused] = ACTIONS(1498), - [anon_sym_public] = ACTIONS(1498), - [anon_sym_packed] = ACTIONS(1498), - [anon_sym_inline] = ACTIONS(1498), - [anon_sym_readonly] = ACTIONS(1498), - [anon_sym_sizeof] = ACTIONS(1498), - [sym__dedent] = ACTIONS(1500), - [sym_string_start] = ACTIONS(1500), + [anon_sym_property] = ACTIONS(1509), + [anon_sym_include] = ACTIONS(1509), + [anon_sym_DEF] = ACTIONS(1509), + [anon_sym_cdef] = ACTIONS(1509), + [anon_sym_cpdef] = ACTIONS(1509), + [anon_sym_int] = ACTIONS(1509), + [anon_sym_double] = ACTIONS(1509), + [anon_sym_complex] = ACTIONS(1509), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_signed] = ACTIONS(1509), + [anon_sym_unsigned] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_volatile] = ACTIONS(1509), + [anon_sym_ctypedef] = ACTIONS(1509), + [anon_sym_struct] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1509), + [anon_sym_enum] = ACTIONS(1509), + [anon_sym_cppclass] = ACTIONS(1509), + [anon_sym_fused] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_packed] = ACTIONS(1509), + [anon_sym_inline] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_sizeof] = ACTIONS(1509), + [sym__dedent] = ACTIONS(1511), + [sym_string_start] = ACTIONS(1511), }, [470] = { - [sym_identifier] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_import] = ACTIONS(1502), - [anon_sym_cimport] = ACTIONS(1502), - [anon_sym_from] = ACTIONS(1502), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1504), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_assert] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1502), - [anon_sym_del] = ACTIONS(1502), - [anon_sym_raise] = ACTIONS(1502), - [anon_sym_pass] = ACTIONS(1502), - [anon_sym_break] = ACTIONS(1502), - [anon_sym_continue] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_for] = ACTIONS(1502), - [anon_sym_while] = ACTIONS(1502), - [anon_sym_try] = ACTIONS(1502), - [anon_sym_with] = ACTIONS(1502), - [anon_sym_def] = ACTIONS(1502), - [anon_sym_global] = ACTIONS(1502), - [anon_sym_nonlocal] = ACTIONS(1502), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_class] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_not] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(1504), - [anon_sym_lambda] = ACTIONS(1502), - [anon_sym_yield] = ACTIONS(1502), - [sym_ellipsis] = ACTIONS(1504), - [anon_sym_None] = ACTIONS(1502), - [sym_integer] = ACTIONS(1502), - [sym_float] = ACTIONS(1504), - [anon_sym_await] = ACTIONS(1502), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1502), - [sym_false] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_import] = ACTIONS(1513), + [anon_sym_cimport] = ACTIONS(1513), + [anon_sym_from] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_print] = ACTIONS(1513), + [anon_sym_assert] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_del] = ACTIONS(1513), + [anon_sym_raise] = ACTIONS(1513), + [anon_sym_pass] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_match] = ACTIONS(1513), + [anon_sym_async] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_try] = ACTIONS(1513), + [anon_sym_with] = ACTIONS(1513), + [anon_sym_def] = ACTIONS(1513), + [anon_sym_global] = ACTIONS(1513), + [anon_sym_nonlocal] = ACTIONS(1513), + [anon_sym_exec] = ACTIONS(1513), + [anon_sym_type] = ACTIONS(1513), + [anon_sym_class] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_AT] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1515), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_PLUS] = ACTIONS(1515), + [anon_sym_not] = ACTIONS(1513), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1515), + [anon_sym_lambda] = ACTIONS(1513), + [anon_sym_yield] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_None] = ACTIONS(1513), + [sym_integer] = ACTIONS(1513), + [sym_float] = ACTIONS(1515), + [anon_sym_await] = ACTIONS(1513), + [anon_sym_api] = ACTIONS(1513), + [sym_true] = ACTIONS(1513), + [sym_false] = ACTIONS(1513), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1502), - [anon_sym_include] = ACTIONS(1502), - [anon_sym_DEF] = ACTIONS(1502), - [anon_sym_cdef] = ACTIONS(1502), - [anon_sym_cpdef] = ACTIONS(1502), - [anon_sym_int] = ACTIONS(1502), - [anon_sym_double] = ACTIONS(1502), - [anon_sym_complex] = ACTIONS(1502), - [anon_sym_new] = ACTIONS(1502), - [anon_sym_signed] = ACTIONS(1502), - [anon_sym_unsigned] = ACTIONS(1502), - [anon_sym_char] = ACTIONS(1502), - [anon_sym_short] = ACTIONS(1502), - [anon_sym_long] = ACTIONS(1502), - [anon_sym_const] = ACTIONS(1502), - [anon_sym_volatile] = ACTIONS(1502), - [anon_sym_ctypedef] = ACTIONS(1502), - [anon_sym_struct] = ACTIONS(1502), - [anon_sym_union] = ACTIONS(1502), - [anon_sym_enum] = ACTIONS(1502), - [anon_sym_cppclass] = ACTIONS(1502), - [anon_sym_fused] = ACTIONS(1502), - [anon_sym_public] = ACTIONS(1502), - [anon_sym_packed] = ACTIONS(1502), - [anon_sym_inline] = ACTIONS(1502), - [anon_sym_readonly] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1502), - [sym__dedent] = ACTIONS(1504), - [sym_string_start] = ACTIONS(1504), + [anon_sym_property] = ACTIONS(1513), + [anon_sym_include] = ACTIONS(1513), + [anon_sym_DEF] = ACTIONS(1513), + [anon_sym_cdef] = ACTIONS(1513), + [anon_sym_cpdef] = ACTIONS(1513), + [anon_sym_int] = ACTIONS(1513), + [anon_sym_double] = ACTIONS(1513), + [anon_sym_complex] = ACTIONS(1513), + [anon_sym_new] = ACTIONS(1513), + [anon_sym_signed] = ACTIONS(1513), + [anon_sym_unsigned] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_volatile] = ACTIONS(1513), + [anon_sym_ctypedef] = ACTIONS(1513), + [anon_sym_struct] = ACTIONS(1513), + [anon_sym_union] = ACTIONS(1513), + [anon_sym_enum] = ACTIONS(1513), + [anon_sym_cppclass] = ACTIONS(1513), + [anon_sym_fused] = ACTIONS(1513), + [anon_sym_public] = ACTIONS(1513), + [anon_sym_packed] = ACTIONS(1513), + [anon_sym_inline] = ACTIONS(1513), + [anon_sym_readonly] = ACTIONS(1513), + [anon_sym_sizeof] = ACTIONS(1513), + [sym__dedent] = ACTIONS(1515), + [sym_string_start] = ACTIONS(1515), }, [471] = { - [sym_identifier] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_import] = ACTIONS(1506), - [anon_sym_cimport] = ACTIONS(1506), - [anon_sym_from] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_print] = ACTIONS(1506), - [anon_sym_assert] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1506), - [anon_sym_del] = ACTIONS(1506), - [anon_sym_raise] = ACTIONS(1506), - [anon_sym_pass] = ACTIONS(1506), - [anon_sym_break] = ACTIONS(1506), - [anon_sym_continue] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1506), - [anon_sym_match] = ACTIONS(1506), - [anon_sym_async] = ACTIONS(1506), - [anon_sym_for] = ACTIONS(1506), - [anon_sym_while] = ACTIONS(1506), - [anon_sym_try] = ACTIONS(1506), - [anon_sym_with] = ACTIONS(1506), - [anon_sym_def] = ACTIONS(1506), - [anon_sym_global] = ACTIONS(1506), - [anon_sym_nonlocal] = ACTIONS(1506), - [anon_sym_exec] = ACTIONS(1506), - [anon_sym_type] = ACTIONS(1506), - [anon_sym_class] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_AT] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1508), - [anon_sym_not] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_TILDE] = ACTIONS(1508), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_lambda] = ACTIONS(1506), - [anon_sym_yield] = ACTIONS(1506), - [sym_ellipsis] = ACTIONS(1508), - [anon_sym_None] = ACTIONS(1506), - [sym_integer] = ACTIONS(1506), - [sym_float] = ACTIONS(1508), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1506), - [sym_true] = ACTIONS(1506), - [sym_false] = ACTIONS(1506), + [sym_identifier] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_import] = ACTIONS(1517), + [anon_sym_cimport] = ACTIONS(1517), + [anon_sym_from] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_print] = ACTIONS(1517), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_del] = ACTIONS(1517), + [anon_sym_raise] = ACTIONS(1517), + [anon_sym_pass] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_try] = ACTIONS(1517), + [anon_sym_with] = ACTIONS(1517), + [anon_sym_def] = ACTIONS(1517), + [anon_sym_global] = ACTIONS(1517), + [anon_sym_nonlocal] = ACTIONS(1517), + [anon_sym_exec] = ACTIONS(1517), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_class] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_LT] = ACTIONS(1519), + [anon_sym_lambda] = ACTIONS(1517), + [anon_sym_yield] = ACTIONS(1517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1519), + [anon_sym_None] = ACTIONS(1517), + [sym_integer] = ACTIONS(1517), + [sym_float] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(1517), + [anon_sym_api] = ACTIONS(1517), + [sym_true] = ACTIONS(1517), + [sym_false] = ACTIONS(1517), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1506), - [anon_sym_include] = ACTIONS(1506), - [anon_sym_DEF] = ACTIONS(1506), - [anon_sym_cdef] = ACTIONS(1506), - [anon_sym_cpdef] = ACTIONS(1506), - [anon_sym_int] = ACTIONS(1506), - [anon_sym_double] = ACTIONS(1506), - [anon_sym_complex] = ACTIONS(1506), - [anon_sym_new] = ACTIONS(1506), - [anon_sym_signed] = ACTIONS(1506), - [anon_sym_unsigned] = ACTIONS(1506), - [anon_sym_char] = ACTIONS(1506), - [anon_sym_short] = ACTIONS(1506), - [anon_sym_long] = ACTIONS(1506), - [anon_sym_const] = ACTIONS(1506), - [anon_sym_volatile] = ACTIONS(1506), - [anon_sym_ctypedef] = ACTIONS(1506), - [anon_sym_struct] = ACTIONS(1506), - [anon_sym_union] = ACTIONS(1506), - [anon_sym_enum] = ACTIONS(1506), - [anon_sym_cppclass] = ACTIONS(1506), - [anon_sym_fused] = ACTIONS(1506), - [anon_sym_public] = ACTIONS(1506), - [anon_sym_packed] = ACTIONS(1506), - [anon_sym_inline] = ACTIONS(1506), - [anon_sym_readonly] = ACTIONS(1506), - [anon_sym_sizeof] = ACTIONS(1506), - [sym__dedent] = ACTIONS(1508), - [sym_string_start] = ACTIONS(1508), + [anon_sym_property] = ACTIONS(1517), + [anon_sym_include] = ACTIONS(1517), + [anon_sym_DEF] = ACTIONS(1517), + [anon_sym_cdef] = ACTIONS(1517), + [anon_sym_cpdef] = ACTIONS(1517), + [anon_sym_int] = ACTIONS(1517), + [anon_sym_double] = ACTIONS(1517), + [anon_sym_complex] = ACTIONS(1517), + [anon_sym_new] = ACTIONS(1517), + [anon_sym_signed] = ACTIONS(1517), + [anon_sym_unsigned] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_volatile] = ACTIONS(1517), + [anon_sym_ctypedef] = ACTIONS(1517), + [anon_sym_struct] = ACTIONS(1517), + [anon_sym_union] = ACTIONS(1517), + [anon_sym_enum] = ACTIONS(1517), + [anon_sym_cppclass] = ACTIONS(1517), + [anon_sym_fused] = ACTIONS(1517), + [anon_sym_public] = ACTIONS(1517), + [anon_sym_packed] = ACTIONS(1517), + [anon_sym_inline] = ACTIONS(1517), + [anon_sym_readonly] = ACTIONS(1517), + [anon_sym_sizeof] = ACTIONS(1517), + [sym__dedent] = ACTIONS(1519), + [sym_string_start] = ACTIONS(1519), }, [472] = { - [sym_identifier] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_import] = ACTIONS(1510), - [anon_sym_cimport] = ACTIONS(1510), - [anon_sym_from] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_print] = ACTIONS(1510), - [anon_sym_assert] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_del] = ACTIONS(1510), - [anon_sym_raise] = ACTIONS(1510), - [anon_sym_pass] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_match] = ACTIONS(1510), - [anon_sym_async] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_try] = ACTIONS(1510), - [anon_sym_with] = ACTIONS(1510), - [anon_sym_def] = ACTIONS(1510), - [anon_sym_global] = ACTIONS(1510), - [anon_sym_nonlocal] = ACTIONS(1510), - [anon_sym_exec] = ACTIONS(1510), - [anon_sym_type] = ACTIONS(1510), - [anon_sym_class] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_AT] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_not] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_TILDE] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1512), - [anon_sym_lambda] = ACTIONS(1510), - [anon_sym_yield] = ACTIONS(1510), - [sym_ellipsis] = ACTIONS(1512), - [anon_sym_None] = ACTIONS(1510), - [sym_integer] = ACTIONS(1510), - [sym_float] = ACTIONS(1512), - [anon_sym_await] = ACTIONS(1510), - [anon_sym_api] = ACTIONS(1510), - [sym_true] = ACTIONS(1510), - [sym_false] = ACTIONS(1510), + [sym_identifier] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_import] = ACTIONS(1521), + [anon_sym_cimport] = ACTIONS(1521), + [anon_sym_from] = ACTIONS(1521), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_print] = ACTIONS(1521), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_del] = ACTIONS(1521), + [anon_sym_raise] = ACTIONS(1521), + [anon_sym_pass] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_match] = ACTIONS(1521), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_try] = ACTIONS(1521), + [anon_sym_with] = ACTIONS(1521), + [anon_sym_def] = ACTIONS(1521), + [anon_sym_global] = ACTIONS(1521), + [anon_sym_nonlocal] = ACTIONS(1521), + [anon_sym_exec] = ACTIONS(1521), + [anon_sym_type] = ACTIONS(1521), + [anon_sym_class] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1523), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_not] = ACTIONS(1521), + [anon_sym_AMP] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_lambda] = ACTIONS(1521), + [anon_sym_yield] = ACTIONS(1521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1523), + [anon_sym_None] = ACTIONS(1521), + [sym_integer] = ACTIONS(1521), + [sym_float] = ACTIONS(1523), + [anon_sym_await] = ACTIONS(1521), + [anon_sym_api] = ACTIONS(1521), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1510), - [anon_sym_include] = ACTIONS(1510), - [anon_sym_DEF] = ACTIONS(1510), - [anon_sym_cdef] = ACTIONS(1510), - [anon_sym_cpdef] = ACTIONS(1510), - [anon_sym_int] = ACTIONS(1510), - [anon_sym_double] = ACTIONS(1510), - [anon_sym_complex] = ACTIONS(1510), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_signed] = ACTIONS(1510), - [anon_sym_unsigned] = ACTIONS(1510), - [anon_sym_char] = ACTIONS(1510), - [anon_sym_short] = ACTIONS(1510), - [anon_sym_long] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_volatile] = ACTIONS(1510), - [anon_sym_ctypedef] = ACTIONS(1510), - [anon_sym_struct] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_enum] = ACTIONS(1510), - [anon_sym_cppclass] = ACTIONS(1510), - [anon_sym_fused] = ACTIONS(1510), - [anon_sym_public] = ACTIONS(1510), - [anon_sym_packed] = ACTIONS(1510), - [anon_sym_inline] = ACTIONS(1510), - [anon_sym_readonly] = ACTIONS(1510), - [anon_sym_sizeof] = ACTIONS(1510), - [sym__dedent] = ACTIONS(1512), - [sym_string_start] = ACTIONS(1512), + [anon_sym_property] = ACTIONS(1521), + [anon_sym_include] = ACTIONS(1521), + [anon_sym_DEF] = ACTIONS(1521), + [anon_sym_cdef] = ACTIONS(1521), + [anon_sym_cpdef] = ACTIONS(1521), + [anon_sym_int] = ACTIONS(1521), + [anon_sym_double] = ACTIONS(1521), + [anon_sym_complex] = ACTIONS(1521), + [anon_sym_new] = ACTIONS(1521), + [anon_sym_signed] = ACTIONS(1521), + [anon_sym_unsigned] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_short] = ACTIONS(1521), + [anon_sym_long] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_volatile] = ACTIONS(1521), + [anon_sym_ctypedef] = ACTIONS(1521), + [anon_sym_struct] = ACTIONS(1521), + [anon_sym_union] = ACTIONS(1521), + [anon_sym_enum] = ACTIONS(1521), + [anon_sym_cppclass] = ACTIONS(1521), + [anon_sym_fused] = ACTIONS(1521), + [anon_sym_public] = ACTIONS(1521), + [anon_sym_packed] = ACTIONS(1521), + [anon_sym_inline] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1521), + [anon_sym_sizeof] = ACTIONS(1521), + [sym__dedent] = ACTIONS(1523), + [sym_string_start] = ACTIONS(1523), }, [473] = { - [sym_identifier] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_import] = ACTIONS(1514), - [anon_sym_cimport] = ACTIONS(1514), - [anon_sym_from] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_print] = ACTIONS(1514), - [anon_sym_assert] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_del] = ACTIONS(1514), - [anon_sym_raise] = ACTIONS(1514), - [anon_sym_pass] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_async] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_try] = ACTIONS(1514), - [anon_sym_with] = ACTIONS(1514), - [anon_sym_def] = ACTIONS(1514), - [anon_sym_global] = ACTIONS(1514), - [anon_sym_nonlocal] = ACTIONS(1514), - [anon_sym_exec] = ACTIONS(1514), - [anon_sym_type] = ACTIONS(1514), - [anon_sym_class] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_AT] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_not] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_TILDE] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_lambda] = ACTIONS(1514), - [anon_sym_yield] = ACTIONS(1514), - [sym_ellipsis] = ACTIONS(1516), - [anon_sym_None] = ACTIONS(1514), - [sym_integer] = ACTIONS(1514), - [sym_float] = ACTIONS(1516), - [anon_sym_await] = ACTIONS(1514), - [anon_sym_api] = ACTIONS(1514), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), + [sym_identifier] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_import] = ACTIONS(1525), + [anon_sym_cimport] = ACTIONS(1525), + [anon_sym_from] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_print] = ACTIONS(1525), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_del] = ACTIONS(1525), + [anon_sym_raise] = ACTIONS(1525), + [anon_sym_pass] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_match] = ACTIONS(1525), + [anon_sym_async] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_try] = ACTIONS(1525), + [anon_sym_with] = ACTIONS(1525), + [anon_sym_def] = ACTIONS(1525), + [anon_sym_global] = ACTIONS(1525), + [anon_sym_nonlocal] = ACTIONS(1525), + [anon_sym_exec] = ACTIONS(1525), + [anon_sym_type] = ACTIONS(1525), + [anon_sym_class] = ACTIONS(1525), + [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_AT] = ACTIONS(1527), + [anon_sym_DASH] = ACTIONS(1527), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1527), + [anon_sym_not] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_lambda] = ACTIONS(1525), + [anon_sym_yield] = ACTIONS(1525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1527), + [anon_sym_None] = ACTIONS(1525), + [sym_integer] = ACTIONS(1525), + [sym_float] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1525), + [anon_sym_api] = ACTIONS(1525), + [sym_true] = ACTIONS(1525), + [sym_false] = ACTIONS(1525), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1514), - [anon_sym_include] = ACTIONS(1514), - [anon_sym_DEF] = ACTIONS(1514), - [anon_sym_cdef] = ACTIONS(1514), - [anon_sym_cpdef] = ACTIONS(1514), - [anon_sym_int] = ACTIONS(1514), - [anon_sym_double] = ACTIONS(1514), - [anon_sym_complex] = ACTIONS(1514), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_signed] = ACTIONS(1514), - [anon_sym_unsigned] = ACTIONS(1514), - [anon_sym_char] = ACTIONS(1514), - [anon_sym_short] = ACTIONS(1514), - [anon_sym_long] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_volatile] = ACTIONS(1514), - [anon_sym_ctypedef] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_cppclass] = ACTIONS(1514), - [anon_sym_fused] = ACTIONS(1514), - [anon_sym_public] = ACTIONS(1514), - [anon_sym_packed] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym_readonly] = ACTIONS(1514), - [anon_sym_sizeof] = ACTIONS(1514), - [sym__dedent] = ACTIONS(1516), - [sym_string_start] = ACTIONS(1516), + [anon_sym_property] = ACTIONS(1525), + [anon_sym_include] = ACTIONS(1525), + [anon_sym_DEF] = ACTIONS(1525), + [anon_sym_cdef] = ACTIONS(1525), + [anon_sym_cpdef] = ACTIONS(1525), + [anon_sym_int] = ACTIONS(1525), + [anon_sym_double] = ACTIONS(1525), + [anon_sym_complex] = ACTIONS(1525), + [anon_sym_new] = ACTIONS(1525), + [anon_sym_signed] = ACTIONS(1525), + [anon_sym_unsigned] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_short] = ACTIONS(1525), + [anon_sym_long] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_volatile] = ACTIONS(1525), + [anon_sym_ctypedef] = ACTIONS(1525), + [anon_sym_struct] = ACTIONS(1525), + [anon_sym_union] = ACTIONS(1525), + [anon_sym_enum] = ACTIONS(1525), + [anon_sym_cppclass] = ACTIONS(1525), + [anon_sym_fused] = ACTIONS(1525), + [anon_sym_public] = ACTIONS(1525), + [anon_sym_packed] = ACTIONS(1525), + [anon_sym_inline] = ACTIONS(1525), + [anon_sym_readonly] = ACTIONS(1525), + [anon_sym_sizeof] = ACTIONS(1525), + [sym__dedent] = ACTIONS(1527), + [sym_string_start] = ACTIONS(1527), }, [474] = { - [sym_identifier] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_import] = ACTIONS(1518), - [anon_sym_cimport] = ACTIONS(1518), - [anon_sym_from] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_print] = ACTIONS(1518), - [anon_sym_assert] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_del] = ACTIONS(1518), - [anon_sym_raise] = ACTIONS(1518), - [anon_sym_pass] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_with] = ACTIONS(1518), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_global] = ACTIONS(1518), - [anon_sym_nonlocal] = ACTIONS(1518), - [anon_sym_exec] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_not] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_lambda] = ACTIONS(1518), - [anon_sym_yield] = ACTIONS(1518), - [sym_ellipsis] = ACTIONS(1520), - [anon_sym_None] = ACTIONS(1518), - [sym_integer] = ACTIONS(1518), - [sym_float] = ACTIONS(1520), - [anon_sym_await] = ACTIONS(1518), - [anon_sym_api] = ACTIONS(1518), - [sym_true] = ACTIONS(1518), - [sym_false] = ACTIONS(1518), + [sym_identifier] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_import] = ACTIONS(1529), + [anon_sym_cimport] = ACTIONS(1529), + [anon_sym_from] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_print] = ACTIONS(1529), + [anon_sym_assert] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_del] = ACTIONS(1529), + [anon_sym_raise] = ACTIONS(1529), + [anon_sym_pass] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_match] = ACTIONS(1529), + [anon_sym_async] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_try] = ACTIONS(1529), + [anon_sym_with] = ACTIONS(1529), + [anon_sym_def] = ACTIONS(1529), + [anon_sym_global] = ACTIONS(1529), + [anon_sym_nonlocal] = ACTIONS(1529), + [anon_sym_exec] = ACTIONS(1529), + [anon_sym_type] = ACTIONS(1529), + [anon_sym_class] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_AT] = ACTIONS(1531), + [anon_sym_DASH] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1531), + [anon_sym_not] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1531), + [anon_sym_LT] = ACTIONS(1531), + [anon_sym_lambda] = ACTIONS(1529), + [anon_sym_yield] = ACTIONS(1529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1531), + [anon_sym_None] = ACTIONS(1529), + [sym_integer] = ACTIONS(1529), + [sym_float] = ACTIONS(1531), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_api] = ACTIONS(1529), + [sym_true] = ACTIONS(1529), + [sym_false] = ACTIONS(1529), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1518), - [anon_sym_include] = ACTIONS(1518), - [anon_sym_DEF] = ACTIONS(1518), - [anon_sym_cdef] = ACTIONS(1518), - [anon_sym_cpdef] = ACTIONS(1518), - [anon_sym_int] = ACTIONS(1518), - [anon_sym_double] = ACTIONS(1518), - [anon_sym_complex] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_signed] = ACTIONS(1518), - [anon_sym_unsigned] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_short] = ACTIONS(1518), - [anon_sym_long] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_volatile] = ACTIONS(1518), - [anon_sym_ctypedef] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_cppclass] = ACTIONS(1518), - [anon_sym_fused] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_packed] = ACTIONS(1518), - [anon_sym_inline] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_sizeof] = ACTIONS(1518), - [sym__dedent] = ACTIONS(1520), - [sym_string_start] = ACTIONS(1520), + [anon_sym_property] = ACTIONS(1529), + [anon_sym_include] = ACTIONS(1529), + [anon_sym_DEF] = ACTIONS(1529), + [anon_sym_cdef] = ACTIONS(1529), + [anon_sym_cpdef] = ACTIONS(1529), + [anon_sym_int] = ACTIONS(1529), + [anon_sym_double] = ACTIONS(1529), + [anon_sym_complex] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1529), + [anon_sym_signed] = ACTIONS(1529), + [anon_sym_unsigned] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_short] = ACTIONS(1529), + [anon_sym_long] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_volatile] = ACTIONS(1529), + [anon_sym_ctypedef] = ACTIONS(1529), + [anon_sym_struct] = ACTIONS(1529), + [anon_sym_union] = ACTIONS(1529), + [anon_sym_enum] = ACTIONS(1529), + [anon_sym_cppclass] = ACTIONS(1529), + [anon_sym_fused] = ACTIONS(1529), + [anon_sym_public] = ACTIONS(1529), + [anon_sym_packed] = ACTIONS(1529), + [anon_sym_inline] = ACTIONS(1529), + [anon_sym_readonly] = ACTIONS(1529), + [anon_sym_sizeof] = ACTIONS(1529), + [sym__dedent] = ACTIONS(1531), + [sym_string_start] = ACTIONS(1531), }, [475] = { - [sym_identifier] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym_import] = ACTIONS(1522), - [anon_sym_cimport] = ACTIONS(1522), - [anon_sym_from] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_print] = ACTIONS(1522), - [anon_sym_assert] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_del] = ACTIONS(1522), - [anon_sym_raise] = ACTIONS(1522), - [anon_sym_pass] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_match] = ACTIONS(1522), - [anon_sym_async] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_try] = ACTIONS(1522), - [anon_sym_with] = ACTIONS(1522), - [anon_sym_def] = ACTIONS(1522), - [anon_sym_global] = ACTIONS(1522), - [anon_sym_nonlocal] = ACTIONS(1522), - [anon_sym_exec] = ACTIONS(1522), - [anon_sym_type] = ACTIONS(1522), - [anon_sym_class] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_AT] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1524), - [anon_sym_not] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(1524), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_lambda] = ACTIONS(1522), - [anon_sym_yield] = ACTIONS(1522), - [sym_ellipsis] = ACTIONS(1524), - [anon_sym_None] = ACTIONS(1522), - [sym_integer] = ACTIONS(1522), - [sym_float] = ACTIONS(1524), - [anon_sym_await] = ACTIONS(1522), - [anon_sym_api] = ACTIONS(1522), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), + [sym_identifier] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_import] = ACTIONS(1533), + [anon_sym_cimport] = ACTIONS(1533), + [anon_sym_from] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_print] = ACTIONS(1533), + [anon_sym_assert] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_del] = ACTIONS(1533), + [anon_sym_raise] = ACTIONS(1533), + [anon_sym_pass] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_match] = ACTIONS(1533), + [anon_sym_async] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_try] = ACTIONS(1533), + [anon_sym_with] = ACTIONS(1533), + [anon_sym_def] = ACTIONS(1533), + [anon_sym_global] = ACTIONS(1533), + [anon_sym_nonlocal] = ACTIONS(1533), + [anon_sym_exec] = ACTIONS(1533), + [anon_sym_type] = ACTIONS(1533), + [anon_sym_class] = ACTIONS(1533), + [anon_sym_LBRACK] = ACTIONS(1535), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_DASH] = ACTIONS(1535), + [anon_sym_LBRACE] = ACTIONS(1535), + [anon_sym_PLUS] = ACTIONS(1535), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1535), + [anon_sym_lambda] = ACTIONS(1533), + [anon_sym_yield] = ACTIONS(1533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1535), + [anon_sym_None] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1535), + [anon_sym_await] = ACTIONS(1533), + [anon_sym_api] = ACTIONS(1533), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1522), - [anon_sym_include] = ACTIONS(1522), - [anon_sym_DEF] = ACTIONS(1522), - [anon_sym_cdef] = ACTIONS(1522), - [anon_sym_cpdef] = ACTIONS(1522), - [anon_sym_int] = ACTIONS(1522), - [anon_sym_double] = ACTIONS(1522), - [anon_sym_complex] = ACTIONS(1522), - [anon_sym_new] = ACTIONS(1522), - [anon_sym_signed] = ACTIONS(1522), - [anon_sym_unsigned] = ACTIONS(1522), - [anon_sym_char] = ACTIONS(1522), - [anon_sym_short] = ACTIONS(1522), - [anon_sym_long] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [anon_sym_volatile] = ACTIONS(1522), - [anon_sym_ctypedef] = ACTIONS(1522), - [anon_sym_struct] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_enum] = ACTIONS(1522), - [anon_sym_cppclass] = ACTIONS(1522), - [anon_sym_fused] = ACTIONS(1522), - [anon_sym_public] = ACTIONS(1522), - [anon_sym_packed] = ACTIONS(1522), - [anon_sym_inline] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1522), - [anon_sym_sizeof] = ACTIONS(1522), - [sym__dedent] = ACTIONS(1524), - [sym_string_start] = ACTIONS(1524), + [anon_sym_property] = ACTIONS(1533), + [anon_sym_include] = ACTIONS(1533), + [anon_sym_DEF] = ACTIONS(1533), + [anon_sym_cdef] = ACTIONS(1533), + [anon_sym_cpdef] = ACTIONS(1533), + [anon_sym_int] = ACTIONS(1533), + [anon_sym_double] = ACTIONS(1533), + [anon_sym_complex] = ACTIONS(1533), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_volatile] = ACTIONS(1533), + [anon_sym_ctypedef] = ACTIONS(1533), + [anon_sym_struct] = ACTIONS(1533), + [anon_sym_union] = ACTIONS(1533), + [anon_sym_enum] = ACTIONS(1533), + [anon_sym_cppclass] = ACTIONS(1533), + [anon_sym_fused] = ACTIONS(1533), + [anon_sym_public] = ACTIONS(1533), + [anon_sym_packed] = ACTIONS(1533), + [anon_sym_inline] = ACTIONS(1533), + [anon_sym_readonly] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1533), + [sym__dedent] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1535), }, [476] = { - [sym_identifier] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1526), - [anon_sym_cimport] = ACTIONS(1526), - [anon_sym_from] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_print] = ACTIONS(1526), - [anon_sym_assert] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(1526), - [anon_sym_del] = ACTIONS(1526), - [anon_sym_raise] = ACTIONS(1526), - [anon_sym_pass] = ACTIONS(1526), - [anon_sym_break] = ACTIONS(1526), - [anon_sym_continue] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1526), - [anon_sym_match] = ACTIONS(1526), - [anon_sym_async] = ACTIONS(1526), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_try] = ACTIONS(1526), - [anon_sym_with] = ACTIONS(1526), - [anon_sym_def] = ACTIONS(1526), - [anon_sym_global] = ACTIONS(1526), - [anon_sym_nonlocal] = ACTIONS(1526), - [anon_sym_exec] = ACTIONS(1526), - [anon_sym_type] = ACTIONS(1526), - [anon_sym_class] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_AT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1528), - [anon_sym_lambda] = ACTIONS(1526), - [anon_sym_yield] = ACTIONS(1526), - [sym_ellipsis] = ACTIONS(1528), - [anon_sym_None] = ACTIONS(1526), - [sym_integer] = ACTIONS(1526), - [sym_float] = ACTIONS(1528), - [anon_sym_await] = ACTIONS(1526), - [anon_sym_api] = ACTIONS(1526), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), + [sym_identifier] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_import] = ACTIONS(1537), + [anon_sym_cimport] = ACTIONS(1537), + [anon_sym_from] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_print] = ACTIONS(1537), + [anon_sym_assert] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_del] = ACTIONS(1537), + [anon_sym_raise] = ACTIONS(1537), + [anon_sym_pass] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_match] = ACTIONS(1537), + [anon_sym_async] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_try] = ACTIONS(1537), + [anon_sym_with] = ACTIONS(1537), + [anon_sym_def] = ACTIONS(1537), + [anon_sym_global] = ACTIONS(1537), + [anon_sym_nonlocal] = ACTIONS(1537), + [anon_sym_exec] = ACTIONS(1537), + [anon_sym_type] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1537), + [anon_sym_LBRACK] = ACTIONS(1539), + [anon_sym_AT] = ACTIONS(1539), + [anon_sym_DASH] = ACTIONS(1539), + [anon_sym_LBRACE] = ACTIONS(1539), + [anon_sym_PLUS] = ACTIONS(1539), + [anon_sym_not] = ACTIONS(1537), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_lambda] = ACTIONS(1537), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1539), + [anon_sym_None] = ACTIONS(1537), + [sym_integer] = ACTIONS(1537), + [sym_float] = ACTIONS(1539), + [anon_sym_await] = ACTIONS(1537), + [anon_sym_api] = ACTIONS(1537), + [sym_true] = ACTIONS(1537), + [sym_false] = ACTIONS(1537), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1526), - [anon_sym_include] = ACTIONS(1526), - [anon_sym_DEF] = ACTIONS(1526), - [anon_sym_cdef] = ACTIONS(1526), - [anon_sym_cpdef] = ACTIONS(1526), - [anon_sym_int] = ACTIONS(1526), - [anon_sym_double] = ACTIONS(1526), - [anon_sym_complex] = ACTIONS(1526), - [anon_sym_new] = ACTIONS(1526), - [anon_sym_signed] = ACTIONS(1526), - [anon_sym_unsigned] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_short] = ACTIONS(1526), - [anon_sym_long] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1526), - [anon_sym_volatile] = ACTIONS(1526), - [anon_sym_ctypedef] = ACTIONS(1526), - [anon_sym_struct] = ACTIONS(1526), - [anon_sym_union] = ACTIONS(1526), - [anon_sym_enum] = ACTIONS(1526), - [anon_sym_cppclass] = ACTIONS(1526), - [anon_sym_fused] = ACTIONS(1526), - [anon_sym_public] = ACTIONS(1526), - [anon_sym_packed] = ACTIONS(1526), - [anon_sym_inline] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1526), - [anon_sym_sizeof] = ACTIONS(1526), - [sym__dedent] = ACTIONS(1528), - [sym_string_start] = ACTIONS(1528), + [anon_sym_property] = ACTIONS(1537), + [anon_sym_include] = ACTIONS(1537), + [anon_sym_DEF] = ACTIONS(1537), + [anon_sym_cdef] = ACTIONS(1537), + [anon_sym_cpdef] = ACTIONS(1537), + [anon_sym_int] = ACTIONS(1537), + [anon_sym_double] = ACTIONS(1537), + [anon_sym_complex] = ACTIONS(1537), + [anon_sym_new] = ACTIONS(1537), + [anon_sym_signed] = ACTIONS(1537), + [anon_sym_unsigned] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_volatile] = ACTIONS(1537), + [anon_sym_ctypedef] = ACTIONS(1537), + [anon_sym_struct] = ACTIONS(1537), + [anon_sym_union] = ACTIONS(1537), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_cppclass] = ACTIONS(1537), + [anon_sym_fused] = ACTIONS(1537), + [anon_sym_public] = ACTIONS(1537), + [anon_sym_packed] = ACTIONS(1537), + [anon_sym_inline] = ACTIONS(1537), + [anon_sym_readonly] = ACTIONS(1537), + [anon_sym_sizeof] = ACTIONS(1537), + [sym__dedent] = ACTIONS(1539), + [sym_string_start] = ACTIONS(1539), }, [477] = { - [sym_identifier] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1532), - [anon_sym_import] = ACTIONS(1530), - [anon_sym_cimport] = ACTIONS(1530), - [anon_sym_from] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1532), - [anon_sym_STAR] = ACTIONS(1532), - [anon_sym_print] = ACTIONS(1530), - [anon_sym_assert] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_del] = ACTIONS(1530), - [anon_sym_raise] = ACTIONS(1530), - [anon_sym_pass] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_match] = ACTIONS(1530), - [anon_sym_async] = ACTIONS(1530), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_while] = ACTIONS(1530), - [anon_sym_try] = ACTIONS(1530), - [anon_sym_with] = ACTIONS(1530), - [anon_sym_def] = ACTIONS(1530), - [anon_sym_global] = ACTIONS(1530), - [anon_sym_nonlocal] = ACTIONS(1530), - [anon_sym_exec] = ACTIONS(1530), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_class] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1532), - [anon_sym_AT] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_PLUS] = ACTIONS(1532), - [anon_sym_not] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_TILDE] = ACTIONS(1532), - [anon_sym_LT] = ACTIONS(1532), - [anon_sym_lambda] = ACTIONS(1530), - [anon_sym_yield] = ACTIONS(1530), - [sym_ellipsis] = ACTIONS(1532), - [anon_sym_None] = ACTIONS(1530), - [sym_integer] = ACTIONS(1530), - [sym_float] = ACTIONS(1532), - [anon_sym_await] = ACTIONS(1530), - [anon_sym_api] = ACTIONS(1530), - [sym_true] = ACTIONS(1530), - [sym_false] = ACTIONS(1530), + [sym_identifier] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_import] = ACTIONS(1541), + [anon_sym_cimport] = ACTIONS(1541), + [anon_sym_from] = ACTIONS(1541), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_print] = ACTIONS(1541), + [anon_sym_assert] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_del] = ACTIONS(1541), + [anon_sym_raise] = ACTIONS(1541), + [anon_sym_pass] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_match] = ACTIONS(1541), + [anon_sym_async] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_try] = ACTIONS(1541), + [anon_sym_with] = ACTIONS(1541), + [anon_sym_def] = ACTIONS(1541), + [anon_sym_global] = ACTIONS(1541), + [anon_sym_nonlocal] = ACTIONS(1541), + [anon_sym_exec] = ACTIONS(1541), + [anon_sym_type] = ACTIONS(1541), + [anon_sym_class] = ACTIONS(1541), + [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_AT] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_not] = ACTIONS(1541), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_LT] = ACTIONS(1543), + [anon_sym_lambda] = ACTIONS(1541), + [anon_sym_yield] = ACTIONS(1541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1543), + [anon_sym_None] = ACTIONS(1541), + [sym_integer] = ACTIONS(1541), + [sym_float] = ACTIONS(1543), + [anon_sym_await] = ACTIONS(1541), + [anon_sym_api] = ACTIONS(1541), + [sym_true] = ACTIONS(1541), + [sym_false] = ACTIONS(1541), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1530), - [anon_sym_include] = ACTIONS(1530), - [anon_sym_DEF] = ACTIONS(1530), - [anon_sym_cdef] = ACTIONS(1530), - [anon_sym_cpdef] = ACTIONS(1530), - [anon_sym_int] = ACTIONS(1530), - [anon_sym_double] = ACTIONS(1530), - [anon_sym_complex] = ACTIONS(1530), - [anon_sym_new] = ACTIONS(1530), - [anon_sym_signed] = ACTIONS(1530), - [anon_sym_unsigned] = ACTIONS(1530), - [anon_sym_char] = ACTIONS(1530), - [anon_sym_short] = ACTIONS(1530), - [anon_sym_long] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [anon_sym_volatile] = ACTIONS(1530), - [anon_sym_ctypedef] = ACTIONS(1530), - [anon_sym_struct] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), - [anon_sym_enum] = ACTIONS(1530), - [anon_sym_cppclass] = ACTIONS(1530), - [anon_sym_fused] = ACTIONS(1530), - [anon_sym_public] = ACTIONS(1530), - [anon_sym_packed] = ACTIONS(1530), - [anon_sym_inline] = ACTIONS(1530), - [anon_sym_readonly] = ACTIONS(1530), - [anon_sym_sizeof] = ACTIONS(1530), - [sym__dedent] = ACTIONS(1532), - [sym_string_start] = ACTIONS(1532), + [anon_sym_property] = ACTIONS(1541), + [anon_sym_include] = ACTIONS(1541), + [anon_sym_DEF] = ACTIONS(1541), + [anon_sym_cdef] = ACTIONS(1541), + [anon_sym_cpdef] = ACTIONS(1541), + [anon_sym_int] = ACTIONS(1541), + [anon_sym_double] = ACTIONS(1541), + [anon_sym_complex] = ACTIONS(1541), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_signed] = ACTIONS(1541), + [anon_sym_unsigned] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_short] = ACTIONS(1541), + [anon_sym_long] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_volatile] = ACTIONS(1541), + [anon_sym_ctypedef] = ACTIONS(1541), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1541), + [anon_sym_enum] = ACTIONS(1541), + [anon_sym_cppclass] = ACTIONS(1541), + [anon_sym_fused] = ACTIONS(1541), + [anon_sym_public] = ACTIONS(1541), + [anon_sym_packed] = ACTIONS(1541), + [anon_sym_inline] = ACTIONS(1541), + [anon_sym_readonly] = ACTIONS(1541), + [anon_sym_sizeof] = ACTIONS(1541), + [sym__dedent] = ACTIONS(1543), + [sym_string_start] = ACTIONS(1543), }, [478] = { - [sym_identifier] = ACTIONS(1534), - [anon_sym_SEMI] = ACTIONS(1536), - [anon_sym_import] = ACTIONS(1534), - [anon_sym_cimport] = ACTIONS(1534), - [anon_sym_from] = ACTIONS(1534), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_STAR] = ACTIONS(1536), - [anon_sym_print] = ACTIONS(1534), - [anon_sym_assert] = ACTIONS(1534), - [anon_sym_return] = ACTIONS(1534), - [anon_sym_del] = ACTIONS(1534), - [anon_sym_raise] = ACTIONS(1534), - [anon_sym_pass] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1534), - [anon_sym_if] = ACTIONS(1534), - [anon_sym_match] = ACTIONS(1534), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_for] = ACTIONS(1534), - [anon_sym_while] = ACTIONS(1534), - [anon_sym_try] = ACTIONS(1534), - [anon_sym_with] = ACTIONS(1534), - [anon_sym_def] = ACTIONS(1534), - [anon_sym_global] = ACTIONS(1534), - [anon_sym_nonlocal] = ACTIONS(1534), - [anon_sym_exec] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_class] = ACTIONS(1534), - [anon_sym_LBRACK] = ACTIONS(1536), - [anon_sym_AT] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_PLUS] = ACTIONS(1536), - [anon_sym_not] = ACTIONS(1534), - [anon_sym_AMP] = ACTIONS(1536), - [anon_sym_TILDE] = ACTIONS(1536), - [anon_sym_LT] = ACTIONS(1536), - [anon_sym_lambda] = ACTIONS(1534), - [anon_sym_yield] = ACTIONS(1534), - [sym_ellipsis] = ACTIONS(1536), - [anon_sym_None] = ACTIONS(1534), - [sym_integer] = ACTIONS(1534), - [sym_float] = ACTIONS(1536), - [anon_sym_await] = ACTIONS(1534), - [anon_sym_api] = ACTIONS(1534), - [sym_true] = ACTIONS(1534), - [sym_false] = ACTIONS(1534), + [sym_identifier] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_import] = ACTIONS(1545), + [anon_sym_cimport] = ACTIONS(1545), + [anon_sym_from] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_print] = ACTIONS(1545), + [anon_sym_assert] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_del] = ACTIONS(1545), + [anon_sym_raise] = ACTIONS(1545), + [anon_sym_pass] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_match] = ACTIONS(1545), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_try] = ACTIONS(1545), + [anon_sym_with] = ACTIONS(1545), + [anon_sym_def] = ACTIONS(1545), + [anon_sym_global] = ACTIONS(1545), + [anon_sym_nonlocal] = ACTIONS(1545), + [anon_sym_exec] = ACTIONS(1545), + [anon_sym_type] = ACTIONS(1545), + [anon_sym_class] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1547), + [anon_sym_AT] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_not] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_LT] = ACTIONS(1547), + [anon_sym_lambda] = ACTIONS(1545), + [anon_sym_yield] = ACTIONS(1545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), + [anon_sym_None] = ACTIONS(1545), + [sym_integer] = ACTIONS(1545), + [sym_float] = ACTIONS(1547), + [anon_sym_await] = ACTIONS(1545), + [anon_sym_api] = ACTIONS(1545), + [sym_true] = ACTIONS(1545), + [sym_false] = ACTIONS(1545), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1534), - [anon_sym_include] = ACTIONS(1534), - [anon_sym_DEF] = ACTIONS(1534), - [anon_sym_cdef] = ACTIONS(1534), - [anon_sym_cpdef] = ACTIONS(1534), - [anon_sym_int] = ACTIONS(1534), - [anon_sym_double] = ACTIONS(1534), - [anon_sym_complex] = ACTIONS(1534), - [anon_sym_new] = ACTIONS(1534), - [anon_sym_signed] = ACTIONS(1534), - [anon_sym_unsigned] = ACTIONS(1534), - [anon_sym_char] = ACTIONS(1534), - [anon_sym_short] = ACTIONS(1534), - [anon_sym_long] = ACTIONS(1534), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_volatile] = ACTIONS(1534), - [anon_sym_ctypedef] = ACTIONS(1534), - [anon_sym_struct] = ACTIONS(1534), - [anon_sym_union] = ACTIONS(1534), - [anon_sym_enum] = ACTIONS(1534), - [anon_sym_cppclass] = ACTIONS(1534), - [anon_sym_fused] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_packed] = ACTIONS(1534), - [anon_sym_inline] = ACTIONS(1534), - [anon_sym_readonly] = ACTIONS(1534), - [anon_sym_sizeof] = ACTIONS(1534), - [sym__dedent] = ACTIONS(1536), - [sym_string_start] = ACTIONS(1536), + [anon_sym_property] = ACTIONS(1545), + [anon_sym_include] = ACTIONS(1545), + [anon_sym_DEF] = ACTIONS(1545), + [anon_sym_cdef] = ACTIONS(1545), + [anon_sym_cpdef] = ACTIONS(1545), + [anon_sym_int] = ACTIONS(1545), + [anon_sym_double] = ACTIONS(1545), + [anon_sym_complex] = ACTIONS(1545), + [anon_sym_new] = ACTIONS(1545), + [anon_sym_signed] = ACTIONS(1545), + [anon_sym_unsigned] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_short] = ACTIONS(1545), + [anon_sym_long] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_volatile] = ACTIONS(1545), + [anon_sym_ctypedef] = ACTIONS(1545), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1545), + [anon_sym_enum] = ACTIONS(1545), + [anon_sym_cppclass] = ACTIONS(1545), + [anon_sym_fused] = ACTIONS(1545), + [anon_sym_public] = ACTIONS(1545), + [anon_sym_packed] = ACTIONS(1545), + [anon_sym_inline] = ACTIONS(1545), + [anon_sym_readonly] = ACTIONS(1545), + [anon_sym_sizeof] = ACTIONS(1545), + [sym__dedent] = ACTIONS(1547), + [sym_string_start] = ACTIONS(1547), }, [479] = { - [sym_identifier] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_cimport] = ACTIONS(1538), - [anon_sym_from] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1540), - [anon_sym_print] = ACTIONS(1538), - [anon_sym_assert] = ACTIONS(1538), - [anon_sym_return] = ACTIONS(1538), - [anon_sym_del] = ACTIONS(1538), - [anon_sym_raise] = ACTIONS(1538), - [anon_sym_pass] = ACTIONS(1538), - [anon_sym_break] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_if] = ACTIONS(1538), - [anon_sym_match] = ACTIONS(1538), - [anon_sym_async] = ACTIONS(1538), - [anon_sym_for] = ACTIONS(1538), - [anon_sym_while] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(1538), - [anon_sym_with] = ACTIONS(1538), - [anon_sym_def] = ACTIONS(1538), - [anon_sym_global] = ACTIONS(1538), - [anon_sym_nonlocal] = ACTIONS(1538), - [anon_sym_exec] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_class] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_AT] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_not] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1540), - [anon_sym_lambda] = ACTIONS(1538), - [anon_sym_yield] = ACTIONS(1538), - [sym_ellipsis] = ACTIONS(1540), - [anon_sym_None] = ACTIONS(1538), - [sym_integer] = ACTIONS(1538), - [sym_float] = ACTIONS(1540), - [anon_sym_await] = ACTIONS(1538), - [anon_sym_api] = ACTIONS(1538), - [sym_true] = ACTIONS(1538), - [sym_false] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_import] = ACTIONS(1549), + [anon_sym_cimport] = ACTIONS(1549), + [anon_sym_from] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_print] = ACTIONS(1549), + [anon_sym_assert] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_del] = ACTIONS(1549), + [anon_sym_raise] = ACTIONS(1549), + [anon_sym_pass] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1549), + [anon_sym_async] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_try] = ACTIONS(1549), + [anon_sym_with] = ACTIONS(1549), + [anon_sym_def] = ACTIONS(1549), + [anon_sym_global] = ACTIONS(1549), + [anon_sym_nonlocal] = ACTIONS(1549), + [anon_sym_exec] = ACTIONS(1549), + [anon_sym_type] = ACTIONS(1549), + [anon_sym_class] = ACTIONS(1549), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_AT] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_PLUS] = ACTIONS(1551), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1551), + [anon_sym_lambda] = ACTIONS(1549), + [anon_sym_yield] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1551), + [anon_sym_None] = ACTIONS(1549), + [sym_integer] = ACTIONS(1549), + [sym_float] = ACTIONS(1551), + [anon_sym_await] = ACTIONS(1549), + [anon_sym_api] = ACTIONS(1549), + [sym_true] = ACTIONS(1549), + [sym_false] = ACTIONS(1549), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1538), - [anon_sym_include] = ACTIONS(1538), - [anon_sym_DEF] = ACTIONS(1538), - [anon_sym_cdef] = ACTIONS(1538), - [anon_sym_cpdef] = ACTIONS(1538), - [anon_sym_int] = ACTIONS(1538), - [anon_sym_double] = ACTIONS(1538), - [anon_sym_complex] = ACTIONS(1538), - [anon_sym_new] = ACTIONS(1538), - [anon_sym_signed] = ACTIONS(1538), - [anon_sym_unsigned] = ACTIONS(1538), - [anon_sym_char] = ACTIONS(1538), - [anon_sym_short] = ACTIONS(1538), - [anon_sym_long] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(1538), - [anon_sym_volatile] = ACTIONS(1538), - [anon_sym_ctypedef] = ACTIONS(1538), - [anon_sym_struct] = ACTIONS(1538), - [anon_sym_union] = ACTIONS(1538), - [anon_sym_enum] = ACTIONS(1538), - [anon_sym_cppclass] = ACTIONS(1538), - [anon_sym_fused] = ACTIONS(1538), - [anon_sym_public] = ACTIONS(1538), - [anon_sym_packed] = ACTIONS(1538), - [anon_sym_inline] = ACTIONS(1538), - [anon_sym_readonly] = ACTIONS(1538), - [anon_sym_sizeof] = ACTIONS(1538), - [sym__dedent] = ACTIONS(1540), - [sym_string_start] = ACTIONS(1540), + [anon_sym_property] = ACTIONS(1549), + [anon_sym_include] = ACTIONS(1549), + [anon_sym_DEF] = ACTIONS(1549), + [anon_sym_cdef] = ACTIONS(1549), + [anon_sym_cpdef] = ACTIONS(1549), + [anon_sym_int] = ACTIONS(1549), + [anon_sym_double] = ACTIONS(1549), + [anon_sym_complex] = ACTIONS(1549), + [anon_sym_new] = ACTIONS(1549), + [anon_sym_signed] = ACTIONS(1549), + [anon_sym_unsigned] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_short] = ACTIONS(1549), + [anon_sym_long] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_volatile] = ACTIONS(1549), + [anon_sym_ctypedef] = ACTIONS(1549), + [anon_sym_struct] = ACTIONS(1549), + [anon_sym_union] = ACTIONS(1549), + [anon_sym_enum] = ACTIONS(1549), + [anon_sym_cppclass] = ACTIONS(1549), + [anon_sym_fused] = ACTIONS(1549), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_packed] = ACTIONS(1549), + [anon_sym_inline] = ACTIONS(1549), + [anon_sym_readonly] = ACTIONS(1549), + [anon_sym_sizeof] = ACTIONS(1549), + [sym__dedent] = ACTIONS(1551), + [sym_string_start] = ACTIONS(1551), }, [480] = { - [sym_identifier] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_import] = ACTIONS(1542), - [anon_sym_cimport] = ACTIONS(1542), - [anon_sym_from] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1544), - [anon_sym_print] = ACTIONS(1542), - [anon_sym_assert] = ACTIONS(1542), - [anon_sym_return] = ACTIONS(1542), - [anon_sym_del] = ACTIONS(1542), - [anon_sym_raise] = ACTIONS(1542), - [anon_sym_pass] = ACTIONS(1542), - [anon_sym_break] = ACTIONS(1542), - [anon_sym_continue] = ACTIONS(1542), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_match] = ACTIONS(1542), - [anon_sym_async] = ACTIONS(1542), - [anon_sym_for] = ACTIONS(1542), - [anon_sym_while] = ACTIONS(1542), - [anon_sym_try] = ACTIONS(1542), - [anon_sym_with] = ACTIONS(1542), - [anon_sym_def] = ACTIONS(1542), - [anon_sym_global] = ACTIONS(1542), - [anon_sym_nonlocal] = ACTIONS(1542), - [anon_sym_exec] = ACTIONS(1542), - [anon_sym_type] = ACTIONS(1542), - [anon_sym_class] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_AT] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1544), - [anon_sym_not] = ACTIONS(1542), - [anon_sym_AMP] = ACTIONS(1544), - [anon_sym_TILDE] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1544), - [anon_sym_lambda] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1542), - [sym_ellipsis] = ACTIONS(1544), - [anon_sym_None] = ACTIONS(1542), - [sym_integer] = ACTIONS(1542), - [sym_float] = ACTIONS(1544), - [anon_sym_await] = ACTIONS(1542), - [anon_sym_api] = ACTIONS(1542), - [sym_true] = ACTIONS(1542), - [sym_false] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_import] = ACTIONS(1553), + [anon_sym_cimport] = ACTIONS(1553), + [anon_sym_from] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_print] = ACTIONS(1553), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_del] = ACTIONS(1553), + [anon_sym_raise] = ACTIONS(1553), + [anon_sym_pass] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_match] = ACTIONS(1553), + [anon_sym_async] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1553), + [anon_sym_with] = ACTIONS(1553), + [anon_sym_def] = ACTIONS(1553), + [anon_sym_global] = ACTIONS(1553), + [anon_sym_nonlocal] = ACTIONS(1553), + [anon_sym_exec] = ACTIONS(1553), + [anon_sym_type] = ACTIONS(1553), + [anon_sym_class] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1555), + [anon_sym_AT] = ACTIONS(1555), + [anon_sym_DASH] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1555), + [anon_sym_PLUS] = ACTIONS(1555), + [anon_sym_not] = ACTIONS(1553), + [anon_sym_AMP] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_lambda] = ACTIONS(1553), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1555), + [anon_sym_None] = ACTIONS(1553), + [sym_integer] = ACTIONS(1553), + [sym_float] = ACTIONS(1555), + [anon_sym_await] = ACTIONS(1553), + [anon_sym_api] = ACTIONS(1553), + [sym_true] = ACTIONS(1553), + [sym_false] = ACTIONS(1553), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1542), - [anon_sym_include] = ACTIONS(1542), - [anon_sym_DEF] = ACTIONS(1542), - [anon_sym_cdef] = ACTIONS(1542), - [anon_sym_cpdef] = ACTIONS(1542), - [anon_sym_int] = ACTIONS(1542), - [anon_sym_double] = ACTIONS(1542), - [anon_sym_complex] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1542), - [anon_sym_signed] = ACTIONS(1542), - [anon_sym_unsigned] = ACTIONS(1542), - [anon_sym_char] = ACTIONS(1542), - [anon_sym_short] = ACTIONS(1542), - [anon_sym_long] = ACTIONS(1542), - [anon_sym_const] = ACTIONS(1542), - [anon_sym_volatile] = ACTIONS(1542), - [anon_sym_ctypedef] = ACTIONS(1542), - [anon_sym_struct] = ACTIONS(1542), - [anon_sym_union] = ACTIONS(1542), - [anon_sym_enum] = ACTIONS(1542), - [anon_sym_cppclass] = ACTIONS(1542), - [anon_sym_fused] = ACTIONS(1542), - [anon_sym_public] = ACTIONS(1542), - [anon_sym_packed] = ACTIONS(1542), - [anon_sym_inline] = ACTIONS(1542), - [anon_sym_readonly] = ACTIONS(1542), - [anon_sym_sizeof] = ACTIONS(1542), - [sym__dedent] = ACTIONS(1544), - [sym_string_start] = ACTIONS(1544), + [anon_sym_property] = ACTIONS(1553), + [anon_sym_include] = ACTIONS(1553), + [anon_sym_DEF] = ACTIONS(1553), + [anon_sym_cdef] = ACTIONS(1553), + [anon_sym_cpdef] = ACTIONS(1553), + [anon_sym_int] = ACTIONS(1553), + [anon_sym_double] = ACTIONS(1553), + [anon_sym_complex] = ACTIONS(1553), + [anon_sym_new] = ACTIONS(1553), + [anon_sym_signed] = ACTIONS(1553), + [anon_sym_unsigned] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_volatile] = ACTIONS(1553), + [anon_sym_ctypedef] = ACTIONS(1553), + [anon_sym_struct] = ACTIONS(1553), + [anon_sym_union] = ACTIONS(1553), + [anon_sym_enum] = ACTIONS(1553), + [anon_sym_cppclass] = ACTIONS(1553), + [anon_sym_fused] = ACTIONS(1553), + [anon_sym_public] = ACTIONS(1553), + [anon_sym_packed] = ACTIONS(1553), + [anon_sym_inline] = ACTIONS(1553), + [anon_sym_readonly] = ACTIONS(1553), + [anon_sym_sizeof] = ACTIONS(1553), + [sym__dedent] = ACTIONS(1555), + [sym_string_start] = ACTIONS(1555), }, [481] = { - [sym_identifier] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1548), - [anon_sym_import] = ACTIONS(1546), - [anon_sym_cimport] = ACTIONS(1546), - [anon_sym_from] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1548), - [anon_sym_print] = ACTIONS(1546), - [anon_sym_assert] = ACTIONS(1546), - [anon_sym_return] = ACTIONS(1546), - [anon_sym_del] = ACTIONS(1546), - [anon_sym_raise] = ACTIONS(1546), - [anon_sym_pass] = ACTIONS(1546), - [anon_sym_break] = ACTIONS(1546), - [anon_sym_continue] = ACTIONS(1546), - [anon_sym_if] = ACTIONS(1546), - [anon_sym_match] = ACTIONS(1546), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_while] = ACTIONS(1546), - [anon_sym_try] = ACTIONS(1546), - [anon_sym_with] = ACTIONS(1546), - [anon_sym_def] = ACTIONS(1546), - [anon_sym_global] = ACTIONS(1546), - [anon_sym_nonlocal] = ACTIONS(1546), - [anon_sym_exec] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_class] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_AT] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_not] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1548), - [anon_sym_TILDE] = ACTIONS(1548), - [anon_sym_LT] = ACTIONS(1548), - [anon_sym_lambda] = ACTIONS(1546), - [anon_sym_yield] = ACTIONS(1546), - [sym_ellipsis] = ACTIONS(1548), - [anon_sym_None] = ACTIONS(1546), - [sym_integer] = ACTIONS(1546), - [sym_float] = ACTIONS(1548), - [anon_sym_await] = ACTIONS(1546), - [anon_sym_api] = ACTIONS(1546), - [sym_true] = ACTIONS(1546), - [sym_false] = ACTIONS(1546), + [sym_identifier] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_import] = ACTIONS(1557), + [anon_sym_cimport] = ACTIONS(1557), + [anon_sym_from] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_print] = ACTIONS(1557), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_del] = ACTIONS(1557), + [anon_sym_raise] = ACTIONS(1557), + [anon_sym_pass] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_match] = ACTIONS(1557), + [anon_sym_async] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_try] = ACTIONS(1557), + [anon_sym_with] = ACTIONS(1557), + [anon_sym_def] = ACTIONS(1557), + [anon_sym_global] = ACTIONS(1557), + [anon_sym_nonlocal] = ACTIONS(1557), + [anon_sym_exec] = ACTIONS(1557), + [anon_sym_type] = ACTIONS(1557), + [anon_sym_class] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_AT] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1559), + [anon_sym_not] = ACTIONS(1557), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_LT] = ACTIONS(1559), + [anon_sym_lambda] = ACTIONS(1557), + [anon_sym_yield] = ACTIONS(1557), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1559), + [anon_sym_None] = ACTIONS(1557), + [sym_integer] = ACTIONS(1557), + [sym_float] = ACTIONS(1559), + [anon_sym_await] = ACTIONS(1557), + [anon_sym_api] = ACTIONS(1557), + [sym_true] = ACTIONS(1557), + [sym_false] = ACTIONS(1557), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1546), - [anon_sym_include] = ACTIONS(1546), - [anon_sym_DEF] = ACTIONS(1546), - [anon_sym_cdef] = ACTIONS(1546), - [anon_sym_cpdef] = ACTIONS(1546), - [anon_sym_int] = ACTIONS(1546), - [anon_sym_double] = ACTIONS(1546), - [anon_sym_complex] = ACTIONS(1546), - [anon_sym_new] = ACTIONS(1546), - [anon_sym_signed] = ACTIONS(1546), - [anon_sym_unsigned] = ACTIONS(1546), - [anon_sym_char] = ACTIONS(1546), - [anon_sym_short] = ACTIONS(1546), - [anon_sym_long] = ACTIONS(1546), - [anon_sym_const] = ACTIONS(1546), - [anon_sym_volatile] = ACTIONS(1546), - [anon_sym_ctypedef] = ACTIONS(1546), - [anon_sym_struct] = ACTIONS(1546), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_enum] = ACTIONS(1546), - [anon_sym_cppclass] = ACTIONS(1546), - [anon_sym_fused] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_packed] = ACTIONS(1546), - [anon_sym_inline] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_sizeof] = ACTIONS(1546), - [sym__dedent] = ACTIONS(1548), - [sym_string_start] = ACTIONS(1548), + [anon_sym_property] = ACTIONS(1557), + [anon_sym_include] = ACTIONS(1557), + [anon_sym_DEF] = ACTIONS(1557), + [anon_sym_cdef] = ACTIONS(1557), + [anon_sym_cpdef] = ACTIONS(1557), + [anon_sym_int] = ACTIONS(1557), + [anon_sym_double] = ACTIONS(1557), + [anon_sym_complex] = ACTIONS(1557), + [anon_sym_new] = ACTIONS(1557), + [anon_sym_signed] = ACTIONS(1557), + [anon_sym_unsigned] = ACTIONS(1557), + [anon_sym_char] = ACTIONS(1557), + [anon_sym_short] = ACTIONS(1557), + [anon_sym_long] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_volatile] = ACTIONS(1557), + [anon_sym_ctypedef] = ACTIONS(1557), + [anon_sym_struct] = ACTIONS(1557), + [anon_sym_union] = ACTIONS(1557), + [anon_sym_enum] = ACTIONS(1557), + [anon_sym_cppclass] = ACTIONS(1557), + [anon_sym_fused] = ACTIONS(1557), + [anon_sym_public] = ACTIONS(1557), + [anon_sym_packed] = ACTIONS(1557), + [anon_sym_inline] = ACTIONS(1557), + [anon_sym_readonly] = ACTIONS(1557), + [anon_sym_sizeof] = ACTIONS(1557), + [sym__dedent] = ACTIONS(1559), + [sym_string_start] = ACTIONS(1559), }, [482] = { - [sym_identifier] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_import] = ACTIONS(1550), - [anon_sym_cimport] = ACTIONS(1550), - [anon_sym_from] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1552), - [anon_sym_print] = ACTIONS(1550), - [anon_sym_assert] = ACTIONS(1550), - [anon_sym_return] = ACTIONS(1550), - [anon_sym_del] = ACTIONS(1550), - [anon_sym_raise] = ACTIONS(1550), - [anon_sym_pass] = ACTIONS(1550), - [anon_sym_break] = ACTIONS(1550), - [anon_sym_continue] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_match] = ACTIONS(1550), - [anon_sym_async] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_try] = ACTIONS(1550), - [anon_sym_with] = ACTIONS(1550), - [anon_sym_def] = ACTIONS(1550), - [anon_sym_global] = ACTIONS(1550), - [anon_sym_nonlocal] = ACTIONS(1550), - [anon_sym_exec] = ACTIONS(1550), - [anon_sym_type] = ACTIONS(1550), - [anon_sym_class] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_AT] = ACTIONS(1552), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1552), - [anon_sym_not] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1552), - [anon_sym_TILDE] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_lambda] = ACTIONS(1550), - [anon_sym_yield] = ACTIONS(1550), - [sym_ellipsis] = ACTIONS(1552), - [anon_sym_None] = ACTIONS(1550), - [sym_integer] = ACTIONS(1550), - [sym_float] = ACTIONS(1552), - [anon_sym_await] = ACTIONS(1550), - [anon_sym_api] = ACTIONS(1550), - [sym_true] = ACTIONS(1550), - [sym_false] = ACTIONS(1550), + [sym_identifier] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_import] = ACTIONS(1561), + [anon_sym_cimport] = ACTIONS(1561), + [anon_sym_from] = ACTIONS(1561), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_print] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_del] = ACTIONS(1561), + [anon_sym_raise] = ACTIONS(1561), + [anon_sym_pass] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_match] = ACTIONS(1561), + [anon_sym_async] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_try] = ACTIONS(1561), + [anon_sym_with] = ACTIONS(1561), + [anon_sym_def] = ACTIONS(1561), + [anon_sym_global] = ACTIONS(1561), + [anon_sym_nonlocal] = ACTIONS(1561), + [anon_sym_exec] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_class] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1563), + [anon_sym_AT] = ACTIONS(1563), + [anon_sym_DASH] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_LT] = ACTIONS(1563), + [anon_sym_lambda] = ACTIONS(1561), + [anon_sym_yield] = ACTIONS(1561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1563), + [anon_sym_None] = ACTIONS(1561), + [sym_integer] = ACTIONS(1561), + [sym_float] = ACTIONS(1563), + [anon_sym_await] = ACTIONS(1561), + [anon_sym_api] = ACTIONS(1561), + [sym_true] = ACTIONS(1561), + [sym_false] = ACTIONS(1561), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1550), - [anon_sym_include] = ACTIONS(1550), - [anon_sym_DEF] = ACTIONS(1550), - [anon_sym_cdef] = ACTIONS(1550), - [anon_sym_cpdef] = ACTIONS(1550), - [anon_sym_int] = ACTIONS(1550), - [anon_sym_double] = ACTIONS(1550), - [anon_sym_complex] = ACTIONS(1550), - [anon_sym_new] = ACTIONS(1550), - [anon_sym_signed] = ACTIONS(1550), - [anon_sym_unsigned] = ACTIONS(1550), - [anon_sym_char] = ACTIONS(1550), - [anon_sym_short] = ACTIONS(1550), - [anon_sym_long] = ACTIONS(1550), - [anon_sym_const] = ACTIONS(1550), - [anon_sym_volatile] = ACTIONS(1550), - [anon_sym_ctypedef] = ACTIONS(1550), - [anon_sym_struct] = ACTIONS(1550), - [anon_sym_union] = ACTIONS(1550), - [anon_sym_enum] = ACTIONS(1550), - [anon_sym_cppclass] = ACTIONS(1550), - [anon_sym_fused] = ACTIONS(1550), - [anon_sym_public] = ACTIONS(1550), - [anon_sym_packed] = ACTIONS(1550), - [anon_sym_inline] = ACTIONS(1550), - [anon_sym_readonly] = ACTIONS(1550), - [anon_sym_sizeof] = ACTIONS(1550), - [sym__dedent] = ACTIONS(1552), - [sym_string_start] = ACTIONS(1552), + [anon_sym_property] = ACTIONS(1561), + [anon_sym_include] = ACTIONS(1561), + [anon_sym_DEF] = ACTIONS(1561), + [anon_sym_cdef] = ACTIONS(1561), + [anon_sym_cpdef] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_complex] = ACTIONS(1561), + [anon_sym_new] = ACTIONS(1561), + [anon_sym_signed] = ACTIONS(1561), + [anon_sym_unsigned] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_volatile] = ACTIONS(1561), + [anon_sym_ctypedef] = ACTIONS(1561), + [anon_sym_struct] = ACTIONS(1561), + [anon_sym_union] = ACTIONS(1561), + [anon_sym_enum] = ACTIONS(1561), + [anon_sym_cppclass] = ACTIONS(1561), + [anon_sym_fused] = ACTIONS(1561), + [anon_sym_public] = ACTIONS(1561), + [anon_sym_packed] = ACTIONS(1561), + [anon_sym_inline] = ACTIONS(1561), + [anon_sym_readonly] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1561), + [sym__dedent] = ACTIONS(1563), + [sym_string_start] = ACTIONS(1563), }, [483] = { - [sym_identifier] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_import] = ACTIONS(1554), - [anon_sym_cimport] = ACTIONS(1554), - [anon_sym_from] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_print] = ACTIONS(1554), - [anon_sym_assert] = ACTIONS(1554), - [anon_sym_return] = ACTIONS(1554), - [anon_sym_del] = ACTIONS(1554), - [anon_sym_raise] = ACTIONS(1554), - [anon_sym_pass] = ACTIONS(1554), - [anon_sym_break] = ACTIONS(1554), - [anon_sym_continue] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1554), - [anon_sym_match] = ACTIONS(1554), - [anon_sym_async] = ACTIONS(1554), - [anon_sym_for] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1554), - [anon_sym_try] = ACTIONS(1554), - [anon_sym_with] = ACTIONS(1554), - [anon_sym_def] = ACTIONS(1554), - [anon_sym_global] = ACTIONS(1554), - [anon_sym_nonlocal] = ACTIONS(1554), - [anon_sym_exec] = ACTIONS(1554), - [anon_sym_type] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1554), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_AT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_not] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_TILDE] = ACTIONS(1556), - [anon_sym_LT] = ACTIONS(1556), - [anon_sym_lambda] = ACTIONS(1554), - [anon_sym_yield] = ACTIONS(1554), - [sym_ellipsis] = ACTIONS(1556), - [anon_sym_None] = ACTIONS(1554), - [sym_integer] = ACTIONS(1554), - [sym_float] = ACTIONS(1556), - [anon_sym_await] = ACTIONS(1554), - [anon_sym_api] = ACTIONS(1554), - [sym_true] = ACTIONS(1554), - [sym_false] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_import] = ACTIONS(1565), + [anon_sym_cimport] = ACTIONS(1565), + [anon_sym_from] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_print] = ACTIONS(1565), + [anon_sym_assert] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_del] = ACTIONS(1565), + [anon_sym_raise] = ACTIONS(1565), + [anon_sym_pass] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_match] = ACTIONS(1565), + [anon_sym_async] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_try] = ACTIONS(1565), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_def] = ACTIONS(1565), + [anon_sym_global] = ACTIONS(1565), + [anon_sym_nonlocal] = ACTIONS(1565), + [anon_sym_exec] = ACTIONS(1565), + [anon_sym_type] = ACTIONS(1565), + [anon_sym_class] = ACTIONS(1565), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_AT] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1567), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_lambda] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1567), + [anon_sym_None] = ACTIONS(1565), + [sym_integer] = ACTIONS(1565), + [sym_float] = ACTIONS(1567), + [anon_sym_await] = ACTIONS(1565), + [anon_sym_api] = ACTIONS(1565), + [sym_true] = ACTIONS(1565), + [sym_false] = ACTIONS(1565), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1554), - [anon_sym_include] = ACTIONS(1554), - [anon_sym_DEF] = ACTIONS(1554), - [anon_sym_cdef] = ACTIONS(1554), - [anon_sym_cpdef] = ACTIONS(1554), - [anon_sym_int] = ACTIONS(1554), - [anon_sym_double] = ACTIONS(1554), - [anon_sym_complex] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1554), - [anon_sym_signed] = ACTIONS(1554), - [anon_sym_unsigned] = ACTIONS(1554), - [anon_sym_char] = ACTIONS(1554), - [anon_sym_short] = ACTIONS(1554), - [anon_sym_long] = ACTIONS(1554), - [anon_sym_const] = ACTIONS(1554), - [anon_sym_volatile] = ACTIONS(1554), - [anon_sym_ctypedef] = ACTIONS(1554), - [anon_sym_struct] = ACTIONS(1554), - [anon_sym_union] = ACTIONS(1554), - [anon_sym_enum] = ACTIONS(1554), - [anon_sym_cppclass] = ACTIONS(1554), - [anon_sym_fused] = ACTIONS(1554), - [anon_sym_public] = ACTIONS(1554), - [anon_sym_packed] = ACTIONS(1554), - [anon_sym_inline] = ACTIONS(1554), - [anon_sym_readonly] = ACTIONS(1554), - [anon_sym_sizeof] = ACTIONS(1554), - [sym__dedent] = ACTIONS(1556), - [sym_string_start] = ACTIONS(1556), + [anon_sym_property] = ACTIONS(1565), + [anon_sym_include] = ACTIONS(1565), + [anon_sym_DEF] = ACTIONS(1565), + [anon_sym_cdef] = ACTIONS(1565), + [anon_sym_cpdef] = ACTIONS(1565), + [anon_sym_int] = ACTIONS(1565), + [anon_sym_double] = ACTIONS(1565), + [anon_sym_complex] = ACTIONS(1565), + [anon_sym_new] = ACTIONS(1565), + [anon_sym_signed] = ACTIONS(1565), + [anon_sym_unsigned] = ACTIONS(1565), + [anon_sym_char] = ACTIONS(1565), + [anon_sym_short] = ACTIONS(1565), + [anon_sym_long] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_volatile] = ACTIONS(1565), + [anon_sym_ctypedef] = ACTIONS(1565), + [anon_sym_struct] = ACTIONS(1565), + [anon_sym_union] = ACTIONS(1565), + [anon_sym_enum] = ACTIONS(1565), + [anon_sym_cppclass] = ACTIONS(1565), + [anon_sym_fused] = ACTIONS(1565), + [anon_sym_public] = ACTIONS(1565), + [anon_sym_packed] = ACTIONS(1565), + [anon_sym_inline] = ACTIONS(1565), + [anon_sym_readonly] = ACTIONS(1565), + [anon_sym_sizeof] = ACTIONS(1565), + [sym__dedent] = ACTIONS(1567), + [sym_string_start] = ACTIONS(1567), }, [484] = { - [sym_identifier] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1560), - [anon_sym_import] = ACTIONS(1558), - [anon_sym_cimport] = ACTIONS(1558), - [anon_sym_from] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_print] = ACTIONS(1558), - [anon_sym_assert] = ACTIONS(1558), - [anon_sym_return] = ACTIONS(1558), - [anon_sym_del] = ACTIONS(1558), - [anon_sym_raise] = ACTIONS(1558), - [anon_sym_pass] = ACTIONS(1558), - [anon_sym_break] = ACTIONS(1558), - [anon_sym_continue] = ACTIONS(1558), - [anon_sym_if] = ACTIONS(1558), - [anon_sym_match] = ACTIONS(1558), - [anon_sym_async] = ACTIONS(1558), - [anon_sym_for] = ACTIONS(1558), - [anon_sym_while] = ACTIONS(1558), - [anon_sym_try] = ACTIONS(1558), - [anon_sym_with] = ACTIONS(1558), - [anon_sym_def] = ACTIONS(1558), - [anon_sym_global] = ACTIONS(1558), - [anon_sym_nonlocal] = ACTIONS(1558), - [anon_sym_exec] = ACTIONS(1558), - [anon_sym_type] = ACTIONS(1558), - [anon_sym_class] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1560), - [anon_sym_AT] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_not] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_TILDE] = ACTIONS(1560), - [anon_sym_LT] = ACTIONS(1560), - [anon_sym_lambda] = ACTIONS(1558), - [anon_sym_yield] = ACTIONS(1558), - [sym_ellipsis] = ACTIONS(1560), - [anon_sym_None] = ACTIONS(1558), - [sym_integer] = ACTIONS(1558), - [sym_float] = ACTIONS(1560), - [anon_sym_await] = ACTIONS(1558), - [anon_sym_api] = ACTIONS(1558), - [sym_true] = ACTIONS(1558), - [sym_false] = ACTIONS(1558), + [sym_identifier] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_import] = ACTIONS(1569), + [anon_sym_cimport] = ACTIONS(1569), + [anon_sym_from] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_print] = ACTIONS(1569), + [anon_sym_assert] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_del] = ACTIONS(1569), + [anon_sym_raise] = ACTIONS(1569), + [anon_sym_pass] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_async] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_with] = ACTIONS(1569), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_global] = ACTIONS(1569), + [anon_sym_nonlocal] = ACTIONS(1569), + [anon_sym_exec] = ACTIONS(1569), + [anon_sym_type] = ACTIONS(1569), + [anon_sym_class] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_AT] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_not] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_LT] = ACTIONS(1571), + [anon_sym_lambda] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), + [anon_sym_None] = ACTIONS(1569), + [sym_integer] = ACTIONS(1569), + [sym_float] = ACTIONS(1571), + [anon_sym_await] = ACTIONS(1569), + [anon_sym_api] = ACTIONS(1569), + [sym_true] = ACTIONS(1569), + [sym_false] = ACTIONS(1569), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1558), - [anon_sym_include] = ACTIONS(1558), - [anon_sym_DEF] = ACTIONS(1558), - [anon_sym_cdef] = ACTIONS(1558), - [anon_sym_cpdef] = ACTIONS(1558), - [anon_sym_int] = ACTIONS(1558), - [anon_sym_double] = ACTIONS(1558), - [anon_sym_complex] = ACTIONS(1558), - [anon_sym_new] = ACTIONS(1558), - [anon_sym_signed] = ACTIONS(1558), - [anon_sym_unsigned] = ACTIONS(1558), - [anon_sym_char] = ACTIONS(1558), - [anon_sym_short] = ACTIONS(1558), - [anon_sym_long] = ACTIONS(1558), - [anon_sym_const] = ACTIONS(1558), - [anon_sym_volatile] = ACTIONS(1558), - [anon_sym_ctypedef] = ACTIONS(1558), - [anon_sym_struct] = ACTIONS(1558), - [anon_sym_union] = ACTIONS(1558), - [anon_sym_enum] = ACTIONS(1558), - [anon_sym_cppclass] = ACTIONS(1558), - [anon_sym_fused] = ACTIONS(1558), - [anon_sym_public] = ACTIONS(1558), - [anon_sym_packed] = ACTIONS(1558), - [anon_sym_inline] = ACTIONS(1558), - [anon_sym_readonly] = ACTIONS(1558), - [anon_sym_sizeof] = ACTIONS(1558), - [sym__dedent] = ACTIONS(1560), - [sym_string_start] = ACTIONS(1560), + [anon_sym_property] = ACTIONS(1569), + [anon_sym_include] = ACTIONS(1569), + [anon_sym_DEF] = ACTIONS(1569), + [anon_sym_cdef] = ACTIONS(1569), + [anon_sym_cpdef] = ACTIONS(1569), + [anon_sym_int] = ACTIONS(1569), + [anon_sym_double] = ACTIONS(1569), + [anon_sym_complex] = ACTIONS(1569), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_signed] = ACTIONS(1569), + [anon_sym_unsigned] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_short] = ACTIONS(1569), + [anon_sym_long] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_volatile] = ACTIONS(1569), + [anon_sym_ctypedef] = ACTIONS(1569), + [anon_sym_struct] = ACTIONS(1569), + [anon_sym_union] = ACTIONS(1569), + [anon_sym_enum] = ACTIONS(1569), + [anon_sym_cppclass] = ACTIONS(1569), + [anon_sym_fused] = ACTIONS(1569), + [anon_sym_public] = ACTIONS(1569), + [anon_sym_packed] = ACTIONS(1569), + [anon_sym_inline] = ACTIONS(1569), + [anon_sym_readonly] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1569), + [sym__dedent] = ACTIONS(1571), + [sym_string_start] = ACTIONS(1571), }, [485] = { - [sym_identifier] = ACTIONS(1562), - [anon_sym_SEMI] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1562), - [anon_sym_cimport] = ACTIONS(1562), - [anon_sym_from] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1564), - [anon_sym_print] = ACTIONS(1562), - [anon_sym_assert] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_del] = ACTIONS(1562), - [anon_sym_raise] = ACTIONS(1562), - [anon_sym_pass] = ACTIONS(1562), - [anon_sym_break] = ACTIONS(1562), - [anon_sym_continue] = ACTIONS(1562), - [anon_sym_if] = ACTIONS(1562), - [anon_sym_match] = ACTIONS(1562), - [anon_sym_async] = ACTIONS(1562), - [anon_sym_for] = ACTIONS(1562), - [anon_sym_while] = ACTIONS(1562), - [anon_sym_try] = ACTIONS(1562), - [anon_sym_with] = ACTIONS(1562), - [anon_sym_def] = ACTIONS(1562), - [anon_sym_global] = ACTIONS(1562), - [anon_sym_nonlocal] = ACTIONS(1562), - [anon_sym_exec] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_class] = ACTIONS(1562), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_AT] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_PLUS] = ACTIONS(1564), - [anon_sym_not] = ACTIONS(1562), - [anon_sym_AMP] = ACTIONS(1564), - [anon_sym_TILDE] = ACTIONS(1564), - [anon_sym_LT] = ACTIONS(1564), - [anon_sym_lambda] = ACTIONS(1562), - [anon_sym_yield] = ACTIONS(1562), - [sym_ellipsis] = ACTIONS(1564), - [anon_sym_None] = ACTIONS(1562), - [sym_integer] = ACTIONS(1562), - [sym_float] = ACTIONS(1564), - [anon_sym_await] = ACTIONS(1562), - [anon_sym_api] = ACTIONS(1562), - [sym_true] = ACTIONS(1562), - [sym_false] = ACTIONS(1562), + [sym_identifier] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_import] = ACTIONS(1573), + [anon_sym_cimport] = ACTIONS(1573), + [anon_sym_from] = ACTIONS(1573), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_print] = ACTIONS(1573), + [anon_sym_assert] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_del] = ACTIONS(1573), + [anon_sym_raise] = ACTIONS(1573), + [anon_sym_pass] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_match] = ACTIONS(1573), + [anon_sym_async] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_try] = ACTIONS(1573), + [anon_sym_with] = ACTIONS(1573), + [anon_sym_def] = ACTIONS(1573), + [anon_sym_global] = ACTIONS(1573), + [anon_sym_nonlocal] = ACTIONS(1573), + [anon_sym_exec] = ACTIONS(1573), + [anon_sym_type] = ACTIONS(1573), + [anon_sym_class] = ACTIONS(1573), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_AT] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_not] = ACTIONS(1573), + [anon_sym_AMP] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1575), + [anon_sym_lambda] = ACTIONS(1573), + [anon_sym_yield] = ACTIONS(1573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1575), + [anon_sym_None] = ACTIONS(1573), + [sym_integer] = ACTIONS(1573), + [sym_float] = ACTIONS(1575), + [anon_sym_await] = ACTIONS(1573), + [anon_sym_api] = ACTIONS(1573), + [sym_true] = ACTIONS(1573), + [sym_false] = ACTIONS(1573), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1562), - [anon_sym_include] = ACTIONS(1562), - [anon_sym_DEF] = ACTIONS(1562), - [anon_sym_cdef] = ACTIONS(1562), - [anon_sym_cpdef] = ACTIONS(1562), - [anon_sym_int] = ACTIONS(1562), - [anon_sym_double] = ACTIONS(1562), - [anon_sym_complex] = ACTIONS(1562), - [anon_sym_new] = ACTIONS(1562), - [anon_sym_signed] = ACTIONS(1562), - [anon_sym_unsigned] = ACTIONS(1562), - [anon_sym_char] = ACTIONS(1562), - [anon_sym_short] = ACTIONS(1562), - [anon_sym_long] = ACTIONS(1562), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_volatile] = ACTIONS(1562), - [anon_sym_ctypedef] = ACTIONS(1562), - [anon_sym_struct] = ACTIONS(1562), - [anon_sym_union] = ACTIONS(1562), - [anon_sym_enum] = ACTIONS(1562), - [anon_sym_cppclass] = ACTIONS(1562), - [anon_sym_fused] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_packed] = ACTIONS(1562), - [anon_sym_inline] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_sizeof] = ACTIONS(1562), - [sym__dedent] = ACTIONS(1564), - [sym_string_start] = ACTIONS(1564), + [anon_sym_property] = ACTIONS(1573), + [anon_sym_include] = ACTIONS(1573), + [anon_sym_DEF] = ACTIONS(1573), + [anon_sym_cdef] = ACTIONS(1573), + [anon_sym_cpdef] = ACTIONS(1573), + [anon_sym_int] = ACTIONS(1573), + [anon_sym_double] = ACTIONS(1573), + [anon_sym_complex] = ACTIONS(1573), + [anon_sym_new] = ACTIONS(1573), + [anon_sym_signed] = ACTIONS(1573), + [anon_sym_unsigned] = ACTIONS(1573), + [anon_sym_char] = ACTIONS(1573), + [anon_sym_short] = ACTIONS(1573), + [anon_sym_long] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_volatile] = ACTIONS(1573), + [anon_sym_ctypedef] = ACTIONS(1573), + [anon_sym_struct] = ACTIONS(1573), + [anon_sym_union] = ACTIONS(1573), + [anon_sym_enum] = ACTIONS(1573), + [anon_sym_cppclass] = ACTIONS(1573), + [anon_sym_fused] = ACTIONS(1573), + [anon_sym_public] = ACTIONS(1573), + [anon_sym_packed] = ACTIONS(1573), + [anon_sym_inline] = ACTIONS(1573), + [anon_sym_readonly] = ACTIONS(1573), + [anon_sym_sizeof] = ACTIONS(1573), + [sym__dedent] = ACTIONS(1575), + [sym_string_start] = ACTIONS(1575), }, [486] = { - [sym_identifier] = ACTIONS(1566), - [anon_sym_SEMI] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(1566), - [anon_sym_cimport] = ACTIONS(1566), - [anon_sym_from] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1568), - [anon_sym_STAR] = ACTIONS(1568), - [anon_sym_print] = ACTIONS(1566), - [anon_sym_assert] = ACTIONS(1566), - [anon_sym_return] = ACTIONS(1566), - [anon_sym_del] = ACTIONS(1566), - [anon_sym_raise] = ACTIONS(1566), - [anon_sym_pass] = ACTIONS(1566), - [anon_sym_break] = ACTIONS(1566), - [anon_sym_continue] = ACTIONS(1566), - [anon_sym_if] = ACTIONS(1566), - [anon_sym_match] = ACTIONS(1566), - [anon_sym_async] = ACTIONS(1566), - [anon_sym_for] = ACTIONS(1566), - [anon_sym_while] = ACTIONS(1566), - [anon_sym_try] = ACTIONS(1566), - [anon_sym_with] = ACTIONS(1566), - [anon_sym_def] = ACTIONS(1566), - [anon_sym_global] = ACTIONS(1566), - [anon_sym_nonlocal] = ACTIONS(1566), - [anon_sym_exec] = ACTIONS(1566), - [anon_sym_type] = ACTIONS(1566), - [anon_sym_class] = ACTIONS(1566), - [anon_sym_LBRACK] = ACTIONS(1568), - [anon_sym_AT] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_not] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_lambda] = ACTIONS(1566), - [anon_sym_yield] = ACTIONS(1566), - [sym_ellipsis] = ACTIONS(1568), - [anon_sym_None] = ACTIONS(1566), - [sym_integer] = ACTIONS(1566), - [sym_float] = ACTIONS(1568), - [anon_sym_await] = ACTIONS(1566), - [anon_sym_api] = ACTIONS(1566), - [sym_true] = ACTIONS(1566), - [sym_false] = ACTIONS(1566), + [sym_identifier] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_import] = ACTIONS(1577), + [anon_sym_cimport] = ACTIONS(1577), + [anon_sym_from] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_print] = ACTIONS(1577), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_del] = ACTIONS(1577), + [anon_sym_raise] = ACTIONS(1577), + [anon_sym_pass] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_match] = ACTIONS(1577), + [anon_sym_async] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_try] = ACTIONS(1577), + [anon_sym_with] = ACTIONS(1577), + [anon_sym_def] = ACTIONS(1577), + [anon_sym_global] = ACTIONS(1577), + [anon_sym_nonlocal] = ACTIONS(1577), + [anon_sym_exec] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_class] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_AT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_not] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1579), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_lambda] = ACTIONS(1577), + [anon_sym_yield] = ACTIONS(1577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1579), + [anon_sym_None] = ACTIONS(1577), + [sym_integer] = ACTIONS(1577), + [sym_float] = ACTIONS(1579), + [anon_sym_await] = ACTIONS(1577), + [anon_sym_api] = ACTIONS(1577), + [sym_true] = ACTIONS(1577), + [sym_false] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1566), - [anon_sym_include] = ACTIONS(1566), - [anon_sym_DEF] = ACTIONS(1566), - [anon_sym_cdef] = ACTIONS(1566), - [anon_sym_cpdef] = ACTIONS(1566), - [anon_sym_int] = ACTIONS(1566), - [anon_sym_double] = ACTIONS(1566), - [anon_sym_complex] = ACTIONS(1566), - [anon_sym_new] = ACTIONS(1566), - [anon_sym_signed] = ACTIONS(1566), - [anon_sym_unsigned] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_short] = ACTIONS(1566), - [anon_sym_long] = ACTIONS(1566), - [anon_sym_const] = ACTIONS(1566), - [anon_sym_volatile] = ACTIONS(1566), - [anon_sym_ctypedef] = ACTIONS(1566), - [anon_sym_struct] = ACTIONS(1566), - [anon_sym_union] = ACTIONS(1566), - [anon_sym_enum] = ACTIONS(1566), - [anon_sym_cppclass] = ACTIONS(1566), - [anon_sym_fused] = ACTIONS(1566), - [anon_sym_public] = ACTIONS(1566), - [anon_sym_packed] = ACTIONS(1566), - [anon_sym_inline] = ACTIONS(1566), - [anon_sym_readonly] = ACTIONS(1566), - [anon_sym_sizeof] = ACTIONS(1566), - [sym__dedent] = ACTIONS(1568), - [sym_string_start] = ACTIONS(1568), + [anon_sym_property] = ACTIONS(1577), + [anon_sym_include] = ACTIONS(1577), + [anon_sym_DEF] = ACTIONS(1577), + [anon_sym_cdef] = ACTIONS(1577), + [anon_sym_cpdef] = ACTIONS(1577), + [anon_sym_int] = ACTIONS(1577), + [anon_sym_double] = ACTIONS(1577), + [anon_sym_complex] = ACTIONS(1577), + [anon_sym_new] = ACTIONS(1577), + [anon_sym_signed] = ACTIONS(1577), + [anon_sym_unsigned] = ACTIONS(1577), + [anon_sym_char] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_volatile] = ACTIONS(1577), + [anon_sym_ctypedef] = ACTIONS(1577), + [anon_sym_struct] = ACTIONS(1577), + [anon_sym_union] = ACTIONS(1577), + [anon_sym_enum] = ACTIONS(1577), + [anon_sym_cppclass] = ACTIONS(1577), + [anon_sym_fused] = ACTIONS(1577), + [anon_sym_public] = ACTIONS(1577), + [anon_sym_packed] = ACTIONS(1577), + [anon_sym_inline] = ACTIONS(1577), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_sizeof] = ACTIONS(1577), + [sym__dedent] = ACTIONS(1579), + [sym_string_start] = ACTIONS(1579), }, [487] = { - [sym_identifier] = ACTIONS(1570), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_import] = ACTIONS(1570), - [anon_sym_cimport] = ACTIONS(1570), - [anon_sym_from] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1572), - [anon_sym_print] = ACTIONS(1570), - [anon_sym_assert] = ACTIONS(1570), - [anon_sym_return] = ACTIONS(1570), - [anon_sym_del] = ACTIONS(1570), - [anon_sym_raise] = ACTIONS(1570), - [anon_sym_pass] = ACTIONS(1570), - [anon_sym_break] = ACTIONS(1570), - [anon_sym_continue] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1570), - [anon_sym_async] = ACTIONS(1570), - [anon_sym_for] = ACTIONS(1570), - [anon_sym_while] = ACTIONS(1570), - [anon_sym_try] = ACTIONS(1570), - [anon_sym_with] = ACTIONS(1570), - [anon_sym_def] = ACTIONS(1570), - [anon_sym_global] = ACTIONS(1570), - [anon_sym_nonlocal] = ACTIONS(1570), - [anon_sym_exec] = ACTIONS(1570), - [anon_sym_type] = ACTIONS(1570), - [anon_sym_class] = ACTIONS(1570), - [anon_sym_LBRACK] = ACTIONS(1572), - [anon_sym_AT] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_PLUS] = ACTIONS(1572), - [anon_sym_not] = ACTIONS(1570), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_TILDE] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_lambda] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1570), - [sym_ellipsis] = ACTIONS(1572), - [anon_sym_None] = ACTIONS(1570), - [sym_integer] = ACTIONS(1570), - [sym_float] = ACTIONS(1572), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_api] = ACTIONS(1570), - [sym_true] = ACTIONS(1570), - [sym_false] = ACTIONS(1570), + [sym_identifier] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_import] = ACTIONS(1581), + [anon_sym_cimport] = ACTIONS(1581), + [anon_sym_from] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_print] = ACTIONS(1581), + [anon_sym_assert] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_del] = ACTIONS(1581), + [anon_sym_raise] = ACTIONS(1581), + [anon_sym_pass] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_match] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1581), + [anon_sym_with] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1581), + [anon_sym_global] = ACTIONS(1581), + [anon_sym_nonlocal] = ACTIONS(1581), + [anon_sym_exec] = ACTIONS(1581), + [anon_sym_type] = ACTIONS(1581), + [anon_sym_class] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_AT] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_not] = ACTIONS(1581), + [anon_sym_AMP] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_LT] = ACTIONS(1583), + [anon_sym_lambda] = ACTIONS(1581), + [anon_sym_yield] = ACTIONS(1581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1583), + [anon_sym_None] = ACTIONS(1581), + [sym_integer] = ACTIONS(1581), + [sym_float] = ACTIONS(1583), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_api] = ACTIONS(1581), + [sym_true] = ACTIONS(1581), + [sym_false] = ACTIONS(1581), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1570), - [anon_sym_include] = ACTIONS(1570), - [anon_sym_DEF] = ACTIONS(1570), - [anon_sym_cdef] = ACTIONS(1570), - [anon_sym_cpdef] = ACTIONS(1570), - [anon_sym_int] = ACTIONS(1570), - [anon_sym_double] = ACTIONS(1570), - [anon_sym_complex] = ACTIONS(1570), - [anon_sym_new] = ACTIONS(1570), - [anon_sym_signed] = ACTIONS(1570), - [anon_sym_unsigned] = ACTIONS(1570), - [anon_sym_char] = ACTIONS(1570), - [anon_sym_short] = ACTIONS(1570), - [anon_sym_long] = ACTIONS(1570), - [anon_sym_const] = ACTIONS(1570), - [anon_sym_volatile] = ACTIONS(1570), - [anon_sym_ctypedef] = ACTIONS(1570), - [anon_sym_struct] = ACTIONS(1570), - [anon_sym_union] = ACTIONS(1570), - [anon_sym_enum] = ACTIONS(1570), - [anon_sym_cppclass] = ACTIONS(1570), - [anon_sym_fused] = ACTIONS(1570), - [anon_sym_public] = ACTIONS(1570), - [anon_sym_packed] = ACTIONS(1570), - [anon_sym_inline] = ACTIONS(1570), - [anon_sym_readonly] = ACTIONS(1570), - [anon_sym_sizeof] = ACTIONS(1570), - [sym__dedent] = ACTIONS(1572), - [sym_string_start] = ACTIONS(1572), + [anon_sym_property] = ACTIONS(1581), + [anon_sym_include] = ACTIONS(1581), + [anon_sym_DEF] = ACTIONS(1581), + [anon_sym_cdef] = ACTIONS(1581), + [anon_sym_cpdef] = ACTIONS(1581), + [anon_sym_int] = ACTIONS(1581), + [anon_sym_double] = ACTIONS(1581), + [anon_sym_complex] = ACTIONS(1581), + [anon_sym_new] = ACTIONS(1581), + [anon_sym_signed] = ACTIONS(1581), + [anon_sym_unsigned] = ACTIONS(1581), + [anon_sym_char] = ACTIONS(1581), + [anon_sym_short] = ACTIONS(1581), + [anon_sym_long] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_volatile] = ACTIONS(1581), + [anon_sym_ctypedef] = ACTIONS(1581), + [anon_sym_struct] = ACTIONS(1581), + [anon_sym_union] = ACTIONS(1581), + [anon_sym_enum] = ACTIONS(1581), + [anon_sym_cppclass] = ACTIONS(1581), + [anon_sym_fused] = ACTIONS(1581), + [anon_sym_public] = ACTIONS(1581), + [anon_sym_packed] = ACTIONS(1581), + [anon_sym_inline] = ACTIONS(1581), + [anon_sym_readonly] = ACTIONS(1581), + [anon_sym_sizeof] = ACTIONS(1581), + [sym__dedent] = ACTIONS(1583), + [sym_string_start] = ACTIONS(1583), }, [488] = { - [sym_identifier] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1576), - [anon_sym_import] = ACTIONS(1574), - [anon_sym_cimport] = ACTIONS(1574), - [anon_sym_from] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(1576), - [anon_sym_print] = ACTIONS(1574), - [anon_sym_assert] = ACTIONS(1574), - [anon_sym_return] = ACTIONS(1574), - [anon_sym_del] = ACTIONS(1574), - [anon_sym_raise] = ACTIONS(1574), - [anon_sym_pass] = ACTIONS(1574), - [anon_sym_break] = ACTIONS(1574), - [anon_sym_continue] = ACTIONS(1574), - [anon_sym_if] = ACTIONS(1574), - [anon_sym_match] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1574), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_try] = ACTIONS(1574), - [anon_sym_with] = ACTIONS(1574), - [anon_sym_def] = ACTIONS(1574), - [anon_sym_global] = ACTIONS(1574), - [anon_sym_nonlocal] = ACTIONS(1574), - [anon_sym_exec] = ACTIONS(1574), - [anon_sym_type] = ACTIONS(1574), - [anon_sym_class] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(1576), - [anon_sym_AT] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_PLUS] = ACTIONS(1576), - [anon_sym_not] = ACTIONS(1574), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_TILDE] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_lambda] = ACTIONS(1574), - [anon_sym_yield] = ACTIONS(1574), - [sym_ellipsis] = ACTIONS(1576), - [anon_sym_None] = ACTIONS(1574), - [sym_integer] = ACTIONS(1574), - [sym_float] = ACTIONS(1576), - [anon_sym_await] = ACTIONS(1574), - [anon_sym_api] = ACTIONS(1574), - [sym_true] = ACTIONS(1574), - [sym_false] = ACTIONS(1574), + [sym_identifier] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1585), + [anon_sym_cimport] = ACTIONS(1585), + [anon_sym_from] = ACTIONS(1585), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_print] = ACTIONS(1585), + [anon_sym_assert] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_del] = ACTIONS(1585), + [anon_sym_raise] = ACTIONS(1585), + [anon_sym_pass] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_match] = ACTIONS(1585), + [anon_sym_async] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_try] = ACTIONS(1585), + [anon_sym_with] = ACTIONS(1585), + [anon_sym_def] = ACTIONS(1585), + [anon_sym_global] = ACTIONS(1585), + [anon_sym_nonlocal] = ACTIONS(1585), + [anon_sym_exec] = ACTIONS(1585), + [anon_sym_type] = ACTIONS(1585), + [anon_sym_class] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_AT] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1587), + [anon_sym_not] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1587), + [anon_sym_lambda] = ACTIONS(1585), + [anon_sym_yield] = ACTIONS(1585), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), + [anon_sym_None] = ACTIONS(1585), + [sym_integer] = ACTIONS(1585), + [sym_float] = ACTIONS(1587), + [anon_sym_await] = ACTIONS(1585), + [anon_sym_api] = ACTIONS(1585), + [sym_true] = ACTIONS(1585), + [sym_false] = ACTIONS(1585), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1574), - [anon_sym_include] = ACTIONS(1574), - [anon_sym_DEF] = ACTIONS(1574), - [anon_sym_cdef] = ACTIONS(1574), - [anon_sym_cpdef] = ACTIONS(1574), - [anon_sym_int] = ACTIONS(1574), - [anon_sym_double] = ACTIONS(1574), - [anon_sym_complex] = ACTIONS(1574), - [anon_sym_new] = ACTIONS(1574), - [anon_sym_signed] = ACTIONS(1574), - [anon_sym_unsigned] = ACTIONS(1574), - [anon_sym_char] = ACTIONS(1574), - [anon_sym_short] = ACTIONS(1574), - [anon_sym_long] = ACTIONS(1574), - [anon_sym_const] = ACTIONS(1574), - [anon_sym_volatile] = ACTIONS(1574), - [anon_sym_ctypedef] = ACTIONS(1574), - [anon_sym_struct] = ACTIONS(1574), - [anon_sym_union] = ACTIONS(1574), - [anon_sym_enum] = ACTIONS(1574), - [anon_sym_cppclass] = ACTIONS(1574), - [anon_sym_fused] = ACTIONS(1574), - [anon_sym_public] = ACTIONS(1574), - [anon_sym_packed] = ACTIONS(1574), - [anon_sym_inline] = ACTIONS(1574), - [anon_sym_readonly] = ACTIONS(1574), - [anon_sym_sizeof] = ACTIONS(1574), - [sym__dedent] = ACTIONS(1576), - [sym_string_start] = ACTIONS(1576), + [anon_sym_property] = ACTIONS(1585), + [anon_sym_include] = ACTIONS(1585), + [anon_sym_DEF] = ACTIONS(1585), + [anon_sym_cdef] = ACTIONS(1585), + [anon_sym_cpdef] = ACTIONS(1585), + [anon_sym_int] = ACTIONS(1585), + [anon_sym_double] = ACTIONS(1585), + [anon_sym_complex] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1585), + [anon_sym_signed] = ACTIONS(1585), + [anon_sym_unsigned] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_volatile] = ACTIONS(1585), + [anon_sym_ctypedef] = ACTIONS(1585), + [anon_sym_struct] = ACTIONS(1585), + [anon_sym_union] = ACTIONS(1585), + [anon_sym_enum] = ACTIONS(1585), + [anon_sym_cppclass] = ACTIONS(1585), + [anon_sym_fused] = ACTIONS(1585), + [anon_sym_public] = ACTIONS(1585), + [anon_sym_packed] = ACTIONS(1585), + [anon_sym_inline] = ACTIONS(1585), + [anon_sym_readonly] = ACTIONS(1585), + [anon_sym_sizeof] = ACTIONS(1585), + [sym__dedent] = ACTIONS(1587), + [sym_string_start] = ACTIONS(1587), }, [489] = { - [sym_identifier] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_import] = ACTIONS(1578), - [anon_sym_cimport] = ACTIONS(1578), - [anon_sym_from] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_STAR] = ACTIONS(1580), - [anon_sym_print] = ACTIONS(1578), - [anon_sym_assert] = ACTIONS(1578), - [anon_sym_return] = ACTIONS(1578), - [anon_sym_del] = ACTIONS(1578), - [anon_sym_raise] = ACTIONS(1578), - [anon_sym_pass] = ACTIONS(1578), - [anon_sym_break] = ACTIONS(1578), - [anon_sym_continue] = ACTIONS(1578), - [anon_sym_if] = ACTIONS(1578), - [anon_sym_match] = ACTIONS(1578), - [anon_sym_async] = ACTIONS(1578), - [anon_sym_for] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1578), - [anon_sym_try] = ACTIONS(1578), - [anon_sym_with] = ACTIONS(1578), - [anon_sym_def] = ACTIONS(1578), - [anon_sym_global] = ACTIONS(1578), - [anon_sym_nonlocal] = ACTIONS(1578), - [anon_sym_exec] = ACTIONS(1578), - [anon_sym_type] = ACTIONS(1578), - [anon_sym_class] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_AT] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1580), - [anon_sym_not] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1580), - [anon_sym_TILDE] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_lambda] = ACTIONS(1578), - [anon_sym_yield] = ACTIONS(1578), - [sym_ellipsis] = ACTIONS(1580), - [anon_sym_None] = ACTIONS(1578), - [sym_integer] = ACTIONS(1578), - [sym_float] = ACTIONS(1580), - [anon_sym_await] = ACTIONS(1578), - [anon_sym_api] = ACTIONS(1578), - [sym_true] = ACTIONS(1578), - [sym_false] = ACTIONS(1578), + [sym_identifier] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_import] = ACTIONS(1589), + [anon_sym_cimport] = ACTIONS(1589), + [anon_sym_from] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_print] = ACTIONS(1589), + [anon_sym_assert] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_del] = ACTIONS(1589), + [anon_sym_raise] = ACTIONS(1589), + [anon_sym_pass] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_async] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_with] = ACTIONS(1589), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_global] = ACTIONS(1589), + [anon_sym_nonlocal] = ACTIONS(1589), + [anon_sym_exec] = ACTIONS(1589), + [anon_sym_type] = ACTIONS(1589), + [anon_sym_class] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_AT] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_not] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(1591), + [anon_sym_lambda] = ACTIONS(1589), + [anon_sym_yield] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1591), + [anon_sym_None] = ACTIONS(1589), + [sym_integer] = ACTIONS(1589), + [sym_float] = ACTIONS(1591), + [anon_sym_await] = ACTIONS(1589), + [anon_sym_api] = ACTIONS(1589), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1578), - [anon_sym_include] = ACTIONS(1578), - [anon_sym_DEF] = ACTIONS(1578), - [anon_sym_cdef] = ACTIONS(1578), - [anon_sym_cpdef] = ACTIONS(1578), - [anon_sym_int] = ACTIONS(1578), - [anon_sym_double] = ACTIONS(1578), - [anon_sym_complex] = ACTIONS(1578), - [anon_sym_new] = ACTIONS(1578), - [anon_sym_signed] = ACTIONS(1578), - [anon_sym_unsigned] = ACTIONS(1578), - [anon_sym_char] = ACTIONS(1578), - [anon_sym_short] = ACTIONS(1578), - [anon_sym_long] = ACTIONS(1578), - [anon_sym_const] = ACTIONS(1578), - [anon_sym_volatile] = ACTIONS(1578), - [anon_sym_ctypedef] = ACTIONS(1578), - [anon_sym_struct] = ACTIONS(1578), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_enum] = ACTIONS(1578), - [anon_sym_cppclass] = ACTIONS(1578), - [anon_sym_fused] = ACTIONS(1578), - [anon_sym_public] = ACTIONS(1578), - [anon_sym_packed] = ACTIONS(1578), - [anon_sym_inline] = ACTIONS(1578), - [anon_sym_readonly] = ACTIONS(1578), - [anon_sym_sizeof] = ACTIONS(1578), - [sym__dedent] = ACTIONS(1580), - [sym_string_start] = ACTIONS(1580), + [anon_sym_property] = ACTIONS(1589), + [anon_sym_include] = ACTIONS(1589), + [anon_sym_DEF] = ACTIONS(1589), + [anon_sym_cdef] = ACTIONS(1589), + [anon_sym_cpdef] = ACTIONS(1589), + [anon_sym_int] = ACTIONS(1589), + [anon_sym_double] = ACTIONS(1589), + [anon_sym_complex] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_signed] = ACTIONS(1589), + [anon_sym_unsigned] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_volatile] = ACTIONS(1589), + [anon_sym_ctypedef] = ACTIONS(1589), + [anon_sym_struct] = ACTIONS(1589), + [anon_sym_union] = ACTIONS(1589), + [anon_sym_enum] = ACTIONS(1589), + [anon_sym_cppclass] = ACTIONS(1589), + [anon_sym_fused] = ACTIONS(1589), + [anon_sym_public] = ACTIONS(1589), + [anon_sym_packed] = ACTIONS(1589), + [anon_sym_inline] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1589), + [anon_sym_sizeof] = ACTIONS(1589), + [sym__dedent] = ACTIONS(1591), + [sym_string_start] = ACTIONS(1591), }, [490] = { - [sym_identifier] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1584), - [anon_sym_import] = ACTIONS(1582), - [anon_sym_cimport] = ACTIONS(1582), - [anon_sym_from] = ACTIONS(1582), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(1584), - [anon_sym_print] = ACTIONS(1582), - [anon_sym_assert] = ACTIONS(1582), - [anon_sym_return] = ACTIONS(1582), - [anon_sym_del] = ACTIONS(1582), - [anon_sym_raise] = ACTIONS(1582), - [anon_sym_pass] = ACTIONS(1582), - [anon_sym_break] = ACTIONS(1582), - [anon_sym_continue] = ACTIONS(1582), - [anon_sym_if] = ACTIONS(1582), - [anon_sym_match] = ACTIONS(1582), - [anon_sym_async] = ACTIONS(1582), - [anon_sym_for] = ACTIONS(1582), - [anon_sym_while] = ACTIONS(1582), - [anon_sym_try] = ACTIONS(1582), - [anon_sym_with] = ACTIONS(1582), - [anon_sym_def] = ACTIONS(1582), - [anon_sym_global] = ACTIONS(1582), - [anon_sym_nonlocal] = ACTIONS(1582), - [anon_sym_exec] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_class] = ACTIONS(1582), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_AT] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_not] = ACTIONS(1582), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_TILDE] = ACTIONS(1584), - [anon_sym_LT] = ACTIONS(1584), - [anon_sym_lambda] = ACTIONS(1582), - [anon_sym_yield] = ACTIONS(1582), - [sym_ellipsis] = ACTIONS(1584), - [anon_sym_None] = ACTIONS(1582), - [sym_integer] = ACTIONS(1582), - [sym_float] = ACTIONS(1584), - [anon_sym_await] = ACTIONS(1582), - [anon_sym_api] = ACTIONS(1582), - [sym_true] = ACTIONS(1582), - [sym_false] = ACTIONS(1582), + [sym_identifier] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_import] = ACTIONS(1593), + [anon_sym_cimport] = ACTIONS(1593), + [anon_sym_from] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_print] = ACTIONS(1593), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_del] = ACTIONS(1593), + [anon_sym_raise] = ACTIONS(1593), + [anon_sym_pass] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_match] = ACTIONS(1593), + [anon_sym_async] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_with] = ACTIONS(1593), + [anon_sym_def] = ACTIONS(1593), + [anon_sym_global] = ACTIONS(1593), + [anon_sym_nonlocal] = ACTIONS(1593), + [anon_sym_exec] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_class] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_AT] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1595), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_not] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_LT] = ACTIONS(1595), + [anon_sym_lambda] = ACTIONS(1593), + [anon_sym_yield] = ACTIONS(1593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), + [anon_sym_None] = ACTIONS(1593), + [sym_integer] = ACTIONS(1593), + [sym_float] = ACTIONS(1595), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_api] = ACTIONS(1593), + [sym_true] = ACTIONS(1593), + [sym_false] = ACTIONS(1593), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1582), - [anon_sym_include] = ACTIONS(1582), - [anon_sym_DEF] = ACTIONS(1582), - [anon_sym_cdef] = ACTIONS(1582), - [anon_sym_cpdef] = ACTIONS(1582), - [anon_sym_int] = ACTIONS(1582), - [anon_sym_double] = ACTIONS(1582), - [anon_sym_complex] = ACTIONS(1582), - [anon_sym_new] = ACTIONS(1582), - [anon_sym_signed] = ACTIONS(1582), - [anon_sym_unsigned] = ACTIONS(1582), - [anon_sym_char] = ACTIONS(1582), - [anon_sym_short] = ACTIONS(1582), - [anon_sym_long] = ACTIONS(1582), - [anon_sym_const] = ACTIONS(1582), - [anon_sym_volatile] = ACTIONS(1582), - [anon_sym_ctypedef] = ACTIONS(1582), - [anon_sym_struct] = ACTIONS(1582), - [anon_sym_union] = ACTIONS(1582), - [anon_sym_enum] = ACTIONS(1582), - [anon_sym_cppclass] = ACTIONS(1582), - [anon_sym_fused] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_packed] = ACTIONS(1582), - [anon_sym_inline] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_sizeof] = ACTIONS(1582), - [sym__dedent] = ACTIONS(1584), - [sym_string_start] = ACTIONS(1584), + [anon_sym_property] = ACTIONS(1593), + [anon_sym_include] = ACTIONS(1593), + [anon_sym_DEF] = ACTIONS(1593), + [anon_sym_cdef] = ACTIONS(1593), + [anon_sym_cpdef] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_double] = ACTIONS(1593), + [anon_sym_complex] = ACTIONS(1593), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_signed] = ACTIONS(1593), + [anon_sym_unsigned] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_volatile] = ACTIONS(1593), + [anon_sym_ctypedef] = ACTIONS(1593), + [anon_sym_struct] = ACTIONS(1593), + [anon_sym_union] = ACTIONS(1593), + [anon_sym_enum] = ACTIONS(1593), + [anon_sym_cppclass] = ACTIONS(1593), + [anon_sym_fused] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_packed] = ACTIONS(1593), + [anon_sym_inline] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1593), + [sym__dedent] = ACTIONS(1595), + [sym_string_start] = ACTIONS(1595), }, [491] = { - [sym_identifier] = ACTIONS(1586), - [anon_sym_SEMI] = ACTIONS(1588), - [anon_sym_import] = ACTIONS(1586), - [anon_sym_cimport] = ACTIONS(1586), - [anon_sym_from] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_STAR] = ACTIONS(1588), - [anon_sym_print] = ACTIONS(1586), - [anon_sym_assert] = ACTIONS(1586), - [anon_sym_return] = ACTIONS(1586), - [anon_sym_del] = ACTIONS(1586), - [anon_sym_raise] = ACTIONS(1586), - [anon_sym_pass] = ACTIONS(1586), - [anon_sym_break] = ACTIONS(1586), - [anon_sym_continue] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_match] = ACTIONS(1586), - [anon_sym_async] = ACTIONS(1586), - [anon_sym_for] = ACTIONS(1586), - [anon_sym_while] = ACTIONS(1586), - [anon_sym_try] = ACTIONS(1586), - [anon_sym_with] = ACTIONS(1586), - [anon_sym_def] = ACTIONS(1586), - [anon_sym_global] = ACTIONS(1586), - [anon_sym_nonlocal] = ACTIONS(1586), - [anon_sym_exec] = ACTIONS(1586), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_class] = ACTIONS(1586), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_AT] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_not] = ACTIONS(1586), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1588), - [anon_sym_lambda] = ACTIONS(1586), - [anon_sym_yield] = ACTIONS(1586), - [sym_ellipsis] = ACTIONS(1588), - [anon_sym_None] = ACTIONS(1586), - [sym_integer] = ACTIONS(1586), - [sym_float] = ACTIONS(1588), - [anon_sym_await] = ACTIONS(1586), - [anon_sym_api] = ACTIONS(1586), - [sym_true] = ACTIONS(1586), - [sym_false] = ACTIONS(1586), + [sym_identifier] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_import] = ACTIONS(1597), + [anon_sym_cimport] = ACTIONS(1597), + [anon_sym_from] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_print] = ACTIONS(1597), + [anon_sym_assert] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_del] = ACTIONS(1597), + [anon_sym_raise] = ACTIONS(1597), + [anon_sym_pass] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1597), + [anon_sym_async] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_try] = ACTIONS(1597), + [anon_sym_with] = ACTIONS(1597), + [anon_sym_def] = ACTIONS(1597), + [anon_sym_global] = ACTIONS(1597), + [anon_sym_nonlocal] = ACTIONS(1597), + [anon_sym_exec] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_class] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_AT] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_not] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_lambda] = ACTIONS(1597), + [anon_sym_yield] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1599), + [anon_sym_None] = ACTIONS(1597), + [sym_integer] = ACTIONS(1597), + [sym_float] = ACTIONS(1599), + [anon_sym_await] = ACTIONS(1597), + [anon_sym_api] = ACTIONS(1597), + [sym_true] = ACTIONS(1597), + [sym_false] = ACTIONS(1597), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1586), - [anon_sym_include] = ACTIONS(1586), - [anon_sym_DEF] = ACTIONS(1586), - [anon_sym_cdef] = ACTIONS(1586), - [anon_sym_cpdef] = ACTIONS(1586), - [anon_sym_int] = ACTIONS(1586), - [anon_sym_double] = ACTIONS(1586), - [anon_sym_complex] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1586), - [anon_sym_signed] = ACTIONS(1586), - [anon_sym_unsigned] = ACTIONS(1586), - [anon_sym_char] = ACTIONS(1586), - [anon_sym_short] = ACTIONS(1586), - [anon_sym_long] = ACTIONS(1586), - [anon_sym_const] = ACTIONS(1586), - [anon_sym_volatile] = ACTIONS(1586), - [anon_sym_ctypedef] = ACTIONS(1586), - [anon_sym_struct] = ACTIONS(1586), - [anon_sym_union] = ACTIONS(1586), - [anon_sym_enum] = ACTIONS(1586), - [anon_sym_cppclass] = ACTIONS(1586), - [anon_sym_fused] = ACTIONS(1586), - [anon_sym_public] = ACTIONS(1586), - [anon_sym_packed] = ACTIONS(1586), - [anon_sym_inline] = ACTIONS(1586), - [anon_sym_readonly] = ACTIONS(1586), - [anon_sym_sizeof] = ACTIONS(1586), - [sym__dedent] = ACTIONS(1588), - [sym_string_start] = ACTIONS(1588), + [anon_sym_property] = ACTIONS(1597), + [anon_sym_include] = ACTIONS(1597), + [anon_sym_DEF] = ACTIONS(1597), + [anon_sym_cdef] = ACTIONS(1597), + [anon_sym_cpdef] = ACTIONS(1597), + [anon_sym_int] = ACTIONS(1597), + [anon_sym_double] = ACTIONS(1597), + [anon_sym_complex] = ACTIONS(1597), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_signed] = ACTIONS(1597), + [anon_sym_unsigned] = ACTIONS(1597), + [anon_sym_char] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_volatile] = ACTIONS(1597), + [anon_sym_ctypedef] = ACTIONS(1597), + [anon_sym_struct] = ACTIONS(1597), + [anon_sym_union] = ACTIONS(1597), + [anon_sym_enum] = ACTIONS(1597), + [anon_sym_cppclass] = ACTIONS(1597), + [anon_sym_fused] = ACTIONS(1597), + [anon_sym_public] = ACTIONS(1597), + [anon_sym_packed] = ACTIONS(1597), + [anon_sym_inline] = ACTIONS(1597), + [anon_sym_readonly] = ACTIONS(1597), + [anon_sym_sizeof] = ACTIONS(1597), + [sym__dedent] = ACTIONS(1599), + [sym_string_start] = ACTIONS(1599), }, [492] = { - [sym_identifier] = ACTIONS(1590), - [anon_sym_SEMI] = ACTIONS(1592), - [anon_sym_import] = ACTIONS(1590), - [anon_sym_cimport] = ACTIONS(1590), - [anon_sym_from] = ACTIONS(1590), - [anon_sym_LPAREN] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1592), - [anon_sym_print] = ACTIONS(1590), - [anon_sym_assert] = ACTIONS(1590), - [anon_sym_return] = ACTIONS(1590), - [anon_sym_del] = ACTIONS(1590), - [anon_sym_raise] = ACTIONS(1590), - [anon_sym_pass] = ACTIONS(1590), - [anon_sym_break] = ACTIONS(1590), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1590), - [anon_sym_match] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(1590), - [anon_sym_for] = ACTIONS(1590), - [anon_sym_while] = ACTIONS(1590), - [anon_sym_try] = ACTIONS(1590), - [anon_sym_with] = ACTIONS(1590), - [anon_sym_def] = ACTIONS(1590), - [anon_sym_global] = ACTIONS(1590), - [anon_sym_nonlocal] = ACTIONS(1590), - [anon_sym_exec] = ACTIONS(1590), - [anon_sym_type] = ACTIONS(1590), - [anon_sym_class] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_AT] = ACTIONS(1592), - [anon_sym_DASH] = ACTIONS(1592), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_PLUS] = ACTIONS(1592), - [anon_sym_not] = ACTIONS(1590), - [anon_sym_AMP] = ACTIONS(1592), - [anon_sym_TILDE] = ACTIONS(1592), - [anon_sym_LT] = ACTIONS(1592), - [anon_sym_lambda] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1590), - [sym_ellipsis] = ACTIONS(1592), - [anon_sym_None] = ACTIONS(1590), - [sym_integer] = ACTIONS(1590), - [sym_float] = ACTIONS(1592), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_api] = ACTIONS(1590), - [sym_true] = ACTIONS(1590), - [sym_false] = ACTIONS(1590), + [sym_identifier] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(1601), + [anon_sym_cimport] = ACTIONS(1601), + [anon_sym_from] = ACTIONS(1601), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_print] = ACTIONS(1601), + [anon_sym_assert] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1601), + [anon_sym_del] = ACTIONS(1601), + [anon_sym_raise] = ACTIONS(1601), + [anon_sym_pass] = ACTIONS(1601), + [anon_sym_break] = ACTIONS(1601), + [anon_sym_continue] = ACTIONS(1601), + [anon_sym_if] = ACTIONS(1601), + [anon_sym_match] = ACTIONS(1601), + [anon_sym_async] = ACTIONS(1601), + [anon_sym_for] = ACTIONS(1601), + [anon_sym_while] = ACTIONS(1601), + [anon_sym_try] = ACTIONS(1601), + [anon_sym_with] = ACTIONS(1601), + [anon_sym_def] = ACTIONS(1601), + [anon_sym_global] = ACTIONS(1601), + [anon_sym_nonlocal] = ACTIONS(1601), + [anon_sym_exec] = ACTIONS(1601), + [anon_sym_type] = ACTIONS(1601), + [anon_sym_class] = ACTIONS(1601), + [anon_sym_LBRACK] = ACTIONS(1603), + [anon_sym_AT] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_not] = ACTIONS(1601), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_LT] = ACTIONS(1603), + [anon_sym_lambda] = ACTIONS(1601), + [anon_sym_yield] = ACTIONS(1601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1603), + [anon_sym_None] = ACTIONS(1601), + [sym_integer] = ACTIONS(1601), + [sym_float] = ACTIONS(1603), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_api] = ACTIONS(1601), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1590), - [anon_sym_include] = ACTIONS(1590), - [anon_sym_DEF] = ACTIONS(1590), - [anon_sym_cdef] = ACTIONS(1590), - [anon_sym_cpdef] = ACTIONS(1590), - [anon_sym_int] = ACTIONS(1590), - [anon_sym_double] = ACTIONS(1590), - [anon_sym_complex] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1590), - [anon_sym_signed] = ACTIONS(1590), - [anon_sym_unsigned] = ACTIONS(1590), - [anon_sym_char] = ACTIONS(1590), - [anon_sym_short] = ACTIONS(1590), - [anon_sym_long] = ACTIONS(1590), - [anon_sym_const] = ACTIONS(1590), - [anon_sym_volatile] = ACTIONS(1590), - [anon_sym_ctypedef] = ACTIONS(1590), - [anon_sym_struct] = ACTIONS(1590), - [anon_sym_union] = ACTIONS(1590), - [anon_sym_enum] = ACTIONS(1590), - [anon_sym_cppclass] = ACTIONS(1590), - [anon_sym_fused] = ACTIONS(1590), - [anon_sym_public] = ACTIONS(1590), - [anon_sym_packed] = ACTIONS(1590), - [anon_sym_inline] = ACTIONS(1590), - [anon_sym_readonly] = ACTIONS(1590), - [anon_sym_sizeof] = ACTIONS(1590), - [sym__dedent] = ACTIONS(1592), - [sym_string_start] = ACTIONS(1592), + [anon_sym_property] = ACTIONS(1601), + [anon_sym_include] = ACTIONS(1601), + [anon_sym_DEF] = ACTIONS(1601), + [anon_sym_cdef] = ACTIONS(1601), + [anon_sym_cpdef] = ACTIONS(1601), + [anon_sym_int] = ACTIONS(1601), + [anon_sym_double] = ACTIONS(1601), + [anon_sym_complex] = ACTIONS(1601), + [anon_sym_new] = ACTIONS(1601), + [anon_sym_signed] = ACTIONS(1601), + [anon_sym_unsigned] = ACTIONS(1601), + [anon_sym_char] = ACTIONS(1601), + [anon_sym_short] = ACTIONS(1601), + [anon_sym_long] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1601), + [anon_sym_volatile] = ACTIONS(1601), + [anon_sym_ctypedef] = ACTIONS(1601), + [anon_sym_struct] = ACTIONS(1601), + [anon_sym_union] = ACTIONS(1601), + [anon_sym_enum] = ACTIONS(1601), + [anon_sym_cppclass] = ACTIONS(1601), + [anon_sym_fused] = ACTIONS(1601), + [anon_sym_public] = ACTIONS(1601), + [anon_sym_packed] = ACTIONS(1601), + [anon_sym_inline] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1601), + [anon_sym_sizeof] = ACTIONS(1601), + [sym__dedent] = ACTIONS(1603), + [sym_string_start] = ACTIONS(1603), }, [493] = { - [sym_identifier] = ACTIONS(1594), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_import] = ACTIONS(1594), - [anon_sym_cimport] = ACTIONS(1594), - [anon_sym_from] = ACTIONS(1594), - [anon_sym_LPAREN] = ACTIONS(1596), - [anon_sym_STAR] = ACTIONS(1596), - [anon_sym_print] = ACTIONS(1594), - [anon_sym_assert] = ACTIONS(1594), - [anon_sym_return] = ACTIONS(1594), - [anon_sym_del] = ACTIONS(1594), - [anon_sym_raise] = ACTIONS(1594), - [anon_sym_pass] = ACTIONS(1594), - [anon_sym_break] = ACTIONS(1594), - [anon_sym_continue] = ACTIONS(1594), - [anon_sym_if] = ACTIONS(1594), - [anon_sym_match] = ACTIONS(1594), - [anon_sym_async] = ACTIONS(1594), - [anon_sym_for] = ACTIONS(1594), - [anon_sym_while] = ACTIONS(1594), - [anon_sym_try] = ACTIONS(1594), - [anon_sym_with] = ACTIONS(1594), - [anon_sym_def] = ACTIONS(1594), - [anon_sym_global] = ACTIONS(1594), - [anon_sym_nonlocal] = ACTIONS(1594), - [anon_sym_exec] = ACTIONS(1594), - [anon_sym_type] = ACTIONS(1594), - [anon_sym_class] = ACTIONS(1594), - [anon_sym_LBRACK] = ACTIONS(1596), - [anon_sym_AT] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_PLUS] = ACTIONS(1596), - [anon_sym_not] = ACTIONS(1594), - [anon_sym_AMP] = ACTIONS(1596), - [anon_sym_TILDE] = ACTIONS(1596), - [anon_sym_LT] = ACTIONS(1596), - [anon_sym_lambda] = ACTIONS(1594), - [anon_sym_yield] = ACTIONS(1594), - [sym_ellipsis] = ACTIONS(1596), - [anon_sym_None] = ACTIONS(1594), - [sym_integer] = ACTIONS(1594), - [sym_float] = ACTIONS(1596), - [anon_sym_await] = ACTIONS(1594), - [anon_sym_api] = ACTIONS(1594), - [sym_true] = ACTIONS(1594), - [sym_false] = ACTIONS(1594), + [sym_identifier] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_import] = ACTIONS(1605), + [anon_sym_cimport] = ACTIONS(1605), + [anon_sym_from] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_print] = ACTIONS(1605), + [anon_sym_assert] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_del] = ACTIONS(1605), + [anon_sym_raise] = ACTIONS(1605), + [anon_sym_pass] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_try] = ACTIONS(1605), + [anon_sym_with] = ACTIONS(1605), + [anon_sym_def] = ACTIONS(1605), + [anon_sym_global] = ACTIONS(1605), + [anon_sym_nonlocal] = ACTIONS(1605), + [anon_sym_exec] = ACTIONS(1605), + [anon_sym_type] = ACTIONS(1605), + [anon_sym_class] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_AT] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_not] = ACTIONS(1605), + [anon_sym_AMP] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_lambda] = ACTIONS(1605), + [anon_sym_yield] = ACTIONS(1605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1607), + [anon_sym_None] = ACTIONS(1605), + [sym_integer] = ACTIONS(1605), + [sym_float] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_api] = ACTIONS(1605), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1594), - [anon_sym_include] = ACTIONS(1594), - [anon_sym_DEF] = ACTIONS(1594), - [anon_sym_cdef] = ACTIONS(1594), - [anon_sym_cpdef] = ACTIONS(1594), - [anon_sym_int] = ACTIONS(1594), - [anon_sym_double] = ACTIONS(1594), - [anon_sym_complex] = ACTIONS(1594), - [anon_sym_new] = ACTIONS(1594), - [anon_sym_signed] = ACTIONS(1594), - [anon_sym_unsigned] = ACTIONS(1594), - [anon_sym_char] = ACTIONS(1594), - [anon_sym_short] = ACTIONS(1594), - [anon_sym_long] = ACTIONS(1594), - [anon_sym_const] = ACTIONS(1594), - [anon_sym_volatile] = ACTIONS(1594), - [anon_sym_ctypedef] = ACTIONS(1594), - [anon_sym_struct] = ACTIONS(1594), - [anon_sym_union] = ACTIONS(1594), - [anon_sym_enum] = ACTIONS(1594), - [anon_sym_cppclass] = ACTIONS(1594), - [anon_sym_fused] = ACTIONS(1594), - [anon_sym_public] = ACTIONS(1594), - [anon_sym_packed] = ACTIONS(1594), - [anon_sym_inline] = ACTIONS(1594), - [anon_sym_readonly] = ACTIONS(1594), - [anon_sym_sizeof] = ACTIONS(1594), - [sym__dedent] = ACTIONS(1596), - [sym_string_start] = ACTIONS(1596), + [anon_sym_property] = ACTIONS(1605), + [anon_sym_include] = ACTIONS(1605), + [anon_sym_DEF] = ACTIONS(1605), + [anon_sym_cdef] = ACTIONS(1605), + [anon_sym_cpdef] = ACTIONS(1605), + [anon_sym_int] = ACTIONS(1605), + [anon_sym_double] = ACTIONS(1605), + [anon_sym_complex] = ACTIONS(1605), + [anon_sym_new] = ACTIONS(1605), + [anon_sym_signed] = ACTIONS(1605), + [anon_sym_unsigned] = ACTIONS(1605), + [anon_sym_char] = ACTIONS(1605), + [anon_sym_short] = ACTIONS(1605), + [anon_sym_long] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_volatile] = ACTIONS(1605), + [anon_sym_ctypedef] = ACTIONS(1605), + [anon_sym_struct] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_enum] = ACTIONS(1605), + [anon_sym_cppclass] = ACTIONS(1605), + [anon_sym_fused] = ACTIONS(1605), + [anon_sym_public] = ACTIONS(1605), + [anon_sym_packed] = ACTIONS(1605), + [anon_sym_inline] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1605), + [anon_sym_sizeof] = ACTIONS(1605), + [sym__dedent] = ACTIONS(1607), + [sym_string_start] = ACTIONS(1607), }, [494] = { - [sym_identifier] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_import] = ACTIONS(1598), - [anon_sym_cimport] = ACTIONS(1598), - [anon_sym_from] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1600), - [anon_sym_print] = ACTIONS(1598), - [anon_sym_assert] = ACTIONS(1598), - [anon_sym_return] = ACTIONS(1598), - [anon_sym_del] = ACTIONS(1598), - [anon_sym_raise] = ACTIONS(1598), - [anon_sym_pass] = ACTIONS(1598), - [anon_sym_break] = ACTIONS(1598), - [anon_sym_continue] = ACTIONS(1598), - [anon_sym_if] = ACTIONS(1598), - [anon_sym_match] = ACTIONS(1598), - [anon_sym_async] = ACTIONS(1598), - [anon_sym_for] = ACTIONS(1598), - [anon_sym_while] = ACTIONS(1598), - [anon_sym_try] = ACTIONS(1598), - [anon_sym_with] = ACTIONS(1598), - [anon_sym_def] = ACTIONS(1598), - [anon_sym_global] = ACTIONS(1598), - [anon_sym_nonlocal] = ACTIONS(1598), - [anon_sym_exec] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_class] = ACTIONS(1598), - [anon_sym_LBRACK] = ACTIONS(1600), - [anon_sym_AT] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_PLUS] = ACTIONS(1600), - [anon_sym_not] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1600), - [anon_sym_TILDE] = ACTIONS(1600), - [anon_sym_LT] = ACTIONS(1600), - [anon_sym_lambda] = ACTIONS(1598), - [anon_sym_yield] = ACTIONS(1598), - [sym_ellipsis] = ACTIONS(1600), - [anon_sym_None] = ACTIONS(1598), - [sym_integer] = ACTIONS(1598), - [sym_float] = ACTIONS(1600), - [anon_sym_await] = ACTIONS(1598), - [anon_sym_api] = ACTIONS(1598), - [sym_true] = ACTIONS(1598), - [sym_false] = ACTIONS(1598), + [sym_identifier] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_import] = ACTIONS(1609), + [anon_sym_cimport] = ACTIONS(1609), + [anon_sym_from] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_print] = ACTIONS(1609), + [anon_sym_assert] = ACTIONS(1609), + [anon_sym_return] = ACTIONS(1609), + [anon_sym_del] = ACTIONS(1609), + [anon_sym_raise] = ACTIONS(1609), + [anon_sym_pass] = ACTIONS(1609), + [anon_sym_break] = ACTIONS(1609), + [anon_sym_continue] = ACTIONS(1609), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_match] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1609), + [anon_sym_for] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1609), + [anon_sym_try] = ACTIONS(1609), + [anon_sym_with] = ACTIONS(1609), + [anon_sym_def] = ACTIONS(1609), + [anon_sym_global] = ACTIONS(1609), + [anon_sym_nonlocal] = ACTIONS(1609), + [anon_sym_exec] = ACTIONS(1609), + [anon_sym_type] = ACTIONS(1609), + [anon_sym_class] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1611), + [anon_sym_AT] = ACTIONS(1611), + [anon_sym_DASH] = ACTIONS(1611), + [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1611), + [anon_sym_not] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_TILDE] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(1611), + [anon_sym_lambda] = ACTIONS(1609), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1611), + [anon_sym_None] = ACTIONS(1609), + [sym_integer] = ACTIONS(1609), + [sym_float] = ACTIONS(1611), + [anon_sym_await] = ACTIONS(1609), + [anon_sym_api] = ACTIONS(1609), + [sym_true] = ACTIONS(1609), + [sym_false] = ACTIONS(1609), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1598), - [anon_sym_include] = ACTIONS(1598), - [anon_sym_DEF] = ACTIONS(1598), - [anon_sym_cdef] = ACTIONS(1598), - [anon_sym_cpdef] = ACTIONS(1598), - [anon_sym_int] = ACTIONS(1598), - [anon_sym_double] = ACTIONS(1598), - [anon_sym_complex] = ACTIONS(1598), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_signed] = ACTIONS(1598), - [anon_sym_unsigned] = ACTIONS(1598), - [anon_sym_char] = ACTIONS(1598), - [anon_sym_short] = ACTIONS(1598), - [anon_sym_long] = ACTIONS(1598), - [anon_sym_const] = ACTIONS(1598), - [anon_sym_volatile] = ACTIONS(1598), - [anon_sym_ctypedef] = ACTIONS(1598), - [anon_sym_struct] = ACTIONS(1598), - [anon_sym_union] = ACTIONS(1598), - [anon_sym_enum] = ACTIONS(1598), - [anon_sym_cppclass] = ACTIONS(1598), - [anon_sym_fused] = ACTIONS(1598), - [anon_sym_public] = ACTIONS(1598), - [anon_sym_packed] = ACTIONS(1598), - [anon_sym_inline] = ACTIONS(1598), - [anon_sym_readonly] = ACTIONS(1598), - [anon_sym_sizeof] = ACTIONS(1598), - [sym__dedent] = ACTIONS(1600), - [sym_string_start] = ACTIONS(1600), + [anon_sym_property] = ACTIONS(1609), + [anon_sym_include] = ACTIONS(1609), + [anon_sym_DEF] = ACTIONS(1609), + [anon_sym_cdef] = ACTIONS(1609), + [anon_sym_cpdef] = ACTIONS(1609), + [anon_sym_int] = ACTIONS(1609), + [anon_sym_double] = ACTIONS(1609), + [anon_sym_complex] = ACTIONS(1609), + [anon_sym_new] = ACTIONS(1609), + [anon_sym_signed] = ACTIONS(1609), + [anon_sym_unsigned] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_short] = ACTIONS(1609), + [anon_sym_long] = ACTIONS(1609), + [anon_sym_const] = ACTIONS(1609), + [anon_sym_volatile] = ACTIONS(1609), + [anon_sym_ctypedef] = ACTIONS(1609), + [anon_sym_struct] = ACTIONS(1609), + [anon_sym_union] = ACTIONS(1609), + [anon_sym_enum] = ACTIONS(1609), + [anon_sym_cppclass] = ACTIONS(1609), + [anon_sym_fused] = ACTIONS(1609), + [anon_sym_public] = ACTIONS(1609), + [anon_sym_packed] = ACTIONS(1609), + [anon_sym_inline] = ACTIONS(1609), + [anon_sym_readonly] = ACTIONS(1609), + [anon_sym_sizeof] = ACTIONS(1609), + [sym__dedent] = ACTIONS(1611), + [sym_string_start] = ACTIONS(1611), }, [495] = { - [sym_identifier] = ACTIONS(1602), - [anon_sym_SEMI] = ACTIONS(1604), - [anon_sym_import] = ACTIONS(1602), - [anon_sym_cimport] = ACTIONS(1602), - [anon_sym_from] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1604), - [anon_sym_print] = ACTIONS(1602), - [anon_sym_assert] = ACTIONS(1602), - [anon_sym_return] = ACTIONS(1602), - [anon_sym_del] = ACTIONS(1602), - [anon_sym_raise] = ACTIONS(1602), - [anon_sym_pass] = ACTIONS(1602), - [anon_sym_break] = ACTIONS(1602), - [anon_sym_continue] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(1602), - [anon_sym_match] = ACTIONS(1602), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_for] = ACTIONS(1602), - [anon_sym_while] = ACTIONS(1602), - [anon_sym_try] = ACTIONS(1602), - [anon_sym_with] = ACTIONS(1602), - [anon_sym_def] = ACTIONS(1602), - [anon_sym_global] = ACTIONS(1602), - [anon_sym_nonlocal] = ACTIONS(1602), - [anon_sym_exec] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_class] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_AT] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_not] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_TILDE] = ACTIONS(1604), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_lambda] = ACTIONS(1602), - [anon_sym_yield] = ACTIONS(1602), - [sym_ellipsis] = ACTIONS(1604), - [anon_sym_None] = ACTIONS(1602), - [sym_integer] = ACTIONS(1602), - [sym_float] = ACTIONS(1604), - [anon_sym_await] = ACTIONS(1602), - [anon_sym_api] = ACTIONS(1602), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), + [sym_identifier] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_import] = ACTIONS(1613), + [anon_sym_cimport] = ACTIONS(1613), + [anon_sym_from] = ACTIONS(1613), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_print] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_del] = ACTIONS(1613), + [anon_sym_raise] = ACTIONS(1613), + [anon_sym_pass] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_match] = ACTIONS(1613), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_try] = ACTIONS(1613), + [anon_sym_with] = ACTIONS(1613), + [anon_sym_def] = ACTIONS(1613), + [anon_sym_global] = ACTIONS(1613), + [anon_sym_nonlocal] = ACTIONS(1613), + [anon_sym_exec] = ACTIONS(1613), + [anon_sym_type] = ACTIONS(1613), + [anon_sym_class] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1615), + [anon_sym_AT] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1615), + [anon_sym_not] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_LT] = ACTIONS(1615), + [anon_sym_lambda] = ACTIONS(1613), + [anon_sym_yield] = ACTIONS(1613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1615), + [anon_sym_None] = ACTIONS(1613), + [sym_integer] = ACTIONS(1613), + [sym_float] = ACTIONS(1615), + [anon_sym_await] = ACTIONS(1613), + [anon_sym_api] = ACTIONS(1613), + [sym_true] = ACTIONS(1613), + [sym_false] = ACTIONS(1613), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1602), - [anon_sym_include] = ACTIONS(1602), - [anon_sym_DEF] = ACTIONS(1602), - [anon_sym_cdef] = ACTIONS(1602), - [anon_sym_cpdef] = ACTIONS(1602), - [anon_sym_int] = ACTIONS(1602), - [anon_sym_double] = ACTIONS(1602), - [anon_sym_complex] = ACTIONS(1602), - [anon_sym_new] = ACTIONS(1602), - [anon_sym_signed] = ACTIONS(1602), - [anon_sym_unsigned] = ACTIONS(1602), - [anon_sym_char] = ACTIONS(1602), - [anon_sym_short] = ACTIONS(1602), - [anon_sym_long] = ACTIONS(1602), - [anon_sym_const] = ACTIONS(1602), - [anon_sym_volatile] = ACTIONS(1602), - [anon_sym_ctypedef] = ACTIONS(1602), - [anon_sym_struct] = ACTIONS(1602), - [anon_sym_union] = ACTIONS(1602), - [anon_sym_enum] = ACTIONS(1602), - [anon_sym_cppclass] = ACTIONS(1602), - [anon_sym_fused] = ACTIONS(1602), - [anon_sym_public] = ACTIONS(1602), - [anon_sym_packed] = ACTIONS(1602), - [anon_sym_inline] = ACTIONS(1602), - [anon_sym_readonly] = ACTIONS(1602), - [anon_sym_sizeof] = ACTIONS(1602), - [sym__dedent] = ACTIONS(1604), - [sym_string_start] = ACTIONS(1604), + [anon_sym_property] = ACTIONS(1613), + [anon_sym_include] = ACTIONS(1613), + [anon_sym_DEF] = ACTIONS(1613), + [anon_sym_cdef] = ACTIONS(1613), + [anon_sym_cpdef] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_complex] = ACTIONS(1613), + [anon_sym_new] = ACTIONS(1613), + [anon_sym_signed] = ACTIONS(1613), + [anon_sym_unsigned] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_volatile] = ACTIONS(1613), + [anon_sym_ctypedef] = ACTIONS(1613), + [anon_sym_struct] = ACTIONS(1613), + [anon_sym_union] = ACTIONS(1613), + [anon_sym_enum] = ACTIONS(1613), + [anon_sym_cppclass] = ACTIONS(1613), + [anon_sym_fused] = ACTIONS(1613), + [anon_sym_public] = ACTIONS(1613), + [anon_sym_packed] = ACTIONS(1613), + [anon_sym_inline] = ACTIONS(1613), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_sizeof] = ACTIONS(1613), + [sym__dedent] = ACTIONS(1615), + [sym_string_start] = ACTIONS(1615), }, [496] = { - [sym_identifier] = ACTIONS(1606), - [anon_sym_SEMI] = ACTIONS(1608), - [anon_sym_import] = ACTIONS(1606), - [anon_sym_cimport] = ACTIONS(1606), - [anon_sym_from] = ACTIONS(1606), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_STAR] = ACTIONS(1608), - [anon_sym_print] = ACTIONS(1606), - [anon_sym_assert] = ACTIONS(1606), - [anon_sym_return] = ACTIONS(1606), - [anon_sym_del] = ACTIONS(1606), - [anon_sym_raise] = ACTIONS(1606), - [anon_sym_pass] = ACTIONS(1606), - [anon_sym_break] = ACTIONS(1606), - [anon_sym_continue] = ACTIONS(1606), - [anon_sym_if] = ACTIONS(1606), - [anon_sym_match] = ACTIONS(1606), - [anon_sym_async] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(1606), - [anon_sym_while] = ACTIONS(1606), - [anon_sym_try] = ACTIONS(1606), - [anon_sym_with] = ACTIONS(1606), - [anon_sym_def] = ACTIONS(1606), - [anon_sym_global] = ACTIONS(1606), - [anon_sym_nonlocal] = ACTIONS(1606), - [anon_sym_exec] = ACTIONS(1606), - [anon_sym_type] = ACTIONS(1606), - [anon_sym_class] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_AT] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_not] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1608), - [anon_sym_TILDE] = ACTIONS(1608), - [anon_sym_LT] = ACTIONS(1608), - [anon_sym_lambda] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1606), - [sym_ellipsis] = ACTIONS(1608), - [anon_sym_None] = ACTIONS(1606), - [sym_integer] = ACTIONS(1606), - [sym_float] = ACTIONS(1608), - [anon_sym_await] = ACTIONS(1606), - [anon_sym_api] = ACTIONS(1606), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), + [sym_identifier] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_import] = ACTIONS(1617), + [anon_sym_cimport] = ACTIONS(1617), + [anon_sym_from] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_print] = ACTIONS(1617), + [anon_sym_assert] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_del] = ACTIONS(1617), + [anon_sym_raise] = ACTIONS(1617), + [anon_sym_pass] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_match] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_try] = ACTIONS(1617), + [anon_sym_with] = ACTIONS(1617), + [anon_sym_def] = ACTIONS(1617), + [anon_sym_global] = ACTIONS(1617), + [anon_sym_nonlocal] = ACTIONS(1617), + [anon_sym_exec] = ACTIONS(1617), + [anon_sym_type] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_AT] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_not] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_LT] = ACTIONS(1619), + [anon_sym_lambda] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1619), + [anon_sym_None] = ACTIONS(1617), + [sym_integer] = ACTIONS(1617), + [sym_float] = ACTIONS(1619), + [anon_sym_await] = ACTIONS(1617), + [anon_sym_api] = ACTIONS(1617), + [sym_true] = ACTIONS(1617), + [sym_false] = ACTIONS(1617), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1606), - [anon_sym_include] = ACTIONS(1606), - [anon_sym_DEF] = ACTIONS(1606), - [anon_sym_cdef] = ACTIONS(1606), - [anon_sym_cpdef] = ACTIONS(1606), - [anon_sym_int] = ACTIONS(1606), - [anon_sym_double] = ACTIONS(1606), - [anon_sym_complex] = ACTIONS(1606), - [anon_sym_new] = ACTIONS(1606), - [anon_sym_signed] = ACTIONS(1606), - [anon_sym_unsigned] = ACTIONS(1606), - [anon_sym_char] = ACTIONS(1606), - [anon_sym_short] = ACTIONS(1606), - [anon_sym_long] = ACTIONS(1606), - [anon_sym_const] = ACTIONS(1606), - [anon_sym_volatile] = ACTIONS(1606), - [anon_sym_ctypedef] = ACTIONS(1606), - [anon_sym_struct] = ACTIONS(1606), - [anon_sym_union] = ACTIONS(1606), - [anon_sym_enum] = ACTIONS(1606), - [anon_sym_cppclass] = ACTIONS(1606), - [anon_sym_fused] = ACTIONS(1606), - [anon_sym_public] = ACTIONS(1606), - [anon_sym_packed] = ACTIONS(1606), - [anon_sym_inline] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1606), - [anon_sym_sizeof] = ACTIONS(1606), - [sym__dedent] = ACTIONS(1608), - [sym_string_start] = ACTIONS(1608), + [anon_sym_property] = ACTIONS(1617), + [anon_sym_include] = ACTIONS(1617), + [anon_sym_DEF] = ACTIONS(1617), + [anon_sym_cdef] = ACTIONS(1617), + [anon_sym_cpdef] = ACTIONS(1617), + [anon_sym_int] = ACTIONS(1617), + [anon_sym_double] = ACTIONS(1617), + [anon_sym_complex] = ACTIONS(1617), + [anon_sym_new] = ACTIONS(1617), + [anon_sym_signed] = ACTIONS(1617), + [anon_sym_unsigned] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_short] = ACTIONS(1617), + [anon_sym_long] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [anon_sym_volatile] = ACTIONS(1617), + [anon_sym_ctypedef] = ACTIONS(1617), + [anon_sym_struct] = ACTIONS(1617), + [anon_sym_union] = ACTIONS(1617), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_cppclass] = ACTIONS(1617), + [anon_sym_fused] = ACTIONS(1617), + [anon_sym_public] = ACTIONS(1617), + [anon_sym_packed] = ACTIONS(1617), + [anon_sym_inline] = ACTIONS(1617), + [anon_sym_readonly] = ACTIONS(1617), + [anon_sym_sizeof] = ACTIONS(1617), + [sym__dedent] = ACTIONS(1619), + [sym_string_start] = ACTIONS(1619), }, [497] = { - [sym_identifier] = ACTIONS(1610), - [anon_sym_SEMI] = ACTIONS(1612), - [anon_sym_import] = ACTIONS(1610), - [anon_sym_cimport] = ACTIONS(1610), - [anon_sym_from] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1612), - [anon_sym_print] = ACTIONS(1610), - [anon_sym_assert] = ACTIONS(1610), - [anon_sym_return] = ACTIONS(1610), - [anon_sym_del] = ACTIONS(1610), - [anon_sym_raise] = ACTIONS(1610), - [anon_sym_pass] = ACTIONS(1610), - [anon_sym_break] = ACTIONS(1610), - [anon_sym_continue] = ACTIONS(1610), - [anon_sym_if] = ACTIONS(1610), - [anon_sym_match] = ACTIONS(1610), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_for] = ACTIONS(1610), - [anon_sym_while] = ACTIONS(1610), - [anon_sym_try] = ACTIONS(1610), - [anon_sym_with] = ACTIONS(1610), - [anon_sym_def] = ACTIONS(1610), - [anon_sym_global] = ACTIONS(1610), - [anon_sym_nonlocal] = ACTIONS(1610), - [anon_sym_exec] = ACTIONS(1610), - [anon_sym_type] = ACTIONS(1610), - [anon_sym_class] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_AT] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_not] = ACTIONS(1610), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_TILDE] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(1612), - [anon_sym_lambda] = ACTIONS(1610), - [anon_sym_yield] = ACTIONS(1610), - [sym_ellipsis] = ACTIONS(1612), - [anon_sym_None] = ACTIONS(1610), - [sym_integer] = ACTIONS(1610), - [sym_float] = ACTIONS(1612), - [anon_sym_await] = ACTIONS(1610), - [anon_sym_api] = ACTIONS(1610), - [sym_true] = ACTIONS(1610), - [sym_false] = ACTIONS(1610), + [sym_identifier] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_import] = ACTIONS(1621), + [anon_sym_cimport] = ACTIONS(1621), + [anon_sym_from] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_print] = ACTIONS(1621), + [anon_sym_assert] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_del] = ACTIONS(1621), + [anon_sym_raise] = ACTIONS(1621), + [anon_sym_pass] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_match] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_try] = ACTIONS(1621), + [anon_sym_with] = ACTIONS(1621), + [anon_sym_def] = ACTIONS(1621), + [anon_sym_global] = ACTIONS(1621), + [anon_sym_nonlocal] = ACTIONS(1621), + [anon_sym_exec] = ACTIONS(1621), + [anon_sym_type] = ACTIONS(1621), + [anon_sym_class] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_not] = ACTIONS(1621), + [anon_sym_AMP] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_lambda] = ACTIONS(1621), + [anon_sym_yield] = ACTIONS(1621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1623), + [anon_sym_None] = ACTIONS(1621), + [sym_integer] = ACTIONS(1621), + [sym_float] = ACTIONS(1623), + [anon_sym_await] = ACTIONS(1621), + [anon_sym_api] = ACTIONS(1621), + [sym_true] = ACTIONS(1621), + [sym_false] = ACTIONS(1621), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1610), - [anon_sym_include] = ACTIONS(1610), - [anon_sym_DEF] = ACTIONS(1610), - [anon_sym_cdef] = ACTIONS(1610), - [anon_sym_cpdef] = ACTIONS(1610), - [anon_sym_int] = ACTIONS(1610), - [anon_sym_double] = ACTIONS(1610), - [anon_sym_complex] = ACTIONS(1610), - [anon_sym_new] = ACTIONS(1610), - [anon_sym_signed] = ACTIONS(1610), - [anon_sym_unsigned] = ACTIONS(1610), - [anon_sym_char] = ACTIONS(1610), - [anon_sym_short] = ACTIONS(1610), - [anon_sym_long] = ACTIONS(1610), - [anon_sym_const] = ACTIONS(1610), - [anon_sym_volatile] = ACTIONS(1610), - [anon_sym_ctypedef] = ACTIONS(1610), - [anon_sym_struct] = ACTIONS(1610), - [anon_sym_union] = ACTIONS(1610), - [anon_sym_enum] = ACTIONS(1610), - [anon_sym_cppclass] = ACTIONS(1610), - [anon_sym_fused] = ACTIONS(1610), - [anon_sym_public] = ACTIONS(1610), - [anon_sym_packed] = ACTIONS(1610), - [anon_sym_inline] = ACTIONS(1610), - [anon_sym_readonly] = ACTIONS(1610), - [anon_sym_sizeof] = ACTIONS(1610), - [sym__dedent] = ACTIONS(1612), - [sym_string_start] = ACTIONS(1612), + [anon_sym_property] = ACTIONS(1621), + [anon_sym_include] = ACTIONS(1621), + [anon_sym_DEF] = ACTIONS(1621), + [anon_sym_cdef] = ACTIONS(1621), + [anon_sym_cpdef] = ACTIONS(1621), + [anon_sym_int] = ACTIONS(1621), + [anon_sym_double] = ACTIONS(1621), + [anon_sym_complex] = ACTIONS(1621), + [anon_sym_new] = ACTIONS(1621), + [anon_sym_signed] = ACTIONS(1621), + [anon_sym_unsigned] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_volatile] = ACTIONS(1621), + [anon_sym_ctypedef] = ACTIONS(1621), + [anon_sym_struct] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1621), + [anon_sym_enum] = ACTIONS(1621), + [anon_sym_cppclass] = ACTIONS(1621), + [anon_sym_fused] = ACTIONS(1621), + [anon_sym_public] = ACTIONS(1621), + [anon_sym_packed] = ACTIONS(1621), + [anon_sym_inline] = ACTIONS(1621), + [anon_sym_readonly] = ACTIONS(1621), + [anon_sym_sizeof] = ACTIONS(1621), + [sym__dedent] = ACTIONS(1623), + [sym_string_start] = ACTIONS(1623), }, [498] = { - [sym_identifier] = ACTIONS(1614), - [anon_sym_SEMI] = ACTIONS(1616), - [anon_sym_import] = ACTIONS(1614), - [anon_sym_cimport] = ACTIONS(1614), - [anon_sym_from] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1616), - [anon_sym_print] = ACTIONS(1614), - [anon_sym_assert] = ACTIONS(1614), - [anon_sym_return] = ACTIONS(1614), - [anon_sym_del] = ACTIONS(1614), - [anon_sym_raise] = ACTIONS(1614), - [anon_sym_pass] = ACTIONS(1614), - [anon_sym_break] = ACTIONS(1614), - [anon_sym_continue] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(1614), - [anon_sym_match] = ACTIONS(1614), - [anon_sym_async] = ACTIONS(1614), - [anon_sym_for] = ACTIONS(1614), - [anon_sym_while] = ACTIONS(1614), - [anon_sym_try] = ACTIONS(1614), - [anon_sym_with] = ACTIONS(1614), - [anon_sym_def] = ACTIONS(1614), - [anon_sym_global] = ACTIONS(1614), - [anon_sym_nonlocal] = ACTIONS(1614), - [anon_sym_exec] = ACTIONS(1614), - [anon_sym_type] = ACTIONS(1614), - [anon_sym_class] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_AT] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1616), - [anon_sym_PLUS] = ACTIONS(1616), - [anon_sym_not] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_TILDE] = ACTIONS(1616), - [anon_sym_LT] = ACTIONS(1616), - [anon_sym_lambda] = ACTIONS(1614), - [anon_sym_yield] = ACTIONS(1614), - [sym_ellipsis] = ACTIONS(1616), - [anon_sym_None] = ACTIONS(1614), - [sym_integer] = ACTIONS(1614), - [sym_float] = ACTIONS(1616), - [anon_sym_await] = ACTIONS(1614), - [anon_sym_api] = ACTIONS(1614), - [sym_true] = ACTIONS(1614), - [sym_false] = ACTIONS(1614), + [sym_identifier] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_import] = ACTIONS(1625), + [anon_sym_cimport] = ACTIONS(1625), + [anon_sym_from] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_print] = ACTIONS(1625), + [anon_sym_assert] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_del] = ACTIONS(1625), + [anon_sym_raise] = ACTIONS(1625), + [anon_sym_pass] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_match] = ACTIONS(1625), + [anon_sym_async] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_try] = ACTIONS(1625), + [anon_sym_with] = ACTIONS(1625), + [anon_sym_def] = ACTIONS(1625), + [anon_sym_global] = ACTIONS(1625), + [anon_sym_nonlocal] = ACTIONS(1625), + [anon_sym_exec] = ACTIONS(1625), + [anon_sym_type] = ACTIONS(1625), + [anon_sym_class] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1627), + [anon_sym_AT] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1627), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_PLUS] = ACTIONS(1627), + [anon_sym_not] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_LT] = ACTIONS(1627), + [anon_sym_lambda] = ACTIONS(1625), + [anon_sym_yield] = ACTIONS(1625), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1627), + [anon_sym_None] = ACTIONS(1625), + [sym_integer] = ACTIONS(1625), + [sym_float] = ACTIONS(1627), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_api] = ACTIONS(1625), + [sym_true] = ACTIONS(1625), + [sym_false] = ACTIONS(1625), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1614), - [anon_sym_include] = ACTIONS(1614), - [anon_sym_DEF] = ACTIONS(1614), - [anon_sym_cdef] = ACTIONS(1614), - [anon_sym_cpdef] = ACTIONS(1614), - [anon_sym_int] = ACTIONS(1614), - [anon_sym_double] = ACTIONS(1614), - [anon_sym_complex] = ACTIONS(1614), - [anon_sym_new] = ACTIONS(1614), - [anon_sym_signed] = ACTIONS(1614), - [anon_sym_unsigned] = ACTIONS(1614), - [anon_sym_char] = ACTIONS(1614), - [anon_sym_short] = ACTIONS(1614), - [anon_sym_long] = ACTIONS(1614), - [anon_sym_const] = ACTIONS(1614), - [anon_sym_volatile] = ACTIONS(1614), - [anon_sym_ctypedef] = ACTIONS(1614), - [anon_sym_struct] = ACTIONS(1614), - [anon_sym_union] = ACTIONS(1614), - [anon_sym_enum] = ACTIONS(1614), - [anon_sym_cppclass] = ACTIONS(1614), - [anon_sym_fused] = ACTIONS(1614), - [anon_sym_public] = ACTIONS(1614), - [anon_sym_packed] = ACTIONS(1614), - [anon_sym_inline] = ACTIONS(1614), - [anon_sym_readonly] = ACTIONS(1614), - [anon_sym_sizeof] = ACTIONS(1614), - [sym__dedent] = ACTIONS(1616), - [sym_string_start] = ACTIONS(1616), + [anon_sym_property] = ACTIONS(1625), + [anon_sym_include] = ACTIONS(1625), + [anon_sym_DEF] = ACTIONS(1625), + [anon_sym_cdef] = ACTIONS(1625), + [anon_sym_cpdef] = ACTIONS(1625), + [anon_sym_int] = ACTIONS(1625), + [anon_sym_double] = ACTIONS(1625), + [anon_sym_complex] = ACTIONS(1625), + [anon_sym_new] = ACTIONS(1625), + [anon_sym_signed] = ACTIONS(1625), + [anon_sym_unsigned] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_volatile] = ACTIONS(1625), + [anon_sym_ctypedef] = ACTIONS(1625), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1625), + [anon_sym_enum] = ACTIONS(1625), + [anon_sym_cppclass] = ACTIONS(1625), + [anon_sym_fused] = ACTIONS(1625), + [anon_sym_public] = ACTIONS(1625), + [anon_sym_packed] = ACTIONS(1625), + [anon_sym_inline] = ACTIONS(1625), + [anon_sym_readonly] = ACTIONS(1625), + [anon_sym_sizeof] = ACTIONS(1625), + [sym__dedent] = ACTIONS(1627), + [sym_string_start] = ACTIONS(1627), }, [499] = { - [sym_identifier] = ACTIONS(1618), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_import] = ACTIONS(1618), - [anon_sym_cimport] = ACTIONS(1618), - [anon_sym_from] = ACTIONS(1618), - [anon_sym_LPAREN] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_print] = ACTIONS(1618), - [anon_sym_assert] = ACTIONS(1618), - [anon_sym_return] = ACTIONS(1618), - [anon_sym_del] = ACTIONS(1618), - [anon_sym_raise] = ACTIONS(1618), - [anon_sym_pass] = ACTIONS(1618), - [anon_sym_break] = ACTIONS(1618), - [anon_sym_continue] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1618), - [anon_sym_match] = ACTIONS(1618), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_for] = ACTIONS(1618), - [anon_sym_while] = ACTIONS(1618), - [anon_sym_try] = ACTIONS(1618), - [anon_sym_with] = ACTIONS(1618), - [anon_sym_def] = ACTIONS(1618), - [anon_sym_global] = ACTIONS(1618), - [anon_sym_nonlocal] = ACTIONS(1618), - [anon_sym_exec] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_class] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_AT] = ACTIONS(1620), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(1620), - [anon_sym_not] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1620), - [anon_sym_TILDE] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1620), - [anon_sym_lambda] = ACTIONS(1618), - [anon_sym_yield] = ACTIONS(1618), - [sym_ellipsis] = ACTIONS(1620), - [anon_sym_None] = ACTIONS(1618), - [sym_integer] = ACTIONS(1618), - [sym_float] = ACTIONS(1620), - [anon_sym_await] = ACTIONS(1618), - [anon_sym_api] = ACTIONS(1618), - [sym_true] = ACTIONS(1618), - [sym_false] = ACTIONS(1618), + [sym_identifier] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_import] = ACTIONS(1629), + [anon_sym_cimport] = ACTIONS(1629), + [anon_sym_from] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_print] = ACTIONS(1629), + [anon_sym_assert] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_del] = ACTIONS(1629), + [anon_sym_raise] = ACTIONS(1629), + [anon_sym_pass] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_match] = ACTIONS(1629), + [anon_sym_async] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_try] = ACTIONS(1629), + [anon_sym_with] = ACTIONS(1629), + [anon_sym_def] = ACTIONS(1629), + [anon_sym_global] = ACTIONS(1629), + [anon_sym_nonlocal] = ACTIONS(1629), + [anon_sym_exec] = ACTIONS(1629), + [anon_sym_type] = ACTIONS(1629), + [anon_sym_class] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_AT] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1631), + [anon_sym_PLUS] = ACTIONS(1631), + [anon_sym_not] = ACTIONS(1629), + [anon_sym_AMP] = ACTIONS(1631), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_lambda] = ACTIONS(1629), + [anon_sym_yield] = ACTIONS(1629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1631), + [anon_sym_None] = ACTIONS(1629), + [sym_integer] = ACTIONS(1629), + [sym_float] = ACTIONS(1631), + [anon_sym_await] = ACTIONS(1629), + [anon_sym_api] = ACTIONS(1629), + [sym_true] = ACTIONS(1629), + [sym_false] = ACTIONS(1629), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1618), - [anon_sym_include] = ACTIONS(1618), - [anon_sym_DEF] = ACTIONS(1618), - [anon_sym_cdef] = ACTIONS(1618), - [anon_sym_cpdef] = ACTIONS(1618), - [anon_sym_int] = ACTIONS(1618), - [anon_sym_double] = ACTIONS(1618), - [anon_sym_complex] = ACTIONS(1618), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_signed] = ACTIONS(1618), - [anon_sym_unsigned] = ACTIONS(1618), - [anon_sym_char] = ACTIONS(1618), - [anon_sym_short] = ACTIONS(1618), - [anon_sym_long] = ACTIONS(1618), - [anon_sym_const] = ACTIONS(1618), - [anon_sym_volatile] = ACTIONS(1618), - [anon_sym_ctypedef] = ACTIONS(1618), - [anon_sym_struct] = ACTIONS(1618), - [anon_sym_union] = ACTIONS(1618), - [anon_sym_enum] = ACTIONS(1618), - [anon_sym_cppclass] = ACTIONS(1618), - [anon_sym_fused] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_packed] = ACTIONS(1618), - [anon_sym_inline] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_sizeof] = ACTIONS(1618), - [sym__dedent] = ACTIONS(1620), - [sym_string_start] = ACTIONS(1620), + [anon_sym_property] = ACTIONS(1629), + [anon_sym_include] = ACTIONS(1629), + [anon_sym_DEF] = ACTIONS(1629), + [anon_sym_cdef] = ACTIONS(1629), + [anon_sym_cpdef] = ACTIONS(1629), + [anon_sym_int] = ACTIONS(1629), + [anon_sym_double] = ACTIONS(1629), + [anon_sym_complex] = ACTIONS(1629), + [anon_sym_new] = ACTIONS(1629), + [anon_sym_signed] = ACTIONS(1629), + [anon_sym_unsigned] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_volatile] = ACTIONS(1629), + [anon_sym_ctypedef] = ACTIONS(1629), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1629), + [anon_sym_enum] = ACTIONS(1629), + [anon_sym_cppclass] = ACTIONS(1629), + [anon_sym_fused] = ACTIONS(1629), + [anon_sym_public] = ACTIONS(1629), + [anon_sym_packed] = ACTIONS(1629), + [anon_sym_inline] = ACTIONS(1629), + [anon_sym_readonly] = ACTIONS(1629), + [anon_sym_sizeof] = ACTIONS(1629), + [sym__dedent] = ACTIONS(1631), + [sym_string_start] = ACTIONS(1631), }, [500] = { - [sym_identifier] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1624), - [anon_sym_import] = ACTIONS(1622), - [anon_sym_cimport] = ACTIONS(1622), - [anon_sym_from] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(1624), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_print] = ACTIONS(1622), - [anon_sym_assert] = ACTIONS(1622), - [anon_sym_return] = ACTIONS(1622), - [anon_sym_del] = ACTIONS(1622), - [anon_sym_raise] = ACTIONS(1622), - [anon_sym_pass] = ACTIONS(1622), - [anon_sym_break] = ACTIONS(1622), - [anon_sym_continue] = ACTIONS(1622), - [anon_sym_if] = ACTIONS(1622), - [anon_sym_match] = ACTIONS(1622), - [anon_sym_async] = ACTIONS(1622), - [anon_sym_for] = ACTIONS(1622), - [anon_sym_while] = ACTIONS(1622), - [anon_sym_try] = ACTIONS(1622), - [anon_sym_with] = ACTIONS(1622), - [anon_sym_def] = ACTIONS(1622), - [anon_sym_global] = ACTIONS(1622), - [anon_sym_nonlocal] = ACTIONS(1622), - [anon_sym_exec] = ACTIONS(1622), - [anon_sym_type] = ACTIONS(1622), - [anon_sym_class] = ACTIONS(1622), - [anon_sym_LBRACK] = ACTIONS(1624), - [anon_sym_AT] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_not] = ACTIONS(1622), - [anon_sym_AMP] = ACTIONS(1624), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_LT] = ACTIONS(1624), - [anon_sym_lambda] = ACTIONS(1622), - [anon_sym_yield] = ACTIONS(1622), - [sym_ellipsis] = ACTIONS(1624), - [anon_sym_None] = ACTIONS(1622), - [sym_integer] = ACTIONS(1622), - [sym_float] = ACTIONS(1624), - [anon_sym_await] = ACTIONS(1622), - [anon_sym_api] = ACTIONS(1622), - [sym_true] = ACTIONS(1622), - [sym_false] = ACTIONS(1622), + [sym_identifier] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(1633), + [anon_sym_cimport] = ACTIONS(1633), + [anon_sym_from] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_print] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_del] = ACTIONS(1633), + [anon_sym_raise] = ACTIONS(1633), + [anon_sym_pass] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_match] = ACTIONS(1633), + [anon_sym_async] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_try] = ACTIONS(1633), + [anon_sym_with] = ACTIONS(1633), + [anon_sym_def] = ACTIONS(1633), + [anon_sym_global] = ACTIONS(1633), + [anon_sym_nonlocal] = ACTIONS(1633), + [anon_sym_exec] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_class] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1635), + [anon_sym_AT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_LBRACE] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_not] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_lambda] = ACTIONS(1633), + [anon_sym_yield] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1635), + [anon_sym_None] = ACTIONS(1633), + [sym_integer] = ACTIONS(1633), + [sym_float] = ACTIONS(1635), + [anon_sym_await] = ACTIONS(1633), + [anon_sym_api] = ACTIONS(1633), + [sym_true] = ACTIONS(1633), + [sym_false] = ACTIONS(1633), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1622), - [anon_sym_include] = ACTIONS(1622), - [anon_sym_DEF] = ACTIONS(1622), - [anon_sym_cdef] = ACTIONS(1622), - [anon_sym_cpdef] = ACTIONS(1622), - [anon_sym_int] = ACTIONS(1622), - [anon_sym_double] = ACTIONS(1622), - [anon_sym_complex] = ACTIONS(1622), - [anon_sym_new] = ACTIONS(1622), - [anon_sym_signed] = ACTIONS(1622), - [anon_sym_unsigned] = ACTIONS(1622), - [anon_sym_char] = ACTIONS(1622), - [anon_sym_short] = ACTIONS(1622), - [anon_sym_long] = ACTIONS(1622), - [anon_sym_const] = ACTIONS(1622), - [anon_sym_volatile] = ACTIONS(1622), - [anon_sym_ctypedef] = ACTIONS(1622), - [anon_sym_struct] = ACTIONS(1622), - [anon_sym_union] = ACTIONS(1622), - [anon_sym_enum] = ACTIONS(1622), - [anon_sym_cppclass] = ACTIONS(1622), - [anon_sym_fused] = ACTIONS(1622), - [anon_sym_public] = ACTIONS(1622), - [anon_sym_packed] = ACTIONS(1622), - [anon_sym_inline] = ACTIONS(1622), - [anon_sym_readonly] = ACTIONS(1622), - [anon_sym_sizeof] = ACTIONS(1622), - [sym__dedent] = ACTIONS(1624), - [sym_string_start] = ACTIONS(1624), + [anon_sym_property] = ACTIONS(1633), + [anon_sym_include] = ACTIONS(1633), + [anon_sym_DEF] = ACTIONS(1633), + [anon_sym_cdef] = ACTIONS(1633), + [anon_sym_cpdef] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_double] = ACTIONS(1633), + [anon_sym_complex] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1633), + [anon_sym_signed] = ACTIONS(1633), + [anon_sym_unsigned] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_volatile] = ACTIONS(1633), + [anon_sym_ctypedef] = ACTIONS(1633), + [anon_sym_struct] = ACTIONS(1633), + [anon_sym_union] = ACTIONS(1633), + [anon_sym_enum] = ACTIONS(1633), + [anon_sym_cppclass] = ACTIONS(1633), + [anon_sym_fused] = ACTIONS(1633), + [anon_sym_public] = ACTIONS(1633), + [anon_sym_packed] = ACTIONS(1633), + [anon_sym_inline] = ACTIONS(1633), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_sizeof] = ACTIONS(1633), + [sym__dedent] = ACTIONS(1635), + [sym_string_start] = ACTIONS(1635), }, [501] = { - [sym_identifier] = ACTIONS(1626), - [anon_sym_SEMI] = ACTIONS(1628), - [anon_sym_import] = ACTIONS(1626), - [anon_sym_cimport] = ACTIONS(1626), - [anon_sym_from] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_STAR] = ACTIONS(1628), - [anon_sym_print] = ACTIONS(1626), - [anon_sym_assert] = ACTIONS(1626), - [anon_sym_return] = ACTIONS(1626), - [anon_sym_del] = ACTIONS(1626), - [anon_sym_raise] = ACTIONS(1626), - [anon_sym_pass] = ACTIONS(1626), - [anon_sym_break] = ACTIONS(1626), - [anon_sym_continue] = ACTIONS(1626), - [anon_sym_if] = ACTIONS(1626), - [anon_sym_match] = ACTIONS(1626), - [anon_sym_async] = ACTIONS(1626), - [anon_sym_for] = ACTIONS(1626), - [anon_sym_while] = ACTIONS(1626), - [anon_sym_try] = ACTIONS(1626), - [anon_sym_with] = ACTIONS(1626), - [anon_sym_def] = ACTIONS(1626), - [anon_sym_global] = ACTIONS(1626), - [anon_sym_nonlocal] = ACTIONS(1626), - [anon_sym_exec] = ACTIONS(1626), - [anon_sym_type] = ACTIONS(1626), - [anon_sym_class] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1628), - [anon_sym_PLUS] = ACTIONS(1628), - [anon_sym_not] = ACTIONS(1626), - [anon_sym_AMP] = ACTIONS(1628), - [anon_sym_TILDE] = ACTIONS(1628), - [anon_sym_LT] = ACTIONS(1628), - [anon_sym_lambda] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1626), - [sym_ellipsis] = ACTIONS(1628), - [anon_sym_None] = ACTIONS(1626), - [sym_integer] = ACTIONS(1626), - [sym_float] = ACTIONS(1628), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_api] = ACTIONS(1626), - [sym_true] = ACTIONS(1626), - [sym_false] = ACTIONS(1626), + [sym_identifier] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_import] = ACTIONS(1637), + [anon_sym_cimport] = ACTIONS(1637), + [anon_sym_from] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_print] = ACTIONS(1637), + [anon_sym_assert] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_del] = ACTIONS(1637), + [anon_sym_raise] = ACTIONS(1637), + [anon_sym_pass] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_match] = ACTIONS(1637), + [anon_sym_async] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_try] = ACTIONS(1637), + [anon_sym_with] = ACTIONS(1637), + [anon_sym_def] = ACTIONS(1637), + [anon_sym_global] = ACTIONS(1637), + [anon_sym_nonlocal] = ACTIONS(1637), + [anon_sym_exec] = ACTIONS(1637), + [anon_sym_type] = ACTIONS(1637), + [anon_sym_class] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1639), + [anon_sym_AT] = ACTIONS(1639), + [anon_sym_DASH] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1639), + [anon_sym_not] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_LT] = ACTIONS(1639), + [anon_sym_lambda] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1639), + [anon_sym_None] = ACTIONS(1637), + [sym_integer] = ACTIONS(1637), + [sym_float] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_api] = ACTIONS(1637), + [sym_true] = ACTIONS(1637), + [sym_false] = ACTIONS(1637), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1626), - [anon_sym_include] = ACTIONS(1626), - [anon_sym_DEF] = ACTIONS(1626), - [anon_sym_cdef] = ACTIONS(1626), - [anon_sym_cpdef] = ACTIONS(1626), - [anon_sym_int] = ACTIONS(1626), - [anon_sym_double] = ACTIONS(1626), - [anon_sym_complex] = ACTIONS(1626), - [anon_sym_new] = ACTIONS(1626), - [anon_sym_signed] = ACTIONS(1626), - [anon_sym_unsigned] = ACTIONS(1626), - [anon_sym_char] = ACTIONS(1626), - [anon_sym_short] = ACTIONS(1626), - [anon_sym_long] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1626), - [anon_sym_volatile] = ACTIONS(1626), - [anon_sym_ctypedef] = ACTIONS(1626), - [anon_sym_struct] = ACTIONS(1626), - [anon_sym_union] = ACTIONS(1626), - [anon_sym_enum] = ACTIONS(1626), - [anon_sym_cppclass] = ACTIONS(1626), - [anon_sym_fused] = ACTIONS(1626), - [anon_sym_public] = ACTIONS(1626), - [anon_sym_packed] = ACTIONS(1626), - [anon_sym_inline] = ACTIONS(1626), - [anon_sym_readonly] = ACTIONS(1626), - [anon_sym_sizeof] = ACTIONS(1626), - [sym__dedent] = ACTIONS(1628), - [sym_string_start] = ACTIONS(1628), + [anon_sym_property] = ACTIONS(1637), + [anon_sym_include] = ACTIONS(1637), + [anon_sym_DEF] = ACTIONS(1637), + [anon_sym_cdef] = ACTIONS(1637), + [anon_sym_cpdef] = ACTIONS(1637), + [anon_sym_int] = ACTIONS(1637), + [anon_sym_double] = ACTIONS(1637), + [anon_sym_complex] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1637), + [anon_sym_signed] = ACTIONS(1637), + [anon_sym_unsigned] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_volatile] = ACTIONS(1637), + [anon_sym_ctypedef] = ACTIONS(1637), + [anon_sym_struct] = ACTIONS(1637), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_enum] = ACTIONS(1637), + [anon_sym_cppclass] = ACTIONS(1637), + [anon_sym_fused] = ACTIONS(1637), + [anon_sym_public] = ACTIONS(1637), + [anon_sym_packed] = ACTIONS(1637), + [anon_sym_inline] = ACTIONS(1637), + [anon_sym_readonly] = ACTIONS(1637), + [anon_sym_sizeof] = ACTIONS(1637), + [sym__dedent] = ACTIONS(1639), + [sym_string_start] = ACTIONS(1639), }, [502] = { - [sym_identifier] = ACTIONS(1630), - [anon_sym_SEMI] = ACTIONS(1632), - [anon_sym_import] = ACTIONS(1630), - [anon_sym_cimport] = ACTIONS(1630), - [anon_sym_from] = ACTIONS(1630), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1632), - [anon_sym_print] = ACTIONS(1630), - [anon_sym_assert] = ACTIONS(1630), - [anon_sym_return] = ACTIONS(1630), - [anon_sym_del] = ACTIONS(1630), - [anon_sym_raise] = ACTIONS(1630), - [anon_sym_pass] = ACTIONS(1630), - [anon_sym_break] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1630), - [anon_sym_match] = ACTIONS(1630), - [anon_sym_async] = ACTIONS(1630), - [anon_sym_for] = ACTIONS(1630), - [anon_sym_while] = ACTIONS(1630), - [anon_sym_try] = ACTIONS(1630), - [anon_sym_with] = ACTIONS(1630), - [anon_sym_def] = ACTIONS(1630), - [anon_sym_global] = ACTIONS(1630), - [anon_sym_nonlocal] = ACTIONS(1630), - [anon_sym_exec] = ACTIONS(1630), - [anon_sym_type] = ACTIONS(1630), - [anon_sym_class] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_AT] = ACTIONS(1632), - [anon_sym_DASH] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(1632), - [anon_sym_PLUS] = ACTIONS(1632), - [anon_sym_not] = ACTIONS(1630), - [anon_sym_AMP] = ACTIONS(1632), - [anon_sym_TILDE] = ACTIONS(1632), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_lambda] = ACTIONS(1630), - [anon_sym_yield] = ACTIONS(1630), - [sym_ellipsis] = ACTIONS(1632), - [anon_sym_None] = ACTIONS(1630), - [sym_integer] = ACTIONS(1630), - [sym_float] = ACTIONS(1632), - [anon_sym_await] = ACTIONS(1630), - [anon_sym_api] = ACTIONS(1630), - [sym_true] = ACTIONS(1630), - [sym_false] = ACTIONS(1630), + [sym_identifier] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_import] = ACTIONS(1641), + [anon_sym_cimport] = ACTIONS(1641), + [anon_sym_from] = ACTIONS(1641), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_print] = ACTIONS(1641), + [anon_sym_assert] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_del] = ACTIONS(1641), + [anon_sym_raise] = ACTIONS(1641), + [anon_sym_pass] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_async] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_try] = ACTIONS(1641), + [anon_sym_with] = ACTIONS(1641), + [anon_sym_def] = ACTIONS(1641), + [anon_sym_global] = ACTIONS(1641), + [anon_sym_nonlocal] = ACTIONS(1641), + [anon_sym_exec] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_class] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_AT] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1641), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_TILDE] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1643), + [anon_sym_lambda] = ACTIONS(1641), + [anon_sym_yield] = ACTIONS(1641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1643), + [anon_sym_None] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_await] = ACTIONS(1641), + [anon_sym_api] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1630), - [anon_sym_include] = ACTIONS(1630), - [anon_sym_DEF] = ACTIONS(1630), - [anon_sym_cdef] = ACTIONS(1630), - [anon_sym_cpdef] = ACTIONS(1630), - [anon_sym_int] = ACTIONS(1630), - [anon_sym_double] = ACTIONS(1630), - [anon_sym_complex] = ACTIONS(1630), - [anon_sym_new] = ACTIONS(1630), - [anon_sym_signed] = ACTIONS(1630), - [anon_sym_unsigned] = ACTIONS(1630), - [anon_sym_char] = ACTIONS(1630), - [anon_sym_short] = ACTIONS(1630), - [anon_sym_long] = ACTIONS(1630), - [anon_sym_const] = ACTIONS(1630), - [anon_sym_volatile] = ACTIONS(1630), - [anon_sym_ctypedef] = ACTIONS(1630), - [anon_sym_struct] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_enum] = ACTIONS(1630), - [anon_sym_cppclass] = ACTIONS(1630), - [anon_sym_fused] = ACTIONS(1630), - [anon_sym_public] = ACTIONS(1630), - [anon_sym_packed] = ACTIONS(1630), - [anon_sym_inline] = ACTIONS(1630), - [anon_sym_readonly] = ACTIONS(1630), - [anon_sym_sizeof] = ACTIONS(1630), - [sym__dedent] = ACTIONS(1632), - [sym_string_start] = ACTIONS(1632), + [anon_sym_property] = ACTIONS(1641), + [anon_sym_include] = ACTIONS(1641), + [anon_sym_DEF] = ACTIONS(1641), + [anon_sym_cdef] = ACTIONS(1641), + [anon_sym_cpdef] = ACTIONS(1641), + [anon_sym_int] = ACTIONS(1641), + [anon_sym_double] = ACTIONS(1641), + [anon_sym_complex] = ACTIONS(1641), + [anon_sym_new] = ACTIONS(1641), + [anon_sym_signed] = ACTIONS(1641), + [anon_sym_unsigned] = ACTIONS(1641), + [anon_sym_char] = ACTIONS(1641), + [anon_sym_short] = ACTIONS(1641), + [anon_sym_long] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1641), + [anon_sym_volatile] = ACTIONS(1641), + [anon_sym_ctypedef] = ACTIONS(1641), + [anon_sym_struct] = ACTIONS(1641), + [anon_sym_union] = ACTIONS(1641), + [anon_sym_enum] = ACTIONS(1641), + [anon_sym_cppclass] = ACTIONS(1641), + [anon_sym_fused] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_packed] = ACTIONS(1641), + [anon_sym_inline] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_sizeof] = ACTIONS(1641), + [sym__dedent] = ACTIONS(1643), + [sym_string_start] = ACTIONS(1643), }, [503] = { - [sym_identifier] = ACTIONS(1634), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_import] = ACTIONS(1634), - [anon_sym_cimport] = ACTIONS(1634), - [anon_sym_from] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_STAR] = ACTIONS(1636), - [anon_sym_print] = ACTIONS(1634), - [anon_sym_assert] = ACTIONS(1634), - [anon_sym_return] = ACTIONS(1634), - [anon_sym_del] = ACTIONS(1634), - [anon_sym_raise] = ACTIONS(1634), - [anon_sym_pass] = ACTIONS(1634), - [anon_sym_break] = ACTIONS(1634), - [anon_sym_continue] = ACTIONS(1634), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_match] = ACTIONS(1634), - [anon_sym_async] = ACTIONS(1634), - [anon_sym_for] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_try] = ACTIONS(1634), - [anon_sym_with] = ACTIONS(1634), - [anon_sym_def] = ACTIONS(1634), - [anon_sym_global] = ACTIONS(1634), - [anon_sym_nonlocal] = ACTIONS(1634), - [anon_sym_exec] = ACTIONS(1634), - [anon_sym_type] = ACTIONS(1634), - [anon_sym_class] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_AT] = ACTIONS(1636), - [anon_sym_DASH] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_PLUS] = ACTIONS(1636), - [anon_sym_not] = ACTIONS(1634), - [anon_sym_AMP] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1636), - [anon_sym_lambda] = ACTIONS(1634), - [anon_sym_yield] = ACTIONS(1634), - [sym_ellipsis] = ACTIONS(1636), - [anon_sym_None] = ACTIONS(1634), - [sym_integer] = ACTIONS(1634), - [sym_float] = ACTIONS(1636), - [anon_sym_await] = ACTIONS(1634), - [anon_sym_api] = ACTIONS(1634), - [sym_true] = ACTIONS(1634), - [sym_false] = ACTIONS(1634), + [sym_identifier] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_import] = ACTIONS(1645), + [anon_sym_cimport] = ACTIONS(1645), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_print] = ACTIONS(1645), + [anon_sym_assert] = ACTIONS(1645), + [anon_sym_return] = ACTIONS(1645), + [anon_sym_del] = ACTIONS(1645), + [anon_sym_raise] = ACTIONS(1645), + [anon_sym_pass] = ACTIONS(1645), + [anon_sym_break] = ACTIONS(1645), + [anon_sym_continue] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1645), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_while] = ACTIONS(1645), + [anon_sym_try] = ACTIONS(1645), + [anon_sym_with] = ACTIONS(1645), + [anon_sym_def] = ACTIONS(1645), + [anon_sym_global] = ACTIONS(1645), + [anon_sym_nonlocal] = ACTIONS(1645), + [anon_sym_exec] = ACTIONS(1645), + [anon_sym_type] = ACTIONS(1645), + [anon_sym_class] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1647), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1647), + [anon_sym_lambda] = ACTIONS(1645), + [anon_sym_yield] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1647), + [anon_sym_None] = ACTIONS(1645), + [sym_integer] = ACTIONS(1645), + [sym_float] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(1645), + [anon_sym_api] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1634), - [anon_sym_include] = ACTIONS(1634), - [anon_sym_DEF] = ACTIONS(1634), - [anon_sym_cdef] = ACTIONS(1634), - [anon_sym_cpdef] = ACTIONS(1634), - [anon_sym_int] = ACTIONS(1634), - [anon_sym_double] = ACTIONS(1634), - [anon_sym_complex] = ACTIONS(1634), - [anon_sym_new] = ACTIONS(1634), - [anon_sym_signed] = ACTIONS(1634), - [anon_sym_unsigned] = ACTIONS(1634), - [anon_sym_char] = ACTIONS(1634), - [anon_sym_short] = ACTIONS(1634), - [anon_sym_long] = ACTIONS(1634), - [anon_sym_const] = ACTIONS(1634), - [anon_sym_volatile] = ACTIONS(1634), - [anon_sym_ctypedef] = ACTIONS(1634), - [anon_sym_struct] = ACTIONS(1634), - [anon_sym_union] = ACTIONS(1634), - [anon_sym_enum] = ACTIONS(1634), - [anon_sym_cppclass] = ACTIONS(1634), - [anon_sym_fused] = ACTIONS(1634), - [anon_sym_public] = ACTIONS(1634), - [anon_sym_packed] = ACTIONS(1634), - [anon_sym_inline] = ACTIONS(1634), - [anon_sym_readonly] = ACTIONS(1634), - [anon_sym_sizeof] = ACTIONS(1634), - [sym__dedent] = ACTIONS(1636), - [sym_string_start] = ACTIONS(1636), + [anon_sym_property] = ACTIONS(1645), + [anon_sym_include] = ACTIONS(1645), + [anon_sym_DEF] = ACTIONS(1645), + [anon_sym_cdef] = ACTIONS(1645), + [anon_sym_cpdef] = ACTIONS(1645), + [anon_sym_int] = ACTIONS(1645), + [anon_sym_double] = ACTIONS(1645), + [anon_sym_complex] = ACTIONS(1645), + [anon_sym_new] = ACTIONS(1645), + [anon_sym_signed] = ACTIONS(1645), + [anon_sym_unsigned] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_short] = ACTIONS(1645), + [anon_sym_long] = ACTIONS(1645), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_volatile] = ACTIONS(1645), + [anon_sym_ctypedef] = ACTIONS(1645), + [anon_sym_struct] = ACTIONS(1645), + [anon_sym_union] = ACTIONS(1645), + [anon_sym_enum] = ACTIONS(1645), + [anon_sym_cppclass] = ACTIONS(1645), + [anon_sym_fused] = ACTIONS(1645), + [anon_sym_public] = ACTIONS(1645), + [anon_sym_packed] = ACTIONS(1645), + [anon_sym_inline] = ACTIONS(1645), + [anon_sym_readonly] = ACTIONS(1645), + [anon_sym_sizeof] = ACTIONS(1645), + [sym__dedent] = ACTIONS(1647), + [sym_string_start] = ACTIONS(1647), }, [504] = { - [sym_identifier] = ACTIONS(1638), - [anon_sym_SEMI] = ACTIONS(1640), - [anon_sym_import] = ACTIONS(1638), - [anon_sym_cimport] = ACTIONS(1638), - [anon_sym_from] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1640), - [anon_sym_STAR] = ACTIONS(1640), - [anon_sym_print] = ACTIONS(1638), - [anon_sym_assert] = ACTIONS(1638), - [anon_sym_return] = ACTIONS(1638), - [anon_sym_del] = ACTIONS(1638), - [anon_sym_raise] = ACTIONS(1638), - [anon_sym_pass] = ACTIONS(1638), - [anon_sym_break] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(1638), - [anon_sym_if] = ACTIONS(1638), - [anon_sym_match] = ACTIONS(1638), - [anon_sym_async] = ACTIONS(1638), - [anon_sym_for] = ACTIONS(1638), - [anon_sym_while] = ACTIONS(1638), - [anon_sym_try] = ACTIONS(1638), - [anon_sym_with] = ACTIONS(1638), - [anon_sym_def] = ACTIONS(1638), - [anon_sym_global] = ACTIONS(1638), - [anon_sym_nonlocal] = ACTIONS(1638), - [anon_sym_exec] = ACTIONS(1638), - [anon_sym_type] = ACTIONS(1638), - [anon_sym_class] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(1640), - [anon_sym_AT] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_not] = ACTIONS(1638), - [anon_sym_AMP] = ACTIONS(1640), - [anon_sym_TILDE] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1640), - [anon_sym_lambda] = ACTIONS(1638), - [anon_sym_yield] = ACTIONS(1638), - [sym_ellipsis] = ACTIONS(1640), - [anon_sym_None] = ACTIONS(1638), - [sym_integer] = ACTIONS(1638), - [sym_float] = ACTIONS(1640), - [anon_sym_await] = ACTIONS(1638), - [anon_sym_api] = ACTIONS(1638), - [sym_true] = ACTIONS(1638), - [sym_false] = ACTIONS(1638), + [sym_identifier] = ACTIONS(1649), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_import] = ACTIONS(1649), + [anon_sym_cimport] = ACTIONS(1649), + [anon_sym_from] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_print] = ACTIONS(1649), + [anon_sym_assert] = ACTIONS(1649), + [anon_sym_return] = ACTIONS(1649), + [anon_sym_del] = ACTIONS(1649), + [anon_sym_raise] = ACTIONS(1649), + [anon_sym_pass] = ACTIONS(1649), + [anon_sym_break] = ACTIONS(1649), + [anon_sym_continue] = ACTIONS(1649), + [anon_sym_if] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1649), + [anon_sym_async] = ACTIONS(1649), + [anon_sym_for] = ACTIONS(1649), + [anon_sym_while] = ACTIONS(1649), + [anon_sym_try] = ACTIONS(1649), + [anon_sym_with] = ACTIONS(1649), + [anon_sym_def] = ACTIONS(1649), + [anon_sym_global] = ACTIONS(1649), + [anon_sym_nonlocal] = ACTIONS(1649), + [anon_sym_exec] = ACTIONS(1649), + [anon_sym_type] = ACTIONS(1649), + [anon_sym_class] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_AT] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_TILDE] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(1651), + [anon_sym_lambda] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1651), + [anon_sym_None] = ACTIONS(1649), + [sym_integer] = ACTIONS(1649), + [sym_float] = ACTIONS(1651), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_api] = ACTIONS(1649), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1638), - [anon_sym_include] = ACTIONS(1638), - [anon_sym_DEF] = ACTIONS(1638), - [anon_sym_cdef] = ACTIONS(1638), - [anon_sym_cpdef] = ACTIONS(1638), - [anon_sym_int] = ACTIONS(1638), - [anon_sym_double] = ACTIONS(1638), - [anon_sym_complex] = ACTIONS(1638), - [anon_sym_new] = ACTIONS(1638), - [anon_sym_signed] = ACTIONS(1638), - [anon_sym_unsigned] = ACTIONS(1638), - [anon_sym_char] = ACTIONS(1638), - [anon_sym_short] = ACTIONS(1638), - [anon_sym_long] = ACTIONS(1638), - [anon_sym_const] = ACTIONS(1638), - [anon_sym_volatile] = ACTIONS(1638), - [anon_sym_ctypedef] = ACTIONS(1638), - [anon_sym_struct] = ACTIONS(1638), - [anon_sym_union] = ACTIONS(1638), - [anon_sym_enum] = ACTIONS(1638), - [anon_sym_cppclass] = ACTIONS(1638), - [anon_sym_fused] = ACTIONS(1638), - [anon_sym_public] = ACTIONS(1638), - [anon_sym_packed] = ACTIONS(1638), - [anon_sym_inline] = ACTIONS(1638), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_sizeof] = ACTIONS(1638), - [sym__dedent] = ACTIONS(1640), - [sym_string_start] = ACTIONS(1640), + [anon_sym_property] = ACTIONS(1649), + [anon_sym_include] = ACTIONS(1649), + [anon_sym_DEF] = ACTIONS(1649), + [anon_sym_cdef] = ACTIONS(1649), + [anon_sym_cpdef] = ACTIONS(1649), + [anon_sym_int] = ACTIONS(1649), + [anon_sym_double] = ACTIONS(1649), + [anon_sym_complex] = ACTIONS(1649), + [anon_sym_new] = ACTIONS(1649), + [anon_sym_signed] = ACTIONS(1649), + [anon_sym_unsigned] = ACTIONS(1649), + [anon_sym_char] = ACTIONS(1649), + [anon_sym_short] = ACTIONS(1649), + [anon_sym_long] = ACTIONS(1649), + [anon_sym_const] = ACTIONS(1649), + [anon_sym_volatile] = ACTIONS(1649), + [anon_sym_ctypedef] = ACTIONS(1649), + [anon_sym_struct] = ACTIONS(1649), + [anon_sym_union] = ACTIONS(1649), + [anon_sym_enum] = ACTIONS(1649), + [anon_sym_cppclass] = ACTIONS(1649), + [anon_sym_fused] = ACTIONS(1649), + [anon_sym_public] = ACTIONS(1649), + [anon_sym_packed] = ACTIONS(1649), + [anon_sym_inline] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1649), + [anon_sym_sizeof] = ACTIONS(1649), + [sym__dedent] = ACTIONS(1651), + [sym_string_start] = ACTIONS(1651), }, [505] = { - [sym_identifier] = ACTIONS(1642), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_import] = ACTIONS(1642), - [anon_sym_cimport] = ACTIONS(1642), - [anon_sym_from] = ACTIONS(1642), - [anon_sym_LPAREN] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1644), - [anon_sym_print] = ACTIONS(1642), - [anon_sym_assert] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1642), - [anon_sym_del] = ACTIONS(1642), - [anon_sym_raise] = ACTIONS(1642), - [anon_sym_pass] = ACTIONS(1642), - [anon_sym_break] = ACTIONS(1642), - [anon_sym_continue] = ACTIONS(1642), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_match] = ACTIONS(1642), - [anon_sym_async] = ACTIONS(1642), - [anon_sym_for] = ACTIONS(1642), - [anon_sym_while] = ACTIONS(1642), - [anon_sym_try] = ACTIONS(1642), - [anon_sym_with] = ACTIONS(1642), - [anon_sym_def] = ACTIONS(1642), - [anon_sym_global] = ACTIONS(1642), - [anon_sym_nonlocal] = ACTIONS(1642), - [anon_sym_exec] = ACTIONS(1642), - [anon_sym_type] = ACTIONS(1642), - [anon_sym_class] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1644), - [anon_sym_AT] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_LBRACE] = ACTIONS(1644), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_not] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_LT] = ACTIONS(1644), - [anon_sym_lambda] = ACTIONS(1642), - [anon_sym_yield] = ACTIONS(1642), - [sym_ellipsis] = ACTIONS(1644), - [anon_sym_None] = ACTIONS(1642), - [sym_integer] = ACTIONS(1642), - [sym_float] = ACTIONS(1644), - [anon_sym_await] = ACTIONS(1642), - [anon_sym_api] = ACTIONS(1642), - [sym_true] = ACTIONS(1642), - [sym_false] = ACTIONS(1642), + [sym_identifier] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_import] = ACTIONS(1653), + [anon_sym_cimport] = ACTIONS(1653), + [anon_sym_from] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1655), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_print] = ACTIONS(1653), + [anon_sym_assert] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_del] = ACTIONS(1653), + [anon_sym_raise] = ACTIONS(1653), + [anon_sym_pass] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_match] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_try] = ACTIONS(1653), + [anon_sym_with] = ACTIONS(1653), + [anon_sym_def] = ACTIONS(1653), + [anon_sym_global] = ACTIONS(1653), + [anon_sym_nonlocal] = ACTIONS(1653), + [anon_sym_exec] = ACTIONS(1653), + [anon_sym_type] = ACTIONS(1653), + [anon_sym_class] = ACTIONS(1653), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_not] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_TILDE] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_lambda] = ACTIONS(1653), + [anon_sym_yield] = ACTIONS(1653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1655), + [anon_sym_None] = ACTIONS(1653), + [sym_integer] = ACTIONS(1653), + [sym_float] = ACTIONS(1655), + [anon_sym_await] = ACTIONS(1653), + [anon_sym_api] = ACTIONS(1653), + [sym_true] = ACTIONS(1653), + [sym_false] = ACTIONS(1653), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1642), - [anon_sym_include] = ACTIONS(1642), - [anon_sym_DEF] = ACTIONS(1642), - [anon_sym_cdef] = ACTIONS(1642), - [anon_sym_cpdef] = ACTIONS(1642), - [anon_sym_int] = ACTIONS(1642), - [anon_sym_double] = ACTIONS(1642), - [anon_sym_complex] = ACTIONS(1642), - [anon_sym_new] = ACTIONS(1642), - [anon_sym_signed] = ACTIONS(1642), - [anon_sym_unsigned] = ACTIONS(1642), - [anon_sym_char] = ACTIONS(1642), - [anon_sym_short] = ACTIONS(1642), - [anon_sym_long] = ACTIONS(1642), - [anon_sym_const] = ACTIONS(1642), - [anon_sym_volatile] = ACTIONS(1642), - [anon_sym_ctypedef] = ACTIONS(1642), - [anon_sym_struct] = ACTIONS(1642), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_enum] = ACTIONS(1642), - [anon_sym_cppclass] = ACTIONS(1642), - [anon_sym_fused] = ACTIONS(1642), - [anon_sym_public] = ACTIONS(1642), - [anon_sym_packed] = ACTIONS(1642), - [anon_sym_inline] = ACTIONS(1642), - [anon_sym_readonly] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1642), - [sym__dedent] = ACTIONS(1644), - [sym_string_start] = ACTIONS(1644), + [anon_sym_property] = ACTIONS(1653), + [anon_sym_include] = ACTIONS(1653), + [anon_sym_DEF] = ACTIONS(1653), + [anon_sym_cdef] = ACTIONS(1653), + [anon_sym_cpdef] = ACTIONS(1653), + [anon_sym_int] = ACTIONS(1653), + [anon_sym_double] = ACTIONS(1653), + [anon_sym_complex] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1653), + [anon_sym_signed] = ACTIONS(1653), + [anon_sym_unsigned] = ACTIONS(1653), + [anon_sym_char] = ACTIONS(1653), + [anon_sym_short] = ACTIONS(1653), + [anon_sym_long] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_volatile] = ACTIONS(1653), + [anon_sym_ctypedef] = ACTIONS(1653), + [anon_sym_struct] = ACTIONS(1653), + [anon_sym_union] = ACTIONS(1653), + [anon_sym_enum] = ACTIONS(1653), + [anon_sym_cppclass] = ACTIONS(1653), + [anon_sym_fused] = ACTIONS(1653), + [anon_sym_public] = ACTIONS(1653), + [anon_sym_packed] = ACTIONS(1653), + [anon_sym_inline] = ACTIONS(1653), + [anon_sym_readonly] = ACTIONS(1653), + [anon_sym_sizeof] = ACTIONS(1653), + [sym__dedent] = ACTIONS(1655), + [sym_string_start] = ACTIONS(1655), }, [506] = { - [sym_identifier] = ACTIONS(1646), - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_import] = ACTIONS(1646), - [anon_sym_cimport] = ACTIONS(1646), - [anon_sym_from] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_STAR] = ACTIONS(1648), - [anon_sym_print] = ACTIONS(1646), - [anon_sym_assert] = ACTIONS(1646), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_del] = ACTIONS(1646), - [anon_sym_raise] = ACTIONS(1646), - [anon_sym_pass] = ACTIONS(1646), - [anon_sym_break] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(1646), - [anon_sym_if] = ACTIONS(1646), - [anon_sym_match] = ACTIONS(1646), - [anon_sym_async] = ACTIONS(1646), - [anon_sym_for] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1646), - [anon_sym_try] = ACTIONS(1646), - [anon_sym_with] = ACTIONS(1646), - [anon_sym_def] = ACTIONS(1646), - [anon_sym_global] = ACTIONS(1646), - [anon_sym_nonlocal] = ACTIONS(1646), - [anon_sym_exec] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_class] = ACTIONS(1646), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_AT] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_not] = ACTIONS(1646), - [anon_sym_AMP] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_LT] = ACTIONS(1648), - [anon_sym_lambda] = ACTIONS(1646), - [anon_sym_yield] = ACTIONS(1646), - [sym_ellipsis] = ACTIONS(1648), - [anon_sym_None] = ACTIONS(1646), - [sym_integer] = ACTIONS(1646), - [sym_float] = ACTIONS(1648), - [anon_sym_await] = ACTIONS(1646), - [anon_sym_api] = ACTIONS(1646), - [sym_true] = ACTIONS(1646), - [sym_false] = ACTIONS(1646), + [sym_identifier] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_import] = ACTIONS(1657), + [anon_sym_cimport] = ACTIONS(1657), + [anon_sym_from] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_STAR] = ACTIONS(1659), + [anon_sym_print] = ACTIONS(1657), + [anon_sym_assert] = ACTIONS(1657), + [anon_sym_return] = ACTIONS(1657), + [anon_sym_del] = ACTIONS(1657), + [anon_sym_raise] = ACTIONS(1657), + [anon_sym_pass] = ACTIONS(1657), + [anon_sym_break] = ACTIONS(1657), + [anon_sym_continue] = ACTIONS(1657), + [anon_sym_if] = ACTIONS(1657), + [anon_sym_match] = ACTIONS(1657), + [anon_sym_async] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1657), + [anon_sym_while] = ACTIONS(1657), + [anon_sym_try] = ACTIONS(1657), + [anon_sym_with] = ACTIONS(1657), + [anon_sym_def] = ACTIONS(1657), + [anon_sym_global] = ACTIONS(1657), + [anon_sym_nonlocal] = ACTIONS(1657), + [anon_sym_exec] = ACTIONS(1657), + [anon_sym_type] = ACTIONS(1657), + [anon_sym_class] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_AT] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1659), + [anon_sym_PLUS] = ACTIONS(1659), + [anon_sym_not] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_lambda] = ACTIONS(1657), + [anon_sym_yield] = ACTIONS(1657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1659), + [anon_sym_None] = ACTIONS(1657), + [sym_integer] = ACTIONS(1657), + [sym_float] = ACTIONS(1659), + [anon_sym_await] = ACTIONS(1657), + [anon_sym_api] = ACTIONS(1657), + [sym_true] = ACTIONS(1657), + [sym_false] = ACTIONS(1657), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1646), - [anon_sym_include] = ACTIONS(1646), - [anon_sym_DEF] = ACTIONS(1646), - [anon_sym_cdef] = ACTIONS(1646), - [anon_sym_cpdef] = ACTIONS(1646), - [anon_sym_int] = ACTIONS(1646), - [anon_sym_double] = ACTIONS(1646), - [anon_sym_complex] = ACTIONS(1646), - [anon_sym_new] = ACTIONS(1646), - [anon_sym_signed] = ACTIONS(1646), - [anon_sym_unsigned] = ACTIONS(1646), - [anon_sym_char] = ACTIONS(1646), - [anon_sym_short] = ACTIONS(1646), - [anon_sym_long] = ACTIONS(1646), - [anon_sym_const] = ACTIONS(1646), - [anon_sym_volatile] = ACTIONS(1646), - [anon_sym_ctypedef] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1646), - [anon_sym_union] = ACTIONS(1646), - [anon_sym_enum] = ACTIONS(1646), - [anon_sym_cppclass] = ACTIONS(1646), - [anon_sym_fused] = ACTIONS(1646), - [anon_sym_public] = ACTIONS(1646), - [anon_sym_packed] = ACTIONS(1646), - [anon_sym_inline] = ACTIONS(1646), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_sizeof] = ACTIONS(1646), - [sym__dedent] = ACTIONS(1648), - [sym_string_start] = ACTIONS(1648), + [anon_sym_property] = ACTIONS(1657), + [anon_sym_include] = ACTIONS(1657), + [anon_sym_DEF] = ACTIONS(1657), + [anon_sym_cdef] = ACTIONS(1657), + [anon_sym_cpdef] = ACTIONS(1657), + [anon_sym_int] = ACTIONS(1657), + [anon_sym_double] = ACTIONS(1657), + [anon_sym_complex] = ACTIONS(1657), + [anon_sym_new] = ACTIONS(1657), + [anon_sym_signed] = ACTIONS(1657), + [anon_sym_unsigned] = ACTIONS(1657), + [anon_sym_char] = ACTIONS(1657), + [anon_sym_short] = ACTIONS(1657), + [anon_sym_long] = ACTIONS(1657), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_volatile] = ACTIONS(1657), + [anon_sym_ctypedef] = ACTIONS(1657), + [anon_sym_struct] = ACTIONS(1657), + [anon_sym_union] = ACTIONS(1657), + [anon_sym_enum] = ACTIONS(1657), + [anon_sym_cppclass] = ACTIONS(1657), + [anon_sym_fused] = ACTIONS(1657), + [anon_sym_public] = ACTIONS(1657), + [anon_sym_packed] = ACTIONS(1657), + [anon_sym_inline] = ACTIONS(1657), + [anon_sym_readonly] = ACTIONS(1657), + [anon_sym_sizeof] = ACTIONS(1657), + [sym__dedent] = ACTIONS(1659), + [sym_string_start] = ACTIONS(1659), }, [507] = { - [sym_identifier] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1652), - [anon_sym_import] = ACTIONS(1650), - [anon_sym_cimport] = ACTIONS(1650), - [anon_sym_from] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1652), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_del] = ACTIONS(1650), - [anon_sym_raise] = ACTIONS(1650), - [anon_sym_pass] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_continue] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_match] = ACTIONS(1650), - [anon_sym_async] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(1650), - [anon_sym_with] = ACTIONS(1650), - [anon_sym_def] = ACTIONS(1650), - [anon_sym_global] = ACTIONS(1650), - [anon_sym_nonlocal] = ACTIONS(1650), - [anon_sym_exec] = ACTIONS(1650), - [anon_sym_type] = ACTIONS(1650), - [anon_sym_class] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1652), - [anon_sym_AT] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_LBRACE] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_not] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_LT] = ACTIONS(1652), - [anon_sym_lambda] = ACTIONS(1650), - [anon_sym_yield] = ACTIONS(1650), - [sym_ellipsis] = ACTIONS(1652), - [anon_sym_None] = ACTIONS(1650), - [sym_integer] = ACTIONS(1650), - [sym_float] = ACTIONS(1652), - [anon_sym_await] = ACTIONS(1650), - [anon_sym_api] = ACTIONS(1650), - [sym_true] = ACTIONS(1650), - [sym_false] = ACTIONS(1650), + [sym_identifier] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_import] = ACTIONS(1661), + [anon_sym_cimport] = ACTIONS(1661), + [anon_sym_from] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_print] = ACTIONS(1661), + [anon_sym_assert] = ACTIONS(1661), + [anon_sym_return] = ACTIONS(1661), + [anon_sym_del] = ACTIONS(1661), + [anon_sym_raise] = ACTIONS(1661), + [anon_sym_pass] = ACTIONS(1661), + [anon_sym_break] = ACTIONS(1661), + [anon_sym_continue] = ACTIONS(1661), + [anon_sym_if] = ACTIONS(1661), + [anon_sym_match] = ACTIONS(1661), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_for] = ACTIONS(1661), + [anon_sym_while] = ACTIONS(1661), + [anon_sym_try] = ACTIONS(1661), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_def] = ACTIONS(1661), + [anon_sym_global] = ACTIONS(1661), + [anon_sym_nonlocal] = ACTIONS(1661), + [anon_sym_exec] = ACTIONS(1661), + [anon_sym_type] = ACTIONS(1661), + [anon_sym_class] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_AT] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1663), + [anon_sym_lambda] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1663), + [anon_sym_None] = ACTIONS(1661), + [sym_integer] = ACTIONS(1661), + [sym_float] = ACTIONS(1663), + [anon_sym_await] = ACTIONS(1661), + [anon_sym_api] = ACTIONS(1661), + [sym_true] = ACTIONS(1661), + [sym_false] = ACTIONS(1661), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1650), - [anon_sym_include] = ACTIONS(1650), - [anon_sym_DEF] = ACTIONS(1650), - [anon_sym_cdef] = ACTIONS(1650), - [anon_sym_cpdef] = ACTIONS(1650), - [anon_sym_int] = ACTIONS(1650), - [anon_sym_double] = ACTIONS(1650), - [anon_sym_complex] = ACTIONS(1650), - [anon_sym_new] = ACTIONS(1650), - [anon_sym_signed] = ACTIONS(1650), - [anon_sym_unsigned] = ACTIONS(1650), - [anon_sym_char] = ACTIONS(1650), - [anon_sym_short] = ACTIONS(1650), - [anon_sym_long] = ACTIONS(1650), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_volatile] = ACTIONS(1650), - [anon_sym_ctypedef] = ACTIONS(1650), - [anon_sym_struct] = ACTIONS(1650), - [anon_sym_union] = ACTIONS(1650), - [anon_sym_enum] = ACTIONS(1650), - [anon_sym_cppclass] = ACTIONS(1650), - [anon_sym_fused] = ACTIONS(1650), - [anon_sym_public] = ACTIONS(1650), - [anon_sym_packed] = ACTIONS(1650), - [anon_sym_inline] = ACTIONS(1650), - [anon_sym_readonly] = ACTIONS(1650), - [anon_sym_sizeof] = ACTIONS(1650), - [sym__dedent] = ACTIONS(1652), - [sym_string_start] = ACTIONS(1652), + [anon_sym_property] = ACTIONS(1661), + [anon_sym_include] = ACTIONS(1661), + [anon_sym_DEF] = ACTIONS(1661), + [anon_sym_cdef] = ACTIONS(1661), + [anon_sym_cpdef] = ACTIONS(1661), + [anon_sym_int] = ACTIONS(1661), + [anon_sym_double] = ACTIONS(1661), + [anon_sym_complex] = ACTIONS(1661), + [anon_sym_new] = ACTIONS(1661), + [anon_sym_signed] = ACTIONS(1661), + [anon_sym_unsigned] = ACTIONS(1661), + [anon_sym_char] = ACTIONS(1661), + [anon_sym_short] = ACTIONS(1661), + [anon_sym_long] = ACTIONS(1661), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_volatile] = ACTIONS(1661), + [anon_sym_ctypedef] = ACTIONS(1661), + [anon_sym_struct] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1661), + [anon_sym_enum] = ACTIONS(1661), + [anon_sym_cppclass] = ACTIONS(1661), + [anon_sym_fused] = ACTIONS(1661), + [anon_sym_public] = ACTIONS(1661), + [anon_sym_packed] = ACTIONS(1661), + [anon_sym_inline] = ACTIONS(1661), + [anon_sym_readonly] = ACTIONS(1661), + [anon_sym_sizeof] = ACTIONS(1661), + [sym__dedent] = ACTIONS(1663), + [sym_string_start] = ACTIONS(1663), }, [508] = { - [sym_identifier] = ACTIONS(1654), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_import] = ACTIONS(1654), - [anon_sym_cimport] = ACTIONS(1654), - [anon_sym_from] = ACTIONS(1654), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_STAR] = ACTIONS(1656), - [anon_sym_print] = ACTIONS(1654), - [anon_sym_assert] = ACTIONS(1654), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_del] = ACTIONS(1654), - [anon_sym_raise] = ACTIONS(1654), - [anon_sym_pass] = ACTIONS(1654), - [anon_sym_break] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1654), - [anon_sym_match] = ACTIONS(1654), - [anon_sym_async] = ACTIONS(1654), - [anon_sym_for] = ACTIONS(1654), - [anon_sym_while] = ACTIONS(1654), - [anon_sym_try] = ACTIONS(1654), - [anon_sym_with] = ACTIONS(1654), - [anon_sym_def] = ACTIONS(1654), - [anon_sym_global] = ACTIONS(1654), - [anon_sym_nonlocal] = ACTIONS(1654), - [anon_sym_exec] = ACTIONS(1654), - [anon_sym_type] = ACTIONS(1654), - [anon_sym_class] = ACTIONS(1654), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_AT] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_PLUS] = ACTIONS(1656), - [anon_sym_not] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_lambda] = ACTIONS(1654), - [anon_sym_yield] = ACTIONS(1654), - [sym_ellipsis] = ACTIONS(1656), - [anon_sym_None] = ACTIONS(1654), - [sym_integer] = ACTIONS(1654), - [sym_float] = ACTIONS(1656), - [anon_sym_await] = ACTIONS(1654), - [anon_sym_api] = ACTIONS(1654), - [sym_true] = ACTIONS(1654), - [sym_false] = ACTIONS(1654), + [sym_identifier] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_import] = ACTIONS(1665), + [anon_sym_cimport] = ACTIONS(1665), + [anon_sym_from] = ACTIONS(1665), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_print] = ACTIONS(1665), + [anon_sym_assert] = ACTIONS(1665), + [anon_sym_return] = ACTIONS(1665), + [anon_sym_del] = ACTIONS(1665), + [anon_sym_raise] = ACTIONS(1665), + [anon_sym_pass] = ACTIONS(1665), + [anon_sym_break] = ACTIONS(1665), + [anon_sym_continue] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1665), + [anon_sym_match] = ACTIONS(1665), + [anon_sym_async] = ACTIONS(1665), + [anon_sym_for] = ACTIONS(1665), + [anon_sym_while] = ACTIONS(1665), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_with] = ACTIONS(1665), + [anon_sym_def] = ACTIONS(1665), + [anon_sym_global] = ACTIONS(1665), + [anon_sym_nonlocal] = ACTIONS(1665), + [anon_sym_exec] = ACTIONS(1665), + [anon_sym_type] = ACTIONS(1665), + [anon_sym_class] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_AT] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_not] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1667), + [anon_sym_TILDE] = ACTIONS(1667), + [anon_sym_LT] = ACTIONS(1667), + [anon_sym_lambda] = ACTIONS(1665), + [anon_sym_yield] = ACTIONS(1665), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1667), + [anon_sym_None] = ACTIONS(1665), + [sym_integer] = ACTIONS(1665), + [sym_float] = ACTIONS(1667), + [anon_sym_await] = ACTIONS(1665), + [anon_sym_api] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1654), - [anon_sym_include] = ACTIONS(1654), - [anon_sym_DEF] = ACTIONS(1654), - [anon_sym_cdef] = ACTIONS(1654), - [anon_sym_cpdef] = ACTIONS(1654), - [anon_sym_int] = ACTIONS(1654), - [anon_sym_double] = ACTIONS(1654), - [anon_sym_complex] = ACTIONS(1654), - [anon_sym_new] = ACTIONS(1654), - [anon_sym_signed] = ACTIONS(1654), - [anon_sym_unsigned] = ACTIONS(1654), - [anon_sym_char] = ACTIONS(1654), - [anon_sym_short] = ACTIONS(1654), - [anon_sym_long] = ACTIONS(1654), - [anon_sym_const] = ACTIONS(1654), - [anon_sym_volatile] = ACTIONS(1654), - [anon_sym_ctypedef] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1654), - [anon_sym_union] = ACTIONS(1654), - [anon_sym_enum] = ACTIONS(1654), - [anon_sym_cppclass] = ACTIONS(1654), - [anon_sym_fused] = ACTIONS(1654), - [anon_sym_public] = ACTIONS(1654), - [anon_sym_packed] = ACTIONS(1654), - [anon_sym_inline] = ACTIONS(1654), - [anon_sym_readonly] = ACTIONS(1654), - [anon_sym_sizeof] = ACTIONS(1654), - [sym__dedent] = ACTIONS(1656), - [sym_string_start] = ACTIONS(1656), + [anon_sym_property] = ACTIONS(1665), + [anon_sym_include] = ACTIONS(1665), + [anon_sym_DEF] = ACTIONS(1665), + [anon_sym_cdef] = ACTIONS(1665), + [anon_sym_cpdef] = ACTIONS(1665), + [anon_sym_int] = ACTIONS(1665), + [anon_sym_double] = ACTIONS(1665), + [anon_sym_complex] = ACTIONS(1665), + [anon_sym_new] = ACTIONS(1665), + [anon_sym_signed] = ACTIONS(1665), + [anon_sym_unsigned] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_short] = ACTIONS(1665), + [anon_sym_long] = ACTIONS(1665), + [anon_sym_const] = ACTIONS(1665), + [anon_sym_volatile] = ACTIONS(1665), + [anon_sym_ctypedef] = ACTIONS(1665), + [anon_sym_struct] = ACTIONS(1665), + [anon_sym_union] = ACTIONS(1665), + [anon_sym_enum] = ACTIONS(1665), + [anon_sym_cppclass] = ACTIONS(1665), + [anon_sym_fused] = ACTIONS(1665), + [anon_sym_public] = ACTIONS(1665), + [anon_sym_packed] = ACTIONS(1665), + [anon_sym_inline] = ACTIONS(1665), + [anon_sym_readonly] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1665), + [sym__dedent] = ACTIONS(1667), + [sym_string_start] = ACTIONS(1667), }, [509] = { - [sym_identifier] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_import] = ACTIONS(1658), - [anon_sym_cimport] = ACTIONS(1658), - [anon_sym_from] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1660), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_del] = ACTIONS(1658), - [anon_sym_raise] = ACTIONS(1658), - [anon_sym_pass] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_continue] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_match] = ACTIONS(1658), - [anon_sym_async] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_try] = ACTIONS(1658), - [anon_sym_with] = ACTIONS(1658), - [anon_sym_def] = ACTIONS(1658), - [anon_sym_global] = ACTIONS(1658), - [anon_sym_nonlocal] = ACTIONS(1658), - [anon_sym_exec] = ACTIONS(1658), - [anon_sym_type] = ACTIONS(1658), - [anon_sym_class] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_AT] = ACTIONS(1660), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_not] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1660), - [anon_sym_TILDE] = ACTIONS(1660), - [anon_sym_LT] = ACTIONS(1660), - [anon_sym_lambda] = ACTIONS(1658), - [anon_sym_yield] = ACTIONS(1658), - [sym_ellipsis] = ACTIONS(1660), - [anon_sym_None] = ACTIONS(1658), - [sym_integer] = ACTIONS(1658), - [sym_float] = ACTIONS(1660), - [anon_sym_await] = ACTIONS(1658), - [anon_sym_api] = ACTIONS(1658), - [sym_true] = ACTIONS(1658), - [sym_false] = ACTIONS(1658), + [sym_identifier] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_import] = ACTIONS(1669), + [anon_sym_cimport] = ACTIONS(1669), + [anon_sym_from] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1671), + [anon_sym_print] = ACTIONS(1669), + [anon_sym_assert] = ACTIONS(1669), + [anon_sym_return] = ACTIONS(1669), + [anon_sym_del] = ACTIONS(1669), + [anon_sym_raise] = ACTIONS(1669), + [anon_sym_pass] = ACTIONS(1669), + [anon_sym_break] = ACTIONS(1669), + [anon_sym_continue] = ACTIONS(1669), + [anon_sym_if] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1669), + [anon_sym_while] = ACTIONS(1669), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_with] = ACTIONS(1669), + [anon_sym_def] = ACTIONS(1669), + [anon_sym_global] = ACTIONS(1669), + [anon_sym_nonlocal] = ACTIONS(1669), + [anon_sym_exec] = ACTIONS(1669), + [anon_sym_type] = ACTIONS(1669), + [anon_sym_class] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1671), + [anon_sym_AT] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_lambda] = ACTIONS(1669), + [anon_sym_yield] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1671), + [anon_sym_None] = ACTIONS(1669), + [sym_integer] = ACTIONS(1669), + [sym_float] = ACTIONS(1671), + [anon_sym_await] = ACTIONS(1669), + [anon_sym_api] = ACTIONS(1669), + [sym_true] = ACTIONS(1669), + [sym_false] = ACTIONS(1669), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1658), - [anon_sym_include] = ACTIONS(1658), - [anon_sym_DEF] = ACTIONS(1658), - [anon_sym_cdef] = ACTIONS(1658), - [anon_sym_cpdef] = ACTIONS(1658), - [anon_sym_int] = ACTIONS(1658), - [anon_sym_double] = ACTIONS(1658), - [anon_sym_complex] = ACTIONS(1658), - [anon_sym_new] = ACTIONS(1658), - [anon_sym_signed] = ACTIONS(1658), - [anon_sym_unsigned] = ACTIONS(1658), - [anon_sym_char] = ACTIONS(1658), - [anon_sym_short] = ACTIONS(1658), - [anon_sym_long] = ACTIONS(1658), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_volatile] = ACTIONS(1658), - [anon_sym_ctypedef] = ACTIONS(1658), - [anon_sym_struct] = ACTIONS(1658), - [anon_sym_union] = ACTIONS(1658), - [anon_sym_enum] = ACTIONS(1658), - [anon_sym_cppclass] = ACTIONS(1658), - [anon_sym_fused] = ACTIONS(1658), - [anon_sym_public] = ACTIONS(1658), - [anon_sym_packed] = ACTIONS(1658), - [anon_sym_inline] = ACTIONS(1658), - [anon_sym_readonly] = ACTIONS(1658), - [anon_sym_sizeof] = ACTIONS(1658), - [sym__dedent] = ACTIONS(1660), - [sym_string_start] = ACTIONS(1660), + [anon_sym_property] = ACTIONS(1669), + [anon_sym_include] = ACTIONS(1669), + [anon_sym_DEF] = ACTIONS(1669), + [anon_sym_cdef] = ACTIONS(1669), + [anon_sym_cpdef] = ACTIONS(1669), + [anon_sym_int] = ACTIONS(1669), + [anon_sym_double] = ACTIONS(1669), + [anon_sym_complex] = ACTIONS(1669), + [anon_sym_new] = ACTIONS(1669), + [anon_sym_signed] = ACTIONS(1669), + [anon_sym_unsigned] = ACTIONS(1669), + [anon_sym_char] = ACTIONS(1669), + [anon_sym_short] = ACTIONS(1669), + [anon_sym_long] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1669), + [anon_sym_volatile] = ACTIONS(1669), + [anon_sym_ctypedef] = ACTIONS(1669), + [anon_sym_struct] = ACTIONS(1669), + [anon_sym_union] = ACTIONS(1669), + [anon_sym_enum] = ACTIONS(1669), + [anon_sym_cppclass] = ACTIONS(1669), + [anon_sym_fused] = ACTIONS(1669), + [anon_sym_public] = ACTIONS(1669), + [anon_sym_packed] = ACTIONS(1669), + [anon_sym_inline] = ACTIONS(1669), + [anon_sym_readonly] = ACTIONS(1669), + [anon_sym_sizeof] = ACTIONS(1669), + [sym__dedent] = ACTIONS(1671), + [sym_string_start] = ACTIONS(1671), }, [510] = { - [sym_identifier] = ACTIONS(1662), - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_import] = ACTIONS(1662), - [anon_sym_cimport] = ACTIONS(1662), - [anon_sym_from] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1664), - [anon_sym_print] = ACTIONS(1662), - [anon_sym_assert] = ACTIONS(1662), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_del] = ACTIONS(1662), - [anon_sym_raise] = ACTIONS(1662), - [anon_sym_pass] = ACTIONS(1662), - [anon_sym_break] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(1662), - [anon_sym_if] = ACTIONS(1662), - [anon_sym_match] = ACTIONS(1662), - [anon_sym_async] = ACTIONS(1662), - [anon_sym_for] = ACTIONS(1662), - [anon_sym_while] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1662), - [anon_sym_with] = ACTIONS(1662), - [anon_sym_def] = ACTIONS(1662), - [anon_sym_global] = ACTIONS(1662), - [anon_sym_nonlocal] = ACTIONS(1662), - [anon_sym_exec] = ACTIONS(1662), - [anon_sym_type] = ACTIONS(1662), - [anon_sym_class] = ACTIONS(1662), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_AT] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1664), - [anon_sym_not] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_LT] = ACTIONS(1664), - [anon_sym_lambda] = ACTIONS(1662), - [anon_sym_yield] = ACTIONS(1662), - [sym_ellipsis] = ACTIONS(1664), - [anon_sym_None] = ACTIONS(1662), - [sym_integer] = ACTIONS(1662), - [sym_float] = ACTIONS(1664), - [anon_sym_await] = ACTIONS(1662), - [anon_sym_api] = ACTIONS(1662), - [sym_true] = ACTIONS(1662), - [sym_false] = ACTIONS(1662), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_import] = ACTIONS(1673), + [anon_sym_cimport] = ACTIONS(1673), + [anon_sym_from] = ACTIONS(1673), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_print] = ACTIONS(1673), + [anon_sym_assert] = ACTIONS(1673), + [anon_sym_return] = ACTIONS(1673), + [anon_sym_del] = ACTIONS(1673), + [anon_sym_raise] = ACTIONS(1673), + [anon_sym_pass] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_match] = ACTIONS(1673), + [anon_sym_async] = ACTIONS(1673), + [anon_sym_for] = ACTIONS(1673), + [anon_sym_while] = ACTIONS(1673), + [anon_sym_try] = ACTIONS(1673), + [anon_sym_with] = ACTIONS(1673), + [anon_sym_def] = ACTIONS(1673), + [anon_sym_global] = ACTIONS(1673), + [anon_sym_nonlocal] = ACTIONS(1673), + [anon_sym_exec] = ACTIONS(1673), + [anon_sym_type] = ACTIONS(1673), + [anon_sym_class] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_AT] = ACTIONS(1675), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1675), + [anon_sym_not] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_TILDE] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1675), + [anon_sym_lambda] = ACTIONS(1673), + [anon_sym_yield] = ACTIONS(1673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1675), + [anon_sym_None] = ACTIONS(1673), + [sym_integer] = ACTIONS(1673), + [sym_float] = ACTIONS(1675), + [anon_sym_await] = ACTIONS(1673), + [anon_sym_api] = ACTIONS(1673), + [sym_true] = ACTIONS(1673), + [sym_false] = ACTIONS(1673), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1662), - [anon_sym_include] = ACTIONS(1662), - [anon_sym_DEF] = ACTIONS(1662), - [anon_sym_cdef] = ACTIONS(1662), - [anon_sym_cpdef] = ACTIONS(1662), - [anon_sym_int] = ACTIONS(1662), - [anon_sym_double] = ACTIONS(1662), - [anon_sym_complex] = ACTIONS(1662), - [anon_sym_new] = ACTIONS(1662), - [anon_sym_signed] = ACTIONS(1662), - [anon_sym_unsigned] = ACTIONS(1662), - [anon_sym_char] = ACTIONS(1662), - [anon_sym_short] = ACTIONS(1662), - [anon_sym_long] = ACTIONS(1662), - [anon_sym_const] = ACTIONS(1662), - [anon_sym_volatile] = ACTIONS(1662), - [anon_sym_ctypedef] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(1662), - [anon_sym_union] = ACTIONS(1662), - [anon_sym_enum] = ACTIONS(1662), - [anon_sym_cppclass] = ACTIONS(1662), - [anon_sym_fused] = ACTIONS(1662), - [anon_sym_public] = ACTIONS(1662), - [anon_sym_packed] = ACTIONS(1662), - [anon_sym_inline] = ACTIONS(1662), - [anon_sym_readonly] = ACTIONS(1662), - [anon_sym_sizeof] = ACTIONS(1662), - [sym__dedent] = ACTIONS(1664), - [sym_string_start] = ACTIONS(1664), + [anon_sym_property] = ACTIONS(1673), + [anon_sym_include] = ACTIONS(1673), + [anon_sym_DEF] = ACTIONS(1673), + [anon_sym_cdef] = ACTIONS(1673), + [anon_sym_cpdef] = ACTIONS(1673), + [anon_sym_int] = ACTIONS(1673), + [anon_sym_double] = ACTIONS(1673), + [anon_sym_complex] = ACTIONS(1673), + [anon_sym_new] = ACTIONS(1673), + [anon_sym_signed] = ACTIONS(1673), + [anon_sym_unsigned] = ACTIONS(1673), + [anon_sym_char] = ACTIONS(1673), + [anon_sym_short] = ACTIONS(1673), + [anon_sym_long] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_volatile] = ACTIONS(1673), + [anon_sym_ctypedef] = ACTIONS(1673), + [anon_sym_struct] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_enum] = ACTIONS(1673), + [anon_sym_cppclass] = ACTIONS(1673), + [anon_sym_fused] = ACTIONS(1673), + [anon_sym_public] = ACTIONS(1673), + [anon_sym_packed] = ACTIONS(1673), + [anon_sym_inline] = ACTIONS(1673), + [anon_sym_readonly] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1673), + [sym__dedent] = ACTIONS(1675), + [sym_string_start] = ACTIONS(1675), }, [511] = { - [sym_identifier] = ACTIONS(1666), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_import] = ACTIONS(1666), - [anon_sym_cimport] = ACTIONS(1666), - [anon_sym_from] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_del] = ACTIONS(1666), - [anon_sym_raise] = ACTIONS(1666), - [anon_sym_pass] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_async] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_with] = ACTIONS(1666), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_global] = ACTIONS(1666), - [anon_sym_nonlocal] = ACTIONS(1666), - [anon_sym_exec] = ACTIONS(1666), - [anon_sym_type] = ACTIONS(1666), - [anon_sym_class] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_AT] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_not] = ACTIONS(1666), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_LT] = ACTIONS(1668), - [anon_sym_lambda] = ACTIONS(1666), - [anon_sym_yield] = ACTIONS(1666), - [sym_ellipsis] = ACTIONS(1668), - [anon_sym_None] = ACTIONS(1666), - [sym_integer] = ACTIONS(1666), - [sym_float] = ACTIONS(1668), - [anon_sym_await] = ACTIONS(1666), - [anon_sym_api] = ACTIONS(1666), - [sym_true] = ACTIONS(1666), - [sym_false] = ACTIONS(1666), + [sym_identifier] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_import] = ACTIONS(1677), + [anon_sym_cimport] = ACTIONS(1677), + [anon_sym_from] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1679), + [anon_sym_print] = ACTIONS(1677), + [anon_sym_assert] = ACTIONS(1677), + [anon_sym_return] = ACTIONS(1677), + [anon_sym_del] = ACTIONS(1677), + [anon_sym_raise] = ACTIONS(1677), + [anon_sym_pass] = ACTIONS(1677), + [anon_sym_break] = ACTIONS(1677), + [anon_sym_continue] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_match] = ACTIONS(1677), + [anon_sym_async] = ACTIONS(1677), + [anon_sym_for] = ACTIONS(1677), + [anon_sym_while] = ACTIONS(1677), + [anon_sym_try] = ACTIONS(1677), + [anon_sym_with] = ACTIONS(1677), + [anon_sym_def] = ACTIONS(1677), + [anon_sym_global] = ACTIONS(1677), + [anon_sym_nonlocal] = ACTIONS(1677), + [anon_sym_exec] = ACTIONS(1677), + [anon_sym_type] = ACTIONS(1677), + [anon_sym_class] = ACTIONS(1677), + [anon_sym_LBRACK] = ACTIONS(1679), + [anon_sym_AT] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [anon_sym_LBRACE] = ACTIONS(1679), + [anon_sym_PLUS] = ACTIONS(1679), + [anon_sym_not] = ACTIONS(1677), + [anon_sym_AMP] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1679), + [anon_sym_LT] = ACTIONS(1679), + [anon_sym_lambda] = ACTIONS(1677), + [anon_sym_yield] = ACTIONS(1677), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1679), + [anon_sym_None] = ACTIONS(1677), + [sym_integer] = ACTIONS(1677), + [sym_float] = ACTIONS(1679), + [anon_sym_await] = ACTIONS(1677), + [anon_sym_api] = ACTIONS(1677), + [sym_true] = ACTIONS(1677), + [sym_false] = ACTIONS(1677), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1666), - [anon_sym_include] = ACTIONS(1666), - [anon_sym_DEF] = ACTIONS(1666), - [anon_sym_cdef] = ACTIONS(1666), - [anon_sym_cpdef] = ACTIONS(1666), - [anon_sym_int] = ACTIONS(1666), - [anon_sym_double] = ACTIONS(1666), - [anon_sym_complex] = ACTIONS(1666), - [anon_sym_new] = ACTIONS(1666), - [anon_sym_signed] = ACTIONS(1666), - [anon_sym_unsigned] = ACTIONS(1666), - [anon_sym_char] = ACTIONS(1666), - [anon_sym_short] = ACTIONS(1666), - [anon_sym_long] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_volatile] = ACTIONS(1666), - [anon_sym_ctypedef] = ACTIONS(1666), - [anon_sym_struct] = ACTIONS(1666), - [anon_sym_union] = ACTIONS(1666), - [anon_sym_enum] = ACTIONS(1666), - [anon_sym_cppclass] = ACTIONS(1666), - [anon_sym_fused] = ACTIONS(1666), - [anon_sym_public] = ACTIONS(1666), - [anon_sym_packed] = ACTIONS(1666), - [anon_sym_inline] = ACTIONS(1666), - [anon_sym_readonly] = ACTIONS(1666), - [anon_sym_sizeof] = ACTIONS(1666), - [sym__dedent] = ACTIONS(1668), - [sym_string_start] = ACTIONS(1668), + [anon_sym_property] = ACTIONS(1677), + [anon_sym_include] = ACTIONS(1677), + [anon_sym_DEF] = ACTIONS(1677), + [anon_sym_cdef] = ACTIONS(1677), + [anon_sym_cpdef] = ACTIONS(1677), + [anon_sym_int] = ACTIONS(1677), + [anon_sym_double] = ACTIONS(1677), + [anon_sym_complex] = ACTIONS(1677), + [anon_sym_new] = ACTIONS(1677), + [anon_sym_signed] = ACTIONS(1677), + [anon_sym_unsigned] = ACTIONS(1677), + [anon_sym_char] = ACTIONS(1677), + [anon_sym_short] = ACTIONS(1677), + [anon_sym_long] = ACTIONS(1677), + [anon_sym_const] = ACTIONS(1677), + [anon_sym_volatile] = ACTIONS(1677), + [anon_sym_ctypedef] = ACTIONS(1677), + [anon_sym_struct] = ACTIONS(1677), + [anon_sym_union] = ACTIONS(1677), + [anon_sym_enum] = ACTIONS(1677), + [anon_sym_cppclass] = ACTIONS(1677), + [anon_sym_fused] = ACTIONS(1677), + [anon_sym_public] = ACTIONS(1677), + [anon_sym_packed] = ACTIONS(1677), + [anon_sym_inline] = ACTIONS(1677), + [anon_sym_readonly] = ACTIONS(1677), + [anon_sym_sizeof] = ACTIONS(1677), + [sym__dedent] = ACTIONS(1679), + [sym_string_start] = ACTIONS(1679), }, [512] = { - [sym_identifier] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_import] = ACTIONS(1670), - [anon_sym_cimport] = ACTIONS(1670), - [anon_sym_from] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_STAR] = ACTIONS(1672), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_del] = ACTIONS(1670), - [anon_sym_raise] = ACTIONS(1670), - [anon_sym_pass] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_match] = ACTIONS(1670), - [anon_sym_async] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_try] = ACTIONS(1670), - [anon_sym_with] = ACTIONS(1670), - [anon_sym_def] = ACTIONS(1670), - [anon_sym_global] = ACTIONS(1670), - [anon_sym_nonlocal] = ACTIONS(1670), - [anon_sym_exec] = ACTIONS(1670), - [anon_sym_type] = ACTIONS(1670), - [anon_sym_class] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_AT] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_not] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_lambda] = ACTIONS(1670), - [anon_sym_yield] = ACTIONS(1670), - [sym_ellipsis] = ACTIONS(1672), - [anon_sym_None] = ACTIONS(1670), - [sym_integer] = ACTIONS(1670), - [sym_float] = ACTIONS(1672), - [anon_sym_await] = ACTIONS(1670), - [anon_sym_api] = ACTIONS(1670), - [sym_true] = ACTIONS(1670), - [sym_false] = ACTIONS(1670), + [sym_identifier] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_import] = ACTIONS(1681), + [anon_sym_cimport] = ACTIONS(1681), + [anon_sym_from] = ACTIONS(1681), + [anon_sym_LPAREN] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_print] = ACTIONS(1681), + [anon_sym_assert] = ACTIONS(1681), + [anon_sym_return] = ACTIONS(1681), + [anon_sym_del] = ACTIONS(1681), + [anon_sym_raise] = ACTIONS(1681), + [anon_sym_pass] = ACTIONS(1681), + [anon_sym_break] = ACTIONS(1681), + [anon_sym_continue] = ACTIONS(1681), + [anon_sym_if] = ACTIONS(1681), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_async] = ACTIONS(1681), + [anon_sym_for] = ACTIONS(1681), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_try] = ACTIONS(1681), + [anon_sym_with] = ACTIONS(1681), + [anon_sym_def] = ACTIONS(1681), + [anon_sym_global] = ACTIONS(1681), + [anon_sym_nonlocal] = ACTIONS(1681), + [anon_sym_exec] = ACTIONS(1681), + [anon_sym_type] = ACTIONS(1681), + [anon_sym_class] = ACTIONS(1681), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_AT] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_not] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1683), + [anon_sym_lambda] = ACTIONS(1681), + [anon_sym_yield] = ACTIONS(1681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1683), + [anon_sym_None] = ACTIONS(1681), + [sym_integer] = ACTIONS(1681), + [sym_float] = ACTIONS(1683), + [anon_sym_await] = ACTIONS(1681), + [anon_sym_api] = ACTIONS(1681), + [sym_true] = ACTIONS(1681), + [sym_false] = ACTIONS(1681), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1670), - [anon_sym_include] = ACTIONS(1670), - [anon_sym_DEF] = ACTIONS(1670), - [anon_sym_cdef] = ACTIONS(1670), - [anon_sym_cpdef] = ACTIONS(1670), - [anon_sym_int] = ACTIONS(1670), - [anon_sym_double] = ACTIONS(1670), - [anon_sym_complex] = ACTIONS(1670), - [anon_sym_new] = ACTIONS(1670), - [anon_sym_signed] = ACTIONS(1670), - [anon_sym_unsigned] = ACTIONS(1670), - [anon_sym_char] = ACTIONS(1670), - [anon_sym_short] = ACTIONS(1670), - [anon_sym_long] = ACTIONS(1670), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_volatile] = ACTIONS(1670), - [anon_sym_ctypedef] = ACTIONS(1670), - [anon_sym_struct] = ACTIONS(1670), - [anon_sym_union] = ACTIONS(1670), - [anon_sym_enum] = ACTIONS(1670), - [anon_sym_cppclass] = ACTIONS(1670), - [anon_sym_fused] = ACTIONS(1670), - [anon_sym_public] = ACTIONS(1670), - [anon_sym_packed] = ACTIONS(1670), - [anon_sym_inline] = ACTIONS(1670), - [anon_sym_readonly] = ACTIONS(1670), - [anon_sym_sizeof] = ACTIONS(1670), - [sym__dedent] = ACTIONS(1672), - [sym_string_start] = ACTIONS(1672), + [anon_sym_property] = ACTIONS(1681), + [anon_sym_include] = ACTIONS(1681), + [anon_sym_DEF] = ACTIONS(1681), + [anon_sym_cdef] = ACTIONS(1681), + [anon_sym_cpdef] = ACTIONS(1681), + [anon_sym_int] = ACTIONS(1681), + [anon_sym_double] = ACTIONS(1681), + [anon_sym_complex] = ACTIONS(1681), + [anon_sym_new] = ACTIONS(1681), + [anon_sym_signed] = ACTIONS(1681), + [anon_sym_unsigned] = ACTIONS(1681), + [anon_sym_char] = ACTIONS(1681), + [anon_sym_short] = ACTIONS(1681), + [anon_sym_long] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1681), + [anon_sym_volatile] = ACTIONS(1681), + [anon_sym_ctypedef] = ACTIONS(1681), + [anon_sym_struct] = ACTIONS(1681), + [anon_sym_union] = ACTIONS(1681), + [anon_sym_enum] = ACTIONS(1681), + [anon_sym_cppclass] = ACTIONS(1681), + [anon_sym_fused] = ACTIONS(1681), + [anon_sym_public] = ACTIONS(1681), + [anon_sym_packed] = ACTIONS(1681), + [anon_sym_inline] = ACTIONS(1681), + [anon_sym_readonly] = ACTIONS(1681), + [anon_sym_sizeof] = ACTIONS(1681), + [sym__dedent] = ACTIONS(1683), + [sym_string_start] = ACTIONS(1683), }, [513] = { - [sym_identifier] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1676), - [anon_sym_import] = ACTIONS(1674), - [anon_sym_cimport] = ACTIONS(1674), - [anon_sym_from] = ACTIONS(1674), - [anon_sym_LPAREN] = ACTIONS(1676), - [anon_sym_STAR] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1674), - [anon_sym_assert] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1674), - [anon_sym_del] = ACTIONS(1674), - [anon_sym_raise] = ACTIONS(1674), - [anon_sym_pass] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1674), - [anon_sym_continue] = ACTIONS(1674), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_match] = ACTIONS(1674), - [anon_sym_async] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_with] = ACTIONS(1674), - [anon_sym_def] = ACTIONS(1674), - [anon_sym_global] = ACTIONS(1674), - [anon_sym_nonlocal] = ACTIONS(1674), - [anon_sym_exec] = ACTIONS(1674), - [anon_sym_type] = ACTIONS(1674), - [anon_sym_class] = ACTIONS(1674), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_AT] = ACTIONS(1676), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_not] = ACTIONS(1674), - [anon_sym_AMP] = ACTIONS(1676), - [anon_sym_TILDE] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(1676), - [anon_sym_lambda] = ACTIONS(1674), - [anon_sym_yield] = ACTIONS(1674), - [sym_ellipsis] = ACTIONS(1676), - [anon_sym_None] = ACTIONS(1674), - [sym_integer] = ACTIONS(1674), - [sym_float] = ACTIONS(1676), - [anon_sym_await] = ACTIONS(1674), - [anon_sym_api] = ACTIONS(1674), - [sym_true] = ACTIONS(1674), - [sym_false] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(1685), + [anon_sym_cimport] = ACTIONS(1685), + [anon_sym_from] = ACTIONS(1685), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1687), + [anon_sym_print] = ACTIONS(1685), + [anon_sym_assert] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1685), + [anon_sym_del] = ACTIONS(1685), + [anon_sym_raise] = ACTIONS(1685), + [anon_sym_pass] = ACTIONS(1685), + [anon_sym_break] = ACTIONS(1685), + [anon_sym_continue] = ACTIONS(1685), + [anon_sym_if] = ACTIONS(1685), + [anon_sym_match] = ACTIONS(1685), + [anon_sym_async] = ACTIONS(1685), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1685), + [anon_sym_try] = ACTIONS(1685), + [anon_sym_with] = ACTIONS(1685), + [anon_sym_def] = ACTIONS(1685), + [anon_sym_global] = ACTIONS(1685), + [anon_sym_nonlocal] = ACTIONS(1685), + [anon_sym_exec] = ACTIONS(1685), + [anon_sym_type] = ACTIONS(1685), + [anon_sym_class] = ACTIONS(1685), + [anon_sym_LBRACK] = ACTIONS(1687), + [anon_sym_AT] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_not] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1687), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1687), + [anon_sym_lambda] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1687), + [anon_sym_None] = ACTIONS(1685), + [sym_integer] = ACTIONS(1685), + [sym_float] = ACTIONS(1687), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_api] = ACTIONS(1685), + [sym_true] = ACTIONS(1685), + [sym_false] = ACTIONS(1685), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1674), - [anon_sym_include] = ACTIONS(1674), - [anon_sym_DEF] = ACTIONS(1674), - [anon_sym_cdef] = ACTIONS(1674), - [anon_sym_cpdef] = ACTIONS(1674), - [anon_sym_int] = ACTIONS(1674), - [anon_sym_double] = ACTIONS(1674), - [anon_sym_complex] = ACTIONS(1674), - [anon_sym_new] = ACTIONS(1674), - [anon_sym_signed] = ACTIONS(1674), - [anon_sym_unsigned] = ACTIONS(1674), - [anon_sym_char] = ACTIONS(1674), - [anon_sym_short] = ACTIONS(1674), - [anon_sym_long] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_volatile] = ACTIONS(1674), - [anon_sym_ctypedef] = ACTIONS(1674), - [anon_sym_struct] = ACTIONS(1674), - [anon_sym_union] = ACTIONS(1674), - [anon_sym_enum] = ACTIONS(1674), - [anon_sym_cppclass] = ACTIONS(1674), - [anon_sym_fused] = ACTIONS(1674), - [anon_sym_public] = ACTIONS(1674), - [anon_sym_packed] = ACTIONS(1674), - [anon_sym_inline] = ACTIONS(1674), - [anon_sym_readonly] = ACTIONS(1674), - [anon_sym_sizeof] = ACTIONS(1674), - [sym__dedent] = ACTIONS(1676), - [sym_string_start] = ACTIONS(1676), + [anon_sym_property] = ACTIONS(1685), + [anon_sym_include] = ACTIONS(1685), + [anon_sym_DEF] = ACTIONS(1685), + [anon_sym_cdef] = ACTIONS(1685), + [anon_sym_cpdef] = ACTIONS(1685), + [anon_sym_int] = ACTIONS(1685), + [anon_sym_double] = ACTIONS(1685), + [anon_sym_complex] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1685), + [anon_sym_signed] = ACTIONS(1685), + [anon_sym_unsigned] = ACTIONS(1685), + [anon_sym_char] = ACTIONS(1685), + [anon_sym_short] = ACTIONS(1685), + [anon_sym_long] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_volatile] = ACTIONS(1685), + [anon_sym_ctypedef] = ACTIONS(1685), + [anon_sym_struct] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_enum] = ACTIONS(1685), + [anon_sym_cppclass] = ACTIONS(1685), + [anon_sym_fused] = ACTIONS(1685), + [anon_sym_public] = ACTIONS(1685), + [anon_sym_packed] = ACTIONS(1685), + [anon_sym_inline] = ACTIONS(1685), + [anon_sym_readonly] = ACTIONS(1685), + [anon_sym_sizeof] = ACTIONS(1685), + [sym__dedent] = ACTIONS(1687), + [sym_string_start] = ACTIONS(1687), }, [514] = { - [sym_identifier] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_import] = ACTIONS(1678), - [anon_sym_cimport] = ACTIONS(1678), - [anon_sym_from] = ACTIONS(1678), - [anon_sym_LPAREN] = ACTIONS(1680), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1678), - [anon_sym_assert] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_del] = ACTIONS(1678), - [anon_sym_raise] = ACTIONS(1678), - [anon_sym_pass] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(1678), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_match] = ACTIONS(1678), - [anon_sym_async] = ACTIONS(1678), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1678), - [anon_sym_try] = ACTIONS(1678), - [anon_sym_with] = ACTIONS(1678), - [anon_sym_def] = ACTIONS(1678), - [anon_sym_global] = ACTIONS(1678), - [anon_sym_nonlocal] = ACTIONS(1678), - [anon_sym_exec] = ACTIONS(1678), - [anon_sym_type] = ACTIONS(1678), - [anon_sym_class] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_AT] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_LBRACE] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_not] = ACTIONS(1678), - [anon_sym_AMP] = ACTIONS(1680), - [anon_sym_TILDE] = ACTIONS(1680), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_lambda] = ACTIONS(1678), - [anon_sym_yield] = ACTIONS(1678), - [sym_ellipsis] = ACTIONS(1680), - [anon_sym_None] = ACTIONS(1678), - [sym_integer] = ACTIONS(1678), - [sym_float] = ACTIONS(1680), - [anon_sym_await] = ACTIONS(1678), - [anon_sym_api] = ACTIONS(1678), - [sym_true] = ACTIONS(1678), - [sym_false] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_import] = ACTIONS(1689), + [anon_sym_cimport] = ACTIONS(1689), + [anon_sym_from] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1691), + [anon_sym_print] = ACTIONS(1689), + [anon_sym_assert] = ACTIONS(1689), + [anon_sym_return] = ACTIONS(1689), + [anon_sym_del] = ACTIONS(1689), + [anon_sym_raise] = ACTIONS(1689), + [anon_sym_pass] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1689), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_match] = ACTIONS(1689), + [anon_sym_async] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1689), + [anon_sym_try] = ACTIONS(1689), + [anon_sym_with] = ACTIONS(1689), + [anon_sym_def] = ACTIONS(1689), + [anon_sym_global] = ACTIONS(1689), + [anon_sym_nonlocal] = ACTIONS(1689), + [anon_sym_exec] = ACTIONS(1689), + [anon_sym_type] = ACTIONS(1689), + [anon_sym_class] = ACTIONS(1689), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_AT] = ACTIONS(1691), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1691), + [anon_sym_not] = ACTIONS(1689), + [anon_sym_AMP] = ACTIONS(1691), + [anon_sym_TILDE] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_lambda] = ACTIONS(1689), + [anon_sym_yield] = ACTIONS(1689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1691), + [anon_sym_None] = ACTIONS(1689), + [sym_integer] = ACTIONS(1689), + [sym_float] = ACTIONS(1691), + [anon_sym_await] = ACTIONS(1689), + [anon_sym_api] = ACTIONS(1689), + [sym_true] = ACTIONS(1689), + [sym_false] = ACTIONS(1689), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1678), - [anon_sym_include] = ACTIONS(1678), - [anon_sym_DEF] = ACTIONS(1678), - [anon_sym_cdef] = ACTIONS(1678), - [anon_sym_cpdef] = ACTIONS(1678), - [anon_sym_int] = ACTIONS(1678), - [anon_sym_double] = ACTIONS(1678), - [anon_sym_complex] = ACTIONS(1678), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_signed] = ACTIONS(1678), - [anon_sym_unsigned] = ACTIONS(1678), - [anon_sym_char] = ACTIONS(1678), - [anon_sym_short] = ACTIONS(1678), - [anon_sym_long] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1678), - [anon_sym_volatile] = ACTIONS(1678), - [anon_sym_ctypedef] = ACTIONS(1678), - [anon_sym_struct] = ACTIONS(1678), - [anon_sym_union] = ACTIONS(1678), - [anon_sym_enum] = ACTIONS(1678), - [anon_sym_cppclass] = ACTIONS(1678), - [anon_sym_fused] = ACTIONS(1678), - [anon_sym_public] = ACTIONS(1678), - [anon_sym_packed] = ACTIONS(1678), - [anon_sym_inline] = ACTIONS(1678), - [anon_sym_readonly] = ACTIONS(1678), - [anon_sym_sizeof] = ACTIONS(1678), - [sym__dedent] = ACTIONS(1680), - [sym_string_start] = ACTIONS(1680), + [anon_sym_property] = ACTIONS(1689), + [anon_sym_include] = ACTIONS(1689), + [anon_sym_DEF] = ACTIONS(1689), + [anon_sym_cdef] = ACTIONS(1689), + [anon_sym_cpdef] = ACTIONS(1689), + [anon_sym_int] = ACTIONS(1689), + [anon_sym_double] = ACTIONS(1689), + [anon_sym_complex] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1689), + [anon_sym_signed] = ACTIONS(1689), + [anon_sym_unsigned] = ACTIONS(1689), + [anon_sym_char] = ACTIONS(1689), + [anon_sym_short] = ACTIONS(1689), + [anon_sym_long] = ACTIONS(1689), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_volatile] = ACTIONS(1689), + [anon_sym_ctypedef] = ACTIONS(1689), + [anon_sym_struct] = ACTIONS(1689), + [anon_sym_union] = ACTIONS(1689), + [anon_sym_enum] = ACTIONS(1689), + [anon_sym_cppclass] = ACTIONS(1689), + [anon_sym_fused] = ACTIONS(1689), + [anon_sym_public] = ACTIONS(1689), + [anon_sym_packed] = ACTIONS(1689), + [anon_sym_inline] = ACTIONS(1689), + [anon_sym_readonly] = ACTIONS(1689), + [anon_sym_sizeof] = ACTIONS(1689), + [sym__dedent] = ACTIONS(1691), + [sym_string_start] = ACTIONS(1691), }, [515] = { - [sym_identifier] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_import] = ACTIONS(1682), - [anon_sym_cimport] = ACTIONS(1682), - [anon_sym_from] = ACTIONS(1682), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1682), - [anon_sym_assert] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_del] = ACTIONS(1682), - [anon_sym_raise] = ACTIONS(1682), - [anon_sym_pass] = ACTIONS(1682), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_match] = ACTIONS(1682), - [anon_sym_async] = ACTIONS(1682), - [anon_sym_for] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1682), - [anon_sym_try] = ACTIONS(1682), - [anon_sym_with] = ACTIONS(1682), - [anon_sym_def] = ACTIONS(1682), - [anon_sym_global] = ACTIONS(1682), - [anon_sym_nonlocal] = ACTIONS(1682), - [anon_sym_exec] = ACTIONS(1682), - [anon_sym_type] = ACTIONS(1682), - [anon_sym_class] = ACTIONS(1682), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_AT] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_not] = ACTIONS(1682), - [anon_sym_AMP] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1684), - [anon_sym_LT] = ACTIONS(1684), - [anon_sym_lambda] = ACTIONS(1682), - [anon_sym_yield] = ACTIONS(1682), - [sym_ellipsis] = ACTIONS(1684), - [anon_sym_None] = ACTIONS(1682), - [sym_integer] = ACTIONS(1682), - [sym_float] = ACTIONS(1684), - [anon_sym_await] = ACTIONS(1682), - [anon_sym_api] = ACTIONS(1682), - [sym_true] = ACTIONS(1682), - [sym_false] = ACTIONS(1682), + [sym_identifier] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_import] = ACTIONS(1693), + [anon_sym_cimport] = ACTIONS(1693), + [anon_sym_from] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_STAR] = ACTIONS(1695), + [anon_sym_print] = ACTIONS(1693), + [anon_sym_assert] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_del] = ACTIONS(1693), + [anon_sym_raise] = ACTIONS(1693), + [anon_sym_pass] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_async] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_try] = ACTIONS(1693), + [anon_sym_with] = ACTIONS(1693), + [anon_sym_def] = ACTIONS(1693), + [anon_sym_global] = ACTIONS(1693), + [anon_sym_nonlocal] = ACTIONS(1693), + [anon_sym_exec] = ACTIONS(1693), + [anon_sym_type] = ACTIONS(1693), + [anon_sym_class] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_AT] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_not] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1695), + [anon_sym_TILDE] = ACTIONS(1695), + [anon_sym_LT] = ACTIONS(1695), + [anon_sym_lambda] = ACTIONS(1693), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1695), + [anon_sym_None] = ACTIONS(1693), + [sym_integer] = ACTIONS(1693), + [sym_float] = ACTIONS(1695), + [anon_sym_await] = ACTIONS(1693), + [anon_sym_api] = ACTIONS(1693), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1682), - [anon_sym_include] = ACTIONS(1682), - [anon_sym_DEF] = ACTIONS(1682), - [anon_sym_cdef] = ACTIONS(1682), - [anon_sym_cpdef] = ACTIONS(1682), - [anon_sym_int] = ACTIONS(1682), - [anon_sym_double] = ACTIONS(1682), - [anon_sym_complex] = ACTIONS(1682), - [anon_sym_new] = ACTIONS(1682), - [anon_sym_signed] = ACTIONS(1682), - [anon_sym_unsigned] = ACTIONS(1682), - [anon_sym_char] = ACTIONS(1682), - [anon_sym_short] = ACTIONS(1682), - [anon_sym_long] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1682), - [anon_sym_volatile] = ACTIONS(1682), - [anon_sym_ctypedef] = ACTIONS(1682), - [anon_sym_struct] = ACTIONS(1682), - [anon_sym_union] = ACTIONS(1682), - [anon_sym_enum] = ACTIONS(1682), - [anon_sym_cppclass] = ACTIONS(1682), - [anon_sym_fused] = ACTIONS(1682), - [anon_sym_public] = ACTIONS(1682), - [anon_sym_packed] = ACTIONS(1682), - [anon_sym_inline] = ACTIONS(1682), - [anon_sym_readonly] = ACTIONS(1682), - [anon_sym_sizeof] = ACTIONS(1682), - [sym__dedent] = ACTIONS(1684), - [sym_string_start] = ACTIONS(1684), + [anon_sym_property] = ACTIONS(1693), + [anon_sym_include] = ACTIONS(1693), + [anon_sym_DEF] = ACTIONS(1693), + [anon_sym_cdef] = ACTIONS(1693), + [anon_sym_cpdef] = ACTIONS(1693), + [anon_sym_int] = ACTIONS(1693), + [anon_sym_double] = ACTIONS(1693), + [anon_sym_complex] = ACTIONS(1693), + [anon_sym_new] = ACTIONS(1693), + [anon_sym_signed] = ACTIONS(1693), + [anon_sym_unsigned] = ACTIONS(1693), + [anon_sym_char] = ACTIONS(1693), + [anon_sym_short] = ACTIONS(1693), + [anon_sym_long] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [anon_sym_volatile] = ACTIONS(1693), + [anon_sym_ctypedef] = ACTIONS(1693), + [anon_sym_struct] = ACTIONS(1693), + [anon_sym_union] = ACTIONS(1693), + [anon_sym_enum] = ACTIONS(1693), + [anon_sym_cppclass] = ACTIONS(1693), + [anon_sym_fused] = ACTIONS(1693), + [anon_sym_public] = ACTIONS(1693), + [anon_sym_packed] = ACTIONS(1693), + [anon_sym_inline] = ACTIONS(1693), + [anon_sym_readonly] = ACTIONS(1693), + [anon_sym_sizeof] = ACTIONS(1693), + [sym__dedent] = ACTIONS(1695), + [sym_string_start] = ACTIONS(1695), }, [516] = { - [sym_identifier] = ACTIONS(1686), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_import] = ACTIONS(1686), - [anon_sym_cimport] = ACTIONS(1686), - [anon_sym_from] = ACTIONS(1686), - [anon_sym_LPAREN] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(1688), - [anon_sym_print] = ACTIONS(1686), - [anon_sym_assert] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_del] = ACTIONS(1686), - [anon_sym_raise] = ACTIONS(1686), - [anon_sym_pass] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_match] = ACTIONS(1686), - [anon_sym_async] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_try] = ACTIONS(1686), - [anon_sym_with] = ACTIONS(1686), - [anon_sym_def] = ACTIONS(1686), - [anon_sym_global] = ACTIONS(1686), - [anon_sym_nonlocal] = ACTIONS(1686), - [anon_sym_exec] = ACTIONS(1686), - [anon_sym_type] = ACTIONS(1686), - [anon_sym_class] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_DASH] = ACTIONS(1688), - [anon_sym_LBRACE] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1688), - [anon_sym_not] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_TILDE] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_lambda] = ACTIONS(1686), - [anon_sym_yield] = ACTIONS(1686), - [sym_ellipsis] = ACTIONS(1688), - [anon_sym_None] = ACTIONS(1686), - [sym_integer] = ACTIONS(1686), - [sym_float] = ACTIONS(1688), - [anon_sym_await] = ACTIONS(1686), - [anon_sym_api] = ACTIONS(1686), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), + [sym_identifier] = ACTIONS(1697), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_import] = ACTIONS(1697), + [anon_sym_cimport] = ACTIONS(1697), + [anon_sym_from] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_STAR] = ACTIONS(1699), + [anon_sym_print] = ACTIONS(1697), + [anon_sym_assert] = ACTIONS(1697), + [anon_sym_return] = ACTIONS(1697), + [anon_sym_del] = ACTIONS(1697), + [anon_sym_raise] = ACTIONS(1697), + [anon_sym_pass] = ACTIONS(1697), + [anon_sym_break] = ACTIONS(1697), + [anon_sym_continue] = ACTIONS(1697), + [anon_sym_if] = ACTIONS(1697), + [anon_sym_match] = ACTIONS(1697), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_for] = ACTIONS(1697), + [anon_sym_while] = ACTIONS(1697), + [anon_sym_try] = ACTIONS(1697), + [anon_sym_with] = ACTIONS(1697), + [anon_sym_def] = ACTIONS(1697), + [anon_sym_global] = ACTIONS(1697), + [anon_sym_nonlocal] = ACTIONS(1697), + [anon_sym_exec] = ACTIONS(1697), + [anon_sym_type] = ACTIONS(1697), + [anon_sym_class] = ACTIONS(1697), + [anon_sym_LBRACK] = ACTIONS(1699), + [anon_sym_AT] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_not] = ACTIONS(1697), + [anon_sym_AMP] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1699), + [anon_sym_LT] = ACTIONS(1699), + [anon_sym_lambda] = ACTIONS(1697), + [anon_sym_yield] = ACTIONS(1697), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1699), + [anon_sym_None] = ACTIONS(1697), + [sym_integer] = ACTIONS(1697), + [sym_float] = ACTIONS(1699), + [anon_sym_await] = ACTIONS(1697), + [anon_sym_api] = ACTIONS(1697), + [sym_true] = ACTIONS(1697), + [sym_false] = ACTIONS(1697), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1686), - [anon_sym_include] = ACTIONS(1686), - [anon_sym_DEF] = ACTIONS(1686), - [anon_sym_cdef] = ACTIONS(1686), - [anon_sym_cpdef] = ACTIONS(1686), - [anon_sym_int] = ACTIONS(1686), - [anon_sym_double] = ACTIONS(1686), - [anon_sym_complex] = ACTIONS(1686), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_signed] = ACTIONS(1686), - [anon_sym_unsigned] = ACTIONS(1686), - [anon_sym_char] = ACTIONS(1686), - [anon_sym_short] = ACTIONS(1686), - [anon_sym_long] = ACTIONS(1686), - [anon_sym_const] = ACTIONS(1686), - [anon_sym_volatile] = ACTIONS(1686), - [anon_sym_ctypedef] = ACTIONS(1686), - [anon_sym_struct] = ACTIONS(1686), - [anon_sym_union] = ACTIONS(1686), - [anon_sym_enum] = ACTIONS(1686), - [anon_sym_cppclass] = ACTIONS(1686), - [anon_sym_fused] = ACTIONS(1686), - [anon_sym_public] = ACTIONS(1686), - [anon_sym_packed] = ACTIONS(1686), - [anon_sym_inline] = ACTIONS(1686), - [anon_sym_readonly] = ACTIONS(1686), - [anon_sym_sizeof] = ACTIONS(1686), - [sym__dedent] = ACTIONS(1688), - [sym_string_start] = ACTIONS(1688), + [anon_sym_property] = ACTIONS(1697), + [anon_sym_include] = ACTIONS(1697), + [anon_sym_DEF] = ACTIONS(1697), + [anon_sym_cdef] = ACTIONS(1697), + [anon_sym_cpdef] = ACTIONS(1697), + [anon_sym_int] = ACTIONS(1697), + [anon_sym_double] = ACTIONS(1697), + [anon_sym_complex] = ACTIONS(1697), + [anon_sym_new] = ACTIONS(1697), + [anon_sym_signed] = ACTIONS(1697), + [anon_sym_unsigned] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_short] = ACTIONS(1697), + [anon_sym_long] = ACTIONS(1697), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_volatile] = ACTIONS(1697), + [anon_sym_ctypedef] = ACTIONS(1697), + [anon_sym_struct] = ACTIONS(1697), + [anon_sym_union] = ACTIONS(1697), + [anon_sym_enum] = ACTIONS(1697), + [anon_sym_cppclass] = ACTIONS(1697), + [anon_sym_fused] = ACTIONS(1697), + [anon_sym_public] = ACTIONS(1697), + [anon_sym_packed] = ACTIONS(1697), + [anon_sym_inline] = ACTIONS(1697), + [anon_sym_readonly] = ACTIONS(1697), + [anon_sym_sizeof] = ACTIONS(1697), + [sym__dedent] = ACTIONS(1699), + [sym_string_start] = ACTIONS(1699), }, [517] = { - [sym_identifier] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1692), - [anon_sym_import] = ACTIONS(1690), - [anon_sym_cimport] = ACTIONS(1690), - [anon_sym_from] = ACTIONS(1690), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1690), - [anon_sym_assert] = ACTIONS(1690), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_del] = ACTIONS(1690), - [anon_sym_raise] = ACTIONS(1690), - [anon_sym_pass] = ACTIONS(1690), - [anon_sym_break] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(1690), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_match] = ACTIONS(1690), - [anon_sym_async] = ACTIONS(1690), - [anon_sym_for] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1690), - [anon_sym_try] = ACTIONS(1690), - [anon_sym_with] = ACTIONS(1690), - [anon_sym_def] = ACTIONS(1690), - [anon_sym_global] = ACTIONS(1690), - [anon_sym_nonlocal] = ACTIONS(1690), - [anon_sym_exec] = ACTIONS(1690), - [anon_sym_type] = ACTIONS(1690), - [anon_sym_class] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_AT] = ACTIONS(1692), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_not] = ACTIONS(1690), - [anon_sym_AMP] = ACTIONS(1692), - [anon_sym_TILDE] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_lambda] = ACTIONS(1690), - [anon_sym_yield] = ACTIONS(1690), - [sym_ellipsis] = ACTIONS(1692), - [anon_sym_None] = ACTIONS(1690), - [sym_integer] = ACTIONS(1690), - [sym_float] = ACTIONS(1692), - [anon_sym_await] = ACTIONS(1690), - [anon_sym_api] = ACTIONS(1690), - [sym_true] = ACTIONS(1690), - [sym_false] = ACTIONS(1690), + [sym_list_splat_pattern] = STATE(2212), + [sym_primary_expression] = STATE(2059), + [sym_binary_operator] = STATE(2175), + [sym_unary_operator] = STATE(2175), + [sym_attribute] = STATE(2175), + [sym_subscript] = STATE(2175), + [sym_ellipsis] = STATE(2175), + [sym_call] = STATE(2175), + [sym_list] = STATE(2175), + [sym_set] = STATE(2175), + [sym_tuple] = STATE(2175), + [sym_dictionary] = STATE(2175), + [sym_list_comprehension] = STATE(2175), + [sym_dictionary_comprehension] = STATE(2175), + [sym_set_comprehension] = STATE(2175), + [sym_generator_expression] = STATE(2175), + [sym_parenthesized_expression] = STATE(2175), + [sym_concatenated_string] = STATE(2175), + [sym_string] = STATE(1976), + [sym_none] = STATE(2175), + [sym_await] = STATE(2175), + [sym_sizeof_expression] = STATE(2175), + [sym_cast_expression] = STATE(2175), + [sym_identifier] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(1705), + [anon_sym_print] = ACTIONS(1707), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_match] = ACTIONS(1707), + [anon_sym_async] = ACTIONS(1707), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_exec] = ACTIONS(1707), + [anon_sym_EQ] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_SLASH_SLASH] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(1711), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(1715), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1717), + [anon_sym_None] = ACTIONS(1719), + [sym_type_conversion] = ACTIONS(563), + [sym_integer] = ACTIONS(1701), + [sym_float] = ACTIONS(1721), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_api] = ACTIONS(1707), + [sym_true] = ACTIONS(1701), + [sym_false] = ACTIONS(1701), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1690), - [anon_sym_include] = ACTIONS(1690), - [anon_sym_DEF] = ACTIONS(1690), - [anon_sym_cdef] = ACTIONS(1690), - [anon_sym_cpdef] = ACTIONS(1690), - [anon_sym_int] = ACTIONS(1690), - [anon_sym_double] = ACTIONS(1690), - [anon_sym_complex] = ACTIONS(1690), - [anon_sym_new] = ACTIONS(1690), - [anon_sym_signed] = ACTIONS(1690), - [anon_sym_unsigned] = ACTIONS(1690), - [anon_sym_char] = ACTIONS(1690), - [anon_sym_short] = ACTIONS(1690), - [anon_sym_long] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1690), - [anon_sym_volatile] = ACTIONS(1690), - [anon_sym_ctypedef] = ACTIONS(1690), - [anon_sym_struct] = ACTIONS(1690), - [anon_sym_union] = ACTIONS(1690), - [anon_sym_enum] = ACTIONS(1690), - [anon_sym_cppclass] = ACTIONS(1690), - [anon_sym_fused] = ACTIONS(1690), - [anon_sym_public] = ACTIONS(1690), - [anon_sym_packed] = ACTIONS(1690), - [anon_sym_inline] = ACTIONS(1690), - [anon_sym_readonly] = ACTIONS(1690), - [anon_sym_sizeof] = ACTIONS(1690), - [sym__dedent] = ACTIONS(1692), - [sym_string_start] = ACTIONS(1692), + [anon_sym_sizeof] = ACTIONS(1725), + [sym_string_start] = ACTIONS(1727), }, [518] = { - [sym_identifier] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_import] = ACTIONS(1694), - [anon_sym_cimport] = ACTIONS(1694), - [anon_sym_from] = ACTIONS(1694), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_print] = ACTIONS(1694), - [anon_sym_assert] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_del] = ACTIONS(1694), - [anon_sym_raise] = ACTIONS(1694), - [anon_sym_pass] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_match] = ACTIONS(1694), - [anon_sym_async] = ACTIONS(1694), - [anon_sym_for] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_with] = ACTIONS(1694), - [anon_sym_def] = ACTIONS(1694), - [anon_sym_global] = ACTIONS(1694), - [anon_sym_nonlocal] = ACTIONS(1694), - [anon_sym_exec] = ACTIONS(1694), - [anon_sym_type] = ACTIONS(1694), - [anon_sym_class] = ACTIONS(1694), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_not] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_lambda] = ACTIONS(1694), - [anon_sym_yield] = ACTIONS(1694), - [sym_ellipsis] = ACTIONS(1696), - [anon_sym_None] = ACTIONS(1694), - [sym_integer] = ACTIONS(1694), - [sym_float] = ACTIONS(1696), - [anon_sym_await] = ACTIONS(1694), - [anon_sym_api] = ACTIONS(1694), - [sym_true] = ACTIONS(1694), - [sym_false] = ACTIONS(1694), + [sym_identifier] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(1729), + [anon_sym_cimport] = ACTIONS(1729), + [anon_sym_from] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_STAR] = ACTIONS(1731), + [anon_sym_print] = ACTIONS(1729), + [anon_sym_assert] = ACTIONS(1729), + [anon_sym_return] = ACTIONS(1729), + [anon_sym_del] = ACTIONS(1729), + [anon_sym_raise] = ACTIONS(1729), + [anon_sym_pass] = ACTIONS(1729), + [anon_sym_break] = ACTIONS(1729), + [anon_sym_continue] = ACTIONS(1729), + [anon_sym_if] = ACTIONS(1729), + [anon_sym_match] = ACTIONS(1729), + [anon_sym_async] = ACTIONS(1729), + [anon_sym_for] = ACTIONS(1729), + [anon_sym_while] = ACTIONS(1729), + [anon_sym_try] = ACTIONS(1729), + [anon_sym_with] = ACTIONS(1729), + [anon_sym_def] = ACTIONS(1729), + [anon_sym_global] = ACTIONS(1729), + [anon_sym_nonlocal] = ACTIONS(1729), + [anon_sym_exec] = ACTIONS(1729), + [anon_sym_type] = ACTIONS(1729), + [anon_sym_class] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_AT] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_LBRACE] = ACTIONS(1731), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_not] = ACTIONS(1729), + [anon_sym_AMP] = ACTIONS(1731), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_LT] = ACTIONS(1731), + [anon_sym_lambda] = ACTIONS(1729), + [anon_sym_yield] = ACTIONS(1729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1731), + [anon_sym_None] = ACTIONS(1729), + [sym_integer] = ACTIONS(1729), + [sym_float] = ACTIONS(1731), + [anon_sym_await] = ACTIONS(1729), + [anon_sym_api] = ACTIONS(1729), + [sym_true] = ACTIONS(1729), + [sym_false] = ACTIONS(1729), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1694), - [anon_sym_include] = ACTIONS(1694), - [anon_sym_DEF] = ACTIONS(1694), - [anon_sym_cdef] = ACTIONS(1694), - [anon_sym_cpdef] = ACTIONS(1694), - [anon_sym_int] = ACTIONS(1694), - [anon_sym_double] = ACTIONS(1694), - [anon_sym_complex] = ACTIONS(1694), - [anon_sym_new] = ACTIONS(1694), - [anon_sym_signed] = ACTIONS(1694), - [anon_sym_unsigned] = ACTIONS(1694), - [anon_sym_char] = ACTIONS(1694), - [anon_sym_short] = ACTIONS(1694), - [anon_sym_long] = ACTIONS(1694), - [anon_sym_const] = ACTIONS(1694), - [anon_sym_volatile] = ACTIONS(1694), - [anon_sym_ctypedef] = ACTIONS(1694), - [anon_sym_struct] = ACTIONS(1694), - [anon_sym_union] = ACTIONS(1694), - [anon_sym_enum] = ACTIONS(1694), - [anon_sym_cppclass] = ACTIONS(1694), - [anon_sym_fused] = ACTIONS(1694), - [anon_sym_public] = ACTIONS(1694), - [anon_sym_packed] = ACTIONS(1694), - [anon_sym_inline] = ACTIONS(1694), - [anon_sym_readonly] = ACTIONS(1694), - [anon_sym_sizeof] = ACTIONS(1694), - [sym__dedent] = ACTIONS(1696), - [sym_string_start] = ACTIONS(1696), + [anon_sym_property] = ACTIONS(1729), + [anon_sym_include] = ACTIONS(1729), + [anon_sym_DEF] = ACTIONS(1729), + [anon_sym_cdef] = ACTIONS(1729), + [anon_sym_cpdef] = ACTIONS(1729), + [anon_sym_int] = ACTIONS(1729), + [anon_sym_double] = ACTIONS(1729), + [anon_sym_complex] = ACTIONS(1729), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_signed] = ACTIONS(1729), + [anon_sym_unsigned] = ACTIONS(1729), + [anon_sym_char] = ACTIONS(1729), + [anon_sym_short] = ACTIONS(1729), + [anon_sym_long] = ACTIONS(1729), + [anon_sym_const] = ACTIONS(1729), + [anon_sym_volatile] = ACTIONS(1729), + [anon_sym_ctypedef] = ACTIONS(1729), + [anon_sym_struct] = ACTIONS(1729), + [anon_sym_union] = ACTIONS(1729), + [anon_sym_enum] = ACTIONS(1729), + [anon_sym_cppclass] = ACTIONS(1729), + [anon_sym_fused] = ACTIONS(1729), + [anon_sym_public] = ACTIONS(1729), + [anon_sym_packed] = ACTIONS(1729), + [anon_sym_inline] = ACTIONS(1729), + [anon_sym_readonly] = ACTIONS(1729), + [anon_sym_sizeof] = ACTIONS(1729), + [sym__dedent] = ACTIONS(1731), + [sym_string_start] = ACTIONS(1731), }, [519] = { - [sym_identifier] = ACTIONS(1698), - [anon_sym_SEMI] = ACTIONS(1700), - [anon_sym_import] = ACTIONS(1698), - [anon_sym_cimport] = ACTIONS(1698), - [anon_sym_from] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_STAR] = ACTIONS(1700), - [anon_sym_print] = ACTIONS(1698), - [anon_sym_assert] = ACTIONS(1698), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_del] = ACTIONS(1698), - [anon_sym_raise] = ACTIONS(1698), - [anon_sym_pass] = ACTIONS(1698), - [anon_sym_break] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(1698), - [anon_sym_if] = ACTIONS(1698), - [anon_sym_match] = ACTIONS(1698), - [anon_sym_async] = ACTIONS(1698), - [anon_sym_for] = ACTIONS(1698), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_try] = ACTIONS(1698), - [anon_sym_with] = ACTIONS(1698), - [anon_sym_def] = ACTIONS(1698), - [anon_sym_global] = ACTIONS(1698), - [anon_sym_nonlocal] = ACTIONS(1698), - [anon_sym_exec] = ACTIONS(1698), - [anon_sym_type] = ACTIONS(1698), - [anon_sym_class] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_AT] = ACTIONS(1700), - [anon_sym_DASH] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1700), - [anon_sym_not] = ACTIONS(1698), - [anon_sym_AMP] = ACTIONS(1700), - [anon_sym_TILDE] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_lambda] = ACTIONS(1698), - [anon_sym_yield] = ACTIONS(1698), - [sym_ellipsis] = ACTIONS(1700), - [anon_sym_None] = ACTIONS(1698), - [sym_integer] = ACTIONS(1698), - [sym_float] = ACTIONS(1700), - [anon_sym_await] = ACTIONS(1698), - [anon_sym_api] = ACTIONS(1698), - [sym_true] = ACTIONS(1698), - [sym_false] = ACTIONS(1698), + [sym_identifier] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_import] = ACTIONS(1733), + [anon_sym_cimport] = ACTIONS(1733), + [anon_sym_from] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_STAR] = ACTIONS(1735), + [anon_sym_print] = ACTIONS(1733), + [anon_sym_assert] = ACTIONS(1733), + [anon_sym_return] = ACTIONS(1733), + [anon_sym_del] = ACTIONS(1733), + [anon_sym_raise] = ACTIONS(1733), + [anon_sym_pass] = ACTIONS(1733), + [anon_sym_break] = ACTIONS(1733), + [anon_sym_continue] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1733), + [anon_sym_match] = ACTIONS(1733), + [anon_sym_async] = ACTIONS(1733), + [anon_sym_for] = ACTIONS(1733), + [anon_sym_while] = ACTIONS(1733), + [anon_sym_try] = ACTIONS(1733), + [anon_sym_with] = ACTIONS(1733), + [anon_sym_def] = ACTIONS(1733), + [anon_sym_global] = ACTIONS(1733), + [anon_sym_nonlocal] = ACTIONS(1733), + [anon_sym_exec] = ACTIONS(1733), + [anon_sym_type] = ACTIONS(1733), + [anon_sym_class] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1735), + [anon_sym_AT] = ACTIONS(1735), + [anon_sym_DASH] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1735), + [anon_sym_PLUS] = ACTIONS(1735), + [anon_sym_not] = ACTIONS(1733), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_TILDE] = ACTIONS(1735), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_lambda] = ACTIONS(1733), + [anon_sym_yield] = ACTIONS(1733), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1735), + [anon_sym_None] = ACTIONS(1733), + [sym_integer] = ACTIONS(1733), + [sym_float] = ACTIONS(1735), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_api] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1698), - [anon_sym_include] = ACTIONS(1698), - [anon_sym_DEF] = ACTIONS(1698), - [anon_sym_cdef] = ACTIONS(1698), - [anon_sym_cpdef] = ACTIONS(1698), - [anon_sym_int] = ACTIONS(1698), - [anon_sym_double] = ACTIONS(1698), - [anon_sym_complex] = ACTIONS(1698), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_signed] = ACTIONS(1698), - [anon_sym_unsigned] = ACTIONS(1698), - [anon_sym_char] = ACTIONS(1698), - [anon_sym_short] = ACTIONS(1698), - [anon_sym_long] = ACTIONS(1698), - [anon_sym_const] = ACTIONS(1698), - [anon_sym_volatile] = ACTIONS(1698), - [anon_sym_ctypedef] = ACTIONS(1698), - [anon_sym_struct] = ACTIONS(1698), - [anon_sym_union] = ACTIONS(1698), - [anon_sym_enum] = ACTIONS(1698), - [anon_sym_cppclass] = ACTIONS(1698), - [anon_sym_fused] = ACTIONS(1698), - [anon_sym_public] = ACTIONS(1698), - [anon_sym_packed] = ACTIONS(1698), - [anon_sym_inline] = ACTIONS(1698), - [anon_sym_readonly] = ACTIONS(1698), - [anon_sym_sizeof] = ACTIONS(1698), - [sym__dedent] = ACTIONS(1700), - [sym_string_start] = ACTIONS(1700), + [anon_sym_property] = ACTIONS(1733), + [anon_sym_include] = ACTIONS(1733), + [anon_sym_DEF] = ACTIONS(1733), + [anon_sym_cdef] = ACTIONS(1733), + [anon_sym_cpdef] = ACTIONS(1733), + [anon_sym_int] = ACTIONS(1733), + [anon_sym_double] = ACTIONS(1733), + [anon_sym_complex] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_signed] = ACTIONS(1733), + [anon_sym_unsigned] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_short] = ACTIONS(1733), + [anon_sym_long] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1733), + [anon_sym_volatile] = ACTIONS(1733), + [anon_sym_ctypedef] = ACTIONS(1733), + [anon_sym_struct] = ACTIONS(1733), + [anon_sym_union] = ACTIONS(1733), + [anon_sym_enum] = ACTIONS(1733), + [anon_sym_cppclass] = ACTIONS(1733), + [anon_sym_fused] = ACTIONS(1733), + [anon_sym_public] = ACTIONS(1733), + [anon_sym_packed] = ACTIONS(1733), + [anon_sym_inline] = ACTIONS(1733), + [anon_sym_readonly] = ACTIONS(1733), + [anon_sym_sizeof] = ACTIONS(1733), + [sym__dedent] = ACTIONS(1735), + [sym_string_start] = ACTIONS(1735), }, [520] = { - [sym_identifier] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1704), - [anon_sym_import] = ACTIONS(1702), - [anon_sym_cimport] = ACTIONS(1702), - [anon_sym_from] = ACTIONS(1702), - [anon_sym_LPAREN] = ACTIONS(1704), - [anon_sym_STAR] = ACTIONS(1704), - [anon_sym_print] = ACTIONS(1702), - [anon_sym_assert] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_del] = ACTIONS(1702), - [anon_sym_raise] = ACTIONS(1702), - [anon_sym_pass] = ACTIONS(1702), - [anon_sym_break] = ACTIONS(1702), - [anon_sym_continue] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_match] = ACTIONS(1702), - [anon_sym_async] = ACTIONS(1702), - [anon_sym_for] = ACTIONS(1702), - [anon_sym_while] = ACTIONS(1702), - [anon_sym_try] = ACTIONS(1702), - [anon_sym_with] = ACTIONS(1702), - [anon_sym_def] = ACTIONS(1702), - [anon_sym_global] = ACTIONS(1702), - [anon_sym_nonlocal] = ACTIONS(1702), - [anon_sym_exec] = ACTIONS(1702), - [anon_sym_type] = ACTIONS(1702), - [anon_sym_class] = ACTIONS(1702), - [anon_sym_LBRACK] = ACTIONS(1704), - [anon_sym_AT] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(1704), - [anon_sym_PLUS] = ACTIONS(1704), - [anon_sym_not] = ACTIONS(1702), - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_lambda] = ACTIONS(1702), - [anon_sym_yield] = ACTIONS(1702), - [sym_ellipsis] = ACTIONS(1704), - [anon_sym_None] = ACTIONS(1702), - [sym_integer] = ACTIONS(1702), - [sym_float] = ACTIONS(1704), - [anon_sym_await] = ACTIONS(1702), - [anon_sym_api] = ACTIONS(1702), - [sym_true] = ACTIONS(1702), - [sym_false] = ACTIONS(1702), + [sym_identifier] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1739), + [anon_sym_import] = ACTIONS(1737), + [anon_sym_cimport] = ACTIONS(1737), + [anon_sym_from] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_STAR] = ACTIONS(1739), + [anon_sym_print] = ACTIONS(1737), + [anon_sym_assert] = ACTIONS(1737), + [anon_sym_return] = ACTIONS(1737), + [anon_sym_del] = ACTIONS(1737), + [anon_sym_raise] = ACTIONS(1737), + [anon_sym_pass] = ACTIONS(1737), + [anon_sym_break] = ACTIONS(1737), + [anon_sym_continue] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1737), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_for] = ACTIONS(1737), + [anon_sym_while] = ACTIONS(1737), + [anon_sym_try] = ACTIONS(1737), + [anon_sym_with] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1737), + [anon_sym_global] = ACTIONS(1737), + [anon_sym_nonlocal] = ACTIONS(1737), + [anon_sym_exec] = ACTIONS(1737), + [anon_sym_type] = ACTIONS(1737), + [anon_sym_class] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1739), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_not] = ACTIONS(1737), + [anon_sym_AMP] = ACTIONS(1739), + [anon_sym_TILDE] = ACTIONS(1739), + [anon_sym_LT] = ACTIONS(1739), + [anon_sym_lambda] = ACTIONS(1737), + [anon_sym_yield] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1739), + [anon_sym_None] = ACTIONS(1737), + [sym_integer] = ACTIONS(1737), + [sym_float] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1737), + [anon_sym_api] = ACTIONS(1737), + [sym_true] = ACTIONS(1737), + [sym_false] = ACTIONS(1737), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1702), - [anon_sym_include] = ACTIONS(1702), - [anon_sym_DEF] = ACTIONS(1702), - [anon_sym_cdef] = ACTIONS(1702), - [anon_sym_cpdef] = ACTIONS(1702), - [anon_sym_int] = ACTIONS(1702), - [anon_sym_double] = ACTIONS(1702), - [anon_sym_complex] = ACTIONS(1702), - [anon_sym_new] = ACTIONS(1702), - [anon_sym_signed] = ACTIONS(1702), - [anon_sym_unsigned] = ACTIONS(1702), - [anon_sym_char] = ACTIONS(1702), - [anon_sym_short] = ACTIONS(1702), - [anon_sym_long] = ACTIONS(1702), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_volatile] = ACTIONS(1702), - [anon_sym_ctypedef] = ACTIONS(1702), - [anon_sym_struct] = ACTIONS(1702), - [anon_sym_union] = ACTIONS(1702), - [anon_sym_enum] = ACTIONS(1702), - [anon_sym_cppclass] = ACTIONS(1702), - [anon_sym_fused] = ACTIONS(1702), - [anon_sym_public] = ACTIONS(1702), - [anon_sym_packed] = ACTIONS(1702), - [anon_sym_inline] = ACTIONS(1702), - [anon_sym_readonly] = ACTIONS(1702), - [anon_sym_sizeof] = ACTIONS(1702), - [sym__dedent] = ACTIONS(1704), - [sym_string_start] = ACTIONS(1704), + [anon_sym_property] = ACTIONS(1737), + [anon_sym_include] = ACTIONS(1737), + [anon_sym_DEF] = ACTIONS(1737), + [anon_sym_cdef] = ACTIONS(1737), + [anon_sym_cpdef] = ACTIONS(1737), + [anon_sym_int] = ACTIONS(1737), + [anon_sym_double] = ACTIONS(1737), + [anon_sym_complex] = ACTIONS(1737), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_signed] = ACTIONS(1737), + [anon_sym_unsigned] = ACTIONS(1737), + [anon_sym_char] = ACTIONS(1737), + [anon_sym_short] = ACTIONS(1737), + [anon_sym_long] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1737), + [anon_sym_volatile] = ACTIONS(1737), + [anon_sym_ctypedef] = ACTIONS(1737), + [anon_sym_struct] = ACTIONS(1737), + [anon_sym_union] = ACTIONS(1737), + [anon_sym_enum] = ACTIONS(1737), + [anon_sym_cppclass] = ACTIONS(1737), + [anon_sym_fused] = ACTIONS(1737), + [anon_sym_public] = ACTIONS(1737), + [anon_sym_packed] = ACTIONS(1737), + [anon_sym_inline] = ACTIONS(1737), + [anon_sym_readonly] = ACTIONS(1737), + [anon_sym_sizeof] = ACTIONS(1737), + [sym__dedent] = ACTIONS(1739), + [sym_string_start] = ACTIONS(1739), }, [521] = { - [sym_identifier] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1708), - [anon_sym_import] = ACTIONS(1706), - [anon_sym_cimport] = ACTIONS(1706), - [anon_sym_from] = ACTIONS(1706), - [anon_sym_LPAREN] = ACTIONS(1708), - [anon_sym_STAR] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1706), - [anon_sym_assert] = ACTIONS(1706), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_del] = ACTIONS(1706), - [anon_sym_raise] = ACTIONS(1706), - [anon_sym_pass] = ACTIONS(1706), - [anon_sym_break] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(1706), - [anon_sym_if] = ACTIONS(1706), - [anon_sym_match] = ACTIONS(1706), - [anon_sym_async] = ACTIONS(1706), - [anon_sym_for] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1706), - [anon_sym_try] = ACTIONS(1706), - [anon_sym_with] = ACTIONS(1706), - [anon_sym_def] = ACTIONS(1706), - [anon_sym_global] = ACTIONS(1706), - [anon_sym_nonlocal] = ACTIONS(1706), - [anon_sym_exec] = ACTIONS(1706), - [anon_sym_type] = ACTIONS(1706), - [anon_sym_class] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1708), - [anon_sym_AT] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_not] = ACTIONS(1706), - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_lambda] = ACTIONS(1706), - [anon_sym_yield] = ACTIONS(1706), - [sym_ellipsis] = ACTIONS(1708), - [anon_sym_None] = ACTIONS(1706), - [sym_integer] = ACTIONS(1706), - [sym_float] = ACTIONS(1708), - [anon_sym_await] = ACTIONS(1706), - [anon_sym_api] = ACTIONS(1706), - [sym_true] = ACTIONS(1706), - [sym_false] = ACTIONS(1706), + [sym_identifier] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1743), + [anon_sym_import] = ACTIONS(1741), + [anon_sym_cimport] = ACTIONS(1741), + [anon_sym_from] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1743), + [anon_sym_print] = ACTIONS(1741), + [anon_sym_assert] = ACTIONS(1741), + [anon_sym_return] = ACTIONS(1741), + [anon_sym_del] = ACTIONS(1741), + [anon_sym_raise] = ACTIONS(1741), + [anon_sym_pass] = ACTIONS(1741), + [anon_sym_break] = ACTIONS(1741), + [anon_sym_continue] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1741), + [anon_sym_match] = ACTIONS(1741), + [anon_sym_async] = ACTIONS(1741), + [anon_sym_for] = ACTIONS(1741), + [anon_sym_while] = ACTIONS(1741), + [anon_sym_try] = ACTIONS(1741), + [anon_sym_with] = ACTIONS(1741), + [anon_sym_def] = ACTIONS(1741), + [anon_sym_global] = ACTIONS(1741), + [anon_sym_nonlocal] = ACTIONS(1741), + [anon_sym_exec] = ACTIONS(1741), + [anon_sym_type] = ACTIONS(1741), + [anon_sym_class] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1743), + [anon_sym_AT] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_not] = ACTIONS(1741), + [anon_sym_AMP] = ACTIONS(1743), + [anon_sym_TILDE] = ACTIONS(1743), + [anon_sym_LT] = ACTIONS(1743), + [anon_sym_lambda] = ACTIONS(1741), + [anon_sym_yield] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), + [anon_sym_None] = ACTIONS(1741), + [sym_integer] = ACTIONS(1741), + [sym_float] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_api] = ACTIONS(1741), + [sym_true] = ACTIONS(1741), + [sym_false] = ACTIONS(1741), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1706), - [anon_sym_include] = ACTIONS(1706), - [anon_sym_DEF] = ACTIONS(1706), - [anon_sym_cdef] = ACTIONS(1706), - [anon_sym_cpdef] = ACTIONS(1706), - [anon_sym_int] = ACTIONS(1706), - [anon_sym_double] = ACTIONS(1706), - [anon_sym_complex] = ACTIONS(1706), - [anon_sym_new] = ACTIONS(1706), - [anon_sym_signed] = ACTIONS(1706), - [anon_sym_unsigned] = ACTIONS(1706), - [anon_sym_char] = ACTIONS(1706), - [anon_sym_short] = ACTIONS(1706), - [anon_sym_long] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1706), - [anon_sym_volatile] = ACTIONS(1706), - [anon_sym_ctypedef] = ACTIONS(1706), - [anon_sym_struct] = ACTIONS(1706), - [anon_sym_union] = ACTIONS(1706), - [anon_sym_enum] = ACTIONS(1706), - [anon_sym_cppclass] = ACTIONS(1706), - [anon_sym_fused] = ACTIONS(1706), - [anon_sym_public] = ACTIONS(1706), - [anon_sym_packed] = ACTIONS(1706), - [anon_sym_inline] = ACTIONS(1706), - [anon_sym_readonly] = ACTIONS(1706), - [anon_sym_sizeof] = ACTIONS(1706), - [sym__dedent] = ACTIONS(1708), - [sym_string_start] = ACTIONS(1708), + [anon_sym_property] = ACTIONS(1741), + [anon_sym_include] = ACTIONS(1741), + [anon_sym_DEF] = ACTIONS(1741), + [anon_sym_cdef] = ACTIONS(1741), + [anon_sym_cpdef] = ACTIONS(1741), + [anon_sym_int] = ACTIONS(1741), + [anon_sym_double] = ACTIONS(1741), + [anon_sym_complex] = ACTIONS(1741), + [anon_sym_new] = ACTIONS(1741), + [anon_sym_signed] = ACTIONS(1741), + [anon_sym_unsigned] = ACTIONS(1741), + [anon_sym_char] = ACTIONS(1741), + [anon_sym_short] = ACTIONS(1741), + [anon_sym_long] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_volatile] = ACTIONS(1741), + [anon_sym_ctypedef] = ACTIONS(1741), + [anon_sym_struct] = ACTIONS(1741), + [anon_sym_union] = ACTIONS(1741), + [anon_sym_enum] = ACTIONS(1741), + [anon_sym_cppclass] = ACTIONS(1741), + [anon_sym_fused] = ACTIONS(1741), + [anon_sym_public] = ACTIONS(1741), + [anon_sym_packed] = ACTIONS(1741), + [anon_sym_inline] = ACTIONS(1741), + [anon_sym_readonly] = ACTIONS(1741), + [anon_sym_sizeof] = ACTIONS(1741), + [sym__dedent] = ACTIONS(1743), + [sym_string_start] = ACTIONS(1743), }, [522] = { - [sym_identifier] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1712), - [anon_sym_import] = ACTIONS(1710), - [anon_sym_cimport] = ACTIONS(1710), - [anon_sym_from] = ACTIONS(1710), - [anon_sym_LPAREN] = ACTIONS(1712), - [anon_sym_STAR] = ACTIONS(1712), - [anon_sym_print] = ACTIONS(1710), - [anon_sym_assert] = ACTIONS(1710), - [anon_sym_return] = ACTIONS(1710), - [anon_sym_del] = ACTIONS(1710), - [anon_sym_raise] = ACTIONS(1710), - [anon_sym_pass] = ACTIONS(1710), - [anon_sym_break] = ACTIONS(1710), - [anon_sym_continue] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_match] = ACTIONS(1710), - [anon_sym_async] = ACTIONS(1710), - [anon_sym_for] = ACTIONS(1710), - [anon_sym_while] = ACTIONS(1710), - [anon_sym_try] = ACTIONS(1710), - [anon_sym_with] = ACTIONS(1710), - [anon_sym_def] = ACTIONS(1710), - [anon_sym_global] = ACTIONS(1710), - [anon_sym_nonlocal] = ACTIONS(1710), - [anon_sym_exec] = ACTIONS(1710), - [anon_sym_type] = ACTIONS(1710), - [anon_sym_class] = ACTIONS(1710), - [anon_sym_LBRACK] = ACTIONS(1712), - [anon_sym_AT] = ACTIONS(1712), - [anon_sym_DASH] = ACTIONS(1712), - [anon_sym_LBRACE] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1712), - [anon_sym_not] = ACTIONS(1710), - [anon_sym_AMP] = ACTIONS(1712), - [anon_sym_TILDE] = ACTIONS(1712), - [anon_sym_LT] = ACTIONS(1712), - [anon_sym_lambda] = ACTIONS(1710), - [anon_sym_yield] = ACTIONS(1710), - [sym_ellipsis] = ACTIONS(1712), - [anon_sym_None] = ACTIONS(1710), - [sym_integer] = ACTIONS(1710), - [sym_float] = ACTIONS(1712), - [anon_sym_await] = ACTIONS(1710), - [anon_sym_api] = ACTIONS(1710), - [sym_true] = ACTIONS(1710), - [sym_false] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1745), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_import] = ACTIONS(1745), + [anon_sym_cimport] = ACTIONS(1745), + [anon_sym_from] = ACTIONS(1745), + [anon_sym_LPAREN] = ACTIONS(1747), + [anon_sym_STAR] = ACTIONS(1747), + [anon_sym_print] = ACTIONS(1745), + [anon_sym_assert] = ACTIONS(1745), + [anon_sym_return] = ACTIONS(1745), + [anon_sym_del] = ACTIONS(1745), + [anon_sym_raise] = ACTIONS(1745), + [anon_sym_pass] = ACTIONS(1745), + [anon_sym_break] = ACTIONS(1745), + [anon_sym_continue] = ACTIONS(1745), + [anon_sym_if] = ACTIONS(1745), + [anon_sym_match] = ACTIONS(1745), + [anon_sym_async] = ACTIONS(1745), + [anon_sym_for] = ACTIONS(1745), + [anon_sym_while] = ACTIONS(1745), + [anon_sym_try] = ACTIONS(1745), + [anon_sym_with] = ACTIONS(1745), + [anon_sym_def] = ACTIONS(1745), + [anon_sym_global] = ACTIONS(1745), + [anon_sym_nonlocal] = ACTIONS(1745), + [anon_sym_exec] = ACTIONS(1745), + [anon_sym_type] = ACTIONS(1745), + [anon_sym_class] = ACTIONS(1745), + [anon_sym_LBRACK] = ACTIONS(1747), + [anon_sym_AT] = ACTIONS(1747), + [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(1747), + [anon_sym_PLUS] = ACTIONS(1747), + [anon_sym_not] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1747), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_lambda] = ACTIONS(1745), + [anon_sym_yield] = ACTIONS(1745), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1747), + [anon_sym_None] = ACTIONS(1745), + [sym_integer] = ACTIONS(1745), + [sym_float] = ACTIONS(1747), + [anon_sym_await] = ACTIONS(1745), + [anon_sym_api] = ACTIONS(1745), + [sym_true] = ACTIONS(1745), + [sym_false] = ACTIONS(1745), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1710), - [anon_sym_include] = ACTIONS(1710), - [anon_sym_DEF] = ACTIONS(1710), - [anon_sym_cdef] = ACTIONS(1710), - [anon_sym_cpdef] = ACTIONS(1710), - [anon_sym_int] = ACTIONS(1710), - [anon_sym_double] = ACTIONS(1710), - [anon_sym_complex] = ACTIONS(1710), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_signed] = ACTIONS(1710), - [anon_sym_unsigned] = ACTIONS(1710), - [anon_sym_char] = ACTIONS(1710), - [anon_sym_short] = ACTIONS(1710), - [anon_sym_long] = ACTIONS(1710), - [anon_sym_const] = ACTIONS(1710), - [anon_sym_volatile] = ACTIONS(1710), - [anon_sym_ctypedef] = ACTIONS(1710), - [anon_sym_struct] = ACTIONS(1710), - [anon_sym_union] = ACTIONS(1710), - [anon_sym_enum] = ACTIONS(1710), - [anon_sym_cppclass] = ACTIONS(1710), - [anon_sym_fused] = ACTIONS(1710), - [anon_sym_public] = ACTIONS(1710), - [anon_sym_packed] = ACTIONS(1710), - [anon_sym_inline] = ACTIONS(1710), - [anon_sym_readonly] = ACTIONS(1710), - [anon_sym_sizeof] = ACTIONS(1710), - [sym__dedent] = ACTIONS(1712), - [sym_string_start] = ACTIONS(1712), + [anon_sym_property] = ACTIONS(1745), + [anon_sym_include] = ACTIONS(1745), + [anon_sym_DEF] = ACTIONS(1745), + [anon_sym_cdef] = ACTIONS(1745), + [anon_sym_cpdef] = ACTIONS(1745), + [anon_sym_int] = ACTIONS(1745), + [anon_sym_double] = ACTIONS(1745), + [anon_sym_complex] = ACTIONS(1745), + [anon_sym_new] = ACTIONS(1745), + [anon_sym_signed] = ACTIONS(1745), + [anon_sym_unsigned] = ACTIONS(1745), + [anon_sym_char] = ACTIONS(1745), + [anon_sym_short] = ACTIONS(1745), + [anon_sym_long] = ACTIONS(1745), + [anon_sym_const] = ACTIONS(1745), + [anon_sym_volatile] = ACTIONS(1745), + [anon_sym_ctypedef] = ACTIONS(1745), + [anon_sym_struct] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_enum] = ACTIONS(1745), + [anon_sym_cppclass] = ACTIONS(1745), + [anon_sym_fused] = ACTIONS(1745), + [anon_sym_public] = ACTIONS(1745), + [anon_sym_packed] = ACTIONS(1745), + [anon_sym_inline] = ACTIONS(1745), + [anon_sym_readonly] = ACTIONS(1745), + [anon_sym_sizeof] = ACTIONS(1745), + [sym__dedent] = ACTIONS(1747), + [sym_string_start] = ACTIONS(1747), }, [523] = { - [sym_identifier] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_import] = ACTIONS(1714), - [anon_sym_cimport] = ACTIONS(1714), - [anon_sym_from] = ACTIONS(1714), - [anon_sym_LPAREN] = ACTIONS(1716), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_print] = ACTIONS(1714), - [anon_sym_assert] = ACTIONS(1714), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_del] = ACTIONS(1714), - [anon_sym_raise] = ACTIONS(1714), - [anon_sym_pass] = ACTIONS(1714), - [anon_sym_break] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(1714), - [anon_sym_if] = ACTIONS(1714), - [anon_sym_match] = ACTIONS(1714), - [anon_sym_async] = ACTIONS(1714), - [anon_sym_for] = ACTIONS(1714), - [anon_sym_while] = ACTIONS(1714), - [anon_sym_try] = ACTIONS(1714), - [anon_sym_with] = ACTIONS(1714), - [anon_sym_def] = ACTIONS(1714), - [anon_sym_global] = ACTIONS(1714), - [anon_sym_nonlocal] = ACTIONS(1714), - [anon_sym_exec] = ACTIONS(1714), - [anon_sym_type] = ACTIONS(1714), - [anon_sym_class] = ACTIONS(1714), - [anon_sym_LBRACK] = ACTIONS(1716), - [anon_sym_AT] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1716), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_not] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(1716), - [anon_sym_lambda] = ACTIONS(1714), - [anon_sym_yield] = ACTIONS(1714), - [sym_ellipsis] = ACTIONS(1716), - [anon_sym_None] = ACTIONS(1714), - [sym_integer] = ACTIONS(1714), - [sym_float] = ACTIONS(1716), - [anon_sym_await] = ACTIONS(1714), - [anon_sym_api] = ACTIONS(1714), - [sym_true] = ACTIONS(1714), - [sym_false] = ACTIONS(1714), + [sym_identifier] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_import] = ACTIONS(1749), + [anon_sym_cimport] = ACTIONS(1749), + [anon_sym_from] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_STAR] = ACTIONS(1751), + [anon_sym_print] = ACTIONS(1749), + [anon_sym_assert] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_del] = ACTIONS(1749), + [anon_sym_raise] = ACTIONS(1749), + [anon_sym_pass] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_async] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_with] = ACTIONS(1749), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_global] = ACTIONS(1749), + [anon_sym_nonlocal] = ACTIONS(1749), + [anon_sym_exec] = ACTIONS(1749), + [anon_sym_type] = ACTIONS(1749), + [anon_sym_class] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_AT] = ACTIONS(1751), + [anon_sym_DASH] = ACTIONS(1751), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_PLUS] = ACTIONS(1751), + [anon_sym_not] = ACTIONS(1749), + [anon_sym_AMP] = ACTIONS(1751), + [anon_sym_TILDE] = ACTIONS(1751), + [anon_sym_LT] = ACTIONS(1751), + [anon_sym_lambda] = ACTIONS(1749), + [anon_sym_yield] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1751), + [anon_sym_None] = ACTIONS(1749), + [sym_integer] = ACTIONS(1749), + [sym_float] = ACTIONS(1751), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_api] = ACTIONS(1749), + [sym_true] = ACTIONS(1749), + [sym_false] = ACTIONS(1749), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1714), - [anon_sym_include] = ACTIONS(1714), - [anon_sym_DEF] = ACTIONS(1714), - [anon_sym_cdef] = ACTIONS(1714), - [anon_sym_cpdef] = ACTIONS(1714), - [anon_sym_int] = ACTIONS(1714), - [anon_sym_double] = ACTIONS(1714), - [anon_sym_complex] = ACTIONS(1714), - [anon_sym_new] = ACTIONS(1714), - [anon_sym_signed] = ACTIONS(1714), - [anon_sym_unsigned] = ACTIONS(1714), - [anon_sym_char] = ACTIONS(1714), - [anon_sym_short] = ACTIONS(1714), - [anon_sym_long] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_volatile] = ACTIONS(1714), - [anon_sym_ctypedef] = ACTIONS(1714), - [anon_sym_struct] = ACTIONS(1714), - [anon_sym_union] = ACTIONS(1714), - [anon_sym_enum] = ACTIONS(1714), - [anon_sym_cppclass] = ACTIONS(1714), - [anon_sym_fused] = ACTIONS(1714), - [anon_sym_public] = ACTIONS(1714), - [anon_sym_packed] = ACTIONS(1714), - [anon_sym_inline] = ACTIONS(1714), - [anon_sym_readonly] = ACTIONS(1714), - [anon_sym_sizeof] = ACTIONS(1714), - [sym__dedent] = ACTIONS(1716), - [sym_string_start] = ACTIONS(1716), + [anon_sym_property] = ACTIONS(1749), + [anon_sym_include] = ACTIONS(1749), + [anon_sym_DEF] = ACTIONS(1749), + [anon_sym_cdef] = ACTIONS(1749), + [anon_sym_cpdef] = ACTIONS(1749), + [anon_sym_int] = ACTIONS(1749), + [anon_sym_double] = ACTIONS(1749), + [anon_sym_complex] = ACTIONS(1749), + [anon_sym_new] = ACTIONS(1749), + [anon_sym_signed] = ACTIONS(1749), + [anon_sym_unsigned] = ACTIONS(1749), + [anon_sym_char] = ACTIONS(1749), + [anon_sym_short] = ACTIONS(1749), + [anon_sym_long] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [anon_sym_volatile] = ACTIONS(1749), + [anon_sym_ctypedef] = ACTIONS(1749), + [anon_sym_struct] = ACTIONS(1749), + [anon_sym_union] = ACTIONS(1749), + [anon_sym_enum] = ACTIONS(1749), + [anon_sym_cppclass] = ACTIONS(1749), + [anon_sym_fused] = ACTIONS(1749), + [anon_sym_public] = ACTIONS(1749), + [anon_sym_packed] = ACTIONS(1749), + [anon_sym_inline] = ACTIONS(1749), + [anon_sym_readonly] = ACTIONS(1749), + [anon_sym_sizeof] = ACTIONS(1749), + [sym__dedent] = ACTIONS(1751), + [sym_string_start] = ACTIONS(1751), }, [524] = { - [sym_identifier] = ACTIONS(1718), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_import] = ACTIONS(1718), - [anon_sym_cimport] = ACTIONS(1718), - [anon_sym_from] = ACTIONS(1718), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1720), - [anon_sym_print] = ACTIONS(1718), - [anon_sym_assert] = ACTIONS(1718), - [anon_sym_return] = ACTIONS(1718), - [anon_sym_del] = ACTIONS(1718), - [anon_sym_raise] = ACTIONS(1718), - [anon_sym_pass] = ACTIONS(1718), - [anon_sym_break] = ACTIONS(1718), - [anon_sym_continue] = ACTIONS(1718), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_match] = ACTIONS(1718), - [anon_sym_async] = ACTIONS(1718), - [anon_sym_for] = ACTIONS(1718), - [anon_sym_while] = ACTIONS(1718), - [anon_sym_try] = ACTIONS(1718), - [anon_sym_with] = ACTIONS(1718), - [anon_sym_def] = ACTIONS(1718), - [anon_sym_global] = ACTIONS(1718), - [anon_sym_nonlocal] = ACTIONS(1718), - [anon_sym_exec] = ACTIONS(1718), - [anon_sym_type] = ACTIONS(1718), - [anon_sym_class] = ACTIONS(1718), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_AT] = ACTIONS(1720), - [anon_sym_DASH] = ACTIONS(1720), - [anon_sym_LBRACE] = ACTIONS(1720), - [anon_sym_PLUS] = ACTIONS(1720), - [anon_sym_not] = ACTIONS(1718), - [anon_sym_AMP] = ACTIONS(1720), - [anon_sym_TILDE] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1720), - [anon_sym_lambda] = ACTIONS(1718), - [anon_sym_yield] = ACTIONS(1718), - [sym_ellipsis] = ACTIONS(1720), - [anon_sym_None] = ACTIONS(1718), - [sym_integer] = ACTIONS(1718), - [sym_float] = ACTIONS(1720), - [anon_sym_await] = ACTIONS(1718), - [anon_sym_api] = ACTIONS(1718), - [sym_true] = ACTIONS(1718), - [sym_false] = ACTIONS(1718), + [sym_identifier] = ACTIONS(1753), + [anon_sym_SEMI] = ACTIONS(1755), + [anon_sym_import] = ACTIONS(1753), + [anon_sym_cimport] = ACTIONS(1753), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_print] = ACTIONS(1753), + [anon_sym_assert] = ACTIONS(1753), + [anon_sym_return] = ACTIONS(1753), + [anon_sym_del] = ACTIONS(1753), + [anon_sym_raise] = ACTIONS(1753), + [anon_sym_pass] = ACTIONS(1753), + [anon_sym_break] = ACTIONS(1753), + [anon_sym_continue] = ACTIONS(1753), + [anon_sym_if] = ACTIONS(1753), + [anon_sym_match] = ACTIONS(1753), + [anon_sym_async] = ACTIONS(1753), + [anon_sym_for] = ACTIONS(1753), + [anon_sym_while] = ACTIONS(1753), + [anon_sym_try] = ACTIONS(1753), + [anon_sym_with] = ACTIONS(1753), + [anon_sym_def] = ACTIONS(1753), + [anon_sym_global] = ACTIONS(1753), + [anon_sym_nonlocal] = ACTIONS(1753), + [anon_sym_exec] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_class] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1755), + [anon_sym_AT] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1755), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_not] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_TILDE] = ACTIONS(1755), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_lambda] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1753), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1755), + [anon_sym_None] = ACTIONS(1753), + [sym_integer] = ACTIONS(1753), + [sym_float] = ACTIONS(1755), + [anon_sym_await] = ACTIONS(1753), + [anon_sym_api] = ACTIONS(1753), + [sym_true] = ACTIONS(1753), + [sym_false] = ACTIONS(1753), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1718), - [anon_sym_include] = ACTIONS(1718), - [anon_sym_DEF] = ACTIONS(1718), - [anon_sym_cdef] = ACTIONS(1718), - [anon_sym_cpdef] = ACTIONS(1718), - [anon_sym_int] = ACTIONS(1718), - [anon_sym_double] = ACTIONS(1718), - [anon_sym_complex] = ACTIONS(1718), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_signed] = ACTIONS(1718), - [anon_sym_unsigned] = ACTIONS(1718), - [anon_sym_char] = ACTIONS(1718), - [anon_sym_short] = ACTIONS(1718), - [anon_sym_long] = ACTIONS(1718), - [anon_sym_const] = ACTIONS(1718), - [anon_sym_volatile] = ACTIONS(1718), - [anon_sym_ctypedef] = ACTIONS(1718), - [anon_sym_struct] = ACTIONS(1718), - [anon_sym_union] = ACTIONS(1718), - [anon_sym_enum] = ACTIONS(1718), - [anon_sym_cppclass] = ACTIONS(1718), - [anon_sym_fused] = ACTIONS(1718), - [anon_sym_public] = ACTIONS(1718), - [anon_sym_packed] = ACTIONS(1718), - [anon_sym_inline] = ACTIONS(1718), - [anon_sym_readonly] = ACTIONS(1718), - [anon_sym_sizeof] = ACTIONS(1718), - [sym__dedent] = ACTIONS(1720), - [sym_string_start] = ACTIONS(1720), + [anon_sym_property] = ACTIONS(1753), + [anon_sym_include] = ACTIONS(1753), + [anon_sym_DEF] = ACTIONS(1753), + [anon_sym_cdef] = ACTIONS(1753), + [anon_sym_cpdef] = ACTIONS(1753), + [anon_sym_int] = ACTIONS(1753), + [anon_sym_double] = ACTIONS(1753), + [anon_sym_complex] = ACTIONS(1753), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_signed] = ACTIONS(1753), + [anon_sym_unsigned] = ACTIONS(1753), + [anon_sym_char] = ACTIONS(1753), + [anon_sym_short] = ACTIONS(1753), + [anon_sym_long] = ACTIONS(1753), + [anon_sym_const] = ACTIONS(1753), + [anon_sym_volatile] = ACTIONS(1753), + [anon_sym_ctypedef] = ACTIONS(1753), + [anon_sym_struct] = ACTIONS(1753), + [anon_sym_union] = ACTIONS(1753), + [anon_sym_enum] = ACTIONS(1753), + [anon_sym_cppclass] = ACTIONS(1753), + [anon_sym_fused] = ACTIONS(1753), + [anon_sym_public] = ACTIONS(1753), + [anon_sym_packed] = ACTIONS(1753), + [anon_sym_inline] = ACTIONS(1753), + [anon_sym_readonly] = ACTIONS(1753), + [anon_sym_sizeof] = ACTIONS(1753), + [sym__dedent] = ACTIONS(1755), + [sym_string_start] = ACTIONS(1755), }, [525] = { - [sym_identifier] = ACTIONS(1722), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_import] = ACTIONS(1722), - [anon_sym_cimport] = ACTIONS(1722), - [anon_sym_from] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_print] = ACTIONS(1722), - [anon_sym_assert] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_del] = ACTIONS(1722), - [anon_sym_raise] = ACTIONS(1722), - [anon_sym_pass] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_match] = ACTIONS(1722), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_try] = ACTIONS(1722), - [anon_sym_with] = ACTIONS(1722), - [anon_sym_def] = ACTIONS(1722), - [anon_sym_global] = ACTIONS(1722), - [anon_sym_nonlocal] = ACTIONS(1722), - [anon_sym_exec] = ACTIONS(1722), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_class] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1724), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1724), - [anon_sym_not] = ACTIONS(1722), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_lambda] = ACTIONS(1722), - [anon_sym_yield] = ACTIONS(1722), - [sym_ellipsis] = ACTIONS(1724), - [anon_sym_None] = ACTIONS(1722), - [sym_integer] = ACTIONS(1722), - [sym_float] = ACTIONS(1724), - [anon_sym_await] = ACTIONS(1722), - [anon_sym_api] = ACTIONS(1722), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), + [sym_identifier] = ACTIONS(1757), + [anon_sym_SEMI] = ACTIONS(1759), + [anon_sym_import] = ACTIONS(1757), + [anon_sym_cimport] = ACTIONS(1757), + [anon_sym_from] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_STAR] = ACTIONS(1759), + [anon_sym_print] = ACTIONS(1757), + [anon_sym_assert] = ACTIONS(1757), + [anon_sym_return] = ACTIONS(1757), + [anon_sym_del] = ACTIONS(1757), + [anon_sym_raise] = ACTIONS(1757), + [anon_sym_pass] = ACTIONS(1757), + [anon_sym_break] = ACTIONS(1757), + [anon_sym_continue] = ACTIONS(1757), + [anon_sym_if] = ACTIONS(1757), + [anon_sym_match] = ACTIONS(1757), + [anon_sym_async] = ACTIONS(1757), + [anon_sym_for] = ACTIONS(1757), + [anon_sym_while] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1757), + [anon_sym_with] = ACTIONS(1757), + [anon_sym_def] = ACTIONS(1757), + [anon_sym_global] = ACTIONS(1757), + [anon_sym_nonlocal] = ACTIONS(1757), + [anon_sym_exec] = ACTIONS(1757), + [anon_sym_type] = ACTIONS(1757), + [anon_sym_class] = ACTIONS(1757), + [anon_sym_LBRACK] = ACTIONS(1759), + [anon_sym_AT] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1759), + [anon_sym_not] = ACTIONS(1757), + [anon_sym_AMP] = ACTIONS(1759), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_LT] = ACTIONS(1759), + [anon_sym_lambda] = ACTIONS(1757), + [anon_sym_yield] = ACTIONS(1757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_None] = ACTIONS(1757), + [sym_integer] = ACTIONS(1757), + [sym_float] = ACTIONS(1759), + [anon_sym_await] = ACTIONS(1757), + [anon_sym_api] = ACTIONS(1757), + [sym_true] = ACTIONS(1757), + [sym_false] = ACTIONS(1757), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1722), - [anon_sym_include] = ACTIONS(1722), - [anon_sym_DEF] = ACTIONS(1722), - [anon_sym_cdef] = ACTIONS(1722), - [anon_sym_cpdef] = ACTIONS(1722), - [anon_sym_int] = ACTIONS(1722), - [anon_sym_double] = ACTIONS(1722), - [anon_sym_complex] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_char] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_ctypedef] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_cppclass] = ACTIONS(1722), - [anon_sym_fused] = ACTIONS(1722), - [anon_sym_public] = ACTIONS(1722), - [anon_sym_packed] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [anon_sym_readonly] = ACTIONS(1722), - [anon_sym_sizeof] = ACTIONS(1722), - [sym__dedent] = ACTIONS(1724), - [sym_string_start] = ACTIONS(1724), + [anon_sym_property] = ACTIONS(1757), + [anon_sym_include] = ACTIONS(1757), + [anon_sym_DEF] = ACTIONS(1757), + [anon_sym_cdef] = ACTIONS(1757), + [anon_sym_cpdef] = ACTIONS(1757), + [anon_sym_int] = ACTIONS(1757), + [anon_sym_double] = ACTIONS(1757), + [anon_sym_complex] = ACTIONS(1757), + [anon_sym_new] = ACTIONS(1757), + [anon_sym_signed] = ACTIONS(1757), + [anon_sym_unsigned] = ACTIONS(1757), + [anon_sym_char] = ACTIONS(1757), + [anon_sym_short] = ACTIONS(1757), + [anon_sym_long] = ACTIONS(1757), + [anon_sym_const] = ACTIONS(1757), + [anon_sym_volatile] = ACTIONS(1757), + [anon_sym_ctypedef] = ACTIONS(1757), + [anon_sym_struct] = ACTIONS(1757), + [anon_sym_union] = ACTIONS(1757), + [anon_sym_enum] = ACTIONS(1757), + [anon_sym_cppclass] = ACTIONS(1757), + [anon_sym_fused] = ACTIONS(1757), + [anon_sym_public] = ACTIONS(1757), + [anon_sym_packed] = ACTIONS(1757), + [anon_sym_inline] = ACTIONS(1757), + [anon_sym_readonly] = ACTIONS(1757), + [anon_sym_sizeof] = ACTIONS(1757), + [sym__dedent] = ACTIONS(1759), + [sym_string_start] = ACTIONS(1759), }, [526] = { - [sym_identifier] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_import] = ACTIONS(1726), - [anon_sym_cimport] = ACTIONS(1726), - [anon_sym_from] = ACTIONS(1726), - [anon_sym_LPAREN] = ACTIONS(1728), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_print] = ACTIONS(1726), - [anon_sym_assert] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_del] = ACTIONS(1726), - [anon_sym_raise] = ACTIONS(1726), - [anon_sym_pass] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_match] = ACTIONS(1726), - [anon_sym_async] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_try] = ACTIONS(1726), - [anon_sym_with] = ACTIONS(1726), - [anon_sym_def] = ACTIONS(1726), - [anon_sym_global] = ACTIONS(1726), - [anon_sym_nonlocal] = ACTIONS(1726), - [anon_sym_exec] = ACTIONS(1726), - [anon_sym_type] = ACTIONS(1726), - [anon_sym_class] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1728), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1728), - [anon_sym_not] = ACTIONS(1726), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(1728), - [anon_sym_lambda] = ACTIONS(1726), - [anon_sym_yield] = ACTIONS(1726), - [sym_ellipsis] = ACTIONS(1728), - [anon_sym_None] = ACTIONS(1726), - [sym_integer] = ACTIONS(1726), - [sym_float] = ACTIONS(1728), - [anon_sym_await] = ACTIONS(1726), - [anon_sym_api] = ACTIONS(1726), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), + [sym_identifier] = ACTIONS(1761), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_import] = ACTIONS(1761), + [anon_sym_cimport] = ACTIONS(1761), + [anon_sym_from] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1763), + [anon_sym_print] = ACTIONS(1761), + [anon_sym_assert] = ACTIONS(1761), + [anon_sym_return] = ACTIONS(1761), + [anon_sym_del] = ACTIONS(1761), + [anon_sym_raise] = ACTIONS(1761), + [anon_sym_pass] = ACTIONS(1761), + [anon_sym_break] = ACTIONS(1761), + [anon_sym_continue] = ACTIONS(1761), + [anon_sym_if] = ACTIONS(1761), + [anon_sym_match] = ACTIONS(1761), + [anon_sym_async] = ACTIONS(1761), + [anon_sym_for] = ACTIONS(1761), + [anon_sym_while] = ACTIONS(1761), + [anon_sym_try] = ACTIONS(1761), + [anon_sym_with] = ACTIONS(1761), + [anon_sym_def] = ACTIONS(1761), + [anon_sym_global] = ACTIONS(1761), + [anon_sym_nonlocal] = ACTIONS(1761), + [anon_sym_exec] = ACTIONS(1761), + [anon_sym_type] = ACTIONS(1761), + [anon_sym_class] = ACTIONS(1761), + [anon_sym_LBRACK] = ACTIONS(1763), + [anon_sym_AT] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_not] = ACTIONS(1761), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_lambda] = ACTIONS(1761), + [anon_sym_yield] = ACTIONS(1761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1763), + [anon_sym_None] = ACTIONS(1761), + [sym_integer] = ACTIONS(1761), + [sym_float] = ACTIONS(1763), + [anon_sym_await] = ACTIONS(1761), + [anon_sym_api] = ACTIONS(1761), + [sym_true] = ACTIONS(1761), + [sym_false] = ACTIONS(1761), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1726), - [anon_sym_include] = ACTIONS(1726), - [anon_sym_DEF] = ACTIONS(1726), - [anon_sym_cdef] = ACTIONS(1726), - [anon_sym_cpdef] = ACTIONS(1726), - [anon_sym_int] = ACTIONS(1726), - [anon_sym_double] = ACTIONS(1726), - [anon_sym_complex] = ACTIONS(1726), - [anon_sym_new] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_char] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_ctypedef] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_cppclass] = ACTIONS(1726), - [anon_sym_fused] = ACTIONS(1726), - [anon_sym_public] = ACTIONS(1726), - [anon_sym_packed] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [anon_sym_readonly] = ACTIONS(1726), - [anon_sym_sizeof] = ACTIONS(1726), - [sym__dedent] = ACTIONS(1728), - [sym_string_start] = ACTIONS(1728), + [anon_sym_property] = ACTIONS(1761), + [anon_sym_include] = ACTIONS(1761), + [anon_sym_DEF] = ACTIONS(1761), + [anon_sym_cdef] = ACTIONS(1761), + [anon_sym_cpdef] = ACTIONS(1761), + [anon_sym_int] = ACTIONS(1761), + [anon_sym_double] = ACTIONS(1761), + [anon_sym_complex] = ACTIONS(1761), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_signed] = ACTIONS(1761), + [anon_sym_unsigned] = ACTIONS(1761), + [anon_sym_char] = ACTIONS(1761), + [anon_sym_short] = ACTIONS(1761), + [anon_sym_long] = ACTIONS(1761), + [anon_sym_const] = ACTIONS(1761), + [anon_sym_volatile] = ACTIONS(1761), + [anon_sym_ctypedef] = ACTIONS(1761), + [anon_sym_struct] = ACTIONS(1761), + [anon_sym_union] = ACTIONS(1761), + [anon_sym_enum] = ACTIONS(1761), + [anon_sym_cppclass] = ACTIONS(1761), + [anon_sym_fused] = ACTIONS(1761), + [anon_sym_public] = ACTIONS(1761), + [anon_sym_packed] = ACTIONS(1761), + [anon_sym_inline] = ACTIONS(1761), + [anon_sym_readonly] = ACTIONS(1761), + [anon_sym_sizeof] = ACTIONS(1761), + [sym__dedent] = ACTIONS(1763), + [sym_string_start] = ACTIONS(1763), }, [527] = { - [sym_identifier] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_import] = ACTIONS(1730), - [anon_sym_cimport] = ACTIONS(1730), - [anon_sym_from] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_print] = ACTIONS(1730), - [anon_sym_assert] = ACTIONS(1730), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_del] = ACTIONS(1730), - [anon_sym_raise] = ACTIONS(1730), - [anon_sym_pass] = ACTIONS(1730), - [anon_sym_break] = ACTIONS(1730), - [anon_sym_continue] = ACTIONS(1730), - [anon_sym_if] = ACTIONS(1730), - [anon_sym_match] = ACTIONS(1730), - [anon_sym_async] = ACTIONS(1730), - [anon_sym_for] = ACTIONS(1730), - [anon_sym_while] = ACTIONS(1730), - [anon_sym_try] = ACTIONS(1730), - [anon_sym_with] = ACTIONS(1730), - [anon_sym_def] = ACTIONS(1730), - [anon_sym_global] = ACTIONS(1730), - [anon_sym_nonlocal] = ACTIONS(1730), - [anon_sym_exec] = ACTIONS(1730), - [anon_sym_type] = ACTIONS(1730), - [anon_sym_class] = ACTIONS(1730), - [anon_sym_LBRACK] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_not] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_TILDE] = ACTIONS(1732), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_lambda] = ACTIONS(1730), - [anon_sym_yield] = ACTIONS(1730), - [sym_ellipsis] = ACTIONS(1732), - [anon_sym_None] = ACTIONS(1730), - [sym_integer] = ACTIONS(1730), - [sym_float] = ACTIONS(1732), - [anon_sym_await] = ACTIONS(1730), - [anon_sym_api] = ACTIONS(1730), - [sym_true] = ACTIONS(1730), - [sym_false] = ACTIONS(1730), + [sym_identifier] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_import] = ACTIONS(1765), + [anon_sym_cimport] = ACTIONS(1765), + [anon_sym_from] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_print] = ACTIONS(1765), + [anon_sym_assert] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_del] = ACTIONS(1765), + [anon_sym_raise] = ACTIONS(1765), + [anon_sym_pass] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1765), + [anon_sym_try] = ACTIONS(1765), + [anon_sym_with] = ACTIONS(1765), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_global] = ACTIONS(1765), + [anon_sym_nonlocal] = ACTIONS(1765), + [anon_sym_exec] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1765), + [anon_sym_class] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_AT] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_not] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_lambda] = ACTIONS(1765), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1767), + [anon_sym_None] = ACTIONS(1765), + [sym_integer] = ACTIONS(1765), + [sym_float] = ACTIONS(1767), + [anon_sym_await] = ACTIONS(1765), + [anon_sym_api] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1730), - [anon_sym_include] = ACTIONS(1730), - [anon_sym_DEF] = ACTIONS(1730), - [anon_sym_cdef] = ACTIONS(1730), - [anon_sym_cpdef] = ACTIONS(1730), - [anon_sym_int] = ACTIONS(1730), - [anon_sym_double] = ACTIONS(1730), - [anon_sym_complex] = ACTIONS(1730), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_signed] = ACTIONS(1730), - [anon_sym_unsigned] = ACTIONS(1730), - [anon_sym_char] = ACTIONS(1730), - [anon_sym_short] = ACTIONS(1730), - [anon_sym_long] = ACTIONS(1730), - [anon_sym_const] = ACTIONS(1730), - [anon_sym_volatile] = ACTIONS(1730), - [anon_sym_ctypedef] = ACTIONS(1730), - [anon_sym_struct] = ACTIONS(1730), - [anon_sym_union] = ACTIONS(1730), - [anon_sym_enum] = ACTIONS(1730), - [anon_sym_cppclass] = ACTIONS(1730), - [anon_sym_fused] = ACTIONS(1730), - [anon_sym_public] = ACTIONS(1730), - [anon_sym_packed] = ACTIONS(1730), - [anon_sym_inline] = ACTIONS(1730), - [anon_sym_readonly] = ACTIONS(1730), - [anon_sym_sizeof] = ACTIONS(1730), - [sym__dedent] = ACTIONS(1732), - [sym_string_start] = ACTIONS(1732), + [anon_sym_property] = ACTIONS(1765), + [anon_sym_include] = ACTIONS(1765), + [anon_sym_DEF] = ACTIONS(1765), + [anon_sym_cdef] = ACTIONS(1765), + [anon_sym_cpdef] = ACTIONS(1765), + [anon_sym_int] = ACTIONS(1765), + [anon_sym_double] = ACTIONS(1765), + [anon_sym_complex] = ACTIONS(1765), + [anon_sym_new] = ACTIONS(1765), + [anon_sym_signed] = ACTIONS(1765), + [anon_sym_unsigned] = ACTIONS(1765), + [anon_sym_char] = ACTIONS(1765), + [anon_sym_short] = ACTIONS(1765), + [anon_sym_long] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [anon_sym_volatile] = ACTIONS(1765), + [anon_sym_ctypedef] = ACTIONS(1765), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_union] = ACTIONS(1765), + [anon_sym_enum] = ACTIONS(1765), + [anon_sym_cppclass] = ACTIONS(1765), + [anon_sym_fused] = ACTIONS(1765), + [anon_sym_public] = ACTIONS(1765), + [anon_sym_packed] = ACTIONS(1765), + [anon_sym_inline] = ACTIONS(1765), + [anon_sym_readonly] = ACTIONS(1765), + [anon_sym_sizeof] = ACTIONS(1765), + [sym__dedent] = ACTIONS(1767), + [sym_string_start] = ACTIONS(1767), }, [528] = { - [sym_identifier] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_import] = ACTIONS(1734), - [anon_sym_cimport] = ACTIONS(1734), - [anon_sym_from] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_print] = ACTIONS(1734), - [anon_sym_assert] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_del] = ACTIONS(1734), - [anon_sym_raise] = ACTIONS(1734), - [anon_sym_pass] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_match] = ACTIONS(1734), - [anon_sym_async] = ACTIONS(1734), - [anon_sym_for] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_with] = ACTIONS(1734), - [anon_sym_def] = ACTIONS(1734), - [anon_sym_global] = ACTIONS(1734), - [anon_sym_nonlocal] = ACTIONS(1734), - [anon_sym_exec] = ACTIONS(1734), - [anon_sym_type] = ACTIONS(1734), - [anon_sym_class] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_AT] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1736), - [anon_sym_not] = ACTIONS(1734), - [anon_sym_AMP] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1736), - [anon_sym_lambda] = ACTIONS(1734), - [anon_sym_yield] = ACTIONS(1734), - [sym_ellipsis] = ACTIONS(1736), - [anon_sym_None] = ACTIONS(1734), - [sym_integer] = ACTIONS(1734), - [sym_float] = ACTIONS(1736), - [anon_sym_await] = ACTIONS(1734), - [anon_sym_api] = ACTIONS(1734), - [sym_true] = ACTIONS(1734), - [sym_false] = ACTIONS(1734), + [sym_identifier] = ACTIONS(1769), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_import] = ACTIONS(1769), + [anon_sym_cimport] = ACTIONS(1769), + [anon_sym_from] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_print] = ACTIONS(1769), + [anon_sym_assert] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_del] = ACTIONS(1769), + [anon_sym_raise] = ACTIONS(1769), + [anon_sym_pass] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_async] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_with] = ACTIONS(1769), + [anon_sym_def] = ACTIONS(1769), + [anon_sym_global] = ACTIONS(1769), + [anon_sym_nonlocal] = ACTIONS(1769), + [anon_sym_exec] = ACTIONS(1769), + [anon_sym_type] = ACTIONS(1769), + [anon_sym_class] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_AT] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1771), + [anon_sym_not] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_LT] = ACTIONS(1771), + [anon_sym_lambda] = ACTIONS(1769), + [anon_sym_yield] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1771), + [anon_sym_None] = ACTIONS(1769), + [sym_integer] = ACTIONS(1769), + [sym_float] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_api] = ACTIONS(1769), + [sym_true] = ACTIONS(1769), + [sym_false] = ACTIONS(1769), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1734), - [anon_sym_include] = ACTIONS(1734), - [anon_sym_DEF] = ACTIONS(1734), - [anon_sym_cdef] = ACTIONS(1734), - [anon_sym_cpdef] = ACTIONS(1734), - [anon_sym_int] = ACTIONS(1734), - [anon_sym_double] = ACTIONS(1734), - [anon_sym_complex] = ACTIONS(1734), - [anon_sym_new] = ACTIONS(1734), - [anon_sym_signed] = ACTIONS(1734), - [anon_sym_unsigned] = ACTIONS(1734), - [anon_sym_char] = ACTIONS(1734), - [anon_sym_short] = ACTIONS(1734), - [anon_sym_long] = ACTIONS(1734), - [anon_sym_const] = ACTIONS(1734), - [anon_sym_volatile] = ACTIONS(1734), - [anon_sym_ctypedef] = ACTIONS(1734), - [anon_sym_struct] = ACTIONS(1734), - [anon_sym_union] = ACTIONS(1734), - [anon_sym_enum] = ACTIONS(1734), - [anon_sym_cppclass] = ACTIONS(1734), - [anon_sym_fused] = ACTIONS(1734), - [anon_sym_public] = ACTIONS(1734), - [anon_sym_packed] = ACTIONS(1734), - [anon_sym_inline] = ACTIONS(1734), - [anon_sym_readonly] = ACTIONS(1734), - [anon_sym_sizeof] = ACTIONS(1734), - [sym__dedent] = ACTIONS(1736), - [sym_string_start] = ACTIONS(1736), + [anon_sym_property] = ACTIONS(1769), + [anon_sym_include] = ACTIONS(1769), + [anon_sym_DEF] = ACTIONS(1769), + [anon_sym_cdef] = ACTIONS(1769), + [anon_sym_cpdef] = ACTIONS(1769), + [anon_sym_int] = ACTIONS(1769), + [anon_sym_double] = ACTIONS(1769), + [anon_sym_complex] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_signed] = ACTIONS(1769), + [anon_sym_unsigned] = ACTIONS(1769), + [anon_sym_char] = ACTIONS(1769), + [anon_sym_short] = ACTIONS(1769), + [anon_sym_long] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [anon_sym_volatile] = ACTIONS(1769), + [anon_sym_ctypedef] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_enum] = ACTIONS(1769), + [anon_sym_cppclass] = ACTIONS(1769), + [anon_sym_fused] = ACTIONS(1769), + [anon_sym_public] = ACTIONS(1769), + [anon_sym_packed] = ACTIONS(1769), + [anon_sym_inline] = ACTIONS(1769), + [anon_sym_readonly] = ACTIONS(1769), + [anon_sym_sizeof] = ACTIONS(1769), + [sym__dedent] = ACTIONS(1771), + [sym_string_start] = ACTIONS(1771), }, [529] = { - [sym_identifier] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_import] = ACTIONS(1738), - [anon_sym_cimport] = ACTIONS(1738), - [anon_sym_from] = ACTIONS(1738), - [anon_sym_LPAREN] = ACTIONS(1740), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_print] = ACTIONS(1738), - [anon_sym_assert] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_del] = ACTIONS(1738), - [anon_sym_raise] = ACTIONS(1738), - [anon_sym_pass] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_match] = ACTIONS(1738), - [anon_sym_async] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_try] = ACTIONS(1738), - [anon_sym_with] = ACTIONS(1738), - [anon_sym_def] = ACTIONS(1738), - [anon_sym_global] = ACTIONS(1738), - [anon_sym_nonlocal] = ACTIONS(1738), - [anon_sym_exec] = ACTIONS(1738), - [anon_sym_type] = ACTIONS(1738), - [anon_sym_class] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1740), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1740), - [anon_sym_not] = ACTIONS(1738), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_lambda] = ACTIONS(1738), - [anon_sym_yield] = ACTIONS(1738), - [sym_ellipsis] = ACTIONS(1740), - [anon_sym_None] = ACTIONS(1738), - [sym_integer] = ACTIONS(1738), - [sym_float] = ACTIONS(1740), - [anon_sym_await] = ACTIONS(1738), - [anon_sym_api] = ACTIONS(1738), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1775), + [anon_sym_import] = ACTIONS(1773), + [anon_sym_cimport] = ACTIONS(1773), + [anon_sym_from] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1775), + [anon_sym_print] = ACTIONS(1773), + [anon_sym_assert] = ACTIONS(1773), + [anon_sym_return] = ACTIONS(1773), + [anon_sym_del] = ACTIONS(1773), + [anon_sym_raise] = ACTIONS(1773), + [anon_sym_pass] = ACTIONS(1773), + [anon_sym_break] = ACTIONS(1773), + [anon_sym_continue] = ACTIONS(1773), + [anon_sym_if] = ACTIONS(1773), + [anon_sym_match] = ACTIONS(1773), + [anon_sym_async] = ACTIONS(1773), + [anon_sym_for] = ACTIONS(1773), + [anon_sym_while] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_with] = ACTIONS(1773), + [anon_sym_def] = ACTIONS(1773), + [anon_sym_global] = ACTIONS(1773), + [anon_sym_nonlocal] = ACTIONS(1773), + [anon_sym_exec] = ACTIONS(1773), + [anon_sym_type] = ACTIONS(1773), + [anon_sym_class] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1775), + [anon_sym_AT] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1775), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_not] = ACTIONS(1773), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_LT] = ACTIONS(1775), + [anon_sym_lambda] = ACTIONS(1773), + [anon_sym_yield] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1775), + [anon_sym_None] = ACTIONS(1773), + [sym_integer] = ACTIONS(1773), + [sym_float] = ACTIONS(1775), + [anon_sym_await] = ACTIONS(1773), + [anon_sym_api] = ACTIONS(1773), + [sym_true] = ACTIONS(1773), + [sym_false] = ACTIONS(1773), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1738), - [anon_sym_include] = ACTIONS(1738), - [anon_sym_DEF] = ACTIONS(1738), - [anon_sym_cdef] = ACTIONS(1738), - [anon_sym_cpdef] = ACTIONS(1738), - [anon_sym_int] = ACTIONS(1738), - [anon_sym_double] = ACTIONS(1738), - [anon_sym_complex] = ACTIONS(1738), - [anon_sym_new] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_ctypedef] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_cppclass] = ACTIONS(1738), - [anon_sym_fused] = ACTIONS(1738), - [anon_sym_public] = ACTIONS(1738), - [anon_sym_packed] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [anon_sym_readonly] = ACTIONS(1738), - [anon_sym_sizeof] = ACTIONS(1738), - [sym__dedent] = ACTIONS(1740), - [sym_string_start] = ACTIONS(1740), + [anon_sym_property] = ACTIONS(1773), + [anon_sym_include] = ACTIONS(1773), + [anon_sym_DEF] = ACTIONS(1773), + [anon_sym_cdef] = ACTIONS(1773), + [anon_sym_cpdef] = ACTIONS(1773), + [anon_sym_int] = ACTIONS(1773), + [anon_sym_double] = ACTIONS(1773), + [anon_sym_complex] = ACTIONS(1773), + [anon_sym_new] = ACTIONS(1773), + [anon_sym_signed] = ACTIONS(1773), + [anon_sym_unsigned] = ACTIONS(1773), + [anon_sym_char] = ACTIONS(1773), + [anon_sym_short] = ACTIONS(1773), + [anon_sym_long] = ACTIONS(1773), + [anon_sym_const] = ACTIONS(1773), + [anon_sym_volatile] = ACTIONS(1773), + [anon_sym_ctypedef] = ACTIONS(1773), + [anon_sym_struct] = ACTIONS(1773), + [anon_sym_union] = ACTIONS(1773), + [anon_sym_enum] = ACTIONS(1773), + [anon_sym_cppclass] = ACTIONS(1773), + [anon_sym_fused] = ACTIONS(1773), + [anon_sym_public] = ACTIONS(1773), + [anon_sym_packed] = ACTIONS(1773), + [anon_sym_inline] = ACTIONS(1773), + [anon_sym_readonly] = ACTIONS(1773), + [anon_sym_sizeof] = ACTIONS(1773), + [sym__dedent] = ACTIONS(1775), + [sym_string_start] = ACTIONS(1775), }, [530] = { - [sym_identifier] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1676), - [anon_sym_import] = ACTIONS(1674), - [anon_sym_cimport] = ACTIONS(1674), - [anon_sym_from] = ACTIONS(1674), - [anon_sym_LPAREN] = ACTIONS(1676), - [anon_sym_STAR] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1674), - [anon_sym_assert] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1674), - [anon_sym_del] = ACTIONS(1674), - [anon_sym_raise] = ACTIONS(1674), - [anon_sym_pass] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1674), - [anon_sym_continue] = ACTIONS(1674), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_match] = ACTIONS(1674), - [anon_sym_async] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_with] = ACTIONS(1674), - [anon_sym_def] = ACTIONS(1674), - [anon_sym_global] = ACTIONS(1674), - [anon_sym_nonlocal] = ACTIONS(1674), - [anon_sym_exec] = ACTIONS(1674), - [anon_sym_type] = ACTIONS(1674), - [anon_sym_class] = ACTIONS(1674), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_AT] = ACTIONS(1676), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_not] = ACTIONS(1674), - [anon_sym_AMP] = ACTIONS(1676), - [anon_sym_TILDE] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(1676), - [anon_sym_lambda] = ACTIONS(1674), - [anon_sym_yield] = ACTIONS(1674), - [sym_ellipsis] = ACTIONS(1676), - [anon_sym_None] = ACTIONS(1674), - [sym_integer] = ACTIONS(1674), - [sym_float] = ACTIONS(1676), - [anon_sym_await] = ACTIONS(1674), - [anon_sym_api] = ACTIONS(1674), - [sym_true] = ACTIONS(1674), - [sym_false] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1777), + [anon_sym_SEMI] = ACTIONS(1779), + [anon_sym_import] = ACTIONS(1777), + [anon_sym_cimport] = ACTIONS(1777), + [anon_sym_from] = ACTIONS(1777), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_STAR] = ACTIONS(1779), + [anon_sym_print] = ACTIONS(1777), + [anon_sym_assert] = ACTIONS(1777), + [anon_sym_return] = ACTIONS(1777), + [anon_sym_del] = ACTIONS(1777), + [anon_sym_raise] = ACTIONS(1777), + [anon_sym_pass] = ACTIONS(1777), + [anon_sym_break] = ACTIONS(1777), + [anon_sym_continue] = ACTIONS(1777), + [anon_sym_if] = ACTIONS(1777), + [anon_sym_match] = ACTIONS(1777), + [anon_sym_async] = ACTIONS(1777), + [anon_sym_for] = ACTIONS(1777), + [anon_sym_while] = ACTIONS(1777), + [anon_sym_try] = ACTIONS(1777), + [anon_sym_with] = ACTIONS(1777), + [anon_sym_def] = ACTIONS(1777), + [anon_sym_global] = ACTIONS(1777), + [anon_sym_nonlocal] = ACTIONS(1777), + [anon_sym_exec] = ACTIONS(1777), + [anon_sym_type] = ACTIONS(1777), + [anon_sym_class] = ACTIONS(1777), + [anon_sym_LBRACK] = ACTIONS(1779), + [anon_sym_AT] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_not] = ACTIONS(1777), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_LT] = ACTIONS(1779), + [anon_sym_lambda] = ACTIONS(1777), + [anon_sym_yield] = ACTIONS(1777), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1779), + [anon_sym_None] = ACTIONS(1777), + [sym_integer] = ACTIONS(1777), + [sym_float] = ACTIONS(1779), + [anon_sym_await] = ACTIONS(1777), + [anon_sym_api] = ACTIONS(1777), + [sym_true] = ACTIONS(1777), + [sym_false] = ACTIONS(1777), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1674), - [anon_sym_include] = ACTIONS(1674), - [anon_sym_DEF] = ACTIONS(1674), - [anon_sym_cdef] = ACTIONS(1674), - [anon_sym_cpdef] = ACTIONS(1674), - [anon_sym_int] = ACTIONS(1674), - [anon_sym_double] = ACTIONS(1674), - [anon_sym_complex] = ACTIONS(1674), - [anon_sym_new] = ACTIONS(1674), - [anon_sym_signed] = ACTIONS(1674), - [anon_sym_unsigned] = ACTIONS(1674), - [anon_sym_char] = ACTIONS(1674), - [anon_sym_short] = ACTIONS(1674), - [anon_sym_long] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_volatile] = ACTIONS(1674), - [anon_sym_ctypedef] = ACTIONS(1674), - [anon_sym_struct] = ACTIONS(1674), - [anon_sym_union] = ACTIONS(1674), - [anon_sym_enum] = ACTIONS(1674), - [anon_sym_cppclass] = ACTIONS(1674), - [anon_sym_fused] = ACTIONS(1674), - [anon_sym_public] = ACTIONS(1674), - [anon_sym_packed] = ACTIONS(1674), - [anon_sym_inline] = ACTIONS(1674), - [anon_sym_readonly] = ACTIONS(1674), - [anon_sym_sizeof] = ACTIONS(1674), - [sym__dedent] = ACTIONS(1676), - [sym_string_start] = ACTIONS(1676), + [anon_sym_property] = ACTIONS(1777), + [anon_sym_include] = ACTIONS(1777), + [anon_sym_DEF] = ACTIONS(1777), + [anon_sym_cdef] = ACTIONS(1777), + [anon_sym_cpdef] = ACTIONS(1777), + [anon_sym_int] = ACTIONS(1777), + [anon_sym_double] = ACTIONS(1777), + [anon_sym_complex] = ACTIONS(1777), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_signed] = ACTIONS(1777), + [anon_sym_unsigned] = ACTIONS(1777), + [anon_sym_char] = ACTIONS(1777), + [anon_sym_short] = ACTIONS(1777), + [anon_sym_long] = ACTIONS(1777), + [anon_sym_const] = ACTIONS(1777), + [anon_sym_volatile] = ACTIONS(1777), + [anon_sym_ctypedef] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1777), + [anon_sym_union] = ACTIONS(1777), + [anon_sym_enum] = ACTIONS(1777), + [anon_sym_cppclass] = ACTIONS(1777), + [anon_sym_fused] = ACTIONS(1777), + [anon_sym_public] = ACTIONS(1777), + [anon_sym_packed] = ACTIONS(1777), + [anon_sym_inline] = ACTIONS(1777), + [anon_sym_readonly] = ACTIONS(1777), + [anon_sym_sizeof] = ACTIONS(1777), + [sym__dedent] = ACTIONS(1779), + [sym_string_start] = ACTIONS(1779), }, [531] = { - [sym_identifier] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_import] = ACTIONS(1742), - [anon_sym_cimport] = ACTIONS(1742), - [anon_sym_from] = ACTIONS(1742), - [anon_sym_LPAREN] = ACTIONS(1744), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_print] = ACTIONS(1742), - [anon_sym_assert] = ACTIONS(1742), - [anon_sym_return] = ACTIONS(1742), - [anon_sym_del] = ACTIONS(1742), - [anon_sym_raise] = ACTIONS(1742), - [anon_sym_pass] = ACTIONS(1742), - [anon_sym_break] = ACTIONS(1742), - [anon_sym_continue] = ACTIONS(1742), - [anon_sym_if] = ACTIONS(1742), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_async] = ACTIONS(1742), - [anon_sym_for] = ACTIONS(1742), - [anon_sym_while] = ACTIONS(1742), - [anon_sym_try] = ACTIONS(1742), - [anon_sym_with] = ACTIONS(1742), - [anon_sym_def] = ACTIONS(1742), - [anon_sym_global] = ACTIONS(1742), - [anon_sym_nonlocal] = ACTIONS(1742), - [anon_sym_exec] = ACTIONS(1742), - [anon_sym_type] = ACTIONS(1742), - [anon_sym_class] = ACTIONS(1742), - [anon_sym_LBRACK] = ACTIONS(1744), - [anon_sym_AT] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1744), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_PLUS] = ACTIONS(1744), - [anon_sym_not] = ACTIONS(1742), - [anon_sym_AMP] = ACTIONS(1744), - [anon_sym_TILDE] = ACTIONS(1744), - [anon_sym_LT] = ACTIONS(1744), - [anon_sym_lambda] = ACTIONS(1742), - [anon_sym_yield] = ACTIONS(1742), - [sym_ellipsis] = ACTIONS(1744), - [anon_sym_None] = ACTIONS(1742), - [sym_integer] = ACTIONS(1742), - [sym_float] = ACTIONS(1744), - [anon_sym_await] = ACTIONS(1742), - [anon_sym_api] = ACTIONS(1742), - [sym_true] = ACTIONS(1742), - [sym_false] = ACTIONS(1742), + [sym_identifier] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym_import] = ACTIONS(1781), + [anon_sym_cimport] = ACTIONS(1781), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_print] = ACTIONS(1781), + [anon_sym_assert] = ACTIONS(1781), + [anon_sym_return] = ACTIONS(1781), + [anon_sym_del] = ACTIONS(1781), + [anon_sym_raise] = ACTIONS(1781), + [anon_sym_pass] = ACTIONS(1781), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_match] = ACTIONS(1781), + [anon_sym_async] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1781), + [anon_sym_while] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1781), + [anon_sym_with] = ACTIONS(1781), + [anon_sym_def] = ACTIONS(1781), + [anon_sym_global] = ACTIONS(1781), + [anon_sym_nonlocal] = ACTIONS(1781), + [anon_sym_exec] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_class] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1783), + [anon_sym_AT] = ACTIONS(1783), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_not] = ACTIONS(1781), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_lambda] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1781), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1783), + [anon_sym_None] = ACTIONS(1781), + [sym_integer] = ACTIONS(1781), + [sym_float] = ACTIONS(1783), + [anon_sym_await] = ACTIONS(1781), + [anon_sym_api] = ACTIONS(1781), + [sym_true] = ACTIONS(1781), + [sym_false] = ACTIONS(1781), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1742), - [anon_sym_include] = ACTIONS(1742), - [anon_sym_DEF] = ACTIONS(1742), - [anon_sym_cdef] = ACTIONS(1742), - [anon_sym_cpdef] = ACTIONS(1742), - [anon_sym_int] = ACTIONS(1742), - [anon_sym_double] = ACTIONS(1742), - [anon_sym_complex] = ACTIONS(1742), - [anon_sym_new] = ACTIONS(1742), - [anon_sym_signed] = ACTIONS(1742), - [anon_sym_unsigned] = ACTIONS(1742), - [anon_sym_char] = ACTIONS(1742), - [anon_sym_short] = ACTIONS(1742), - [anon_sym_long] = ACTIONS(1742), - [anon_sym_const] = ACTIONS(1742), - [anon_sym_volatile] = ACTIONS(1742), - [anon_sym_ctypedef] = ACTIONS(1742), - [anon_sym_struct] = ACTIONS(1742), - [anon_sym_union] = ACTIONS(1742), - [anon_sym_enum] = ACTIONS(1742), - [anon_sym_cppclass] = ACTIONS(1742), - [anon_sym_fused] = ACTIONS(1742), - [anon_sym_public] = ACTIONS(1742), - [anon_sym_packed] = ACTIONS(1742), - [anon_sym_inline] = ACTIONS(1742), - [anon_sym_readonly] = ACTIONS(1742), - [anon_sym_sizeof] = ACTIONS(1742), - [sym__dedent] = ACTIONS(1744), - [sym_string_start] = ACTIONS(1744), + [anon_sym_property] = ACTIONS(1781), + [anon_sym_include] = ACTIONS(1781), + [anon_sym_DEF] = ACTIONS(1781), + [anon_sym_cdef] = ACTIONS(1781), + [anon_sym_cpdef] = ACTIONS(1781), + [anon_sym_int] = ACTIONS(1781), + [anon_sym_double] = ACTIONS(1781), + [anon_sym_complex] = ACTIONS(1781), + [anon_sym_new] = ACTIONS(1781), + [anon_sym_signed] = ACTIONS(1781), + [anon_sym_unsigned] = ACTIONS(1781), + [anon_sym_char] = ACTIONS(1781), + [anon_sym_short] = ACTIONS(1781), + [anon_sym_long] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_volatile] = ACTIONS(1781), + [anon_sym_ctypedef] = ACTIONS(1781), + [anon_sym_struct] = ACTIONS(1781), + [anon_sym_union] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [anon_sym_cppclass] = ACTIONS(1781), + [anon_sym_fused] = ACTIONS(1781), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_packed] = ACTIONS(1781), + [anon_sym_inline] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1781), + [sym__dedent] = ACTIONS(1783), + [sym_string_start] = ACTIONS(1783), }, [532] = { - [sym_identifier] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_import] = ACTIONS(1746), - [anon_sym_cimport] = ACTIONS(1746), - [anon_sym_from] = ACTIONS(1746), - [anon_sym_LPAREN] = ACTIONS(1748), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_print] = ACTIONS(1746), - [anon_sym_assert] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_del] = ACTIONS(1746), - [anon_sym_raise] = ACTIONS(1746), - [anon_sym_pass] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_match] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_try] = ACTIONS(1746), - [anon_sym_with] = ACTIONS(1746), - [anon_sym_def] = ACTIONS(1746), - [anon_sym_global] = ACTIONS(1746), - [anon_sym_nonlocal] = ACTIONS(1746), - [anon_sym_exec] = ACTIONS(1746), - [anon_sym_type] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_not] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1748), - [anon_sym_LT] = ACTIONS(1748), - [anon_sym_lambda] = ACTIONS(1746), - [anon_sym_yield] = ACTIONS(1746), - [sym_ellipsis] = ACTIONS(1748), - [anon_sym_None] = ACTIONS(1746), - [sym_integer] = ACTIONS(1746), - [sym_float] = ACTIONS(1748), - [anon_sym_await] = ACTIONS(1746), - [anon_sym_api] = ACTIONS(1746), - [sym_true] = ACTIONS(1746), - [sym_false] = ACTIONS(1746), + [sym_identifier] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(1685), + [anon_sym_cimport] = ACTIONS(1685), + [anon_sym_from] = ACTIONS(1685), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1687), + [anon_sym_print] = ACTIONS(1685), + [anon_sym_assert] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1685), + [anon_sym_del] = ACTIONS(1685), + [anon_sym_raise] = ACTIONS(1685), + [anon_sym_pass] = ACTIONS(1685), + [anon_sym_break] = ACTIONS(1685), + [anon_sym_continue] = ACTIONS(1685), + [anon_sym_if] = ACTIONS(1685), + [anon_sym_match] = ACTIONS(1685), + [anon_sym_async] = ACTIONS(1685), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1685), + [anon_sym_try] = ACTIONS(1685), + [anon_sym_with] = ACTIONS(1685), + [anon_sym_def] = ACTIONS(1685), + [anon_sym_global] = ACTIONS(1685), + [anon_sym_nonlocal] = ACTIONS(1685), + [anon_sym_exec] = ACTIONS(1685), + [anon_sym_type] = ACTIONS(1685), + [anon_sym_class] = ACTIONS(1685), + [anon_sym_LBRACK] = ACTIONS(1687), + [anon_sym_AT] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_not] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1687), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1687), + [anon_sym_lambda] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1687), + [anon_sym_None] = ACTIONS(1685), + [sym_integer] = ACTIONS(1685), + [sym_float] = ACTIONS(1687), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_api] = ACTIONS(1685), + [sym_true] = ACTIONS(1685), + [sym_false] = ACTIONS(1685), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1746), - [anon_sym_include] = ACTIONS(1746), - [anon_sym_DEF] = ACTIONS(1746), - [anon_sym_cdef] = ACTIONS(1746), - [anon_sym_cpdef] = ACTIONS(1746), - [anon_sym_int] = ACTIONS(1746), - [anon_sym_double] = ACTIONS(1746), - [anon_sym_complex] = ACTIONS(1746), - [anon_sym_new] = ACTIONS(1746), - [anon_sym_signed] = ACTIONS(1746), - [anon_sym_unsigned] = ACTIONS(1746), - [anon_sym_char] = ACTIONS(1746), - [anon_sym_short] = ACTIONS(1746), - [anon_sym_long] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_volatile] = ACTIONS(1746), - [anon_sym_ctypedef] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1746), - [anon_sym_union] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [anon_sym_cppclass] = ACTIONS(1746), - [anon_sym_fused] = ACTIONS(1746), - [anon_sym_public] = ACTIONS(1746), - [anon_sym_packed] = ACTIONS(1746), - [anon_sym_inline] = ACTIONS(1746), - [anon_sym_readonly] = ACTIONS(1746), - [anon_sym_sizeof] = ACTIONS(1746), - [sym__dedent] = ACTIONS(1748), - [sym_string_start] = ACTIONS(1748), + [anon_sym_property] = ACTIONS(1685), + [anon_sym_include] = ACTIONS(1685), + [anon_sym_DEF] = ACTIONS(1685), + [anon_sym_cdef] = ACTIONS(1685), + [anon_sym_cpdef] = ACTIONS(1685), + [anon_sym_int] = ACTIONS(1685), + [anon_sym_double] = ACTIONS(1685), + [anon_sym_complex] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1685), + [anon_sym_signed] = ACTIONS(1685), + [anon_sym_unsigned] = ACTIONS(1685), + [anon_sym_char] = ACTIONS(1685), + [anon_sym_short] = ACTIONS(1685), + [anon_sym_long] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_volatile] = ACTIONS(1685), + [anon_sym_ctypedef] = ACTIONS(1685), + [anon_sym_struct] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_enum] = ACTIONS(1685), + [anon_sym_cppclass] = ACTIONS(1685), + [anon_sym_fused] = ACTIONS(1685), + [anon_sym_public] = ACTIONS(1685), + [anon_sym_packed] = ACTIONS(1685), + [anon_sym_inline] = ACTIONS(1685), + [anon_sym_readonly] = ACTIONS(1685), + [anon_sym_sizeof] = ACTIONS(1685), + [sym__dedent] = ACTIONS(1687), + [sym_string_start] = ACTIONS(1687), }, [533] = { - [sym_identifier] = ACTIONS(1750), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_import] = ACTIONS(1750), - [anon_sym_cimport] = ACTIONS(1750), - [anon_sym_from] = ACTIONS(1750), - [anon_sym_LPAREN] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_print] = ACTIONS(1750), - [anon_sym_assert] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_del] = ACTIONS(1750), - [anon_sym_raise] = ACTIONS(1750), - [anon_sym_pass] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_match] = ACTIONS(1750), - [anon_sym_async] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_try] = ACTIONS(1750), - [anon_sym_with] = ACTIONS(1750), - [anon_sym_def] = ACTIONS(1750), - [anon_sym_global] = ACTIONS(1750), - [anon_sym_nonlocal] = ACTIONS(1750), - [anon_sym_exec] = ACTIONS(1750), - [anon_sym_type] = ACTIONS(1750), - [anon_sym_class] = ACTIONS(1750), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_not] = ACTIONS(1750), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_lambda] = ACTIONS(1750), - [anon_sym_yield] = ACTIONS(1750), - [sym_ellipsis] = ACTIONS(1752), - [anon_sym_None] = ACTIONS(1750), - [sym_integer] = ACTIONS(1750), - [sym_float] = ACTIONS(1752), - [anon_sym_await] = ACTIONS(1750), - [anon_sym_api] = ACTIONS(1750), - [sym_true] = ACTIONS(1750), - [sym_false] = ACTIONS(1750), + [sym_identifier] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_import] = ACTIONS(1785), + [anon_sym_cimport] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_print] = ACTIONS(1785), + [anon_sym_assert] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_del] = ACTIONS(1785), + [anon_sym_raise] = ACTIONS(1785), + [anon_sym_pass] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1785), + [anon_sym_async] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_with] = ACTIONS(1785), + [anon_sym_def] = ACTIONS(1785), + [anon_sym_global] = ACTIONS(1785), + [anon_sym_nonlocal] = ACTIONS(1785), + [anon_sym_exec] = ACTIONS(1785), + [anon_sym_type] = ACTIONS(1785), + [anon_sym_class] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_not] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_TILDE] = ACTIONS(1787), + [anon_sym_LT] = ACTIONS(1787), + [anon_sym_lambda] = ACTIONS(1785), + [anon_sym_yield] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1787), + [anon_sym_None] = ACTIONS(1785), + [sym_integer] = ACTIONS(1785), + [sym_float] = ACTIONS(1787), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_api] = ACTIONS(1785), + [sym_true] = ACTIONS(1785), + [sym_false] = ACTIONS(1785), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1750), - [anon_sym_include] = ACTIONS(1750), - [anon_sym_DEF] = ACTIONS(1750), - [anon_sym_cdef] = ACTIONS(1750), - [anon_sym_cpdef] = ACTIONS(1750), - [anon_sym_int] = ACTIONS(1750), - [anon_sym_double] = ACTIONS(1750), - [anon_sym_complex] = ACTIONS(1750), - [anon_sym_new] = ACTIONS(1750), - [anon_sym_signed] = ACTIONS(1750), - [anon_sym_unsigned] = ACTIONS(1750), - [anon_sym_char] = ACTIONS(1750), - [anon_sym_short] = ACTIONS(1750), - [anon_sym_long] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_volatile] = ACTIONS(1750), - [anon_sym_ctypedef] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [anon_sym_cppclass] = ACTIONS(1750), - [anon_sym_fused] = ACTIONS(1750), - [anon_sym_public] = ACTIONS(1750), - [anon_sym_packed] = ACTIONS(1750), - [anon_sym_inline] = ACTIONS(1750), - [anon_sym_readonly] = ACTIONS(1750), - [anon_sym_sizeof] = ACTIONS(1750), - [sym__dedent] = ACTIONS(1752), - [sym_string_start] = ACTIONS(1752), + [anon_sym_property] = ACTIONS(1785), + [anon_sym_include] = ACTIONS(1785), + [anon_sym_DEF] = ACTIONS(1785), + [anon_sym_cdef] = ACTIONS(1785), + [anon_sym_cpdef] = ACTIONS(1785), + [anon_sym_int] = ACTIONS(1785), + [anon_sym_double] = ACTIONS(1785), + [anon_sym_complex] = ACTIONS(1785), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_signed] = ACTIONS(1785), + [anon_sym_unsigned] = ACTIONS(1785), + [anon_sym_char] = ACTIONS(1785), + [anon_sym_short] = ACTIONS(1785), + [anon_sym_long] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [anon_sym_volatile] = ACTIONS(1785), + [anon_sym_ctypedef] = ACTIONS(1785), + [anon_sym_struct] = ACTIONS(1785), + [anon_sym_union] = ACTIONS(1785), + [anon_sym_enum] = ACTIONS(1785), + [anon_sym_cppclass] = ACTIONS(1785), + [anon_sym_fused] = ACTIONS(1785), + [anon_sym_public] = ACTIONS(1785), + [anon_sym_packed] = ACTIONS(1785), + [anon_sym_inline] = ACTIONS(1785), + [anon_sym_readonly] = ACTIONS(1785), + [anon_sym_sizeof] = ACTIONS(1785), + [sym__dedent] = ACTIONS(1787), + [sym_string_start] = ACTIONS(1787), }, [534] = { - [sym_identifier] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_import] = ACTIONS(1754), - [anon_sym_cimport] = ACTIONS(1754), - [anon_sym_from] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_print] = ACTIONS(1754), - [anon_sym_assert] = ACTIONS(1754), - [anon_sym_return] = ACTIONS(1754), - [anon_sym_del] = ACTIONS(1754), - [anon_sym_raise] = ACTIONS(1754), - [anon_sym_pass] = ACTIONS(1754), - [anon_sym_break] = ACTIONS(1754), - [anon_sym_continue] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1754), - [anon_sym_match] = ACTIONS(1754), - [anon_sym_async] = ACTIONS(1754), - [anon_sym_for] = ACTIONS(1754), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_try] = ACTIONS(1754), - [anon_sym_with] = ACTIONS(1754), - [anon_sym_def] = ACTIONS(1754), - [anon_sym_global] = ACTIONS(1754), - [anon_sym_nonlocal] = ACTIONS(1754), - [anon_sym_exec] = ACTIONS(1754), - [anon_sym_type] = ACTIONS(1754), - [anon_sym_class] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_PLUS] = ACTIONS(1756), - [anon_sym_not] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1756), - [anon_sym_TILDE] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_lambda] = ACTIONS(1754), - [anon_sym_yield] = ACTIONS(1754), - [sym_ellipsis] = ACTIONS(1756), - [anon_sym_None] = ACTIONS(1754), - [sym_integer] = ACTIONS(1754), - [sym_float] = ACTIONS(1756), - [anon_sym_await] = ACTIONS(1754), - [anon_sym_api] = ACTIONS(1754), - [sym_true] = ACTIONS(1754), - [sym_false] = ACTIONS(1754), + [sym_identifier] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1791), + [anon_sym_import] = ACTIONS(1789), + [anon_sym_cimport] = ACTIONS(1789), + [anon_sym_from] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1791), + [anon_sym_print] = ACTIONS(1789), + [anon_sym_assert] = ACTIONS(1789), + [anon_sym_return] = ACTIONS(1789), + [anon_sym_del] = ACTIONS(1789), + [anon_sym_raise] = ACTIONS(1789), + [anon_sym_pass] = ACTIONS(1789), + [anon_sym_break] = ACTIONS(1789), + [anon_sym_continue] = ACTIONS(1789), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_match] = ACTIONS(1789), + [anon_sym_async] = ACTIONS(1789), + [anon_sym_for] = ACTIONS(1789), + [anon_sym_while] = ACTIONS(1789), + [anon_sym_try] = ACTIONS(1789), + [anon_sym_with] = ACTIONS(1789), + [anon_sym_def] = ACTIONS(1789), + [anon_sym_global] = ACTIONS(1789), + [anon_sym_nonlocal] = ACTIONS(1789), + [anon_sym_exec] = ACTIONS(1789), + [anon_sym_type] = ACTIONS(1789), + [anon_sym_class] = ACTIONS(1789), + [anon_sym_LBRACK] = ACTIONS(1791), + [anon_sym_AT] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_not] = ACTIONS(1789), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_lambda] = ACTIONS(1789), + [anon_sym_yield] = ACTIONS(1789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1791), + [anon_sym_None] = ACTIONS(1789), + [sym_integer] = ACTIONS(1789), + [sym_float] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_api] = ACTIONS(1789), + [sym_true] = ACTIONS(1789), + [sym_false] = ACTIONS(1789), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1754), - [anon_sym_include] = ACTIONS(1754), - [anon_sym_DEF] = ACTIONS(1754), - [anon_sym_cdef] = ACTIONS(1754), - [anon_sym_cpdef] = ACTIONS(1754), - [anon_sym_int] = ACTIONS(1754), - [anon_sym_double] = ACTIONS(1754), - [anon_sym_complex] = ACTIONS(1754), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_signed] = ACTIONS(1754), - [anon_sym_unsigned] = ACTIONS(1754), - [anon_sym_char] = ACTIONS(1754), - [anon_sym_short] = ACTIONS(1754), - [anon_sym_long] = ACTIONS(1754), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_volatile] = ACTIONS(1754), - [anon_sym_ctypedef] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(1754), - [anon_sym_union] = ACTIONS(1754), - [anon_sym_enum] = ACTIONS(1754), - [anon_sym_cppclass] = ACTIONS(1754), - [anon_sym_fused] = ACTIONS(1754), - [anon_sym_public] = ACTIONS(1754), - [anon_sym_packed] = ACTIONS(1754), - [anon_sym_inline] = ACTIONS(1754), - [anon_sym_readonly] = ACTIONS(1754), - [anon_sym_sizeof] = ACTIONS(1754), - [sym__dedent] = ACTIONS(1756), - [sym_string_start] = ACTIONS(1756), + [anon_sym_property] = ACTIONS(1789), + [anon_sym_include] = ACTIONS(1789), + [anon_sym_DEF] = ACTIONS(1789), + [anon_sym_cdef] = ACTIONS(1789), + [anon_sym_cpdef] = ACTIONS(1789), + [anon_sym_int] = ACTIONS(1789), + [anon_sym_double] = ACTIONS(1789), + [anon_sym_complex] = ACTIONS(1789), + [anon_sym_new] = ACTIONS(1789), + [anon_sym_signed] = ACTIONS(1789), + [anon_sym_unsigned] = ACTIONS(1789), + [anon_sym_char] = ACTIONS(1789), + [anon_sym_short] = ACTIONS(1789), + [anon_sym_long] = ACTIONS(1789), + [anon_sym_const] = ACTIONS(1789), + [anon_sym_volatile] = ACTIONS(1789), + [anon_sym_ctypedef] = ACTIONS(1789), + [anon_sym_struct] = ACTIONS(1789), + [anon_sym_union] = ACTIONS(1789), + [anon_sym_enum] = ACTIONS(1789), + [anon_sym_cppclass] = ACTIONS(1789), + [anon_sym_fused] = ACTIONS(1789), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_packed] = ACTIONS(1789), + [anon_sym_inline] = ACTIONS(1789), + [anon_sym_readonly] = ACTIONS(1789), + [anon_sym_sizeof] = ACTIONS(1789), + [sym__dedent] = ACTIONS(1791), + [sym_string_start] = ACTIONS(1791), }, [535] = { - [sym_identifier] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(1760), - [anon_sym_import] = ACTIONS(1758), - [anon_sym_cimport] = ACTIONS(1758), - [anon_sym_from] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_print] = ACTIONS(1758), - [anon_sym_assert] = ACTIONS(1758), - [anon_sym_return] = ACTIONS(1758), - [anon_sym_del] = ACTIONS(1758), - [anon_sym_raise] = ACTIONS(1758), - [anon_sym_pass] = ACTIONS(1758), - [anon_sym_break] = ACTIONS(1758), - [anon_sym_continue] = ACTIONS(1758), - [anon_sym_if] = ACTIONS(1758), - [anon_sym_match] = ACTIONS(1758), - [anon_sym_async] = ACTIONS(1758), - [anon_sym_for] = ACTIONS(1758), - [anon_sym_while] = ACTIONS(1758), - [anon_sym_try] = ACTIONS(1758), - [anon_sym_with] = ACTIONS(1758), - [anon_sym_def] = ACTIONS(1758), - [anon_sym_global] = ACTIONS(1758), - [anon_sym_nonlocal] = ACTIONS(1758), - [anon_sym_exec] = ACTIONS(1758), - [anon_sym_type] = ACTIONS(1758), - [anon_sym_class] = ACTIONS(1758), - [anon_sym_LBRACK] = ACTIONS(1760), - [anon_sym_AT] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1760), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_PLUS] = ACTIONS(1760), - [anon_sym_not] = ACTIONS(1758), - [anon_sym_AMP] = ACTIONS(1760), - [anon_sym_TILDE] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1760), - [anon_sym_lambda] = ACTIONS(1758), - [anon_sym_yield] = ACTIONS(1758), - [sym_ellipsis] = ACTIONS(1760), - [anon_sym_None] = ACTIONS(1758), - [sym_integer] = ACTIONS(1758), - [sym_float] = ACTIONS(1760), - [anon_sym_await] = ACTIONS(1758), - [anon_sym_api] = ACTIONS(1758), - [sym_true] = ACTIONS(1758), - [sym_false] = ACTIONS(1758), + [sym_identifier] = ACTIONS(1793), + [anon_sym_SEMI] = ACTIONS(1795), + [anon_sym_import] = ACTIONS(1793), + [anon_sym_cimport] = ACTIONS(1793), + [anon_sym_from] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1795), + [anon_sym_STAR] = ACTIONS(1795), + [anon_sym_print] = ACTIONS(1793), + [anon_sym_assert] = ACTIONS(1793), + [anon_sym_return] = ACTIONS(1793), + [anon_sym_del] = ACTIONS(1793), + [anon_sym_raise] = ACTIONS(1793), + [anon_sym_pass] = ACTIONS(1793), + [anon_sym_break] = ACTIONS(1793), + [anon_sym_continue] = ACTIONS(1793), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_match] = ACTIONS(1793), + [anon_sym_async] = ACTIONS(1793), + [anon_sym_for] = ACTIONS(1793), + [anon_sym_while] = ACTIONS(1793), + [anon_sym_try] = ACTIONS(1793), + [anon_sym_with] = ACTIONS(1793), + [anon_sym_def] = ACTIONS(1793), + [anon_sym_global] = ACTIONS(1793), + [anon_sym_nonlocal] = ACTIONS(1793), + [anon_sym_exec] = ACTIONS(1793), + [anon_sym_type] = ACTIONS(1793), + [anon_sym_class] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(1795), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(1795), + [anon_sym_not] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_LT] = ACTIONS(1795), + [anon_sym_lambda] = ACTIONS(1793), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1795), + [anon_sym_None] = ACTIONS(1793), + [sym_integer] = ACTIONS(1793), + [sym_float] = ACTIONS(1795), + [anon_sym_await] = ACTIONS(1793), + [anon_sym_api] = ACTIONS(1793), + [sym_true] = ACTIONS(1793), + [sym_false] = ACTIONS(1793), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1758), - [anon_sym_include] = ACTIONS(1758), - [anon_sym_DEF] = ACTIONS(1758), - [anon_sym_cdef] = ACTIONS(1758), - [anon_sym_cpdef] = ACTIONS(1758), - [anon_sym_int] = ACTIONS(1758), - [anon_sym_double] = ACTIONS(1758), - [anon_sym_complex] = ACTIONS(1758), - [anon_sym_new] = ACTIONS(1758), - [anon_sym_signed] = ACTIONS(1758), - [anon_sym_unsigned] = ACTIONS(1758), - [anon_sym_char] = ACTIONS(1758), - [anon_sym_short] = ACTIONS(1758), - [anon_sym_long] = ACTIONS(1758), - [anon_sym_const] = ACTIONS(1758), - [anon_sym_volatile] = ACTIONS(1758), - [anon_sym_ctypedef] = ACTIONS(1758), - [anon_sym_struct] = ACTIONS(1758), - [anon_sym_union] = ACTIONS(1758), - [anon_sym_enum] = ACTIONS(1758), - [anon_sym_cppclass] = ACTIONS(1758), - [anon_sym_fused] = ACTIONS(1758), - [anon_sym_public] = ACTIONS(1758), - [anon_sym_packed] = ACTIONS(1758), - [anon_sym_inline] = ACTIONS(1758), - [anon_sym_readonly] = ACTIONS(1758), - [anon_sym_sizeof] = ACTIONS(1758), - [sym__dedent] = ACTIONS(1760), - [sym_string_start] = ACTIONS(1760), + [anon_sym_property] = ACTIONS(1793), + [anon_sym_include] = ACTIONS(1793), + [anon_sym_DEF] = ACTIONS(1793), + [anon_sym_cdef] = ACTIONS(1793), + [anon_sym_cpdef] = ACTIONS(1793), + [anon_sym_int] = ACTIONS(1793), + [anon_sym_double] = ACTIONS(1793), + [anon_sym_complex] = ACTIONS(1793), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_signed] = ACTIONS(1793), + [anon_sym_unsigned] = ACTIONS(1793), + [anon_sym_char] = ACTIONS(1793), + [anon_sym_short] = ACTIONS(1793), + [anon_sym_long] = ACTIONS(1793), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_ctypedef] = ACTIONS(1793), + [anon_sym_struct] = ACTIONS(1793), + [anon_sym_union] = ACTIONS(1793), + [anon_sym_enum] = ACTIONS(1793), + [anon_sym_cppclass] = ACTIONS(1793), + [anon_sym_fused] = ACTIONS(1793), + [anon_sym_public] = ACTIONS(1793), + [anon_sym_packed] = ACTIONS(1793), + [anon_sym_inline] = ACTIONS(1793), + [anon_sym_readonly] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1793), + [sym__dedent] = ACTIONS(1795), + [sym_string_start] = ACTIONS(1795), }, [536] = { - [sym_identifier] = ACTIONS(1762), - [anon_sym_SEMI] = ACTIONS(1764), - [anon_sym_import] = ACTIONS(1762), - [anon_sym_cimport] = ACTIONS(1762), - [anon_sym_from] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_print] = ACTIONS(1762), - [anon_sym_assert] = ACTIONS(1762), - [anon_sym_return] = ACTIONS(1762), - [anon_sym_del] = ACTIONS(1762), - [anon_sym_raise] = ACTIONS(1762), - [anon_sym_pass] = ACTIONS(1762), - [anon_sym_break] = ACTIONS(1762), - [anon_sym_continue] = ACTIONS(1762), - [anon_sym_if] = ACTIONS(1762), - [anon_sym_match] = ACTIONS(1762), - [anon_sym_async] = ACTIONS(1762), - [anon_sym_for] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1762), - [anon_sym_try] = ACTIONS(1762), - [anon_sym_with] = ACTIONS(1762), - [anon_sym_def] = ACTIONS(1762), - [anon_sym_global] = ACTIONS(1762), - [anon_sym_nonlocal] = ACTIONS(1762), - [anon_sym_exec] = ACTIONS(1762), - [anon_sym_type] = ACTIONS(1762), - [anon_sym_class] = ACTIONS(1762), - [anon_sym_LBRACK] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1764), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_not] = ACTIONS(1762), - [anon_sym_AMP] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1764), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_lambda] = ACTIONS(1762), - [anon_sym_yield] = ACTIONS(1762), - [sym_ellipsis] = ACTIONS(1764), - [anon_sym_None] = ACTIONS(1762), - [sym_integer] = ACTIONS(1762), - [sym_float] = ACTIONS(1764), - [anon_sym_await] = ACTIONS(1762), - [anon_sym_api] = ACTIONS(1762), - [sym_true] = ACTIONS(1762), - [sym_false] = ACTIONS(1762), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SEMI] = ACTIONS(1799), + [anon_sym_import] = ACTIONS(1797), + [anon_sym_cimport] = ACTIONS(1797), + [anon_sym_from] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_STAR] = ACTIONS(1799), + [anon_sym_print] = ACTIONS(1797), + [anon_sym_assert] = ACTIONS(1797), + [anon_sym_return] = ACTIONS(1797), + [anon_sym_del] = ACTIONS(1797), + [anon_sym_raise] = ACTIONS(1797), + [anon_sym_pass] = ACTIONS(1797), + [anon_sym_break] = ACTIONS(1797), + [anon_sym_continue] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1797), + [anon_sym_match] = ACTIONS(1797), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_for] = ACTIONS(1797), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_try] = ACTIONS(1797), + [anon_sym_with] = ACTIONS(1797), + [anon_sym_def] = ACTIONS(1797), + [anon_sym_global] = ACTIONS(1797), + [anon_sym_nonlocal] = ACTIONS(1797), + [anon_sym_exec] = ACTIONS(1797), + [anon_sym_type] = ACTIONS(1797), + [anon_sym_class] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_AT] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(1799), + [anon_sym_not] = ACTIONS(1797), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_LT] = ACTIONS(1799), + [anon_sym_lambda] = ACTIONS(1797), + [anon_sym_yield] = ACTIONS(1797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1799), + [anon_sym_None] = ACTIONS(1797), + [sym_integer] = ACTIONS(1797), + [sym_float] = ACTIONS(1799), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_api] = ACTIONS(1797), + [sym_true] = ACTIONS(1797), + [sym_false] = ACTIONS(1797), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1762), - [anon_sym_include] = ACTIONS(1762), - [anon_sym_DEF] = ACTIONS(1762), - [anon_sym_cdef] = ACTIONS(1762), - [anon_sym_cpdef] = ACTIONS(1762), - [anon_sym_int] = ACTIONS(1762), - [anon_sym_double] = ACTIONS(1762), - [anon_sym_complex] = ACTIONS(1762), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_signed] = ACTIONS(1762), - [anon_sym_unsigned] = ACTIONS(1762), - [anon_sym_char] = ACTIONS(1762), - [anon_sym_short] = ACTIONS(1762), - [anon_sym_long] = ACTIONS(1762), - [anon_sym_const] = ACTIONS(1762), - [anon_sym_volatile] = ACTIONS(1762), - [anon_sym_ctypedef] = ACTIONS(1762), - [anon_sym_struct] = ACTIONS(1762), - [anon_sym_union] = ACTIONS(1762), - [anon_sym_enum] = ACTIONS(1762), - [anon_sym_cppclass] = ACTIONS(1762), - [anon_sym_fused] = ACTIONS(1762), - [anon_sym_public] = ACTIONS(1762), - [anon_sym_packed] = ACTIONS(1762), - [anon_sym_inline] = ACTIONS(1762), - [anon_sym_readonly] = ACTIONS(1762), - [anon_sym_sizeof] = ACTIONS(1762), - [sym__dedent] = ACTIONS(1764), - [sym_string_start] = ACTIONS(1764), + [anon_sym_property] = ACTIONS(1797), + [anon_sym_include] = ACTIONS(1797), + [anon_sym_DEF] = ACTIONS(1797), + [anon_sym_cdef] = ACTIONS(1797), + [anon_sym_cpdef] = ACTIONS(1797), + [anon_sym_int] = ACTIONS(1797), + [anon_sym_double] = ACTIONS(1797), + [anon_sym_complex] = ACTIONS(1797), + [anon_sym_new] = ACTIONS(1797), + [anon_sym_signed] = ACTIONS(1797), + [anon_sym_unsigned] = ACTIONS(1797), + [anon_sym_char] = ACTIONS(1797), + [anon_sym_short] = ACTIONS(1797), + [anon_sym_long] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1797), + [anon_sym_volatile] = ACTIONS(1797), + [anon_sym_ctypedef] = ACTIONS(1797), + [anon_sym_struct] = ACTIONS(1797), + [anon_sym_union] = ACTIONS(1797), + [anon_sym_enum] = ACTIONS(1797), + [anon_sym_cppclass] = ACTIONS(1797), + [anon_sym_fused] = ACTIONS(1797), + [anon_sym_public] = ACTIONS(1797), + [anon_sym_packed] = ACTIONS(1797), + [anon_sym_inline] = ACTIONS(1797), + [anon_sym_readonly] = ACTIONS(1797), + [anon_sym_sizeof] = ACTIONS(1797), + [sym__dedent] = ACTIONS(1799), + [sym_string_start] = ACTIONS(1799), }, [537] = { - [sym_identifier] = ACTIONS(1766), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_import] = ACTIONS(1766), - [anon_sym_cimport] = ACTIONS(1766), - [anon_sym_from] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1768), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_print] = ACTIONS(1766), - [anon_sym_assert] = ACTIONS(1766), - [anon_sym_return] = ACTIONS(1766), - [anon_sym_del] = ACTIONS(1766), - [anon_sym_raise] = ACTIONS(1766), - [anon_sym_pass] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1766), - [anon_sym_continue] = ACTIONS(1766), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_match] = ACTIONS(1766), - [anon_sym_async] = ACTIONS(1766), - [anon_sym_for] = ACTIONS(1766), - [anon_sym_while] = ACTIONS(1766), - [anon_sym_try] = ACTIONS(1766), - [anon_sym_with] = ACTIONS(1766), - [anon_sym_def] = ACTIONS(1766), - [anon_sym_global] = ACTIONS(1766), - [anon_sym_nonlocal] = ACTIONS(1766), - [anon_sym_exec] = ACTIONS(1766), - [anon_sym_type] = ACTIONS(1766), - [anon_sym_class] = ACTIONS(1766), - [anon_sym_LBRACK] = ACTIONS(1768), - [anon_sym_AT] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_LBRACE] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_not] = ACTIONS(1766), - [anon_sym_AMP] = ACTIONS(1768), - [anon_sym_TILDE] = ACTIONS(1768), - [anon_sym_LT] = ACTIONS(1768), - [anon_sym_lambda] = ACTIONS(1766), - [anon_sym_yield] = ACTIONS(1766), - [sym_ellipsis] = ACTIONS(1768), - [anon_sym_None] = ACTIONS(1766), - [sym_integer] = ACTIONS(1766), - [sym_float] = ACTIONS(1768), - [anon_sym_await] = ACTIONS(1766), - [anon_sym_api] = ACTIONS(1766), - [sym_true] = ACTIONS(1766), - [sym_false] = ACTIONS(1766), + [sym_identifier] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1803), + [anon_sym_import] = ACTIONS(1801), + [anon_sym_cimport] = ACTIONS(1801), + [anon_sym_from] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_print] = ACTIONS(1801), + [anon_sym_assert] = ACTIONS(1801), + [anon_sym_return] = ACTIONS(1801), + [anon_sym_del] = ACTIONS(1801), + [anon_sym_raise] = ACTIONS(1801), + [anon_sym_pass] = ACTIONS(1801), + [anon_sym_break] = ACTIONS(1801), + [anon_sym_continue] = ACTIONS(1801), + [anon_sym_if] = ACTIONS(1801), + [anon_sym_match] = ACTIONS(1801), + [anon_sym_async] = ACTIONS(1801), + [anon_sym_for] = ACTIONS(1801), + [anon_sym_while] = ACTIONS(1801), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_with] = ACTIONS(1801), + [anon_sym_def] = ACTIONS(1801), + [anon_sym_global] = ACTIONS(1801), + [anon_sym_nonlocal] = ACTIONS(1801), + [anon_sym_exec] = ACTIONS(1801), + [anon_sym_type] = ACTIONS(1801), + [anon_sym_class] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1803), + [anon_sym_AT] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1803), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_not] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1803), + [anon_sym_lambda] = ACTIONS(1801), + [anon_sym_yield] = ACTIONS(1801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1803), + [anon_sym_None] = ACTIONS(1801), + [sym_integer] = ACTIONS(1801), + [sym_float] = ACTIONS(1803), + [anon_sym_await] = ACTIONS(1801), + [anon_sym_api] = ACTIONS(1801), + [sym_true] = ACTIONS(1801), + [sym_false] = ACTIONS(1801), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1766), - [anon_sym_include] = ACTIONS(1766), - [anon_sym_DEF] = ACTIONS(1766), - [anon_sym_cdef] = ACTIONS(1766), - [anon_sym_cpdef] = ACTIONS(1766), - [anon_sym_int] = ACTIONS(1766), - [anon_sym_double] = ACTIONS(1766), - [anon_sym_complex] = ACTIONS(1766), - [anon_sym_new] = ACTIONS(1766), - [anon_sym_signed] = ACTIONS(1766), - [anon_sym_unsigned] = ACTIONS(1766), - [anon_sym_char] = ACTIONS(1766), - [anon_sym_short] = ACTIONS(1766), - [anon_sym_long] = ACTIONS(1766), - [anon_sym_const] = ACTIONS(1766), - [anon_sym_volatile] = ACTIONS(1766), - [anon_sym_ctypedef] = ACTIONS(1766), - [anon_sym_struct] = ACTIONS(1766), - [anon_sym_union] = ACTIONS(1766), - [anon_sym_enum] = ACTIONS(1766), - [anon_sym_cppclass] = ACTIONS(1766), - [anon_sym_fused] = ACTIONS(1766), - [anon_sym_public] = ACTIONS(1766), - [anon_sym_packed] = ACTIONS(1766), - [anon_sym_inline] = ACTIONS(1766), - [anon_sym_readonly] = ACTIONS(1766), - [anon_sym_sizeof] = ACTIONS(1766), - [sym__dedent] = ACTIONS(1768), - [sym_string_start] = ACTIONS(1768), + [anon_sym_property] = ACTIONS(1801), + [anon_sym_include] = ACTIONS(1801), + [anon_sym_DEF] = ACTIONS(1801), + [anon_sym_cdef] = ACTIONS(1801), + [anon_sym_cpdef] = ACTIONS(1801), + [anon_sym_int] = ACTIONS(1801), + [anon_sym_double] = ACTIONS(1801), + [anon_sym_complex] = ACTIONS(1801), + [anon_sym_new] = ACTIONS(1801), + [anon_sym_signed] = ACTIONS(1801), + [anon_sym_unsigned] = ACTIONS(1801), + [anon_sym_char] = ACTIONS(1801), + [anon_sym_short] = ACTIONS(1801), + [anon_sym_long] = ACTIONS(1801), + [anon_sym_const] = ACTIONS(1801), + [anon_sym_volatile] = ACTIONS(1801), + [anon_sym_ctypedef] = ACTIONS(1801), + [anon_sym_struct] = ACTIONS(1801), + [anon_sym_union] = ACTIONS(1801), + [anon_sym_enum] = ACTIONS(1801), + [anon_sym_cppclass] = ACTIONS(1801), + [anon_sym_fused] = ACTIONS(1801), + [anon_sym_public] = ACTIONS(1801), + [anon_sym_packed] = ACTIONS(1801), + [anon_sym_inline] = ACTIONS(1801), + [anon_sym_readonly] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1801), + [sym__dedent] = ACTIONS(1803), + [sym_string_start] = ACTIONS(1803), }, [538] = { - [sym_identifier] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_import] = ACTIONS(1770), - [anon_sym_cimport] = ACTIONS(1770), - [anon_sym_from] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_print] = ACTIONS(1770), - [anon_sym_assert] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_del] = ACTIONS(1770), - [anon_sym_raise] = ACTIONS(1770), - [anon_sym_pass] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_match] = ACTIONS(1770), - [anon_sym_async] = ACTIONS(1770), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_try] = ACTIONS(1770), - [anon_sym_with] = ACTIONS(1770), - [anon_sym_def] = ACTIONS(1770), - [anon_sym_global] = ACTIONS(1770), - [anon_sym_nonlocal] = ACTIONS(1770), - [anon_sym_exec] = ACTIONS(1770), - [anon_sym_type] = ACTIONS(1770), - [anon_sym_class] = ACTIONS(1770), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1772), - [anon_sym_not] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_TILDE] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_lambda] = ACTIONS(1770), - [anon_sym_yield] = ACTIONS(1770), - [sym_ellipsis] = ACTIONS(1772), - [anon_sym_None] = ACTIONS(1770), - [sym_integer] = ACTIONS(1770), - [sym_float] = ACTIONS(1772), - [anon_sym_await] = ACTIONS(1770), - [anon_sym_api] = ACTIONS(1770), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), + [sym_identifier] = ACTIONS(1805), + [anon_sym_SEMI] = ACTIONS(1807), + [anon_sym_import] = ACTIONS(1805), + [anon_sym_cimport] = ACTIONS(1805), + [anon_sym_from] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1807), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_print] = ACTIONS(1805), + [anon_sym_assert] = ACTIONS(1805), + [anon_sym_return] = ACTIONS(1805), + [anon_sym_del] = ACTIONS(1805), + [anon_sym_raise] = ACTIONS(1805), + [anon_sym_pass] = ACTIONS(1805), + [anon_sym_break] = ACTIONS(1805), + [anon_sym_continue] = ACTIONS(1805), + [anon_sym_if] = ACTIONS(1805), + [anon_sym_match] = ACTIONS(1805), + [anon_sym_async] = ACTIONS(1805), + [anon_sym_for] = ACTIONS(1805), + [anon_sym_while] = ACTIONS(1805), + [anon_sym_try] = ACTIONS(1805), + [anon_sym_with] = ACTIONS(1805), + [anon_sym_def] = ACTIONS(1805), + [anon_sym_global] = ACTIONS(1805), + [anon_sym_nonlocal] = ACTIONS(1805), + [anon_sym_exec] = ACTIONS(1805), + [anon_sym_type] = ACTIONS(1805), + [anon_sym_class] = ACTIONS(1805), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_AT] = ACTIONS(1807), + [anon_sym_DASH] = ACTIONS(1807), + [anon_sym_LBRACE] = ACTIONS(1807), + [anon_sym_PLUS] = ACTIONS(1807), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym_TILDE] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1807), + [anon_sym_lambda] = ACTIONS(1805), + [anon_sym_yield] = ACTIONS(1805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1807), + [anon_sym_None] = ACTIONS(1805), + [sym_integer] = ACTIONS(1805), + [sym_float] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(1805), + [anon_sym_api] = ACTIONS(1805), + [sym_true] = ACTIONS(1805), + [sym_false] = ACTIONS(1805), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1770), - [anon_sym_include] = ACTIONS(1770), - [anon_sym_DEF] = ACTIONS(1770), - [anon_sym_cdef] = ACTIONS(1770), - [anon_sym_cpdef] = ACTIONS(1770), - [anon_sym_int] = ACTIONS(1770), - [anon_sym_double] = ACTIONS(1770), - [anon_sym_complex] = ACTIONS(1770), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1770), - [anon_sym_unsigned] = ACTIONS(1770), - [anon_sym_char] = ACTIONS(1770), - [anon_sym_short] = ACTIONS(1770), - [anon_sym_long] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_ctypedef] = ACTIONS(1770), - [anon_sym_struct] = ACTIONS(1770), - [anon_sym_union] = ACTIONS(1770), - [anon_sym_enum] = ACTIONS(1770), - [anon_sym_cppclass] = ACTIONS(1770), - [anon_sym_fused] = ACTIONS(1770), - [anon_sym_public] = ACTIONS(1770), - [anon_sym_packed] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(1770), - [anon_sym_sizeof] = ACTIONS(1770), - [sym__dedent] = ACTIONS(1772), - [sym_string_start] = ACTIONS(1772), + [anon_sym_property] = ACTIONS(1805), + [anon_sym_include] = ACTIONS(1805), + [anon_sym_DEF] = ACTIONS(1805), + [anon_sym_cdef] = ACTIONS(1805), + [anon_sym_cpdef] = ACTIONS(1805), + [anon_sym_int] = ACTIONS(1805), + [anon_sym_double] = ACTIONS(1805), + [anon_sym_complex] = ACTIONS(1805), + [anon_sym_new] = ACTIONS(1805), + [anon_sym_signed] = ACTIONS(1805), + [anon_sym_unsigned] = ACTIONS(1805), + [anon_sym_char] = ACTIONS(1805), + [anon_sym_short] = ACTIONS(1805), + [anon_sym_long] = ACTIONS(1805), + [anon_sym_const] = ACTIONS(1805), + [anon_sym_volatile] = ACTIONS(1805), + [anon_sym_ctypedef] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1805), + [anon_sym_union] = ACTIONS(1805), + [anon_sym_enum] = ACTIONS(1805), + [anon_sym_cppclass] = ACTIONS(1805), + [anon_sym_fused] = ACTIONS(1805), + [anon_sym_public] = ACTIONS(1805), + [anon_sym_packed] = ACTIONS(1805), + [anon_sym_inline] = ACTIONS(1805), + [anon_sym_readonly] = ACTIONS(1805), + [anon_sym_sizeof] = ACTIONS(1805), + [sym__dedent] = ACTIONS(1807), + [sym_string_start] = ACTIONS(1807), }, [539] = { - [sym_identifier] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_import] = ACTIONS(1774), - [anon_sym_cimport] = ACTIONS(1774), - [anon_sym_from] = ACTIONS(1774), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_print] = ACTIONS(1774), - [anon_sym_assert] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_del] = ACTIONS(1774), - [anon_sym_raise] = ACTIONS(1774), - [anon_sym_pass] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_match] = ACTIONS(1774), - [anon_sym_async] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_try] = ACTIONS(1774), - [anon_sym_with] = ACTIONS(1774), - [anon_sym_def] = ACTIONS(1774), - [anon_sym_global] = ACTIONS(1774), - [anon_sym_nonlocal] = ACTIONS(1774), - [anon_sym_exec] = ACTIONS(1774), - [anon_sym_type] = ACTIONS(1774), - [anon_sym_class] = ACTIONS(1774), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_AT] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_not] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_lambda] = ACTIONS(1774), - [anon_sym_yield] = ACTIONS(1774), - [sym_ellipsis] = ACTIONS(1778), - [anon_sym_None] = ACTIONS(1774), - [sym_integer] = ACTIONS(1774), - [sym_float] = ACTIONS(1778), - [anon_sym_await] = ACTIONS(1774), - [anon_sym_api] = ACTIONS(1774), - [sym_true] = ACTIONS(1774), - [sym_false] = ACTIONS(1774), + [sym_identifier] = ACTIONS(1809), + [anon_sym_SEMI] = ACTIONS(1811), + [anon_sym_import] = ACTIONS(1809), + [anon_sym_cimport] = ACTIONS(1809), + [anon_sym_from] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_print] = ACTIONS(1809), + [anon_sym_assert] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_del] = ACTIONS(1809), + [anon_sym_raise] = ACTIONS(1809), + [anon_sym_pass] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_async] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_while] = ACTIONS(1809), + [anon_sym_try] = ACTIONS(1809), + [anon_sym_with] = ACTIONS(1809), + [anon_sym_def] = ACTIONS(1809), + [anon_sym_global] = ACTIONS(1809), + [anon_sym_nonlocal] = ACTIONS(1809), + [anon_sym_exec] = ACTIONS(1809), + [anon_sym_type] = ACTIONS(1809), + [anon_sym_class] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1811), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_not] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_LT] = ACTIONS(1811), + [anon_sym_lambda] = ACTIONS(1809), + [anon_sym_yield] = ACTIONS(1809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1811), + [anon_sym_None] = ACTIONS(1809), + [sym_integer] = ACTIONS(1809), + [sym_float] = ACTIONS(1811), + [anon_sym_await] = ACTIONS(1809), + [anon_sym_api] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1774), - [anon_sym_include] = ACTIONS(1774), - [anon_sym_DEF] = ACTIONS(1774), - [anon_sym_cdef] = ACTIONS(1774), - [anon_sym_cpdef] = ACTIONS(1774), - [anon_sym_int] = ACTIONS(1774), - [anon_sym_double] = ACTIONS(1774), - [anon_sym_complex] = ACTIONS(1774), - [anon_sym_new] = ACTIONS(1774), - [anon_sym_signed] = ACTIONS(1774), - [anon_sym_unsigned] = ACTIONS(1774), - [anon_sym_char] = ACTIONS(1774), - [anon_sym_short] = ACTIONS(1774), - [anon_sym_long] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_ctypedef] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1774), - [anon_sym_union] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [anon_sym_cppclass] = ACTIONS(1774), - [anon_sym_fused] = ACTIONS(1774), - [anon_sym_public] = ACTIONS(1774), - [anon_sym_packed] = ACTIONS(1774), - [anon_sym_inline] = ACTIONS(1774), - [anon_sym_readonly] = ACTIONS(1774), - [anon_sym_sizeof] = ACTIONS(1774), - [sym__dedent] = ACTIONS(1778), - [sym_string_start] = ACTIONS(1778), + [anon_sym_property] = ACTIONS(1809), + [anon_sym_include] = ACTIONS(1809), + [anon_sym_DEF] = ACTIONS(1809), + [anon_sym_cdef] = ACTIONS(1809), + [anon_sym_cpdef] = ACTIONS(1809), + [anon_sym_int] = ACTIONS(1809), + [anon_sym_double] = ACTIONS(1809), + [anon_sym_complex] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_signed] = ACTIONS(1809), + [anon_sym_unsigned] = ACTIONS(1809), + [anon_sym_char] = ACTIONS(1809), + [anon_sym_short] = ACTIONS(1809), + [anon_sym_long] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_volatile] = ACTIONS(1809), + [anon_sym_ctypedef] = ACTIONS(1809), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_cppclass] = ACTIONS(1809), + [anon_sym_fused] = ACTIONS(1809), + [anon_sym_public] = ACTIONS(1809), + [anon_sym_packed] = ACTIONS(1809), + [anon_sym_inline] = ACTIONS(1809), + [anon_sym_readonly] = ACTIONS(1809), + [anon_sym_sizeof] = ACTIONS(1809), + [sym__dedent] = ACTIONS(1811), + [sym_string_start] = ACTIONS(1811), }, [540] = { - [sym_identifier] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_import] = ACTIONS(1780), - [anon_sym_cimport] = ACTIONS(1780), - [anon_sym_from] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_print] = ACTIONS(1780), - [anon_sym_assert] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_del] = ACTIONS(1780), - [anon_sym_raise] = ACTIONS(1780), - [anon_sym_pass] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_match] = ACTIONS(1780), - [anon_sym_async] = ACTIONS(1780), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_try] = ACTIONS(1780), - [anon_sym_with] = ACTIONS(1780), - [anon_sym_def] = ACTIONS(1780), - [anon_sym_global] = ACTIONS(1780), - [anon_sym_nonlocal] = ACTIONS(1780), - [anon_sym_exec] = ACTIONS(1780), - [anon_sym_type] = ACTIONS(1780), - [anon_sym_class] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_AT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_not] = ACTIONS(1780), - [anon_sym_AMP] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1782), - [anon_sym_lambda] = ACTIONS(1780), - [anon_sym_yield] = ACTIONS(1780), - [sym_ellipsis] = ACTIONS(1782), - [anon_sym_None] = ACTIONS(1780), - [sym_integer] = ACTIONS(1780), - [sym_float] = ACTIONS(1782), - [anon_sym_await] = ACTIONS(1780), - [anon_sym_api] = ACTIONS(1780), - [sym_true] = ACTIONS(1780), - [sym_false] = ACTIONS(1780), + [sym_identifier] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1815), + [anon_sym_import] = ACTIONS(1813), + [anon_sym_cimport] = ACTIONS(1813), + [anon_sym_from] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1817), + [anon_sym_print] = ACTIONS(1813), + [anon_sym_assert] = ACTIONS(1813), + [anon_sym_return] = ACTIONS(1813), + [anon_sym_del] = ACTIONS(1813), + [anon_sym_raise] = ACTIONS(1813), + [anon_sym_pass] = ACTIONS(1813), + [anon_sym_break] = ACTIONS(1813), + [anon_sym_continue] = ACTIONS(1813), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_match] = ACTIONS(1813), + [anon_sym_async] = ACTIONS(1813), + [anon_sym_for] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(1813), + [anon_sym_try] = ACTIONS(1813), + [anon_sym_with] = ACTIONS(1813), + [anon_sym_def] = ACTIONS(1813), + [anon_sym_global] = ACTIONS(1813), + [anon_sym_nonlocal] = ACTIONS(1813), + [anon_sym_exec] = ACTIONS(1813), + [anon_sym_type] = ACTIONS(1813), + [anon_sym_class] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1817), + [anon_sym_AT] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_not] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_LT] = ACTIONS(1817), + [anon_sym_lambda] = ACTIONS(1813), + [anon_sym_yield] = ACTIONS(1813), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), + [anon_sym_None] = ACTIONS(1813), + [sym_integer] = ACTIONS(1813), + [sym_float] = ACTIONS(1817), + [anon_sym_await] = ACTIONS(1813), + [anon_sym_api] = ACTIONS(1813), + [sym_true] = ACTIONS(1813), + [sym_false] = ACTIONS(1813), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1780), - [anon_sym_include] = ACTIONS(1780), - [anon_sym_DEF] = ACTIONS(1780), - [anon_sym_cdef] = ACTIONS(1780), - [anon_sym_cpdef] = ACTIONS(1780), - [anon_sym_int] = ACTIONS(1780), - [anon_sym_double] = ACTIONS(1780), - [anon_sym_complex] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_signed] = ACTIONS(1780), - [anon_sym_unsigned] = ACTIONS(1780), - [anon_sym_char] = ACTIONS(1780), - [anon_sym_short] = ACTIONS(1780), - [anon_sym_long] = ACTIONS(1780), - [anon_sym_const] = ACTIONS(1780), - [anon_sym_volatile] = ACTIONS(1780), - [anon_sym_ctypedef] = ACTIONS(1780), - [anon_sym_struct] = ACTIONS(1780), - [anon_sym_union] = ACTIONS(1780), - [anon_sym_enum] = ACTIONS(1780), - [anon_sym_cppclass] = ACTIONS(1780), - [anon_sym_fused] = ACTIONS(1780), - [anon_sym_public] = ACTIONS(1780), - [anon_sym_packed] = ACTIONS(1780), - [anon_sym_inline] = ACTIONS(1780), - [anon_sym_readonly] = ACTIONS(1780), - [anon_sym_sizeof] = ACTIONS(1780), - [sym__dedent] = ACTIONS(1782), - [sym_string_start] = ACTIONS(1782), + [anon_sym_property] = ACTIONS(1813), + [anon_sym_include] = ACTIONS(1813), + [anon_sym_DEF] = ACTIONS(1813), + [anon_sym_cdef] = ACTIONS(1813), + [anon_sym_cpdef] = ACTIONS(1813), + [anon_sym_int] = ACTIONS(1813), + [anon_sym_double] = ACTIONS(1813), + [anon_sym_complex] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1813), + [anon_sym_signed] = ACTIONS(1813), + [anon_sym_unsigned] = ACTIONS(1813), + [anon_sym_char] = ACTIONS(1813), + [anon_sym_short] = ACTIONS(1813), + [anon_sym_long] = ACTIONS(1813), + [anon_sym_const] = ACTIONS(1813), + [anon_sym_volatile] = ACTIONS(1813), + [anon_sym_ctypedef] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1813), + [anon_sym_union] = ACTIONS(1813), + [anon_sym_enum] = ACTIONS(1813), + [anon_sym_cppclass] = ACTIONS(1813), + [anon_sym_fused] = ACTIONS(1813), + [anon_sym_public] = ACTIONS(1813), + [anon_sym_packed] = ACTIONS(1813), + [anon_sym_inline] = ACTIONS(1813), + [anon_sym_readonly] = ACTIONS(1813), + [anon_sym_sizeof] = ACTIONS(1813), + [sym__dedent] = ACTIONS(1817), + [sym_string_start] = ACTIONS(1817), }, [541] = { - [sym_identifier] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_import] = ACTIONS(1784), - [anon_sym_cimport] = ACTIONS(1784), - [anon_sym_from] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_print] = ACTIONS(1784), - [anon_sym_assert] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_del] = ACTIONS(1784), - [anon_sym_raise] = ACTIONS(1784), - [anon_sym_pass] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_match] = ACTIONS(1784), - [anon_sym_async] = ACTIONS(1784), - [anon_sym_for] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_try] = ACTIONS(1784), - [anon_sym_with] = ACTIONS(1784), - [anon_sym_def] = ACTIONS(1784), - [anon_sym_global] = ACTIONS(1784), - [anon_sym_nonlocal] = ACTIONS(1784), - [anon_sym_exec] = ACTIONS(1784), - [anon_sym_type] = ACTIONS(1784), - [anon_sym_class] = ACTIONS(1784), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_AT] = ACTIONS(1786), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_not] = ACTIONS(1784), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_TILDE] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1786), - [anon_sym_lambda] = ACTIONS(1784), - [anon_sym_yield] = ACTIONS(1784), - [sym_ellipsis] = ACTIONS(1786), - [anon_sym_None] = ACTIONS(1784), - [sym_integer] = ACTIONS(1784), - [sym_float] = ACTIONS(1786), - [anon_sym_await] = ACTIONS(1784), - [anon_sym_api] = ACTIONS(1784), - [sym_true] = ACTIONS(1784), - [sym_false] = ACTIONS(1784), + [sym_identifier] = ACTIONS(1819), + [anon_sym_SEMI] = ACTIONS(1821), + [anon_sym_import] = ACTIONS(1819), + [anon_sym_cimport] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1819), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_STAR] = ACTIONS(1821), + [anon_sym_print] = ACTIONS(1819), + [anon_sym_assert] = ACTIONS(1819), + [anon_sym_return] = ACTIONS(1819), + [anon_sym_del] = ACTIONS(1819), + [anon_sym_raise] = ACTIONS(1819), + [anon_sym_pass] = ACTIONS(1819), + [anon_sym_break] = ACTIONS(1819), + [anon_sym_continue] = ACTIONS(1819), + [anon_sym_if] = ACTIONS(1819), + [anon_sym_match] = ACTIONS(1819), + [anon_sym_async] = ACTIONS(1819), + [anon_sym_for] = ACTIONS(1819), + [anon_sym_while] = ACTIONS(1819), + [anon_sym_try] = ACTIONS(1819), + [anon_sym_with] = ACTIONS(1819), + [anon_sym_def] = ACTIONS(1819), + [anon_sym_global] = ACTIONS(1819), + [anon_sym_nonlocal] = ACTIONS(1819), + [anon_sym_exec] = ACTIONS(1819), + [anon_sym_type] = ACTIONS(1819), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_LBRACK] = ACTIONS(1821), + [anon_sym_AT] = ACTIONS(1821), + [anon_sym_DASH] = ACTIONS(1821), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_PLUS] = ACTIONS(1821), + [anon_sym_not] = ACTIONS(1819), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1821), + [anon_sym_LT] = ACTIONS(1821), + [anon_sym_lambda] = ACTIONS(1819), + [anon_sym_yield] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1821), + [anon_sym_None] = ACTIONS(1819), + [sym_integer] = ACTIONS(1819), + [sym_float] = ACTIONS(1821), + [anon_sym_await] = ACTIONS(1819), + [anon_sym_api] = ACTIONS(1819), + [sym_true] = ACTIONS(1819), + [sym_false] = ACTIONS(1819), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1784), - [anon_sym_include] = ACTIONS(1784), - [anon_sym_DEF] = ACTIONS(1784), - [anon_sym_cdef] = ACTIONS(1784), - [anon_sym_cpdef] = ACTIONS(1784), - [anon_sym_int] = ACTIONS(1784), - [anon_sym_double] = ACTIONS(1784), - [anon_sym_complex] = ACTIONS(1784), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_signed] = ACTIONS(1784), - [anon_sym_unsigned] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_short] = ACTIONS(1784), - [anon_sym_long] = ACTIONS(1784), - [anon_sym_const] = ACTIONS(1784), - [anon_sym_volatile] = ACTIONS(1784), - [anon_sym_ctypedef] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1784), - [anon_sym_union] = ACTIONS(1784), - [anon_sym_enum] = ACTIONS(1784), - [anon_sym_cppclass] = ACTIONS(1784), - [anon_sym_fused] = ACTIONS(1784), - [anon_sym_public] = ACTIONS(1784), - [anon_sym_packed] = ACTIONS(1784), - [anon_sym_inline] = ACTIONS(1784), - [anon_sym_readonly] = ACTIONS(1784), - [anon_sym_sizeof] = ACTIONS(1784), - [sym__dedent] = ACTIONS(1786), - [sym_string_start] = ACTIONS(1786), + [anon_sym_property] = ACTIONS(1819), + [anon_sym_include] = ACTIONS(1819), + [anon_sym_DEF] = ACTIONS(1819), + [anon_sym_cdef] = ACTIONS(1819), + [anon_sym_cpdef] = ACTIONS(1819), + [anon_sym_int] = ACTIONS(1819), + [anon_sym_double] = ACTIONS(1819), + [anon_sym_complex] = ACTIONS(1819), + [anon_sym_new] = ACTIONS(1819), + [anon_sym_signed] = ACTIONS(1819), + [anon_sym_unsigned] = ACTIONS(1819), + [anon_sym_char] = ACTIONS(1819), + [anon_sym_short] = ACTIONS(1819), + [anon_sym_long] = ACTIONS(1819), + [anon_sym_const] = ACTIONS(1819), + [anon_sym_volatile] = ACTIONS(1819), + [anon_sym_ctypedef] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1819), + [anon_sym_union] = ACTIONS(1819), + [anon_sym_enum] = ACTIONS(1819), + [anon_sym_cppclass] = ACTIONS(1819), + [anon_sym_fused] = ACTIONS(1819), + [anon_sym_public] = ACTIONS(1819), + [anon_sym_packed] = ACTIONS(1819), + [anon_sym_inline] = ACTIONS(1819), + [anon_sym_readonly] = ACTIONS(1819), + [anon_sym_sizeof] = ACTIONS(1819), + [sym__dedent] = ACTIONS(1821), + [sym_string_start] = ACTIONS(1821), }, [542] = { - [sym_identifier] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_import] = ACTIONS(1788), - [anon_sym_cimport] = ACTIONS(1788), - [anon_sym_from] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_print] = ACTIONS(1788), - [anon_sym_assert] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(1788), - [anon_sym_del] = ACTIONS(1788), - [anon_sym_raise] = ACTIONS(1788), - [anon_sym_pass] = ACTIONS(1788), - [anon_sym_break] = ACTIONS(1788), - [anon_sym_continue] = ACTIONS(1788), - [anon_sym_if] = ACTIONS(1788), - [anon_sym_match] = ACTIONS(1788), - [anon_sym_async] = ACTIONS(1788), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_while] = ACTIONS(1788), - [anon_sym_try] = ACTIONS(1788), - [anon_sym_with] = ACTIONS(1788), - [anon_sym_def] = ACTIONS(1788), - [anon_sym_global] = ACTIONS(1788), - [anon_sym_nonlocal] = ACTIONS(1788), - [anon_sym_exec] = ACTIONS(1788), - [anon_sym_type] = ACTIONS(1788), - [anon_sym_class] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_not] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_lambda] = ACTIONS(1788), - [anon_sym_yield] = ACTIONS(1788), - [sym_ellipsis] = ACTIONS(1790), - [anon_sym_None] = ACTIONS(1788), - [sym_integer] = ACTIONS(1788), - [sym_float] = ACTIONS(1790), - [anon_sym_await] = ACTIONS(1788), - [anon_sym_api] = ACTIONS(1788), - [sym_true] = ACTIONS(1788), - [sym_false] = ACTIONS(1788), + [sym_identifier] = ACTIONS(1823), + [anon_sym_SEMI] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1823), + [anon_sym_cimport] = ACTIONS(1823), + [anon_sym_from] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1825), + [anon_sym_STAR] = ACTIONS(1825), + [anon_sym_print] = ACTIONS(1823), + [anon_sym_assert] = ACTIONS(1823), + [anon_sym_return] = ACTIONS(1823), + [anon_sym_del] = ACTIONS(1823), + [anon_sym_raise] = ACTIONS(1823), + [anon_sym_pass] = ACTIONS(1823), + [anon_sym_break] = ACTIONS(1823), + [anon_sym_continue] = ACTIONS(1823), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_match] = ACTIONS(1823), + [anon_sym_async] = ACTIONS(1823), + [anon_sym_for] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(1823), + [anon_sym_try] = ACTIONS(1823), + [anon_sym_with] = ACTIONS(1823), + [anon_sym_def] = ACTIONS(1823), + [anon_sym_global] = ACTIONS(1823), + [anon_sym_nonlocal] = ACTIONS(1823), + [anon_sym_exec] = ACTIONS(1823), + [anon_sym_type] = ACTIONS(1823), + [anon_sym_class] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_AT] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1825), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_not] = ACTIONS(1823), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_LT] = ACTIONS(1825), + [anon_sym_lambda] = ACTIONS(1823), + [anon_sym_yield] = ACTIONS(1823), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1825), + [anon_sym_None] = ACTIONS(1823), + [sym_integer] = ACTIONS(1823), + [sym_float] = ACTIONS(1825), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_api] = ACTIONS(1823), + [sym_true] = ACTIONS(1823), + [sym_false] = ACTIONS(1823), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1788), - [anon_sym_include] = ACTIONS(1788), - [anon_sym_DEF] = ACTIONS(1788), - [anon_sym_cdef] = ACTIONS(1788), - [anon_sym_cpdef] = ACTIONS(1788), - [anon_sym_int] = ACTIONS(1788), - [anon_sym_double] = ACTIONS(1788), - [anon_sym_complex] = ACTIONS(1788), - [anon_sym_new] = ACTIONS(1788), - [anon_sym_signed] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_char] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_const] = ACTIONS(1788), - [anon_sym_volatile] = ACTIONS(1788), - [anon_sym_ctypedef] = ACTIONS(1788), - [anon_sym_struct] = ACTIONS(1788), - [anon_sym_union] = ACTIONS(1788), - [anon_sym_enum] = ACTIONS(1788), - [anon_sym_cppclass] = ACTIONS(1788), - [anon_sym_fused] = ACTIONS(1788), - [anon_sym_public] = ACTIONS(1788), - [anon_sym_packed] = ACTIONS(1788), - [anon_sym_inline] = ACTIONS(1788), - [anon_sym_readonly] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1788), - [sym__dedent] = ACTIONS(1790), - [sym_string_start] = ACTIONS(1790), + [anon_sym_property] = ACTIONS(1823), + [anon_sym_include] = ACTIONS(1823), + [anon_sym_DEF] = ACTIONS(1823), + [anon_sym_cdef] = ACTIONS(1823), + [anon_sym_cpdef] = ACTIONS(1823), + [anon_sym_int] = ACTIONS(1823), + [anon_sym_double] = ACTIONS(1823), + [anon_sym_complex] = ACTIONS(1823), + [anon_sym_new] = ACTIONS(1823), + [anon_sym_signed] = ACTIONS(1823), + [anon_sym_unsigned] = ACTIONS(1823), + [anon_sym_char] = ACTIONS(1823), + [anon_sym_short] = ACTIONS(1823), + [anon_sym_long] = ACTIONS(1823), + [anon_sym_const] = ACTIONS(1823), + [anon_sym_volatile] = ACTIONS(1823), + [anon_sym_ctypedef] = ACTIONS(1823), + [anon_sym_struct] = ACTIONS(1823), + [anon_sym_union] = ACTIONS(1823), + [anon_sym_enum] = ACTIONS(1823), + [anon_sym_cppclass] = ACTIONS(1823), + [anon_sym_fused] = ACTIONS(1823), + [anon_sym_public] = ACTIONS(1823), + [anon_sym_packed] = ACTIONS(1823), + [anon_sym_inline] = ACTIONS(1823), + [anon_sym_readonly] = ACTIONS(1823), + [anon_sym_sizeof] = ACTIONS(1823), + [sym__dedent] = ACTIONS(1825), + [sym_string_start] = ACTIONS(1825), }, [543] = { - [sym_identifier] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_import] = ACTIONS(1792), - [anon_sym_cimport] = ACTIONS(1792), - [anon_sym_from] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1794), - [anon_sym_print] = ACTIONS(1792), - [anon_sym_assert] = ACTIONS(1792), - [anon_sym_return] = ACTIONS(1792), - [anon_sym_del] = ACTIONS(1792), - [anon_sym_raise] = ACTIONS(1792), - [anon_sym_pass] = ACTIONS(1792), - [anon_sym_break] = ACTIONS(1792), - [anon_sym_continue] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(1792), - [anon_sym_match] = ACTIONS(1792), - [anon_sym_async] = ACTIONS(1792), - [anon_sym_for] = ACTIONS(1792), - [anon_sym_while] = ACTIONS(1792), - [anon_sym_try] = ACTIONS(1792), - [anon_sym_with] = ACTIONS(1792), - [anon_sym_def] = ACTIONS(1792), - [anon_sym_global] = ACTIONS(1792), - [anon_sym_nonlocal] = ACTIONS(1792), - [anon_sym_exec] = ACTIONS(1792), - [anon_sym_type] = ACTIONS(1792), - [anon_sym_class] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_AT] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_not] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_LT] = ACTIONS(1794), - [anon_sym_lambda] = ACTIONS(1792), - [anon_sym_yield] = ACTIONS(1792), - [sym_ellipsis] = ACTIONS(1794), - [anon_sym_None] = ACTIONS(1792), - [sym_integer] = ACTIONS(1792), - [sym_float] = ACTIONS(1794), - [anon_sym_await] = ACTIONS(1792), - [anon_sym_api] = ACTIONS(1792), - [sym_true] = ACTIONS(1792), - [sym_false] = ACTIONS(1792), + [sym_identifier] = ACTIONS(1827), + [anon_sym_SEMI] = ACTIONS(1829), + [anon_sym_import] = ACTIONS(1827), + [anon_sym_cimport] = ACTIONS(1827), + [anon_sym_from] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(1829), + [anon_sym_print] = ACTIONS(1827), + [anon_sym_assert] = ACTIONS(1827), + [anon_sym_return] = ACTIONS(1827), + [anon_sym_del] = ACTIONS(1827), + [anon_sym_raise] = ACTIONS(1827), + [anon_sym_pass] = ACTIONS(1827), + [anon_sym_break] = ACTIONS(1827), + [anon_sym_continue] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_match] = ACTIONS(1827), + [anon_sym_async] = ACTIONS(1827), + [anon_sym_for] = ACTIONS(1827), + [anon_sym_while] = ACTIONS(1827), + [anon_sym_try] = ACTIONS(1827), + [anon_sym_with] = ACTIONS(1827), + [anon_sym_def] = ACTIONS(1827), + [anon_sym_global] = ACTIONS(1827), + [anon_sym_nonlocal] = ACTIONS(1827), + [anon_sym_exec] = ACTIONS(1827), + [anon_sym_type] = ACTIONS(1827), + [anon_sym_class] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_AT] = ACTIONS(1829), + [anon_sym_DASH] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1829), + [anon_sym_not] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_LT] = ACTIONS(1829), + [anon_sym_lambda] = ACTIONS(1827), + [anon_sym_yield] = ACTIONS(1827), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1829), + [anon_sym_None] = ACTIONS(1827), + [sym_integer] = ACTIONS(1827), + [sym_float] = ACTIONS(1829), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_api] = ACTIONS(1827), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1792), - [anon_sym_include] = ACTIONS(1792), - [anon_sym_DEF] = ACTIONS(1792), - [anon_sym_cdef] = ACTIONS(1792), - [anon_sym_cpdef] = ACTIONS(1792), - [anon_sym_int] = ACTIONS(1792), - [anon_sym_double] = ACTIONS(1792), - [anon_sym_complex] = ACTIONS(1792), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_signed] = ACTIONS(1792), - [anon_sym_unsigned] = ACTIONS(1792), - [anon_sym_char] = ACTIONS(1792), - [anon_sym_short] = ACTIONS(1792), - [anon_sym_long] = ACTIONS(1792), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_volatile] = ACTIONS(1792), - [anon_sym_ctypedef] = ACTIONS(1792), - [anon_sym_struct] = ACTIONS(1792), - [anon_sym_union] = ACTIONS(1792), - [anon_sym_enum] = ACTIONS(1792), - [anon_sym_cppclass] = ACTIONS(1792), - [anon_sym_fused] = ACTIONS(1792), - [anon_sym_public] = ACTIONS(1792), - [anon_sym_packed] = ACTIONS(1792), - [anon_sym_inline] = ACTIONS(1792), - [anon_sym_readonly] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1792), - [sym__dedent] = ACTIONS(1794), - [sym_string_start] = ACTIONS(1794), + [anon_sym_property] = ACTIONS(1827), + [anon_sym_include] = ACTIONS(1827), + [anon_sym_DEF] = ACTIONS(1827), + [anon_sym_cdef] = ACTIONS(1827), + [anon_sym_cpdef] = ACTIONS(1827), + [anon_sym_int] = ACTIONS(1827), + [anon_sym_double] = ACTIONS(1827), + [anon_sym_complex] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1827), + [anon_sym_signed] = ACTIONS(1827), + [anon_sym_unsigned] = ACTIONS(1827), + [anon_sym_char] = ACTIONS(1827), + [anon_sym_short] = ACTIONS(1827), + [anon_sym_long] = ACTIONS(1827), + [anon_sym_const] = ACTIONS(1827), + [anon_sym_volatile] = ACTIONS(1827), + [anon_sym_ctypedef] = ACTIONS(1827), + [anon_sym_struct] = ACTIONS(1827), + [anon_sym_union] = ACTIONS(1827), + [anon_sym_enum] = ACTIONS(1827), + [anon_sym_cppclass] = ACTIONS(1827), + [anon_sym_fused] = ACTIONS(1827), + [anon_sym_public] = ACTIONS(1827), + [anon_sym_packed] = ACTIONS(1827), + [anon_sym_inline] = ACTIONS(1827), + [anon_sym_readonly] = ACTIONS(1827), + [anon_sym_sizeof] = ACTIONS(1827), + [sym__dedent] = ACTIONS(1829), + [sym_string_start] = ACTIONS(1829), }, [544] = { - [sym_identifier] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_import] = ACTIONS(1796), - [anon_sym_cimport] = ACTIONS(1796), - [anon_sym_from] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1798), - [anon_sym_print] = ACTIONS(1796), - [anon_sym_assert] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_del] = ACTIONS(1796), - [anon_sym_raise] = ACTIONS(1796), - [anon_sym_pass] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_match] = ACTIONS(1796), - [anon_sym_async] = ACTIONS(1796), - [anon_sym_for] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_with] = ACTIONS(1796), - [anon_sym_def] = ACTIONS(1796), - [anon_sym_global] = ACTIONS(1796), - [anon_sym_nonlocal] = ACTIONS(1796), - [anon_sym_exec] = ACTIONS(1796), - [anon_sym_type] = ACTIONS(1796), - [anon_sym_class] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_AT] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_not] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1798), - [anon_sym_lambda] = ACTIONS(1796), - [anon_sym_yield] = ACTIONS(1796), - [sym_ellipsis] = ACTIONS(1798), - [anon_sym_None] = ACTIONS(1796), - [sym_integer] = ACTIONS(1796), - [sym_float] = ACTIONS(1798), - [anon_sym_await] = ACTIONS(1796), - [anon_sym_api] = ACTIONS(1796), - [sym_true] = ACTIONS(1796), - [sym_false] = ACTIONS(1796), + [sym_identifier] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1833), + [anon_sym_import] = ACTIONS(1831), + [anon_sym_cimport] = ACTIONS(1831), + [anon_sym_from] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym_print] = ACTIONS(1831), + [anon_sym_assert] = ACTIONS(1831), + [anon_sym_return] = ACTIONS(1831), + [anon_sym_del] = ACTIONS(1831), + [anon_sym_raise] = ACTIONS(1831), + [anon_sym_pass] = ACTIONS(1831), + [anon_sym_break] = ACTIONS(1831), + [anon_sym_continue] = ACTIONS(1831), + [anon_sym_if] = ACTIONS(1831), + [anon_sym_match] = ACTIONS(1831), + [anon_sym_async] = ACTIONS(1831), + [anon_sym_for] = ACTIONS(1831), + [anon_sym_while] = ACTIONS(1831), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_with] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1831), + [anon_sym_global] = ACTIONS(1831), + [anon_sym_nonlocal] = ACTIONS(1831), + [anon_sym_exec] = ACTIONS(1831), + [anon_sym_type] = ACTIONS(1831), + [anon_sym_class] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1833), + [anon_sym_AT] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1833), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_not] = ACTIONS(1831), + [anon_sym_AMP] = ACTIONS(1833), + [anon_sym_TILDE] = ACTIONS(1833), + [anon_sym_LT] = ACTIONS(1833), + [anon_sym_lambda] = ACTIONS(1831), + [anon_sym_yield] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1833), + [anon_sym_None] = ACTIONS(1831), + [sym_integer] = ACTIONS(1831), + [sym_float] = ACTIONS(1833), + [anon_sym_await] = ACTIONS(1831), + [anon_sym_api] = ACTIONS(1831), + [sym_true] = ACTIONS(1831), + [sym_false] = ACTIONS(1831), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1796), - [anon_sym_include] = ACTIONS(1796), - [anon_sym_DEF] = ACTIONS(1796), - [anon_sym_cdef] = ACTIONS(1796), - [anon_sym_cpdef] = ACTIONS(1796), - [anon_sym_int] = ACTIONS(1796), - [anon_sym_double] = ACTIONS(1796), - [anon_sym_complex] = ACTIONS(1796), - [anon_sym_new] = ACTIONS(1796), - [anon_sym_signed] = ACTIONS(1796), - [anon_sym_unsigned] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_short] = ACTIONS(1796), - [anon_sym_long] = ACTIONS(1796), - [anon_sym_const] = ACTIONS(1796), - [anon_sym_volatile] = ACTIONS(1796), - [anon_sym_ctypedef] = ACTIONS(1796), - [anon_sym_struct] = ACTIONS(1796), - [anon_sym_union] = ACTIONS(1796), - [anon_sym_enum] = ACTIONS(1796), - [anon_sym_cppclass] = ACTIONS(1796), - [anon_sym_fused] = ACTIONS(1796), - [anon_sym_public] = ACTIONS(1796), - [anon_sym_packed] = ACTIONS(1796), - [anon_sym_inline] = ACTIONS(1796), - [anon_sym_readonly] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1796), - [sym__dedent] = ACTIONS(1798), - [sym_string_start] = ACTIONS(1798), + [anon_sym_property] = ACTIONS(1831), + [anon_sym_include] = ACTIONS(1831), + [anon_sym_DEF] = ACTIONS(1831), + [anon_sym_cdef] = ACTIONS(1831), + [anon_sym_cpdef] = ACTIONS(1831), + [anon_sym_int] = ACTIONS(1831), + [anon_sym_double] = ACTIONS(1831), + [anon_sym_complex] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1831), + [anon_sym_signed] = ACTIONS(1831), + [anon_sym_unsigned] = ACTIONS(1831), + [anon_sym_char] = ACTIONS(1831), + [anon_sym_short] = ACTIONS(1831), + [anon_sym_long] = ACTIONS(1831), + [anon_sym_const] = ACTIONS(1831), + [anon_sym_volatile] = ACTIONS(1831), + [anon_sym_ctypedef] = ACTIONS(1831), + [anon_sym_struct] = ACTIONS(1831), + [anon_sym_union] = ACTIONS(1831), + [anon_sym_enum] = ACTIONS(1831), + [anon_sym_cppclass] = ACTIONS(1831), + [anon_sym_fused] = ACTIONS(1831), + [anon_sym_public] = ACTIONS(1831), + [anon_sym_packed] = ACTIONS(1831), + [anon_sym_inline] = ACTIONS(1831), + [anon_sym_readonly] = ACTIONS(1831), + [anon_sym_sizeof] = ACTIONS(1831), + [sym__dedent] = ACTIONS(1833), + [sym_string_start] = ACTIONS(1833), }, [545] = { - [sym_identifier] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_import] = ACTIONS(1800), - [anon_sym_cimport] = ACTIONS(1800), - [anon_sym_from] = ACTIONS(1800), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1802), - [anon_sym_print] = ACTIONS(1800), - [anon_sym_assert] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_del] = ACTIONS(1800), - [anon_sym_raise] = ACTIONS(1800), - [anon_sym_pass] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_match] = ACTIONS(1800), - [anon_sym_async] = ACTIONS(1800), - [anon_sym_for] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_with] = ACTIONS(1800), - [anon_sym_def] = ACTIONS(1800), - [anon_sym_global] = ACTIONS(1800), - [anon_sym_nonlocal] = ACTIONS(1800), - [anon_sym_exec] = ACTIONS(1800), - [anon_sym_type] = ACTIONS(1800), - [anon_sym_class] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_AT] = ACTIONS(1802), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_not] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym_TILDE] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1802), - [anon_sym_lambda] = ACTIONS(1800), - [anon_sym_yield] = ACTIONS(1800), - [sym_ellipsis] = ACTIONS(1802), - [anon_sym_None] = ACTIONS(1800), - [sym_integer] = ACTIONS(1800), - [sym_float] = ACTIONS(1802), - [anon_sym_await] = ACTIONS(1800), - [anon_sym_api] = ACTIONS(1800), - [sym_true] = ACTIONS(1800), - [sym_false] = ACTIONS(1800), + [sym_list_splat_pattern] = STATE(2212), + [sym_primary_expression] = STATE(2059), + [sym_binary_operator] = STATE(2175), + [sym_unary_operator] = STATE(2175), + [sym_attribute] = STATE(2175), + [sym_subscript] = STATE(2175), + [sym_ellipsis] = STATE(2175), + [sym_call] = STATE(2175), + [sym_list] = STATE(2175), + [sym_set] = STATE(2175), + [sym_tuple] = STATE(2175), + [sym_dictionary] = STATE(2175), + [sym_list_comprehension] = STATE(2175), + [sym_dictionary_comprehension] = STATE(2175), + [sym_set_comprehension] = STATE(2175), + [sym_generator_expression] = STATE(2175), + [sym_parenthesized_expression] = STATE(2175), + [sym_concatenated_string] = STATE(2175), + [sym_string] = STATE(1976), + [sym_none] = STATE(2175), + [sym_await] = STATE(2175), + [sym_sizeof_expression] = STATE(2175), + [sym_cast_expression] = STATE(2175), + [sym_identifier] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(1705), + [anon_sym_print] = ACTIONS(1707), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_match] = ACTIONS(1707), + [anon_sym_async] = ACTIONS(1707), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_exec] = ACTIONS(1707), + [anon_sym_EQ] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_SLASH_SLASH] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(1711), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(1715), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1717), + [anon_sym_None] = ACTIONS(1719), + [sym_type_conversion] = ACTIONS(563), + [sym_integer] = ACTIONS(1701), + [sym_float] = ACTIONS(1721), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_api] = ACTIONS(1707), + [sym_true] = ACTIONS(1701), + [sym_false] = ACTIONS(1701), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1800), - [anon_sym_include] = ACTIONS(1800), - [anon_sym_DEF] = ACTIONS(1800), - [anon_sym_cdef] = ACTIONS(1800), - [anon_sym_cpdef] = ACTIONS(1800), - [anon_sym_int] = ACTIONS(1800), - [anon_sym_double] = ACTIONS(1800), - [anon_sym_complex] = ACTIONS(1800), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_signed] = ACTIONS(1800), - [anon_sym_unsigned] = ACTIONS(1800), - [anon_sym_char] = ACTIONS(1800), - [anon_sym_short] = ACTIONS(1800), - [anon_sym_long] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1800), - [anon_sym_volatile] = ACTIONS(1800), - [anon_sym_ctypedef] = ACTIONS(1800), - [anon_sym_struct] = ACTIONS(1800), - [anon_sym_union] = ACTIONS(1800), - [anon_sym_enum] = ACTIONS(1800), - [anon_sym_cppclass] = ACTIONS(1800), - [anon_sym_fused] = ACTIONS(1800), - [anon_sym_public] = ACTIONS(1800), - [anon_sym_packed] = ACTIONS(1800), - [anon_sym_inline] = ACTIONS(1800), - [anon_sym_readonly] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1800), - [sym__dedent] = ACTIONS(1802), - [sym_string_start] = ACTIONS(1802), + [anon_sym_sizeof] = ACTIONS(1725), + [sym_string_start] = ACTIONS(1727), }, [546] = { - [sym_identifier] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_import] = ACTIONS(1804), - [anon_sym_cimport] = ACTIONS(1804), - [anon_sym_from] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1806), - [anon_sym_print] = ACTIONS(1804), - [anon_sym_assert] = ACTIONS(1804), - [anon_sym_return] = ACTIONS(1804), - [anon_sym_del] = ACTIONS(1804), - [anon_sym_raise] = ACTIONS(1804), - [anon_sym_pass] = ACTIONS(1804), - [anon_sym_break] = ACTIONS(1804), - [anon_sym_continue] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1804), - [anon_sym_match] = ACTIONS(1804), - [anon_sym_async] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1804), - [anon_sym_while] = ACTIONS(1804), - [anon_sym_try] = ACTIONS(1804), - [anon_sym_with] = ACTIONS(1804), - [anon_sym_def] = ACTIONS(1804), - [anon_sym_global] = ACTIONS(1804), - [anon_sym_nonlocal] = ACTIONS(1804), - [anon_sym_exec] = ACTIONS(1804), - [anon_sym_type] = ACTIONS(1804), - [anon_sym_class] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_AT] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_not] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(1806), - [anon_sym_LT] = ACTIONS(1806), - [anon_sym_lambda] = ACTIONS(1804), - [anon_sym_yield] = ACTIONS(1804), - [sym_ellipsis] = ACTIONS(1806), - [anon_sym_None] = ACTIONS(1804), - [sym_integer] = ACTIONS(1804), - [sym_float] = ACTIONS(1806), - [anon_sym_await] = ACTIONS(1804), - [anon_sym_api] = ACTIONS(1804), - [sym_true] = ACTIONS(1804), - [sym_false] = ACTIONS(1804), + [sym_identifier] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_import] = ACTIONS(1835), + [anon_sym_cimport] = ACTIONS(1835), + [anon_sym_from] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_print] = ACTIONS(1835), + [anon_sym_assert] = ACTIONS(1835), + [anon_sym_return] = ACTIONS(1835), + [anon_sym_del] = ACTIONS(1835), + [anon_sym_raise] = ACTIONS(1835), + [anon_sym_pass] = ACTIONS(1835), + [anon_sym_break] = ACTIONS(1835), + [anon_sym_continue] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1835), + [anon_sym_match] = ACTIONS(1835), + [anon_sym_async] = ACTIONS(1835), + [anon_sym_for] = ACTIONS(1835), + [anon_sym_while] = ACTIONS(1835), + [anon_sym_try] = ACTIONS(1835), + [anon_sym_with] = ACTIONS(1835), + [anon_sym_def] = ACTIONS(1835), + [anon_sym_global] = ACTIONS(1835), + [anon_sym_nonlocal] = ACTIONS(1835), + [anon_sym_exec] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_class] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_lambda] = ACTIONS(1835), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_None] = ACTIONS(1835), + [sym_integer] = ACTIONS(1835), + [sym_float] = ACTIONS(1837), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_api] = ACTIONS(1835), + [sym_true] = ACTIONS(1835), + [sym_false] = ACTIONS(1835), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1804), - [anon_sym_include] = ACTIONS(1804), - [anon_sym_DEF] = ACTIONS(1804), - [anon_sym_cdef] = ACTIONS(1804), - [anon_sym_cpdef] = ACTIONS(1804), - [anon_sym_int] = ACTIONS(1804), - [anon_sym_double] = ACTIONS(1804), - [anon_sym_complex] = ACTIONS(1804), - [anon_sym_new] = ACTIONS(1804), - [anon_sym_signed] = ACTIONS(1804), - [anon_sym_unsigned] = ACTIONS(1804), - [anon_sym_char] = ACTIONS(1804), - [anon_sym_short] = ACTIONS(1804), - [anon_sym_long] = ACTIONS(1804), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_volatile] = ACTIONS(1804), - [anon_sym_ctypedef] = ACTIONS(1804), - [anon_sym_struct] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_enum] = ACTIONS(1804), - [anon_sym_cppclass] = ACTIONS(1804), - [anon_sym_fused] = ACTIONS(1804), - [anon_sym_public] = ACTIONS(1804), - [anon_sym_packed] = ACTIONS(1804), - [anon_sym_inline] = ACTIONS(1804), - [anon_sym_readonly] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1804), - [sym__dedent] = ACTIONS(1806), - [sym_string_start] = ACTIONS(1806), + [anon_sym_property] = ACTIONS(1835), + [anon_sym_include] = ACTIONS(1835), + [anon_sym_DEF] = ACTIONS(1835), + [anon_sym_cdef] = ACTIONS(1835), + [anon_sym_cpdef] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_double] = ACTIONS(1835), + [anon_sym_complex] = ACTIONS(1835), + [anon_sym_new] = ACTIONS(1835), + [anon_sym_signed] = ACTIONS(1835), + [anon_sym_unsigned] = ACTIONS(1835), + [anon_sym_char] = ACTIONS(1835), + [anon_sym_short] = ACTIONS(1835), + [anon_sym_long] = ACTIONS(1835), + [anon_sym_const] = ACTIONS(1835), + [anon_sym_volatile] = ACTIONS(1835), + [anon_sym_ctypedef] = ACTIONS(1835), + [anon_sym_struct] = ACTIONS(1835), + [anon_sym_union] = ACTIONS(1835), + [anon_sym_enum] = ACTIONS(1835), + [anon_sym_cppclass] = ACTIONS(1835), + [anon_sym_fused] = ACTIONS(1835), + [anon_sym_public] = ACTIONS(1835), + [anon_sym_packed] = ACTIONS(1835), + [anon_sym_inline] = ACTIONS(1835), + [anon_sym_readonly] = ACTIONS(1835), + [anon_sym_sizeof] = ACTIONS(1835), + [sym__dedent] = ACTIONS(1837), + [sym_string_start] = ACTIONS(1837), }, [547] = { - [sym_identifier] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_import] = ACTIONS(1808), - [anon_sym_cimport] = ACTIONS(1808), - [anon_sym_from] = ACTIONS(1808), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_print] = ACTIONS(1808), - [anon_sym_assert] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_del] = ACTIONS(1808), - [anon_sym_raise] = ACTIONS(1808), - [anon_sym_pass] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_async] = ACTIONS(1808), - [anon_sym_for] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_with] = ACTIONS(1808), - [anon_sym_def] = ACTIONS(1808), - [anon_sym_global] = ACTIONS(1808), - [anon_sym_nonlocal] = ACTIONS(1808), - [anon_sym_exec] = ACTIONS(1808), - [anon_sym_type] = ACTIONS(1808), - [anon_sym_class] = ACTIONS(1808), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_AT] = ACTIONS(1810), - [anon_sym_DASH] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1810), - [anon_sym_not] = ACTIONS(1808), - [anon_sym_AMP] = ACTIONS(1810), - [anon_sym_TILDE] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1810), - [anon_sym_lambda] = ACTIONS(1808), - [anon_sym_yield] = ACTIONS(1808), - [sym_ellipsis] = ACTIONS(1810), - [anon_sym_None] = ACTIONS(1808), - [sym_integer] = ACTIONS(1808), - [sym_float] = ACTIONS(1810), - [anon_sym_await] = ACTIONS(1808), - [anon_sym_api] = ACTIONS(1808), - [sym_true] = ACTIONS(1808), - [sym_false] = ACTIONS(1808), + [sym_identifier] = ACTIONS(1839), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym_import] = ACTIONS(1839), + [anon_sym_cimport] = ACTIONS(1839), + [anon_sym_from] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_print] = ACTIONS(1839), + [anon_sym_assert] = ACTIONS(1839), + [anon_sym_return] = ACTIONS(1839), + [anon_sym_del] = ACTIONS(1839), + [anon_sym_raise] = ACTIONS(1839), + [anon_sym_pass] = ACTIONS(1839), + [anon_sym_break] = ACTIONS(1839), + [anon_sym_continue] = ACTIONS(1839), + [anon_sym_if] = ACTIONS(1839), + [anon_sym_match] = ACTIONS(1839), + [anon_sym_async] = ACTIONS(1839), + [anon_sym_for] = ACTIONS(1839), + [anon_sym_while] = ACTIONS(1839), + [anon_sym_try] = ACTIONS(1839), + [anon_sym_with] = ACTIONS(1839), + [anon_sym_def] = ACTIONS(1839), + [anon_sym_global] = ACTIONS(1839), + [anon_sym_nonlocal] = ACTIONS(1839), + [anon_sym_exec] = ACTIONS(1839), + [anon_sym_type] = ACTIONS(1839), + [anon_sym_class] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1841), + [anon_sym_AT] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_not] = ACTIONS(1839), + [anon_sym_AMP] = ACTIONS(1841), + [anon_sym_TILDE] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_lambda] = ACTIONS(1839), + [anon_sym_yield] = ACTIONS(1839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1841), + [anon_sym_None] = ACTIONS(1839), + [sym_integer] = ACTIONS(1839), + [sym_float] = ACTIONS(1841), + [anon_sym_await] = ACTIONS(1839), + [anon_sym_api] = ACTIONS(1839), + [sym_true] = ACTIONS(1839), + [sym_false] = ACTIONS(1839), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1808), - [anon_sym_include] = ACTIONS(1808), - [anon_sym_DEF] = ACTIONS(1808), - [anon_sym_cdef] = ACTIONS(1808), - [anon_sym_cpdef] = ACTIONS(1808), - [anon_sym_int] = ACTIONS(1808), - [anon_sym_double] = ACTIONS(1808), - [anon_sym_complex] = ACTIONS(1808), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_signed] = ACTIONS(1808), - [anon_sym_unsigned] = ACTIONS(1808), - [anon_sym_char] = ACTIONS(1808), - [anon_sym_short] = ACTIONS(1808), - [anon_sym_long] = ACTIONS(1808), - [anon_sym_const] = ACTIONS(1808), - [anon_sym_volatile] = ACTIONS(1808), - [anon_sym_ctypedef] = ACTIONS(1808), - [anon_sym_struct] = ACTIONS(1808), - [anon_sym_union] = ACTIONS(1808), - [anon_sym_enum] = ACTIONS(1808), - [anon_sym_cppclass] = ACTIONS(1808), - [anon_sym_fused] = ACTIONS(1808), - [anon_sym_public] = ACTIONS(1808), - [anon_sym_packed] = ACTIONS(1808), - [anon_sym_inline] = ACTIONS(1808), - [anon_sym_readonly] = ACTIONS(1808), - [anon_sym_sizeof] = ACTIONS(1808), - [sym__dedent] = ACTIONS(1810), - [sym_string_start] = ACTIONS(1810), + [anon_sym_property] = ACTIONS(1839), + [anon_sym_include] = ACTIONS(1839), + [anon_sym_DEF] = ACTIONS(1839), + [anon_sym_cdef] = ACTIONS(1839), + [anon_sym_cpdef] = ACTIONS(1839), + [anon_sym_int] = ACTIONS(1839), + [anon_sym_double] = ACTIONS(1839), + [anon_sym_complex] = ACTIONS(1839), + [anon_sym_new] = ACTIONS(1839), + [anon_sym_signed] = ACTIONS(1839), + [anon_sym_unsigned] = ACTIONS(1839), + [anon_sym_char] = ACTIONS(1839), + [anon_sym_short] = ACTIONS(1839), + [anon_sym_long] = ACTIONS(1839), + [anon_sym_const] = ACTIONS(1839), + [anon_sym_volatile] = ACTIONS(1839), + [anon_sym_ctypedef] = ACTIONS(1839), + [anon_sym_struct] = ACTIONS(1839), + [anon_sym_union] = ACTIONS(1839), + [anon_sym_enum] = ACTIONS(1839), + [anon_sym_cppclass] = ACTIONS(1839), + [anon_sym_fused] = ACTIONS(1839), + [anon_sym_public] = ACTIONS(1839), + [anon_sym_packed] = ACTIONS(1839), + [anon_sym_inline] = ACTIONS(1839), + [anon_sym_readonly] = ACTIONS(1839), + [anon_sym_sizeof] = ACTIONS(1839), + [sym__dedent] = ACTIONS(1841), + [sym_string_start] = ACTIONS(1841), }, [548] = { - [sym_identifier] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_import] = ACTIONS(1812), - [anon_sym_cimport] = ACTIONS(1812), - [anon_sym_from] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1814), - [anon_sym_print] = ACTIONS(1812), - [anon_sym_assert] = ACTIONS(1812), - [anon_sym_return] = ACTIONS(1812), - [anon_sym_del] = ACTIONS(1812), - [anon_sym_raise] = ACTIONS(1812), - [anon_sym_pass] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_if] = ACTIONS(1812), - [anon_sym_match] = ACTIONS(1812), - [anon_sym_async] = ACTIONS(1812), - [anon_sym_for] = ACTIONS(1812), - [anon_sym_while] = ACTIONS(1812), - [anon_sym_try] = ACTIONS(1812), - [anon_sym_with] = ACTIONS(1812), - [anon_sym_def] = ACTIONS(1812), - [anon_sym_global] = ACTIONS(1812), - [anon_sym_nonlocal] = ACTIONS(1812), - [anon_sym_exec] = ACTIONS(1812), - [anon_sym_type] = ACTIONS(1812), - [anon_sym_class] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_AT] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_not] = ACTIONS(1812), - [anon_sym_AMP] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1814), - [anon_sym_LT] = ACTIONS(1814), - [anon_sym_lambda] = ACTIONS(1812), - [anon_sym_yield] = ACTIONS(1812), - [sym_ellipsis] = ACTIONS(1814), - [anon_sym_None] = ACTIONS(1812), - [sym_integer] = ACTIONS(1812), - [sym_float] = ACTIONS(1814), - [anon_sym_await] = ACTIONS(1812), - [anon_sym_api] = ACTIONS(1812), - [sym_true] = ACTIONS(1812), - [sym_false] = ACTIONS(1812), + [sym_identifier] = ACTIONS(1843), + [anon_sym_SEMI] = ACTIONS(1845), + [anon_sym_import] = ACTIONS(1843), + [anon_sym_cimport] = ACTIONS(1843), + [anon_sym_from] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1845), + [anon_sym_print] = ACTIONS(1843), + [anon_sym_assert] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_del] = ACTIONS(1843), + [anon_sym_raise] = ACTIONS(1843), + [anon_sym_pass] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_match] = ACTIONS(1843), + [anon_sym_async] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_try] = ACTIONS(1843), + [anon_sym_with] = ACTIONS(1843), + [anon_sym_def] = ACTIONS(1843), + [anon_sym_global] = ACTIONS(1843), + [anon_sym_nonlocal] = ACTIONS(1843), + [anon_sym_exec] = ACTIONS(1843), + [anon_sym_type] = ACTIONS(1843), + [anon_sym_class] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_AT] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_LBRACE] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_LT] = ACTIONS(1845), + [anon_sym_lambda] = ACTIONS(1843), + [anon_sym_yield] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1845), + [anon_sym_None] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1845), + [anon_sym_await] = ACTIONS(1843), + [anon_sym_api] = ACTIONS(1843), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1812), - [anon_sym_include] = ACTIONS(1812), - [anon_sym_DEF] = ACTIONS(1812), - [anon_sym_cdef] = ACTIONS(1812), - [anon_sym_cpdef] = ACTIONS(1812), - [anon_sym_int] = ACTIONS(1812), - [anon_sym_double] = ACTIONS(1812), - [anon_sym_complex] = ACTIONS(1812), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_signed] = ACTIONS(1812), - [anon_sym_unsigned] = ACTIONS(1812), - [anon_sym_char] = ACTIONS(1812), - [anon_sym_short] = ACTIONS(1812), - [anon_sym_long] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(1812), - [anon_sym_volatile] = ACTIONS(1812), - [anon_sym_ctypedef] = ACTIONS(1812), - [anon_sym_struct] = ACTIONS(1812), - [anon_sym_union] = ACTIONS(1812), - [anon_sym_enum] = ACTIONS(1812), - [anon_sym_cppclass] = ACTIONS(1812), - [anon_sym_fused] = ACTIONS(1812), - [anon_sym_public] = ACTIONS(1812), - [anon_sym_packed] = ACTIONS(1812), - [anon_sym_inline] = ACTIONS(1812), - [anon_sym_readonly] = ACTIONS(1812), - [anon_sym_sizeof] = ACTIONS(1812), - [sym__dedent] = ACTIONS(1814), - [sym_string_start] = ACTIONS(1814), + [anon_sym_property] = ACTIONS(1843), + [anon_sym_include] = ACTIONS(1843), + [anon_sym_DEF] = ACTIONS(1843), + [anon_sym_cdef] = ACTIONS(1843), + [anon_sym_cpdef] = ACTIONS(1843), + [anon_sym_int] = ACTIONS(1843), + [anon_sym_double] = ACTIONS(1843), + [anon_sym_complex] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_signed] = ACTIONS(1843), + [anon_sym_unsigned] = ACTIONS(1843), + [anon_sym_char] = ACTIONS(1843), + [anon_sym_short] = ACTIONS(1843), + [anon_sym_long] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [anon_sym_volatile] = ACTIONS(1843), + [anon_sym_ctypedef] = ACTIONS(1843), + [anon_sym_struct] = ACTIONS(1843), + [anon_sym_union] = ACTIONS(1843), + [anon_sym_enum] = ACTIONS(1843), + [anon_sym_cppclass] = ACTIONS(1843), + [anon_sym_fused] = ACTIONS(1843), + [anon_sym_public] = ACTIONS(1843), + [anon_sym_packed] = ACTIONS(1843), + [anon_sym_inline] = ACTIONS(1843), + [anon_sym_readonly] = ACTIONS(1843), + [anon_sym_sizeof] = ACTIONS(1843), + [sym__dedent] = ACTIONS(1845), + [sym_string_start] = ACTIONS(1845), }, [549] = { - [sym_identifier] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_import] = ACTIONS(1816), - [anon_sym_cimport] = ACTIONS(1816), - [anon_sym_from] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_print] = ACTIONS(1816), - [anon_sym_assert] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_del] = ACTIONS(1816), - [anon_sym_raise] = ACTIONS(1816), - [anon_sym_pass] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_match] = ACTIONS(1816), - [anon_sym_async] = ACTIONS(1816), - [anon_sym_for] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_with] = ACTIONS(1816), - [anon_sym_def] = ACTIONS(1816), - [anon_sym_global] = ACTIONS(1816), - [anon_sym_nonlocal] = ACTIONS(1816), - [anon_sym_exec] = ACTIONS(1816), - [anon_sym_type] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1816), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_AT] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_not] = ACTIONS(1816), - [anon_sym_AMP] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_lambda] = ACTIONS(1816), - [anon_sym_yield] = ACTIONS(1816), - [sym_ellipsis] = ACTIONS(1818), - [anon_sym_None] = ACTIONS(1816), - [sym_integer] = ACTIONS(1816), - [sym_float] = ACTIONS(1818), - [anon_sym_await] = ACTIONS(1816), - [anon_sym_api] = ACTIONS(1816), - [sym_true] = ACTIONS(1816), - [sym_false] = ACTIONS(1816), + [sym_identifier] = ACTIONS(1847), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_import] = ACTIONS(1847), + [anon_sym_cimport] = ACTIONS(1847), + [anon_sym_from] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_print] = ACTIONS(1847), + [anon_sym_assert] = ACTIONS(1847), + [anon_sym_return] = ACTIONS(1847), + [anon_sym_del] = ACTIONS(1847), + [anon_sym_raise] = ACTIONS(1847), + [anon_sym_pass] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [anon_sym_async] = ACTIONS(1847), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1847), + [anon_sym_try] = ACTIONS(1847), + [anon_sym_with] = ACTIONS(1847), + [anon_sym_def] = ACTIONS(1847), + [anon_sym_global] = ACTIONS(1847), + [anon_sym_nonlocal] = ACTIONS(1847), + [anon_sym_exec] = ACTIONS(1847), + [anon_sym_type] = ACTIONS(1847), + [anon_sym_class] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_AT] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_not] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1849), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_lambda] = ACTIONS(1847), + [anon_sym_yield] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1849), + [anon_sym_None] = ACTIONS(1847), + [sym_integer] = ACTIONS(1847), + [sym_float] = ACTIONS(1849), + [anon_sym_await] = ACTIONS(1847), + [anon_sym_api] = ACTIONS(1847), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1816), - [anon_sym_include] = ACTIONS(1816), - [anon_sym_DEF] = ACTIONS(1816), - [anon_sym_cdef] = ACTIONS(1816), - [anon_sym_cpdef] = ACTIONS(1816), - [anon_sym_int] = ACTIONS(1816), - [anon_sym_double] = ACTIONS(1816), - [anon_sym_complex] = ACTIONS(1816), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_signed] = ACTIONS(1816), - [anon_sym_unsigned] = ACTIONS(1816), - [anon_sym_char] = ACTIONS(1816), - [anon_sym_short] = ACTIONS(1816), - [anon_sym_long] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1816), - [anon_sym_volatile] = ACTIONS(1816), - [anon_sym_ctypedef] = ACTIONS(1816), - [anon_sym_struct] = ACTIONS(1816), - [anon_sym_union] = ACTIONS(1816), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_cppclass] = ACTIONS(1816), - [anon_sym_fused] = ACTIONS(1816), - [anon_sym_public] = ACTIONS(1816), - [anon_sym_packed] = ACTIONS(1816), - [anon_sym_inline] = ACTIONS(1816), - [anon_sym_readonly] = ACTIONS(1816), - [anon_sym_sizeof] = ACTIONS(1816), - [sym__dedent] = ACTIONS(1818), - [sym_string_start] = ACTIONS(1818), + [anon_sym_property] = ACTIONS(1847), + [anon_sym_include] = ACTIONS(1847), + [anon_sym_DEF] = ACTIONS(1847), + [anon_sym_cdef] = ACTIONS(1847), + [anon_sym_cpdef] = ACTIONS(1847), + [anon_sym_int] = ACTIONS(1847), + [anon_sym_double] = ACTIONS(1847), + [anon_sym_complex] = ACTIONS(1847), + [anon_sym_new] = ACTIONS(1847), + [anon_sym_signed] = ACTIONS(1847), + [anon_sym_unsigned] = ACTIONS(1847), + [anon_sym_char] = ACTIONS(1847), + [anon_sym_short] = ACTIONS(1847), + [anon_sym_long] = ACTIONS(1847), + [anon_sym_const] = ACTIONS(1847), + [anon_sym_volatile] = ACTIONS(1847), + [anon_sym_ctypedef] = ACTIONS(1847), + [anon_sym_struct] = ACTIONS(1847), + [anon_sym_union] = ACTIONS(1847), + [anon_sym_enum] = ACTIONS(1847), + [anon_sym_cppclass] = ACTIONS(1847), + [anon_sym_fused] = ACTIONS(1847), + [anon_sym_public] = ACTIONS(1847), + [anon_sym_packed] = ACTIONS(1847), + [anon_sym_inline] = ACTIONS(1847), + [anon_sym_readonly] = ACTIONS(1847), + [anon_sym_sizeof] = ACTIONS(1847), + [sym__dedent] = ACTIONS(1849), + [sym_string_start] = ACTIONS(1849), }, [550] = { - [sym_identifier] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_import] = ACTIONS(1820), - [anon_sym_cimport] = ACTIONS(1820), - [anon_sym_from] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [anon_sym_print] = ACTIONS(1820), - [anon_sym_assert] = ACTIONS(1820), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_del] = ACTIONS(1820), - [anon_sym_raise] = ACTIONS(1820), - [anon_sym_pass] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_match] = ACTIONS(1820), - [anon_sym_async] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1820), - [anon_sym_while] = ACTIONS(1820), - [anon_sym_try] = ACTIONS(1820), - [anon_sym_with] = ACTIONS(1820), - [anon_sym_def] = ACTIONS(1820), - [anon_sym_global] = ACTIONS(1820), - [anon_sym_nonlocal] = ACTIONS(1820), - [anon_sym_exec] = ACTIONS(1820), - [anon_sym_type] = ACTIONS(1820), - [anon_sym_class] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_not] = ACTIONS(1820), - [anon_sym_AMP] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1822), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_lambda] = ACTIONS(1820), - [anon_sym_yield] = ACTIONS(1820), - [sym_ellipsis] = ACTIONS(1822), - [anon_sym_None] = ACTIONS(1820), - [sym_integer] = ACTIONS(1820), - [sym_float] = ACTIONS(1822), - [anon_sym_await] = ACTIONS(1820), - [anon_sym_api] = ACTIONS(1820), - [sym_true] = ACTIONS(1820), - [sym_false] = ACTIONS(1820), + [sym_identifier] = ACTIONS(1851), + [anon_sym_SEMI] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1851), + [anon_sym_cimport] = ACTIONS(1851), + [anon_sym_from] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_print] = ACTIONS(1851), + [anon_sym_assert] = ACTIONS(1851), + [anon_sym_return] = ACTIONS(1851), + [anon_sym_del] = ACTIONS(1851), + [anon_sym_raise] = ACTIONS(1851), + [anon_sym_pass] = ACTIONS(1851), + [anon_sym_break] = ACTIONS(1851), + [anon_sym_continue] = ACTIONS(1851), + [anon_sym_if] = ACTIONS(1851), + [anon_sym_match] = ACTIONS(1851), + [anon_sym_async] = ACTIONS(1851), + [anon_sym_for] = ACTIONS(1851), + [anon_sym_while] = ACTIONS(1851), + [anon_sym_try] = ACTIONS(1851), + [anon_sym_with] = ACTIONS(1851), + [anon_sym_def] = ACTIONS(1851), + [anon_sym_global] = ACTIONS(1851), + [anon_sym_nonlocal] = ACTIONS(1851), + [anon_sym_exec] = ACTIONS(1851), + [anon_sym_type] = ACTIONS(1851), + [anon_sym_class] = ACTIONS(1851), + [anon_sym_LBRACK] = ACTIONS(1853), + [anon_sym_AT] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_PLUS] = ACTIONS(1853), + [anon_sym_not] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_LT] = ACTIONS(1853), + [anon_sym_lambda] = ACTIONS(1851), + [anon_sym_yield] = ACTIONS(1851), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1853), + [anon_sym_None] = ACTIONS(1851), + [sym_integer] = ACTIONS(1851), + [sym_float] = ACTIONS(1853), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_api] = ACTIONS(1851), + [sym_true] = ACTIONS(1851), + [sym_false] = ACTIONS(1851), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1820), - [anon_sym_include] = ACTIONS(1820), - [anon_sym_DEF] = ACTIONS(1820), - [anon_sym_cdef] = ACTIONS(1820), - [anon_sym_cpdef] = ACTIONS(1820), - [anon_sym_int] = ACTIONS(1820), - [anon_sym_double] = ACTIONS(1820), - [anon_sym_complex] = ACTIONS(1820), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_signed] = ACTIONS(1820), - [anon_sym_unsigned] = ACTIONS(1820), - [anon_sym_char] = ACTIONS(1820), - [anon_sym_short] = ACTIONS(1820), - [anon_sym_long] = ACTIONS(1820), - [anon_sym_const] = ACTIONS(1820), - [anon_sym_volatile] = ACTIONS(1820), - [anon_sym_ctypedef] = ACTIONS(1820), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1820), - [anon_sym_enum] = ACTIONS(1820), - [anon_sym_cppclass] = ACTIONS(1820), - [anon_sym_fused] = ACTIONS(1820), - [anon_sym_public] = ACTIONS(1820), - [anon_sym_packed] = ACTIONS(1820), - [anon_sym_inline] = ACTIONS(1820), - [anon_sym_readonly] = ACTIONS(1820), - [anon_sym_sizeof] = ACTIONS(1820), - [sym__dedent] = ACTIONS(1822), - [sym_string_start] = ACTIONS(1822), + [anon_sym_property] = ACTIONS(1851), + [anon_sym_include] = ACTIONS(1851), + [anon_sym_DEF] = ACTIONS(1851), + [anon_sym_cdef] = ACTIONS(1851), + [anon_sym_cpdef] = ACTIONS(1851), + [anon_sym_int] = ACTIONS(1851), + [anon_sym_double] = ACTIONS(1851), + [anon_sym_complex] = ACTIONS(1851), + [anon_sym_new] = ACTIONS(1851), + [anon_sym_signed] = ACTIONS(1851), + [anon_sym_unsigned] = ACTIONS(1851), + [anon_sym_char] = ACTIONS(1851), + [anon_sym_short] = ACTIONS(1851), + [anon_sym_long] = ACTIONS(1851), + [anon_sym_const] = ACTIONS(1851), + [anon_sym_volatile] = ACTIONS(1851), + [anon_sym_ctypedef] = ACTIONS(1851), + [anon_sym_struct] = ACTIONS(1851), + [anon_sym_union] = ACTIONS(1851), + [anon_sym_enum] = ACTIONS(1851), + [anon_sym_cppclass] = ACTIONS(1851), + [anon_sym_fused] = ACTIONS(1851), + [anon_sym_public] = ACTIONS(1851), + [anon_sym_packed] = ACTIONS(1851), + [anon_sym_inline] = ACTIONS(1851), + [anon_sym_readonly] = ACTIONS(1851), + [anon_sym_sizeof] = ACTIONS(1851), + [sym__dedent] = ACTIONS(1853), + [sym_string_start] = ACTIONS(1853), }, [551] = { - [sym_identifier] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_import] = ACTIONS(1824), - [anon_sym_cimport] = ACTIONS(1824), - [anon_sym_from] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_print] = ACTIONS(1824), - [anon_sym_assert] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_del] = ACTIONS(1824), - [anon_sym_raise] = ACTIONS(1824), - [anon_sym_pass] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_async] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_try] = ACTIONS(1824), - [anon_sym_with] = ACTIONS(1824), - [anon_sym_def] = ACTIONS(1824), - [anon_sym_global] = ACTIONS(1824), - [anon_sym_nonlocal] = ACTIONS(1824), - [anon_sym_exec] = ACTIONS(1824), - [anon_sym_type] = ACTIONS(1824), - [anon_sym_class] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_AT] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_not] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(1826), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_lambda] = ACTIONS(1824), - [anon_sym_yield] = ACTIONS(1824), - [sym_ellipsis] = ACTIONS(1826), - [anon_sym_None] = ACTIONS(1824), - [sym_integer] = ACTIONS(1824), - [sym_float] = ACTIONS(1826), - [anon_sym_await] = ACTIONS(1824), - [anon_sym_api] = ACTIONS(1824), - [sym_true] = ACTIONS(1824), - [sym_false] = ACTIONS(1824), + [sym_identifier] = ACTIONS(1855), + [anon_sym_SEMI] = ACTIONS(1857), + [anon_sym_import] = ACTIONS(1855), + [anon_sym_cimport] = ACTIONS(1855), + [anon_sym_from] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_STAR] = ACTIONS(1857), + [anon_sym_print] = ACTIONS(1855), + [anon_sym_assert] = ACTIONS(1855), + [anon_sym_return] = ACTIONS(1855), + [anon_sym_del] = ACTIONS(1855), + [anon_sym_raise] = ACTIONS(1855), + [anon_sym_pass] = ACTIONS(1855), + [anon_sym_break] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_match] = ACTIONS(1855), + [anon_sym_async] = ACTIONS(1855), + [anon_sym_for] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1855), + [anon_sym_try] = ACTIONS(1855), + [anon_sym_with] = ACTIONS(1855), + [anon_sym_def] = ACTIONS(1855), + [anon_sym_global] = ACTIONS(1855), + [anon_sym_nonlocal] = ACTIONS(1855), + [anon_sym_exec] = ACTIONS(1855), + [anon_sym_type] = ACTIONS(1855), + [anon_sym_class] = ACTIONS(1855), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_AT] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1857), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(1857), + [anon_sym_lambda] = ACTIONS(1855), + [anon_sym_yield] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1857), + [anon_sym_None] = ACTIONS(1855), + [sym_integer] = ACTIONS(1855), + [sym_float] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1855), + [anon_sym_api] = ACTIONS(1855), + [sym_true] = ACTIONS(1855), + [sym_false] = ACTIONS(1855), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1824), - [anon_sym_include] = ACTIONS(1824), - [anon_sym_DEF] = ACTIONS(1824), - [anon_sym_cdef] = ACTIONS(1824), - [anon_sym_cpdef] = ACTIONS(1824), - [anon_sym_int] = ACTIONS(1824), - [anon_sym_double] = ACTIONS(1824), - [anon_sym_complex] = ACTIONS(1824), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_signed] = ACTIONS(1824), - [anon_sym_unsigned] = ACTIONS(1824), - [anon_sym_char] = ACTIONS(1824), - [anon_sym_short] = ACTIONS(1824), - [anon_sym_long] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [anon_sym_volatile] = ACTIONS(1824), - [anon_sym_ctypedef] = ACTIONS(1824), - [anon_sym_struct] = ACTIONS(1824), - [anon_sym_union] = ACTIONS(1824), - [anon_sym_enum] = ACTIONS(1824), - [anon_sym_cppclass] = ACTIONS(1824), - [anon_sym_fused] = ACTIONS(1824), - [anon_sym_public] = ACTIONS(1824), - [anon_sym_packed] = ACTIONS(1824), - [anon_sym_inline] = ACTIONS(1824), - [anon_sym_readonly] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1824), - [sym__dedent] = ACTIONS(1826), - [sym_string_start] = ACTIONS(1826), + [anon_sym_property] = ACTIONS(1855), + [anon_sym_include] = ACTIONS(1855), + [anon_sym_DEF] = ACTIONS(1855), + [anon_sym_cdef] = ACTIONS(1855), + [anon_sym_cpdef] = ACTIONS(1855), + [anon_sym_int] = ACTIONS(1855), + [anon_sym_double] = ACTIONS(1855), + [anon_sym_complex] = ACTIONS(1855), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_signed] = ACTIONS(1855), + [anon_sym_unsigned] = ACTIONS(1855), + [anon_sym_char] = ACTIONS(1855), + [anon_sym_short] = ACTIONS(1855), + [anon_sym_long] = ACTIONS(1855), + [anon_sym_const] = ACTIONS(1855), + [anon_sym_volatile] = ACTIONS(1855), + [anon_sym_ctypedef] = ACTIONS(1855), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_union] = ACTIONS(1855), + [anon_sym_enum] = ACTIONS(1855), + [anon_sym_cppclass] = ACTIONS(1855), + [anon_sym_fused] = ACTIONS(1855), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_packed] = ACTIONS(1855), + [anon_sym_inline] = ACTIONS(1855), + [anon_sym_readonly] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1855), + [sym__dedent] = ACTIONS(1857), + [sym_string_start] = ACTIONS(1857), }, [552] = { - [sym_identifier] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_import] = ACTIONS(1828), - [anon_sym_cimport] = ACTIONS(1828), - [anon_sym_from] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1830), - [anon_sym_print] = ACTIONS(1828), - [anon_sym_assert] = ACTIONS(1828), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_del] = ACTIONS(1828), - [anon_sym_raise] = ACTIONS(1828), - [anon_sym_pass] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_match] = ACTIONS(1828), - [anon_sym_async] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1828), - [anon_sym_while] = ACTIONS(1828), - [anon_sym_try] = ACTIONS(1828), - [anon_sym_with] = ACTIONS(1828), - [anon_sym_def] = ACTIONS(1828), - [anon_sym_global] = ACTIONS(1828), - [anon_sym_nonlocal] = ACTIONS(1828), - [anon_sym_exec] = ACTIONS(1828), - [anon_sym_type] = ACTIONS(1828), - [anon_sym_class] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_AT] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_not] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_lambda] = ACTIONS(1828), - [anon_sym_yield] = ACTIONS(1828), - [sym_ellipsis] = ACTIONS(1830), - [anon_sym_None] = ACTIONS(1828), - [sym_integer] = ACTIONS(1828), - [sym_float] = ACTIONS(1830), - [anon_sym_await] = ACTIONS(1828), - [anon_sym_api] = ACTIONS(1828), - [sym_true] = ACTIONS(1828), - [sym_false] = ACTIONS(1828), + [sym_identifier] = ACTIONS(1859), + [anon_sym_SEMI] = ACTIONS(1861), + [anon_sym_import] = ACTIONS(1859), + [anon_sym_cimport] = ACTIONS(1859), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_STAR] = ACTIONS(1861), + [anon_sym_print] = ACTIONS(1859), + [anon_sym_assert] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_del] = ACTIONS(1859), + [anon_sym_raise] = ACTIONS(1859), + [anon_sym_pass] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_match] = ACTIONS(1859), + [anon_sym_async] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_with] = ACTIONS(1859), + [anon_sym_def] = ACTIONS(1859), + [anon_sym_global] = ACTIONS(1859), + [anon_sym_nonlocal] = ACTIONS(1859), + [anon_sym_exec] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_class] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1861), + [anon_sym_AT] = ACTIONS(1861), + [anon_sym_DASH] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_PLUS] = ACTIONS(1861), + [anon_sym_not] = ACTIONS(1859), + [anon_sym_AMP] = ACTIONS(1861), + [anon_sym_TILDE] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1861), + [anon_sym_lambda] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), + [anon_sym_None] = ACTIONS(1859), + [sym_integer] = ACTIONS(1859), + [sym_float] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_api] = ACTIONS(1859), + [sym_true] = ACTIONS(1859), + [sym_false] = ACTIONS(1859), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1828), - [anon_sym_include] = ACTIONS(1828), - [anon_sym_DEF] = ACTIONS(1828), - [anon_sym_cdef] = ACTIONS(1828), - [anon_sym_cpdef] = ACTIONS(1828), - [anon_sym_int] = ACTIONS(1828), - [anon_sym_double] = ACTIONS(1828), - [anon_sym_complex] = ACTIONS(1828), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_signed] = ACTIONS(1828), - [anon_sym_unsigned] = ACTIONS(1828), - [anon_sym_char] = ACTIONS(1828), - [anon_sym_short] = ACTIONS(1828), - [anon_sym_long] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1828), - [anon_sym_volatile] = ACTIONS(1828), - [anon_sym_ctypedef] = ACTIONS(1828), - [anon_sym_struct] = ACTIONS(1828), - [anon_sym_union] = ACTIONS(1828), - [anon_sym_enum] = ACTIONS(1828), - [anon_sym_cppclass] = ACTIONS(1828), - [anon_sym_fused] = ACTIONS(1828), - [anon_sym_public] = ACTIONS(1828), - [anon_sym_packed] = ACTIONS(1828), - [anon_sym_inline] = ACTIONS(1828), - [anon_sym_readonly] = ACTIONS(1828), - [anon_sym_sizeof] = ACTIONS(1828), - [sym__dedent] = ACTIONS(1830), - [sym_string_start] = ACTIONS(1830), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_include] = ACTIONS(1859), + [anon_sym_DEF] = ACTIONS(1859), + [anon_sym_cdef] = ACTIONS(1859), + [anon_sym_cpdef] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_double] = ACTIONS(1859), + [anon_sym_complex] = ACTIONS(1859), + [anon_sym_new] = ACTIONS(1859), + [anon_sym_signed] = ACTIONS(1859), + [anon_sym_unsigned] = ACTIONS(1859), + [anon_sym_char] = ACTIONS(1859), + [anon_sym_short] = ACTIONS(1859), + [anon_sym_long] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1859), + [anon_sym_volatile] = ACTIONS(1859), + [anon_sym_ctypedef] = ACTIONS(1859), + [anon_sym_struct] = ACTIONS(1859), + [anon_sym_union] = ACTIONS(1859), + [anon_sym_enum] = ACTIONS(1859), + [anon_sym_cppclass] = ACTIONS(1859), + [anon_sym_fused] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_packed] = ACTIONS(1859), + [anon_sym_inline] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_sizeof] = ACTIONS(1859), + [sym__dedent] = ACTIONS(1861), + [sym_string_start] = ACTIONS(1861), }, [553] = { - [sym_identifier] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_import] = ACTIONS(1832), - [anon_sym_cimport] = ACTIONS(1832), - [anon_sym_from] = ACTIONS(1832), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_print] = ACTIONS(1832), - [anon_sym_assert] = ACTIONS(1832), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_del] = ACTIONS(1832), - [anon_sym_raise] = ACTIONS(1832), - [anon_sym_pass] = ACTIONS(1832), - [anon_sym_break] = ACTIONS(1832), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_match] = ACTIONS(1832), - [anon_sym_async] = ACTIONS(1832), - [anon_sym_for] = ACTIONS(1832), - [anon_sym_while] = ACTIONS(1832), - [anon_sym_try] = ACTIONS(1832), - [anon_sym_with] = ACTIONS(1832), - [anon_sym_def] = ACTIONS(1832), - [anon_sym_global] = ACTIONS(1832), - [anon_sym_nonlocal] = ACTIONS(1832), - [anon_sym_exec] = ACTIONS(1832), - [anon_sym_type] = ACTIONS(1832), - [anon_sym_class] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_AT] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_not] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_lambda] = ACTIONS(1832), - [anon_sym_yield] = ACTIONS(1832), - [sym_ellipsis] = ACTIONS(1834), - [anon_sym_None] = ACTIONS(1832), - [sym_integer] = ACTIONS(1832), - [sym_float] = ACTIONS(1834), - [anon_sym_await] = ACTIONS(1832), - [anon_sym_api] = ACTIONS(1832), - [sym_true] = ACTIONS(1832), - [sym_false] = ACTIONS(1832), + [sym_identifier] = ACTIONS(1863), + [anon_sym_SEMI] = ACTIONS(1865), + [anon_sym_import] = ACTIONS(1863), + [anon_sym_cimport] = ACTIONS(1863), + [anon_sym_from] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1865), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_print] = ACTIONS(1863), + [anon_sym_assert] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_del] = ACTIONS(1863), + [anon_sym_raise] = ACTIONS(1863), + [anon_sym_pass] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_match] = ACTIONS(1863), + [anon_sym_async] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_try] = ACTIONS(1863), + [anon_sym_with] = ACTIONS(1863), + [anon_sym_def] = ACTIONS(1863), + [anon_sym_global] = ACTIONS(1863), + [anon_sym_nonlocal] = ACTIONS(1863), + [anon_sym_exec] = ACTIONS(1863), + [anon_sym_type] = ACTIONS(1863), + [anon_sym_class] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1865), + [anon_sym_AT] = ACTIONS(1865), + [anon_sym_DASH] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_PLUS] = ACTIONS(1865), + [anon_sym_not] = ACTIONS(1863), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_LT] = ACTIONS(1865), + [anon_sym_lambda] = ACTIONS(1863), + [anon_sym_yield] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1865), + [anon_sym_None] = ACTIONS(1863), + [sym_integer] = ACTIONS(1863), + [sym_float] = ACTIONS(1865), + [anon_sym_await] = ACTIONS(1863), + [anon_sym_api] = ACTIONS(1863), + [sym_true] = ACTIONS(1863), + [sym_false] = ACTIONS(1863), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1832), - [anon_sym_include] = ACTIONS(1832), - [anon_sym_DEF] = ACTIONS(1832), - [anon_sym_cdef] = ACTIONS(1832), - [anon_sym_cpdef] = ACTIONS(1832), - [anon_sym_int] = ACTIONS(1832), - [anon_sym_double] = ACTIONS(1832), - [anon_sym_complex] = ACTIONS(1832), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_signed] = ACTIONS(1832), - [anon_sym_unsigned] = ACTIONS(1832), - [anon_sym_char] = ACTIONS(1832), - [anon_sym_short] = ACTIONS(1832), - [anon_sym_long] = ACTIONS(1832), - [anon_sym_const] = ACTIONS(1832), - [anon_sym_volatile] = ACTIONS(1832), - [anon_sym_ctypedef] = ACTIONS(1832), - [anon_sym_struct] = ACTIONS(1832), - [anon_sym_union] = ACTIONS(1832), - [anon_sym_enum] = ACTIONS(1832), - [anon_sym_cppclass] = ACTIONS(1832), - [anon_sym_fused] = ACTIONS(1832), - [anon_sym_public] = ACTIONS(1832), - [anon_sym_packed] = ACTIONS(1832), - [anon_sym_inline] = ACTIONS(1832), - [anon_sym_readonly] = ACTIONS(1832), - [anon_sym_sizeof] = ACTIONS(1832), - [sym__dedent] = ACTIONS(1834), - [sym_string_start] = ACTIONS(1834), + [anon_sym_property] = ACTIONS(1863), + [anon_sym_include] = ACTIONS(1863), + [anon_sym_DEF] = ACTIONS(1863), + [anon_sym_cdef] = ACTIONS(1863), + [anon_sym_cpdef] = ACTIONS(1863), + [anon_sym_int] = ACTIONS(1863), + [anon_sym_double] = ACTIONS(1863), + [anon_sym_complex] = ACTIONS(1863), + [anon_sym_new] = ACTIONS(1863), + [anon_sym_signed] = ACTIONS(1863), + [anon_sym_unsigned] = ACTIONS(1863), + [anon_sym_char] = ACTIONS(1863), + [anon_sym_short] = ACTIONS(1863), + [anon_sym_long] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [anon_sym_volatile] = ACTIONS(1863), + [anon_sym_ctypedef] = ACTIONS(1863), + [anon_sym_struct] = ACTIONS(1863), + [anon_sym_union] = ACTIONS(1863), + [anon_sym_enum] = ACTIONS(1863), + [anon_sym_cppclass] = ACTIONS(1863), + [anon_sym_fused] = ACTIONS(1863), + [anon_sym_public] = ACTIONS(1863), + [anon_sym_packed] = ACTIONS(1863), + [anon_sym_inline] = ACTIONS(1863), + [anon_sym_readonly] = ACTIONS(1863), + [anon_sym_sizeof] = ACTIONS(1863), + [sym__dedent] = ACTIONS(1865), + [sym_string_start] = ACTIONS(1865), }, [554] = { - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_import] = ACTIONS(1836), - [anon_sym_cimport] = ACTIONS(1836), - [anon_sym_from] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_print] = ACTIONS(1836), - [anon_sym_assert] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_del] = ACTIONS(1836), - [anon_sym_raise] = ACTIONS(1836), - [anon_sym_pass] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_continue] = ACTIONS(1836), - [anon_sym_if] = ACTIONS(1836), - [anon_sym_match] = ACTIONS(1836), - [anon_sym_async] = ACTIONS(1836), - [anon_sym_for] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_try] = ACTIONS(1836), - [anon_sym_with] = ACTIONS(1836), - [anon_sym_def] = ACTIONS(1836), - [anon_sym_global] = ACTIONS(1836), - [anon_sym_nonlocal] = ACTIONS(1836), - [anon_sym_exec] = ACTIONS(1836), - [anon_sym_type] = ACTIONS(1836), - [anon_sym_class] = ACTIONS(1836), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_AT] = ACTIONS(1838), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1838), - [anon_sym_not] = ACTIONS(1836), - [anon_sym_AMP] = ACTIONS(1838), - [anon_sym_TILDE] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_lambda] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [sym_ellipsis] = ACTIONS(1838), - [anon_sym_None] = ACTIONS(1836), - [sym_integer] = ACTIONS(1836), - [sym_float] = ACTIONS(1838), - [anon_sym_await] = ACTIONS(1836), - [anon_sym_api] = ACTIONS(1836), - [sym_true] = ACTIONS(1836), - [sym_false] = ACTIONS(1836), + [sym_identifier] = ACTIONS(1867), + [anon_sym_SEMI] = ACTIONS(1869), + [anon_sym_import] = ACTIONS(1867), + [anon_sym_cimport] = ACTIONS(1867), + [anon_sym_from] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_print] = ACTIONS(1867), + [anon_sym_assert] = ACTIONS(1867), + [anon_sym_return] = ACTIONS(1867), + [anon_sym_del] = ACTIONS(1867), + [anon_sym_raise] = ACTIONS(1867), + [anon_sym_pass] = ACTIONS(1867), + [anon_sym_break] = ACTIONS(1867), + [anon_sym_continue] = ACTIONS(1867), + [anon_sym_if] = ACTIONS(1867), + [anon_sym_match] = ACTIONS(1867), + [anon_sym_async] = ACTIONS(1867), + [anon_sym_for] = ACTIONS(1867), + [anon_sym_while] = ACTIONS(1867), + [anon_sym_try] = ACTIONS(1867), + [anon_sym_with] = ACTIONS(1867), + [anon_sym_def] = ACTIONS(1867), + [anon_sym_global] = ACTIONS(1867), + [anon_sym_nonlocal] = ACTIONS(1867), + [anon_sym_exec] = ACTIONS(1867), + [anon_sym_type] = ACTIONS(1867), + [anon_sym_class] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1869), + [anon_sym_AT] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_not] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1869), + [anon_sym_TILDE] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_lambda] = ACTIONS(1867), + [anon_sym_yield] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1869), + [anon_sym_None] = ACTIONS(1867), + [sym_integer] = ACTIONS(1867), + [sym_float] = ACTIONS(1869), + [anon_sym_await] = ACTIONS(1867), + [anon_sym_api] = ACTIONS(1867), + [sym_true] = ACTIONS(1867), + [sym_false] = ACTIONS(1867), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1836), - [anon_sym_include] = ACTIONS(1836), - [anon_sym_DEF] = ACTIONS(1836), - [anon_sym_cdef] = ACTIONS(1836), - [anon_sym_cpdef] = ACTIONS(1836), - [anon_sym_int] = ACTIONS(1836), - [anon_sym_double] = ACTIONS(1836), - [anon_sym_complex] = ACTIONS(1836), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_signed] = ACTIONS(1836), - [anon_sym_unsigned] = ACTIONS(1836), - [anon_sym_char] = ACTIONS(1836), - [anon_sym_short] = ACTIONS(1836), - [anon_sym_long] = ACTIONS(1836), - [anon_sym_const] = ACTIONS(1836), - [anon_sym_volatile] = ACTIONS(1836), - [anon_sym_ctypedef] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_union] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_cppclass] = ACTIONS(1836), - [anon_sym_fused] = ACTIONS(1836), - [anon_sym_public] = ACTIONS(1836), - [anon_sym_packed] = ACTIONS(1836), - [anon_sym_inline] = ACTIONS(1836), - [anon_sym_readonly] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1836), - [sym__dedent] = ACTIONS(1838), - [sym_string_start] = ACTIONS(1838), + [anon_sym_property] = ACTIONS(1867), + [anon_sym_include] = ACTIONS(1867), + [anon_sym_DEF] = ACTIONS(1867), + [anon_sym_cdef] = ACTIONS(1867), + [anon_sym_cpdef] = ACTIONS(1867), + [anon_sym_int] = ACTIONS(1867), + [anon_sym_double] = ACTIONS(1867), + [anon_sym_complex] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1867), + [anon_sym_signed] = ACTIONS(1867), + [anon_sym_unsigned] = ACTIONS(1867), + [anon_sym_char] = ACTIONS(1867), + [anon_sym_short] = ACTIONS(1867), + [anon_sym_long] = ACTIONS(1867), + [anon_sym_const] = ACTIONS(1867), + [anon_sym_volatile] = ACTIONS(1867), + [anon_sym_ctypedef] = ACTIONS(1867), + [anon_sym_struct] = ACTIONS(1867), + [anon_sym_union] = ACTIONS(1867), + [anon_sym_enum] = ACTIONS(1867), + [anon_sym_cppclass] = ACTIONS(1867), + [anon_sym_fused] = ACTIONS(1867), + [anon_sym_public] = ACTIONS(1867), + [anon_sym_packed] = ACTIONS(1867), + [anon_sym_inline] = ACTIONS(1867), + [anon_sym_readonly] = ACTIONS(1867), + [anon_sym_sizeof] = ACTIONS(1867), + [sym__dedent] = ACTIONS(1869), + [sym_string_start] = ACTIONS(1869), }, [555] = { - [sym_identifier] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_import] = ACTIONS(1840), - [anon_sym_cimport] = ACTIONS(1840), - [anon_sym_from] = ACTIONS(1840), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1842), - [anon_sym_print] = ACTIONS(1840), - [anon_sym_assert] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(1840), - [anon_sym_del] = ACTIONS(1840), - [anon_sym_raise] = ACTIONS(1840), - [anon_sym_pass] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1840), - [anon_sym_continue] = ACTIONS(1840), - [anon_sym_if] = ACTIONS(1840), - [anon_sym_match] = ACTIONS(1840), - [anon_sym_async] = ACTIONS(1840), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1840), - [anon_sym_try] = ACTIONS(1840), - [anon_sym_with] = ACTIONS(1840), - [anon_sym_def] = ACTIONS(1840), - [anon_sym_global] = ACTIONS(1840), - [anon_sym_nonlocal] = ACTIONS(1840), - [anon_sym_exec] = ACTIONS(1840), - [anon_sym_type] = ACTIONS(1840), - [anon_sym_class] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_AT] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_not] = ACTIONS(1840), - [anon_sym_AMP] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1842), - [anon_sym_LT] = ACTIONS(1842), - [anon_sym_lambda] = ACTIONS(1840), - [anon_sym_yield] = ACTIONS(1840), - [sym_ellipsis] = ACTIONS(1842), - [anon_sym_None] = ACTIONS(1840), - [sym_integer] = ACTIONS(1840), - [sym_float] = ACTIONS(1842), - [anon_sym_await] = ACTIONS(1840), - [anon_sym_api] = ACTIONS(1840), - [sym_true] = ACTIONS(1840), - [sym_false] = ACTIONS(1840), + [sym_identifier] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_import] = ACTIONS(1871), + [anon_sym_cimport] = ACTIONS(1871), + [anon_sym_from] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_print] = ACTIONS(1871), + [anon_sym_assert] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_del] = ACTIONS(1871), + [anon_sym_raise] = ACTIONS(1871), + [anon_sym_pass] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_match] = ACTIONS(1871), + [anon_sym_async] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_with] = ACTIONS(1871), + [anon_sym_def] = ACTIONS(1871), + [anon_sym_global] = ACTIONS(1871), + [anon_sym_nonlocal] = ACTIONS(1871), + [anon_sym_exec] = ACTIONS(1871), + [anon_sym_type] = ACTIONS(1871), + [anon_sym_class] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_AT] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_lambda] = ACTIONS(1871), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1873), + [anon_sym_None] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1873), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_api] = ACTIONS(1871), + [sym_true] = ACTIONS(1871), + [sym_false] = ACTIONS(1871), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1840), - [anon_sym_include] = ACTIONS(1840), - [anon_sym_DEF] = ACTIONS(1840), - [anon_sym_cdef] = ACTIONS(1840), - [anon_sym_cpdef] = ACTIONS(1840), - [anon_sym_int] = ACTIONS(1840), - [anon_sym_double] = ACTIONS(1840), - [anon_sym_complex] = ACTIONS(1840), - [anon_sym_new] = ACTIONS(1840), - [anon_sym_signed] = ACTIONS(1840), - [anon_sym_unsigned] = ACTIONS(1840), - [anon_sym_char] = ACTIONS(1840), - [anon_sym_short] = ACTIONS(1840), - [anon_sym_long] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1840), - [anon_sym_volatile] = ACTIONS(1840), - [anon_sym_ctypedef] = ACTIONS(1840), - [anon_sym_struct] = ACTIONS(1840), - [anon_sym_union] = ACTIONS(1840), - [anon_sym_enum] = ACTIONS(1840), - [anon_sym_cppclass] = ACTIONS(1840), - [anon_sym_fused] = ACTIONS(1840), - [anon_sym_public] = ACTIONS(1840), - [anon_sym_packed] = ACTIONS(1840), - [anon_sym_inline] = ACTIONS(1840), - [anon_sym_readonly] = ACTIONS(1840), - [anon_sym_sizeof] = ACTIONS(1840), - [sym__dedent] = ACTIONS(1842), - [sym_string_start] = ACTIONS(1842), + [anon_sym_property] = ACTIONS(1871), + [anon_sym_include] = ACTIONS(1871), + [anon_sym_DEF] = ACTIONS(1871), + [anon_sym_cdef] = ACTIONS(1871), + [anon_sym_cpdef] = ACTIONS(1871), + [anon_sym_int] = ACTIONS(1871), + [anon_sym_double] = ACTIONS(1871), + [anon_sym_complex] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1871), + [anon_sym_signed] = ACTIONS(1871), + [anon_sym_unsigned] = ACTIONS(1871), + [anon_sym_char] = ACTIONS(1871), + [anon_sym_short] = ACTIONS(1871), + [anon_sym_long] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [anon_sym_volatile] = ACTIONS(1871), + [anon_sym_ctypedef] = ACTIONS(1871), + [anon_sym_struct] = ACTIONS(1871), + [anon_sym_union] = ACTIONS(1871), + [anon_sym_enum] = ACTIONS(1871), + [anon_sym_cppclass] = ACTIONS(1871), + [anon_sym_fused] = ACTIONS(1871), + [anon_sym_public] = ACTIONS(1871), + [anon_sym_packed] = ACTIONS(1871), + [anon_sym_inline] = ACTIONS(1871), + [anon_sym_readonly] = ACTIONS(1871), + [anon_sym_sizeof] = ACTIONS(1871), + [sym__dedent] = ACTIONS(1873), + [sym_string_start] = ACTIONS(1873), }, [556] = { - [sym_identifier] = ACTIONS(1844), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_import] = ACTIONS(1844), - [anon_sym_cimport] = ACTIONS(1844), - [anon_sym_from] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_print] = ACTIONS(1844), - [anon_sym_assert] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(1844), - [anon_sym_del] = ACTIONS(1844), - [anon_sym_raise] = ACTIONS(1844), - [anon_sym_pass] = ACTIONS(1844), - [anon_sym_break] = ACTIONS(1844), - [anon_sym_continue] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1844), - [anon_sym_match] = ACTIONS(1844), - [anon_sym_async] = ACTIONS(1844), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_while] = ACTIONS(1844), - [anon_sym_try] = ACTIONS(1844), - [anon_sym_with] = ACTIONS(1844), - [anon_sym_def] = ACTIONS(1844), - [anon_sym_global] = ACTIONS(1844), - [anon_sym_nonlocal] = ACTIONS(1844), - [anon_sym_exec] = ACTIONS(1844), - [anon_sym_type] = ACTIONS(1844), - [anon_sym_class] = ACTIONS(1844), - [anon_sym_LBRACK] = ACTIONS(1846), - [anon_sym_AT] = ACTIONS(1846), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_not] = ACTIONS(1844), - [anon_sym_AMP] = ACTIONS(1846), - [anon_sym_TILDE] = ACTIONS(1846), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_lambda] = ACTIONS(1844), - [anon_sym_yield] = ACTIONS(1844), - [sym_ellipsis] = ACTIONS(1846), - [anon_sym_None] = ACTIONS(1844), - [sym_integer] = ACTIONS(1844), - [sym_float] = ACTIONS(1846), - [anon_sym_await] = ACTIONS(1844), - [anon_sym_api] = ACTIONS(1844), - [sym_true] = ACTIONS(1844), - [sym_false] = ACTIONS(1844), + [sym_identifier] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_import] = ACTIONS(1875), + [anon_sym_cimport] = ACTIONS(1875), + [anon_sym_from] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_print] = ACTIONS(1875), + [anon_sym_assert] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_del] = ACTIONS(1875), + [anon_sym_raise] = ACTIONS(1875), + [anon_sym_pass] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_async] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_with] = ACTIONS(1875), + [anon_sym_def] = ACTIONS(1875), + [anon_sym_global] = ACTIONS(1875), + [anon_sym_nonlocal] = ACTIONS(1875), + [anon_sym_exec] = ACTIONS(1875), + [anon_sym_type] = ACTIONS(1875), + [anon_sym_class] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_not] = ACTIONS(1875), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_lambda] = ACTIONS(1875), + [anon_sym_yield] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [anon_sym_None] = ACTIONS(1875), + [sym_integer] = ACTIONS(1875), + [sym_float] = ACTIONS(1877), + [anon_sym_await] = ACTIONS(1875), + [anon_sym_api] = ACTIONS(1875), + [sym_true] = ACTIONS(1875), + [sym_false] = ACTIONS(1875), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1844), - [anon_sym_include] = ACTIONS(1844), - [anon_sym_DEF] = ACTIONS(1844), - [anon_sym_cdef] = ACTIONS(1844), - [anon_sym_cpdef] = ACTIONS(1844), - [anon_sym_int] = ACTIONS(1844), - [anon_sym_double] = ACTIONS(1844), - [anon_sym_complex] = ACTIONS(1844), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_signed] = ACTIONS(1844), - [anon_sym_unsigned] = ACTIONS(1844), - [anon_sym_char] = ACTIONS(1844), - [anon_sym_short] = ACTIONS(1844), - [anon_sym_long] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [anon_sym_volatile] = ACTIONS(1844), - [anon_sym_ctypedef] = ACTIONS(1844), - [anon_sym_struct] = ACTIONS(1844), - [anon_sym_union] = ACTIONS(1844), - [anon_sym_enum] = ACTIONS(1844), - [anon_sym_cppclass] = ACTIONS(1844), - [anon_sym_fused] = ACTIONS(1844), - [anon_sym_public] = ACTIONS(1844), - [anon_sym_packed] = ACTIONS(1844), - [anon_sym_inline] = ACTIONS(1844), - [anon_sym_readonly] = ACTIONS(1844), - [anon_sym_sizeof] = ACTIONS(1844), - [sym__dedent] = ACTIONS(1846), - [sym_string_start] = ACTIONS(1846), + [anon_sym_property] = ACTIONS(1875), + [anon_sym_include] = ACTIONS(1875), + [anon_sym_DEF] = ACTIONS(1875), + [anon_sym_cdef] = ACTIONS(1875), + [anon_sym_cpdef] = ACTIONS(1875), + [anon_sym_int] = ACTIONS(1875), + [anon_sym_double] = ACTIONS(1875), + [anon_sym_complex] = ACTIONS(1875), + [anon_sym_new] = ACTIONS(1875), + [anon_sym_signed] = ACTIONS(1875), + [anon_sym_unsigned] = ACTIONS(1875), + [anon_sym_char] = ACTIONS(1875), + [anon_sym_short] = ACTIONS(1875), + [anon_sym_long] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_volatile] = ACTIONS(1875), + [anon_sym_ctypedef] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_union] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_cppclass] = ACTIONS(1875), + [anon_sym_fused] = ACTIONS(1875), + [anon_sym_public] = ACTIONS(1875), + [anon_sym_packed] = ACTIONS(1875), + [anon_sym_inline] = ACTIONS(1875), + [anon_sym_readonly] = ACTIONS(1875), + [anon_sym_sizeof] = ACTIONS(1875), + [sym__dedent] = ACTIONS(1877), + [sym_string_start] = ACTIONS(1877), }, [557] = { - [sym_identifier] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_import] = ACTIONS(1848), - [anon_sym_cimport] = ACTIONS(1848), - [anon_sym_from] = ACTIONS(1848), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1850), - [anon_sym_print] = ACTIONS(1848), - [anon_sym_assert] = ACTIONS(1848), - [anon_sym_return] = ACTIONS(1848), - [anon_sym_del] = ACTIONS(1848), - [anon_sym_raise] = ACTIONS(1848), - [anon_sym_pass] = ACTIONS(1848), - [anon_sym_break] = ACTIONS(1848), - [anon_sym_continue] = ACTIONS(1848), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_match] = ACTIONS(1848), - [anon_sym_async] = ACTIONS(1848), - [anon_sym_for] = ACTIONS(1848), - [anon_sym_while] = ACTIONS(1848), - [anon_sym_try] = ACTIONS(1848), - [anon_sym_with] = ACTIONS(1848), - [anon_sym_def] = ACTIONS(1848), - [anon_sym_global] = ACTIONS(1848), - [anon_sym_nonlocal] = ACTIONS(1848), - [anon_sym_exec] = ACTIONS(1848), - [anon_sym_type] = ACTIONS(1848), - [anon_sym_class] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1850), - [anon_sym_AT] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_not] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1850), - [anon_sym_LT] = ACTIONS(1850), - [anon_sym_lambda] = ACTIONS(1848), - [anon_sym_yield] = ACTIONS(1848), - [sym_ellipsis] = ACTIONS(1850), - [anon_sym_None] = ACTIONS(1848), - [sym_integer] = ACTIONS(1848), - [sym_float] = ACTIONS(1850), - [anon_sym_await] = ACTIONS(1848), - [anon_sym_api] = ACTIONS(1848), - [sym_true] = ACTIONS(1848), - [sym_false] = ACTIONS(1848), + [sym_identifier] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_import] = ACTIONS(1879), + [anon_sym_cimport] = ACTIONS(1879), + [anon_sym_from] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1881), + [anon_sym_print] = ACTIONS(1879), + [anon_sym_assert] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_del] = ACTIONS(1879), + [anon_sym_raise] = ACTIONS(1879), + [anon_sym_pass] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_async] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_with] = ACTIONS(1879), + [anon_sym_def] = ACTIONS(1879), + [anon_sym_global] = ACTIONS(1879), + [anon_sym_nonlocal] = ACTIONS(1879), + [anon_sym_exec] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_class] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1881), + [anon_sym_AT] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_not] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1881), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_lambda] = ACTIONS(1879), + [anon_sym_yield] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), + [anon_sym_None] = ACTIONS(1879), + [sym_integer] = ACTIONS(1879), + [sym_float] = ACTIONS(1881), + [anon_sym_await] = ACTIONS(1879), + [anon_sym_api] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1848), - [anon_sym_include] = ACTIONS(1848), - [anon_sym_DEF] = ACTIONS(1848), - [anon_sym_cdef] = ACTIONS(1848), - [anon_sym_cpdef] = ACTIONS(1848), - [anon_sym_int] = ACTIONS(1848), - [anon_sym_double] = ACTIONS(1848), - [anon_sym_complex] = ACTIONS(1848), - [anon_sym_new] = ACTIONS(1848), - [anon_sym_signed] = ACTIONS(1848), - [anon_sym_unsigned] = ACTIONS(1848), - [anon_sym_char] = ACTIONS(1848), - [anon_sym_short] = ACTIONS(1848), - [anon_sym_long] = ACTIONS(1848), - [anon_sym_const] = ACTIONS(1848), - [anon_sym_volatile] = ACTIONS(1848), - [anon_sym_ctypedef] = ACTIONS(1848), - [anon_sym_struct] = ACTIONS(1848), - [anon_sym_union] = ACTIONS(1848), - [anon_sym_enum] = ACTIONS(1848), - [anon_sym_cppclass] = ACTIONS(1848), - [anon_sym_fused] = ACTIONS(1848), - [anon_sym_public] = ACTIONS(1848), - [anon_sym_packed] = ACTIONS(1848), - [anon_sym_inline] = ACTIONS(1848), - [anon_sym_readonly] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1848), - [sym__dedent] = ACTIONS(1850), - [sym_string_start] = ACTIONS(1850), + [anon_sym_property] = ACTIONS(1879), + [anon_sym_include] = ACTIONS(1879), + [anon_sym_DEF] = ACTIONS(1879), + [anon_sym_cdef] = ACTIONS(1879), + [anon_sym_cpdef] = ACTIONS(1879), + [anon_sym_int] = ACTIONS(1879), + [anon_sym_double] = ACTIONS(1879), + [anon_sym_complex] = ACTIONS(1879), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_signed] = ACTIONS(1879), + [anon_sym_unsigned] = ACTIONS(1879), + [anon_sym_char] = ACTIONS(1879), + [anon_sym_short] = ACTIONS(1879), + [anon_sym_long] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_volatile] = ACTIONS(1879), + [anon_sym_ctypedef] = ACTIONS(1879), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_cppclass] = ACTIONS(1879), + [anon_sym_fused] = ACTIONS(1879), + [anon_sym_public] = ACTIONS(1879), + [anon_sym_packed] = ACTIONS(1879), + [anon_sym_inline] = ACTIONS(1879), + [anon_sym_readonly] = ACTIONS(1879), + [anon_sym_sizeof] = ACTIONS(1879), + [sym__dedent] = ACTIONS(1881), + [sym_string_start] = ACTIONS(1881), }, [558] = { - [sym_identifier] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_import] = ACTIONS(1852), - [anon_sym_cimport] = ACTIONS(1852), - [anon_sym_from] = ACTIONS(1852), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1854), - [anon_sym_print] = ACTIONS(1852), - [anon_sym_assert] = ACTIONS(1852), - [anon_sym_return] = ACTIONS(1852), - [anon_sym_del] = ACTIONS(1852), - [anon_sym_raise] = ACTIONS(1852), - [anon_sym_pass] = ACTIONS(1852), - [anon_sym_break] = ACTIONS(1852), - [anon_sym_continue] = ACTIONS(1852), - [anon_sym_if] = ACTIONS(1852), - [anon_sym_match] = ACTIONS(1852), - [anon_sym_async] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1852), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_try] = ACTIONS(1852), - [anon_sym_with] = ACTIONS(1852), - [anon_sym_def] = ACTIONS(1852), - [anon_sym_global] = ACTIONS(1852), - [anon_sym_nonlocal] = ACTIONS(1852), - [anon_sym_exec] = ACTIONS(1852), - [anon_sym_type] = ACTIONS(1852), - [anon_sym_class] = ACTIONS(1852), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_AT] = ACTIONS(1854), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_not] = ACTIONS(1852), - [anon_sym_AMP] = ACTIONS(1854), - [anon_sym_TILDE] = ACTIONS(1854), - [anon_sym_LT] = ACTIONS(1854), - [anon_sym_lambda] = ACTIONS(1852), - [anon_sym_yield] = ACTIONS(1852), - [sym_ellipsis] = ACTIONS(1854), - [anon_sym_None] = ACTIONS(1852), - [sym_integer] = ACTIONS(1852), - [sym_float] = ACTIONS(1854), - [anon_sym_await] = ACTIONS(1852), - [anon_sym_api] = ACTIONS(1852), - [sym_true] = ACTIONS(1852), - [sym_false] = ACTIONS(1852), + [sym_identifier] = ACTIONS(1883), + [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym_import] = ACTIONS(1883), + [anon_sym_cimport] = ACTIONS(1883), + [anon_sym_from] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_print] = ACTIONS(1883), + [anon_sym_assert] = ACTIONS(1883), + [anon_sym_return] = ACTIONS(1883), + [anon_sym_del] = ACTIONS(1883), + [anon_sym_raise] = ACTIONS(1883), + [anon_sym_pass] = ACTIONS(1883), + [anon_sym_break] = ACTIONS(1883), + [anon_sym_continue] = ACTIONS(1883), + [anon_sym_if] = ACTIONS(1883), + [anon_sym_match] = ACTIONS(1883), + [anon_sym_async] = ACTIONS(1883), + [anon_sym_for] = ACTIONS(1883), + [anon_sym_while] = ACTIONS(1883), + [anon_sym_try] = ACTIONS(1883), + [anon_sym_with] = ACTIONS(1883), + [anon_sym_def] = ACTIONS(1883), + [anon_sym_global] = ACTIONS(1883), + [anon_sym_nonlocal] = ACTIONS(1883), + [anon_sym_exec] = ACTIONS(1883), + [anon_sym_type] = ACTIONS(1883), + [anon_sym_class] = ACTIONS(1883), + [anon_sym_LBRACK] = ACTIONS(1885), + [anon_sym_AT] = ACTIONS(1885), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(1885), + [anon_sym_lambda] = ACTIONS(1883), + [anon_sym_yield] = ACTIONS(1883), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1885), + [anon_sym_None] = ACTIONS(1883), + [sym_integer] = ACTIONS(1883), + [sym_float] = ACTIONS(1885), + [anon_sym_await] = ACTIONS(1883), + [anon_sym_api] = ACTIONS(1883), + [sym_true] = ACTIONS(1883), + [sym_false] = ACTIONS(1883), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1852), - [anon_sym_include] = ACTIONS(1852), - [anon_sym_DEF] = ACTIONS(1852), - [anon_sym_cdef] = ACTIONS(1852), - [anon_sym_cpdef] = ACTIONS(1852), - [anon_sym_int] = ACTIONS(1852), - [anon_sym_double] = ACTIONS(1852), - [anon_sym_complex] = ACTIONS(1852), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_signed] = ACTIONS(1852), - [anon_sym_unsigned] = ACTIONS(1852), - [anon_sym_char] = ACTIONS(1852), - [anon_sym_short] = ACTIONS(1852), - [anon_sym_long] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1852), - [anon_sym_volatile] = ACTIONS(1852), - [anon_sym_ctypedef] = ACTIONS(1852), - [anon_sym_struct] = ACTIONS(1852), - [anon_sym_union] = ACTIONS(1852), - [anon_sym_enum] = ACTIONS(1852), - [anon_sym_cppclass] = ACTIONS(1852), - [anon_sym_fused] = ACTIONS(1852), - [anon_sym_public] = ACTIONS(1852), - [anon_sym_packed] = ACTIONS(1852), - [anon_sym_inline] = ACTIONS(1852), - [anon_sym_readonly] = ACTIONS(1852), - [anon_sym_sizeof] = ACTIONS(1852), - [sym__dedent] = ACTIONS(1854), - [sym_string_start] = ACTIONS(1854), + [anon_sym_property] = ACTIONS(1883), + [anon_sym_include] = ACTIONS(1883), + [anon_sym_DEF] = ACTIONS(1883), + [anon_sym_cdef] = ACTIONS(1883), + [anon_sym_cpdef] = ACTIONS(1883), + [anon_sym_int] = ACTIONS(1883), + [anon_sym_double] = ACTIONS(1883), + [anon_sym_complex] = ACTIONS(1883), + [anon_sym_new] = ACTIONS(1883), + [anon_sym_signed] = ACTIONS(1883), + [anon_sym_unsigned] = ACTIONS(1883), + [anon_sym_char] = ACTIONS(1883), + [anon_sym_short] = ACTIONS(1883), + [anon_sym_long] = ACTIONS(1883), + [anon_sym_const] = ACTIONS(1883), + [anon_sym_volatile] = ACTIONS(1883), + [anon_sym_ctypedef] = ACTIONS(1883), + [anon_sym_struct] = ACTIONS(1883), + [anon_sym_union] = ACTIONS(1883), + [anon_sym_enum] = ACTIONS(1883), + [anon_sym_cppclass] = ACTIONS(1883), + [anon_sym_fused] = ACTIONS(1883), + [anon_sym_public] = ACTIONS(1883), + [anon_sym_packed] = ACTIONS(1883), + [anon_sym_inline] = ACTIONS(1883), + [anon_sym_readonly] = ACTIONS(1883), + [anon_sym_sizeof] = ACTIONS(1883), + [sym__dedent] = ACTIONS(1885), + [sym_string_start] = ACTIONS(1885), }, [559] = { - [sym_identifier] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_import] = ACTIONS(1856), - [anon_sym_cimport] = ACTIONS(1856), - [anon_sym_from] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_STAR] = ACTIONS(1858), - [anon_sym_print] = ACTIONS(1856), - [anon_sym_assert] = ACTIONS(1856), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_del] = ACTIONS(1856), - [anon_sym_raise] = ACTIONS(1856), - [anon_sym_pass] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_match] = ACTIONS(1856), - [anon_sym_async] = ACTIONS(1856), - [anon_sym_for] = ACTIONS(1856), - [anon_sym_while] = ACTIONS(1856), - [anon_sym_try] = ACTIONS(1856), - [anon_sym_with] = ACTIONS(1856), - [anon_sym_def] = ACTIONS(1856), - [anon_sym_global] = ACTIONS(1856), - [anon_sym_nonlocal] = ACTIONS(1856), - [anon_sym_exec] = ACTIONS(1856), - [anon_sym_type] = ACTIONS(1856), - [anon_sym_class] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_AT] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_not] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1858), - [anon_sym_LT] = ACTIONS(1858), - [anon_sym_lambda] = ACTIONS(1856), - [anon_sym_yield] = ACTIONS(1856), - [sym_ellipsis] = ACTIONS(1858), - [anon_sym_None] = ACTIONS(1856), - [sym_integer] = ACTIONS(1856), - [sym_float] = ACTIONS(1858), - [anon_sym_await] = ACTIONS(1856), - [anon_sym_api] = ACTIONS(1856), - [sym_true] = ACTIONS(1856), - [sym_false] = ACTIONS(1856), + [sym_identifier] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1889), + [anon_sym_import] = ACTIONS(1887), + [anon_sym_cimport] = ACTIONS(1887), + [anon_sym_from] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1889), + [anon_sym_print] = ACTIONS(1887), + [anon_sym_assert] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_del] = ACTIONS(1887), + [anon_sym_raise] = ACTIONS(1887), + [anon_sym_pass] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_async] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_while] = ACTIONS(1887), + [anon_sym_try] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1887), + [anon_sym_def] = ACTIONS(1887), + [anon_sym_global] = ACTIONS(1887), + [anon_sym_nonlocal] = ACTIONS(1887), + [anon_sym_exec] = ACTIONS(1887), + [anon_sym_type] = ACTIONS(1887), + [anon_sym_class] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_AT] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_not] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_lambda] = ACTIONS(1887), + [anon_sym_yield] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1889), + [anon_sym_None] = ACTIONS(1887), + [sym_integer] = ACTIONS(1887), + [sym_float] = ACTIONS(1889), + [anon_sym_await] = ACTIONS(1887), + [anon_sym_api] = ACTIONS(1887), + [sym_true] = ACTIONS(1887), + [sym_false] = ACTIONS(1887), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1856), - [anon_sym_include] = ACTIONS(1856), - [anon_sym_DEF] = ACTIONS(1856), - [anon_sym_cdef] = ACTIONS(1856), - [anon_sym_cpdef] = ACTIONS(1856), - [anon_sym_int] = ACTIONS(1856), - [anon_sym_double] = ACTIONS(1856), - [anon_sym_complex] = ACTIONS(1856), - [anon_sym_new] = ACTIONS(1856), - [anon_sym_signed] = ACTIONS(1856), - [anon_sym_unsigned] = ACTIONS(1856), - [anon_sym_char] = ACTIONS(1856), - [anon_sym_short] = ACTIONS(1856), - [anon_sym_long] = ACTIONS(1856), - [anon_sym_const] = ACTIONS(1856), - [anon_sym_volatile] = ACTIONS(1856), - [anon_sym_ctypedef] = ACTIONS(1856), - [anon_sym_struct] = ACTIONS(1856), - [anon_sym_union] = ACTIONS(1856), - [anon_sym_enum] = ACTIONS(1856), - [anon_sym_cppclass] = ACTIONS(1856), - [anon_sym_fused] = ACTIONS(1856), - [anon_sym_public] = ACTIONS(1856), - [anon_sym_packed] = ACTIONS(1856), - [anon_sym_inline] = ACTIONS(1856), - [anon_sym_readonly] = ACTIONS(1856), - [anon_sym_sizeof] = ACTIONS(1856), - [sym__dedent] = ACTIONS(1858), - [sym_string_start] = ACTIONS(1858), + [anon_sym_property] = ACTIONS(1887), + [anon_sym_include] = ACTIONS(1887), + [anon_sym_DEF] = ACTIONS(1887), + [anon_sym_cdef] = ACTIONS(1887), + [anon_sym_cpdef] = ACTIONS(1887), + [anon_sym_int] = ACTIONS(1887), + [anon_sym_double] = ACTIONS(1887), + [anon_sym_complex] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1887), + [anon_sym_signed] = ACTIONS(1887), + [anon_sym_unsigned] = ACTIONS(1887), + [anon_sym_char] = ACTIONS(1887), + [anon_sym_short] = ACTIONS(1887), + [anon_sym_long] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [anon_sym_volatile] = ACTIONS(1887), + [anon_sym_ctypedef] = ACTIONS(1887), + [anon_sym_struct] = ACTIONS(1887), + [anon_sym_union] = ACTIONS(1887), + [anon_sym_enum] = ACTIONS(1887), + [anon_sym_cppclass] = ACTIONS(1887), + [anon_sym_fused] = ACTIONS(1887), + [anon_sym_public] = ACTIONS(1887), + [anon_sym_packed] = ACTIONS(1887), + [anon_sym_inline] = ACTIONS(1887), + [anon_sym_readonly] = ACTIONS(1887), + [anon_sym_sizeof] = ACTIONS(1887), + [sym__dedent] = ACTIONS(1889), + [sym_string_start] = ACTIONS(1889), }, [560] = { - [sym_identifier] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_import] = ACTIONS(1860), - [anon_sym_cimport] = ACTIONS(1860), - [anon_sym_from] = ACTIONS(1860), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1862), - [anon_sym_print] = ACTIONS(1860), - [anon_sym_assert] = ACTIONS(1860), - [anon_sym_return] = ACTIONS(1860), - [anon_sym_del] = ACTIONS(1860), - [anon_sym_raise] = ACTIONS(1860), - [anon_sym_pass] = ACTIONS(1860), - [anon_sym_break] = ACTIONS(1860), - [anon_sym_continue] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_match] = ACTIONS(1860), - [anon_sym_async] = ACTIONS(1860), - [anon_sym_for] = ACTIONS(1860), - [anon_sym_while] = ACTIONS(1860), - [anon_sym_try] = ACTIONS(1860), - [anon_sym_with] = ACTIONS(1860), - [anon_sym_def] = ACTIONS(1860), - [anon_sym_global] = ACTIONS(1860), - [anon_sym_nonlocal] = ACTIONS(1860), - [anon_sym_exec] = ACTIONS(1860), - [anon_sym_type] = ACTIONS(1860), - [anon_sym_class] = ACTIONS(1860), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_AT] = ACTIONS(1862), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_not] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1862), - [anon_sym_TILDE] = ACTIONS(1862), - [anon_sym_LT] = ACTIONS(1862), - [anon_sym_lambda] = ACTIONS(1860), - [anon_sym_yield] = ACTIONS(1860), - [sym_ellipsis] = ACTIONS(1862), - [anon_sym_None] = ACTIONS(1860), - [sym_integer] = ACTIONS(1860), - [sym_float] = ACTIONS(1862), - [anon_sym_await] = ACTIONS(1860), - [anon_sym_api] = ACTIONS(1860), - [sym_true] = ACTIONS(1860), - [sym_false] = ACTIONS(1860), + [sym_identifier] = ACTIONS(1891), + [anon_sym_SEMI] = ACTIONS(1893), + [anon_sym_import] = ACTIONS(1891), + [anon_sym_cimport] = ACTIONS(1891), + [anon_sym_from] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_print] = ACTIONS(1891), + [anon_sym_assert] = ACTIONS(1891), + [anon_sym_return] = ACTIONS(1891), + [anon_sym_del] = ACTIONS(1891), + [anon_sym_raise] = ACTIONS(1891), + [anon_sym_pass] = ACTIONS(1891), + [anon_sym_break] = ACTIONS(1891), + [anon_sym_continue] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(1891), + [anon_sym_match] = ACTIONS(1891), + [anon_sym_async] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(1891), + [anon_sym_while] = ACTIONS(1891), + [anon_sym_try] = ACTIONS(1891), + [anon_sym_with] = ACTIONS(1891), + [anon_sym_def] = ACTIONS(1891), + [anon_sym_global] = ACTIONS(1891), + [anon_sym_nonlocal] = ACTIONS(1891), + [anon_sym_exec] = ACTIONS(1891), + [anon_sym_type] = ACTIONS(1891), + [anon_sym_class] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1893), + [anon_sym_AT] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_not] = ACTIONS(1891), + [anon_sym_AMP] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_lambda] = ACTIONS(1891), + [anon_sym_yield] = ACTIONS(1891), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1893), + [anon_sym_None] = ACTIONS(1891), + [sym_integer] = ACTIONS(1891), + [sym_float] = ACTIONS(1893), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_api] = ACTIONS(1891), + [sym_true] = ACTIONS(1891), + [sym_false] = ACTIONS(1891), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1860), - [anon_sym_include] = ACTIONS(1860), - [anon_sym_DEF] = ACTIONS(1860), - [anon_sym_cdef] = ACTIONS(1860), - [anon_sym_cpdef] = ACTIONS(1860), - [anon_sym_int] = ACTIONS(1860), - [anon_sym_double] = ACTIONS(1860), - [anon_sym_complex] = ACTIONS(1860), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_signed] = ACTIONS(1860), - [anon_sym_unsigned] = ACTIONS(1860), - [anon_sym_char] = ACTIONS(1860), - [anon_sym_short] = ACTIONS(1860), - [anon_sym_long] = ACTIONS(1860), - [anon_sym_const] = ACTIONS(1860), - [anon_sym_volatile] = ACTIONS(1860), - [anon_sym_ctypedef] = ACTIONS(1860), - [anon_sym_struct] = ACTIONS(1860), - [anon_sym_union] = ACTIONS(1860), - [anon_sym_enum] = ACTIONS(1860), - [anon_sym_cppclass] = ACTIONS(1860), - [anon_sym_fused] = ACTIONS(1860), - [anon_sym_public] = ACTIONS(1860), - [anon_sym_packed] = ACTIONS(1860), - [anon_sym_inline] = ACTIONS(1860), - [anon_sym_readonly] = ACTIONS(1860), - [anon_sym_sizeof] = ACTIONS(1860), - [sym__dedent] = ACTIONS(1862), - [sym_string_start] = ACTIONS(1862), + [anon_sym_property] = ACTIONS(1891), + [anon_sym_include] = ACTIONS(1891), + [anon_sym_DEF] = ACTIONS(1891), + [anon_sym_cdef] = ACTIONS(1891), + [anon_sym_cpdef] = ACTIONS(1891), + [anon_sym_int] = ACTIONS(1891), + [anon_sym_double] = ACTIONS(1891), + [anon_sym_complex] = ACTIONS(1891), + [anon_sym_new] = ACTIONS(1891), + [anon_sym_signed] = ACTIONS(1891), + [anon_sym_unsigned] = ACTIONS(1891), + [anon_sym_char] = ACTIONS(1891), + [anon_sym_short] = ACTIONS(1891), + [anon_sym_long] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(1891), + [anon_sym_volatile] = ACTIONS(1891), + [anon_sym_ctypedef] = ACTIONS(1891), + [anon_sym_struct] = ACTIONS(1891), + [anon_sym_union] = ACTIONS(1891), + [anon_sym_enum] = ACTIONS(1891), + [anon_sym_cppclass] = ACTIONS(1891), + [anon_sym_fused] = ACTIONS(1891), + [anon_sym_public] = ACTIONS(1891), + [anon_sym_packed] = ACTIONS(1891), + [anon_sym_inline] = ACTIONS(1891), + [anon_sym_readonly] = ACTIONS(1891), + [anon_sym_sizeof] = ACTIONS(1891), + [sym__dedent] = ACTIONS(1893), + [sym_string_start] = ACTIONS(1893), }, [561] = { - [sym_identifier] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_import] = ACTIONS(1864), - [anon_sym_cimport] = ACTIONS(1864), - [anon_sym_from] = ACTIONS(1864), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1866), - [anon_sym_print] = ACTIONS(1864), - [anon_sym_assert] = ACTIONS(1864), - [anon_sym_return] = ACTIONS(1864), - [anon_sym_del] = ACTIONS(1864), - [anon_sym_raise] = ACTIONS(1864), - [anon_sym_pass] = ACTIONS(1864), - [anon_sym_break] = ACTIONS(1864), - [anon_sym_continue] = ACTIONS(1864), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_match] = ACTIONS(1864), - [anon_sym_async] = ACTIONS(1864), - [anon_sym_for] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_try] = ACTIONS(1864), - [anon_sym_with] = ACTIONS(1864), - [anon_sym_def] = ACTIONS(1864), - [anon_sym_global] = ACTIONS(1864), - [anon_sym_nonlocal] = ACTIONS(1864), - [anon_sym_exec] = ACTIONS(1864), - [anon_sym_type] = ACTIONS(1864), - [anon_sym_class] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_AT] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_not] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_LT] = ACTIONS(1866), - [anon_sym_lambda] = ACTIONS(1864), - [anon_sym_yield] = ACTIONS(1864), - [sym_ellipsis] = ACTIONS(1866), - [anon_sym_None] = ACTIONS(1864), - [sym_integer] = ACTIONS(1864), - [sym_float] = ACTIONS(1866), - [anon_sym_await] = ACTIONS(1864), - [anon_sym_api] = ACTIONS(1864), - [sym_true] = ACTIONS(1864), - [sym_false] = ACTIONS(1864), + [sym_identifier] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_import] = ACTIONS(1895), + [anon_sym_cimport] = ACTIONS(1895), + [anon_sym_from] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_STAR] = ACTIONS(1897), + [anon_sym_print] = ACTIONS(1895), + [anon_sym_assert] = ACTIONS(1895), + [anon_sym_return] = ACTIONS(1895), + [anon_sym_del] = ACTIONS(1895), + [anon_sym_raise] = ACTIONS(1895), + [anon_sym_pass] = ACTIONS(1895), + [anon_sym_break] = ACTIONS(1895), + [anon_sym_continue] = ACTIONS(1895), + [anon_sym_if] = ACTIONS(1895), + [anon_sym_match] = ACTIONS(1895), + [anon_sym_async] = ACTIONS(1895), + [anon_sym_for] = ACTIONS(1895), + [anon_sym_while] = ACTIONS(1895), + [anon_sym_try] = ACTIONS(1895), + [anon_sym_with] = ACTIONS(1895), + [anon_sym_def] = ACTIONS(1895), + [anon_sym_global] = ACTIONS(1895), + [anon_sym_nonlocal] = ACTIONS(1895), + [anon_sym_exec] = ACTIONS(1895), + [anon_sym_type] = ACTIONS(1895), + [anon_sym_class] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_AT] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_PLUS] = ACTIONS(1897), + [anon_sym_not] = ACTIONS(1895), + [anon_sym_AMP] = ACTIONS(1897), + [anon_sym_TILDE] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1897), + [anon_sym_lambda] = ACTIONS(1895), + [anon_sym_yield] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1895), + [sym_integer] = ACTIONS(1895), + [sym_float] = ACTIONS(1897), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_api] = ACTIONS(1895), + [sym_true] = ACTIONS(1895), + [sym_false] = ACTIONS(1895), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1864), - [anon_sym_include] = ACTIONS(1864), - [anon_sym_DEF] = ACTIONS(1864), - [anon_sym_cdef] = ACTIONS(1864), - [anon_sym_cpdef] = ACTIONS(1864), - [anon_sym_int] = ACTIONS(1864), - [anon_sym_double] = ACTIONS(1864), - [anon_sym_complex] = ACTIONS(1864), - [anon_sym_new] = ACTIONS(1864), - [anon_sym_signed] = ACTIONS(1864), - [anon_sym_unsigned] = ACTIONS(1864), - [anon_sym_char] = ACTIONS(1864), - [anon_sym_short] = ACTIONS(1864), - [anon_sym_long] = ACTIONS(1864), - [anon_sym_const] = ACTIONS(1864), - [anon_sym_volatile] = ACTIONS(1864), - [anon_sym_ctypedef] = ACTIONS(1864), - [anon_sym_struct] = ACTIONS(1864), - [anon_sym_union] = ACTIONS(1864), - [anon_sym_enum] = ACTIONS(1864), - [anon_sym_cppclass] = ACTIONS(1864), - [anon_sym_fused] = ACTIONS(1864), - [anon_sym_public] = ACTIONS(1864), - [anon_sym_packed] = ACTIONS(1864), - [anon_sym_inline] = ACTIONS(1864), - [anon_sym_readonly] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1864), - [sym__dedent] = ACTIONS(1866), - [sym_string_start] = ACTIONS(1866), + [anon_sym_property] = ACTIONS(1895), + [anon_sym_include] = ACTIONS(1895), + [anon_sym_DEF] = ACTIONS(1895), + [anon_sym_cdef] = ACTIONS(1895), + [anon_sym_cpdef] = ACTIONS(1895), + [anon_sym_int] = ACTIONS(1895), + [anon_sym_double] = ACTIONS(1895), + [anon_sym_complex] = ACTIONS(1895), + [anon_sym_new] = ACTIONS(1895), + [anon_sym_signed] = ACTIONS(1895), + [anon_sym_unsigned] = ACTIONS(1895), + [anon_sym_char] = ACTIONS(1895), + [anon_sym_short] = ACTIONS(1895), + [anon_sym_long] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(1895), + [anon_sym_volatile] = ACTIONS(1895), + [anon_sym_ctypedef] = ACTIONS(1895), + [anon_sym_struct] = ACTIONS(1895), + [anon_sym_union] = ACTIONS(1895), + [anon_sym_enum] = ACTIONS(1895), + [anon_sym_cppclass] = ACTIONS(1895), + [anon_sym_fused] = ACTIONS(1895), + [anon_sym_public] = ACTIONS(1895), + [anon_sym_packed] = ACTIONS(1895), + [anon_sym_inline] = ACTIONS(1895), + [anon_sym_readonly] = ACTIONS(1895), + [anon_sym_sizeof] = ACTIONS(1895), + [sym__dedent] = ACTIONS(1897), + [sym_string_start] = ACTIONS(1897), }, [562] = { - [sym_identifier] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_import] = ACTIONS(1868), - [anon_sym_cimport] = ACTIONS(1868), - [anon_sym_from] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1870), - [anon_sym_print] = ACTIONS(1868), - [anon_sym_assert] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_del] = ACTIONS(1868), - [anon_sym_raise] = ACTIONS(1868), - [anon_sym_pass] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_match] = ACTIONS(1868), - [anon_sym_async] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_while] = ACTIONS(1868), - [anon_sym_try] = ACTIONS(1868), - [anon_sym_with] = ACTIONS(1868), - [anon_sym_def] = ACTIONS(1868), - [anon_sym_global] = ACTIONS(1868), - [anon_sym_nonlocal] = ACTIONS(1868), - [anon_sym_exec] = ACTIONS(1868), - [anon_sym_type] = ACTIONS(1868), - [anon_sym_class] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1870), - [anon_sym_AT] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_not] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1870), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_LT] = ACTIONS(1870), - [anon_sym_lambda] = ACTIONS(1868), - [anon_sym_yield] = ACTIONS(1868), - [sym_ellipsis] = ACTIONS(1870), - [anon_sym_None] = ACTIONS(1868), - [sym_integer] = ACTIONS(1868), - [sym_float] = ACTIONS(1870), - [anon_sym_await] = ACTIONS(1868), - [anon_sym_api] = ACTIONS(1868), - [sym_true] = ACTIONS(1868), - [sym_false] = ACTIONS(1868), + [sym_identifier] = ACTIONS(1899), + [anon_sym_SEMI] = ACTIONS(1901), + [anon_sym_import] = ACTIONS(1899), + [anon_sym_cimport] = ACTIONS(1899), + [anon_sym_from] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1901), + [anon_sym_print] = ACTIONS(1899), + [anon_sym_assert] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_del] = ACTIONS(1899), + [anon_sym_raise] = ACTIONS(1899), + [anon_sym_pass] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1899), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_while] = ACTIONS(1899), + [anon_sym_try] = ACTIONS(1899), + [anon_sym_with] = ACTIONS(1899), + [anon_sym_def] = ACTIONS(1899), + [anon_sym_global] = ACTIONS(1899), + [anon_sym_nonlocal] = ACTIONS(1899), + [anon_sym_exec] = ACTIONS(1899), + [anon_sym_type] = ACTIONS(1899), + [anon_sym_class] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1901), + [anon_sym_AT] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1901), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_not] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1901), + [anon_sym_TILDE] = ACTIONS(1901), + [anon_sym_LT] = ACTIONS(1901), + [anon_sym_lambda] = ACTIONS(1899), + [anon_sym_yield] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1901), + [anon_sym_None] = ACTIONS(1899), + [sym_integer] = ACTIONS(1899), + [sym_float] = ACTIONS(1901), + [anon_sym_await] = ACTIONS(1899), + [anon_sym_api] = ACTIONS(1899), + [sym_true] = ACTIONS(1899), + [sym_false] = ACTIONS(1899), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1868), - [anon_sym_include] = ACTIONS(1868), - [anon_sym_DEF] = ACTIONS(1868), - [anon_sym_cdef] = ACTIONS(1868), - [anon_sym_cpdef] = ACTIONS(1868), - [anon_sym_int] = ACTIONS(1868), - [anon_sym_double] = ACTIONS(1868), - [anon_sym_complex] = ACTIONS(1868), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_signed] = ACTIONS(1868), - [anon_sym_unsigned] = ACTIONS(1868), - [anon_sym_char] = ACTIONS(1868), - [anon_sym_short] = ACTIONS(1868), - [anon_sym_long] = ACTIONS(1868), - [anon_sym_const] = ACTIONS(1868), - [anon_sym_volatile] = ACTIONS(1868), - [anon_sym_ctypedef] = ACTIONS(1868), - [anon_sym_struct] = ACTIONS(1868), - [anon_sym_union] = ACTIONS(1868), - [anon_sym_enum] = ACTIONS(1868), - [anon_sym_cppclass] = ACTIONS(1868), - [anon_sym_fused] = ACTIONS(1868), - [anon_sym_public] = ACTIONS(1868), - [anon_sym_packed] = ACTIONS(1868), - [anon_sym_inline] = ACTIONS(1868), - [anon_sym_readonly] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1868), - [sym__dedent] = ACTIONS(1870), - [sym_string_start] = ACTIONS(1870), + [anon_sym_property] = ACTIONS(1899), + [anon_sym_include] = ACTIONS(1899), + [anon_sym_DEF] = ACTIONS(1899), + [anon_sym_cdef] = ACTIONS(1899), + [anon_sym_cpdef] = ACTIONS(1899), + [anon_sym_int] = ACTIONS(1899), + [anon_sym_double] = ACTIONS(1899), + [anon_sym_complex] = ACTIONS(1899), + [anon_sym_new] = ACTIONS(1899), + [anon_sym_signed] = ACTIONS(1899), + [anon_sym_unsigned] = ACTIONS(1899), + [anon_sym_char] = ACTIONS(1899), + [anon_sym_short] = ACTIONS(1899), + [anon_sym_long] = ACTIONS(1899), + [anon_sym_const] = ACTIONS(1899), + [anon_sym_volatile] = ACTIONS(1899), + [anon_sym_ctypedef] = ACTIONS(1899), + [anon_sym_struct] = ACTIONS(1899), + [anon_sym_union] = ACTIONS(1899), + [anon_sym_enum] = ACTIONS(1899), + [anon_sym_cppclass] = ACTIONS(1899), + [anon_sym_fused] = ACTIONS(1899), + [anon_sym_public] = ACTIONS(1899), + [anon_sym_packed] = ACTIONS(1899), + [anon_sym_inline] = ACTIONS(1899), + [anon_sym_readonly] = ACTIONS(1899), + [anon_sym_sizeof] = ACTIONS(1899), + [sym__dedent] = ACTIONS(1901), + [sym_string_start] = ACTIONS(1901), }, [563] = { - [sym_identifier] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_import] = ACTIONS(1872), - [anon_sym_cimport] = ACTIONS(1872), - [anon_sym_from] = ACTIONS(1872), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_print] = ACTIONS(1872), - [anon_sym_assert] = ACTIONS(1872), - [anon_sym_return] = ACTIONS(1872), - [anon_sym_del] = ACTIONS(1872), - [anon_sym_raise] = ACTIONS(1872), - [anon_sym_pass] = ACTIONS(1872), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(1872), - [anon_sym_match] = ACTIONS(1872), - [anon_sym_async] = ACTIONS(1872), - [anon_sym_for] = ACTIONS(1872), - [anon_sym_while] = ACTIONS(1872), - [anon_sym_try] = ACTIONS(1872), - [anon_sym_with] = ACTIONS(1872), - [anon_sym_def] = ACTIONS(1872), - [anon_sym_global] = ACTIONS(1872), - [anon_sym_nonlocal] = ACTIONS(1872), - [anon_sym_exec] = ACTIONS(1872), - [anon_sym_type] = ACTIONS(1872), - [anon_sym_class] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_AT] = ACTIONS(1874), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_PLUS] = ACTIONS(1874), - [anon_sym_not] = ACTIONS(1872), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_TILDE] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_lambda] = ACTIONS(1872), - [anon_sym_yield] = ACTIONS(1872), - [sym_ellipsis] = ACTIONS(1874), - [anon_sym_None] = ACTIONS(1872), - [sym_integer] = ACTIONS(1872), - [sym_float] = ACTIONS(1874), - [anon_sym_await] = ACTIONS(1872), - [anon_sym_api] = ACTIONS(1872), - [sym_true] = ACTIONS(1872), - [sym_false] = ACTIONS(1872), + [sym_identifier] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1905), + [anon_sym_import] = ACTIONS(1903), + [anon_sym_cimport] = ACTIONS(1903), + [anon_sym_from] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1905), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_print] = ACTIONS(1903), + [anon_sym_assert] = ACTIONS(1903), + [anon_sym_return] = ACTIONS(1903), + [anon_sym_del] = ACTIONS(1903), + [anon_sym_raise] = ACTIONS(1903), + [anon_sym_pass] = ACTIONS(1903), + [anon_sym_break] = ACTIONS(1903), + [anon_sym_continue] = ACTIONS(1903), + [anon_sym_if] = ACTIONS(1903), + [anon_sym_match] = ACTIONS(1903), + [anon_sym_async] = ACTIONS(1903), + [anon_sym_for] = ACTIONS(1903), + [anon_sym_while] = ACTIONS(1903), + [anon_sym_try] = ACTIONS(1903), + [anon_sym_with] = ACTIONS(1903), + [anon_sym_def] = ACTIONS(1903), + [anon_sym_global] = ACTIONS(1903), + [anon_sym_nonlocal] = ACTIONS(1903), + [anon_sym_exec] = ACTIONS(1903), + [anon_sym_type] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1905), + [anon_sym_AT] = ACTIONS(1905), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1905), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(1905), + [anon_sym_lambda] = ACTIONS(1903), + [anon_sym_yield] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), + [anon_sym_None] = ACTIONS(1903), + [sym_integer] = ACTIONS(1903), + [sym_float] = ACTIONS(1905), + [anon_sym_await] = ACTIONS(1903), + [anon_sym_api] = ACTIONS(1903), + [sym_true] = ACTIONS(1903), + [sym_false] = ACTIONS(1903), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1872), - [anon_sym_include] = ACTIONS(1872), - [anon_sym_DEF] = ACTIONS(1872), - [anon_sym_cdef] = ACTIONS(1872), - [anon_sym_cpdef] = ACTIONS(1872), - [anon_sym_int] = ACTIONS(1872), - [anon_sym_double] = ACTIONS(1872), - [anon_sym_complex] = ACTIONS(1872), - [anon_sym_new] = ACTIONS(1872), - [anon_sym_signed] = ACTIONS(1872), - [anon_sym_unsigned] = ACTIONS(1872), - [anon_sym_char] = ACTIONS(1872), - [anon_sym_short] = ACTIONS(1872), - [anon_sym_long] = ACTIONS(1872), - [anon_sym_const] = ACTIONS(1872), - [anon_sym_volatile] = ACTIONS(1872), - [anon_sym_ctypedef] = ACTIONS(1872), - [anon_sym_struct] = ACTIONS(1872), - [anon_sym_union] = ACTIONS(1872), - [anon_sym_enum] = ACTIONS(1872), - [anon_sym_cppclass] = ACTIONS(1872), - [anon_sym_fused] = ACTIONS(1872), - [anon_sym_public] = ACTIONS(1872), - [anon_sym_packed] = ACTIONS(1872), - [anon_sym_inline] = ACTIONS(1872), - [anon_sym_readonly] = ACTIONS(1872), - [anon_sym_sizeof] = ACTIONS(1872), - [sym__dedent] = ACTIONS(1874), - [sym_string_start] = ACTIONS(1874), + [anon_sym_property] = ACTIONS(1903), + [anon_sym_include] = ACTIONS(1903), + [anon_sym_DEF] = ACTIONS(1903), + [anon_sym_cdef] = ACTIONS(1903), + [anon_sym_cpdef] = ACTIONS(1903), + [anon_sym_int] = ACTIONS(1903), + [anon_sym_double] = ACTIONS(1903), + [anon_sym_complex] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_char] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_ctypedef] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_cppclass] = ACTIONS(1903), + [anon_sym_fused] = ACTIONS(1903), + [anon_sym_public] = ACTIONS(1903), + [anon_sym_packed] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym_readonly] = ACTIONS(1903), + [anon_sym_sizeof] = ACTIONS(1903), + [sym__dedent] = ACTIONS(1905), + [sym_string_start] = ACTIONS(1905), }, [564] = { - [sym_identifier] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_import] = ACTIONS(1876), - [anon_sym_cimport] = ACTIONS(1876), - [anon_sym_from] = ACTIONS(1876), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_STAR] = ACTIONS(1878), - [anon_sym_print] = ACTIONS(1876), - [anon_sym_assert] = ACTIONS(1876), - [anon_sym_return] = ACTIONS(1876), - [anon_sym_del] = ACTIONS(1876), - [anon_sym_raise] = ACTIONS(1876), - [anon_sym_pass] = ACTIONS(1876), - [anon_sym_break] = ACTIONS(1876), - [anon_sym_continue] = ACTIONS(1876), - [anon_sym_if] = ACTIONS(1876), - [anon_sym_match] = ACTIONS(1876), - [anon_sym_async] = ACTIONS(1876), - [anon_sym_for] = ACTIONS(1876), - [anon_sym_while] = ACTIONS(1876), - [anon_sym_try] = ACTIONS(1876), - [anon_sym_with] = ACTIONS(1876), - [anon_sym_def] = ACTIONS(1876), - [anon_sym_global] = ACTIONS(1876), - [anon_sym_nonlocal] = ACTIONS(1876), - [anon_sym_exec] = ACTIONS(1876), - [anon_sym_type] = ACTIONS(1876), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_AT] = ACTIONS(1878), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_PLUS] = ACTIONS(1878), - [anon_sym_not] = ACTIONS(1876), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_TILDE] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_lambda] = ACTIONS(1876), - [anon_sym_yield] = ACTIONS(1876), - [sym_ellipsis] = ACTIONS(1878), - [anon_sym_None] = ACTIONS(1876), - [sym_integer] = ACTIONS(1876), - [sym_float] = ACTIONS(1878), - [anon_sym_await] = ACTIONS(1876), - [anon_sym_api] = ACTIONS(1876), - [sym_true] = ACTIONS(1876), - [sym_false] = ACTIONS(1876), + [sym_identifier] = ACTIONS(1907), + [anon_sym_SEMI] = ACTIONS(1909), + [anon_sym_import] = ACTIONS(1907), + [anon_sym_cimport] = ACTIONS(1907), + [anon_sym_from] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_STAR] = ACTIONS(1909), + [anon_sym_print] = ACTIONS(1907), + [anon_sym_assert] = ACTIONS(1907), + [anon_sym_return] = ACTIONS(1907), + [anon_sym_del] = ACTIONS(1907), + [anon_sym_raise] = ACTIONS(1907), + [anon_sym_pass] = ACTIONS(1907), + [anon_sym_break] = ACTIONS(1907), + [anon_sym_continue] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1907), + [anon_sym_match] = ACTIONS(1907), + [anon_sym_async] = ACTIONS(1907), + [anon_sym_for] = ACTIONS(1907), + [anon_sym_while] = ACTIONS(1907), + [anon_sym_try] = ACTIONS(1907), + [anon_sym_with] = ACTIONS(1907), + [anon_sym_def] = ACTIONS(1907), + [anon_sym_global] = ACTIONS(1907), + [anon_sym_nonlocal] = ACTIONS(1907), + [anon_sym_exec] = ACTIONS(1907), + [anon_sym_type] = ACTIONS(1907), + [anon_sym_class] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_AT] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1909), + [anon_sym_not] = ACTIONS(1907), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_lambda] = ACTIONS(1907), + [anon_sym_yield] = ACTIONS(1907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1909), + [anon_sym_None] = ACTIONS(1907), + [sym_integer] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(1907), + [anon_sym_api] = ACTIONS(1907), + [sym_true] = ACTIONS(1907), + [sym_false] = ACTIONS(1907), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1876), - [anon_sym_include] = ACTIONS(1876), - [anon_sym_DEF] = ACTIONS(1876), - [anon_sym_cdef] = ACTIONS(1876), - [anon_sym_cpdef] = ACTIONS(1876), - [anon_sym_int] = ACTIONS(1876), - [anon_sym_double] = ACTIONS(1876), - [anon_sym_complex] = ACTIONS(1876), - [anon_sym_new] = ACTIONS(1876), - [anon_sym_signed] = ACTIONS(1876), - [anon_sym_unsigned] = ACTIONS(1876), - [anon_sym_char] = ACTIONS(1876), - [anon_sym_short] = ACTIONS(1876), - [anon_sym_long] = ACTIONS(1876), - [anon_sym_const] = ACTIONS(1876), - [anon_sym_volatile] = ACTIONS(1876), - [anon_sym_ctypedef] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1876), - [anon_sym_union] = ACTIONS(1876), - [anon_sym_enum] = ACTIONS(1876), - [anon_sym_cppclass] = ACTIONS(1876), - [anon_sym_fused] = ACTIONS(1876), - [anon_sym_public] = ACTIONS(1876), - [anon_sym_packed] = ACTIONS(1876), - [anon_sym_inline] = ACTIONS(1876), - [anon_sym_readonly] = ACTIONS(1876), - [anon_sym_sizeof] = ACTIONS(1876), - [sym__dedent] = ACTIONS(1878), - [sym_string_start] = ACTIONS(1878), + [anon_sym_property] = ACTIONS(1907), + [anon_sym_include] = ACTIONS(1907), + [anon_sym_DEF] = ACTIONS(1907), + [anon_sym_cdef] = ACTIONS(1907), + [anon_sym_cpdef] = ACTIONS(1907), + [anon_sym_int] = ACTIONS(1907), + [anon_sym_double] = ACTIONS(1907), + [anon_sym_complex] = ACTIONS(1907), + [anon_sym_new] = ACTIONS(1907), + [anon_sym_signed] = ACTIONS(1907), + [anon_sym_unsigned] = ACTIONS(1907), + [anon_sym_char] = ACTIONS(1907), + [anon_sym_short] = ACTIONS(1907), + [anon_sym_long] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_volatile] = ACTIONS(1907), + [anon_sym_ctypedef] = ACTIONS(1907), + [anon_sym_struct] = ACTIONS(1907), + [anon_sym_union] = ACTIONS(1907), + [anon_sym_enum] = ACTIONS(1907), + [anon_sym_cppclass] = ACTIONS(1907), + [anon_sym_fused] = ACTIONS(1907), + [anon_sym_public] = ACTIONS(1907), + [anon_sym_packed] = ACTIONS(1907), + [anon_sym_inline] = ACTIONS(1907), + [anon_sym_readonly] = ACTIONS(1907), + [anon_sym_sizeof] = ACTIONS(1907), + [sym__dedent] = ACTIONS(1909), + [sym_string_start] = ACTIONS(1909), }, [565] = { - [sym_identifier] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_import] = ACTIONS(1880), - [anon_sym_cimport] = ACTIONS(1880), - [anon_sym_from] = ACTIONS(1880), - [anon_sym_LPAREN] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1882), - [anon_sym_print] = ACTIONS(1880), - [anon_sym_assert] = ACTIONS(1880), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_del] = ACTIONS(1880), - [anon_sym_raise] = ACTIONS(1880), - [anon_sym_pass] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_match] = ACTIONS(1880), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1880), - [anon_sym_while] = ACTIONS(1880), - [anon_sym_try] = ACTIONS(1880), - [anon_sym_with] = ACTIONS(1880), - [anon_sym_def] = ACTIONS(1880), - [anon_sym_global] = ACTIONS(1880), - [anon_sym_nonlocal] = ACTIONS(1880), - [anon_sym_exec] = ACTIONS(1880), - [anon_sym_type] = ACTIONS(1880), - [anon_sym_class] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_AT] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_PLUS] = ACTIONS(1882), - [anon_sym_not] = ACTIONS(1880), - [anon_sym_AMP] = ACTIONS(1882), - [anon_sym_TILDE] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1882), - [anon_sym_lambda] = ACTIONS(1880), - [anon_sym_yield] = ACTIONS(1880), - [sym_ellipsis] = ACTIONS(1882), - [anon_sym_None] = ACTIONS(1880), - [sym_integer] = ACTIONS(1880), - [sym_float] = ACTIONS(1882), - [anon_sym_await] = ACTIONS(1880), - [anon_sym_api] = ACTIONS(1880), - [sym_true] = ACTIONS(1880), - [sym_false] = ACTIONS(1880), + [sym_identifier] = ACTIONS(1911), + [anon_sym_SEMI] = ACTIONS(1913), + [anon_sym_import] = ACTIONS(1911), + [anon_sym_cimport] = ACTIONS(1911), + [anon_sym_from] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_print] = ACTIONS(1911), + [anon_sym_assert] = ACTIONS(1911), + [anon_sym_return] = ACTIONS(1911), + [anon_sym_del] = ACTIONS(1911), + [anon_sym_raise] = ACTIONS(1911), + [anon_sym_pass] = ACTIONS(1911), + [anon_sym_break] = ACTIONS(1911), + [anon_sym_continue] = ACTIONS(1911), + [anon_sym_if] = ACTIONS(1911), + [anon_sym_match] = ACTIONS(1911), + [anon_sym_async] = ACTIONS(1911), + [anon_sym_for] = ACTIONS(1911), + [anon_sym_while] = ACTIONS(1911), + [anon_sym_try] = ACTIONS(1911), + [anon_sym_with] = ACTIONS(1911), + [anon_sym_def] = ACTIONS(1911), + [anon_sym_global] = ACTIONS(1911), + [anon_sym_nonlocal] = ACTIONS(1911), + [anon_sym_exec] = ACTIONS(1911), + [anon_sym_type] = ACTIONS(1911), + [anon_sym_class] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(1913), + [anon_sym_AT] = ACTIONS(1913), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(1911), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(1913), + [anon_sym_lambda] = ACTIONS(1911), + [anon_sym_yield] = ACTIONS(1911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1913), + [anon_sym_None] = ACTIONS(1911), + [sym_integer] = ACTIONS(1911), + [sym_float] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_api] = ACTIONS(1911), + [sym_true] = ACTIONS(1911), + [sym_false] = ACTIONS(1911), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1880), - [anon_sym_include] = ACTIONS(1880), - [anon_sym_DEF] = ACTIONS(1880), - [anon_sym_cdef] = ACTIONS(1880), - [anon_sym_cpdef] = ACTIONS(1880), - [anon_sym_int] = ACTIONS(1880), - [anon_sym_double] = ACTIONS(1880), - [anon_sym_complex] = ACTIONS(1880), - [anon_sym_new] = ACTIONS(1880), - [anon_sym_signed] = ACTIONS(1880), - [anon_sym_unsigned] = ACTIONS(1880), - [anon_sym_char] = ACTIONS(1880), - [anon_sym_short] = ACTIONS(1880), - [anon_sym_long] = ACTIONS(1880), - [anon_sym_const] = ACTIONS(1880), - [anon_sym_volatile] = ACTIONS(1880), - [anon_sym_ctypedef] = ACTIONS(1880), - [anon_sym_struct] = ACTIONS(1880), - [anon_sym_union] = ACTIONS(1880), - [anon_sym_enum] = ACTIONS(1880), - [anon_sym_cppclass] = ACTIONS(1880), - [anon_sym_fused] = ACTIONS(1880), - [anon_sym_public] = ACTIONS(1880), - [anon_sym_packed] = ACTIONS(1880), - [anon_sym_inline] = ACTIONS(1880), - [anon_sym_readonly] = ACTIONS(1880), - [anon_sym_sizeof] = ACTIONS(1880), - [sym__dedent] = ACTIONS(1882), - [sym_string_start] = ACTIONS(1882), + [anon_sym_property] = ACTIONS(1911), + [anon_sym_include] = ACTIONS(1911), + [anon_sym_DEF] = ACTIONS(1911), + [anon_sym_cdef] = ACTIONS(1911), + [anon_sym_cpdef] = ACTIONS(1911), + [anon_sym_int] = ACTIONS(1911), + [anon_sym_double] = ACTIONS(1911), + [anon_sym_complex] = ACTIONS(1911), + [anon_sym_new] = ACTIONS(1911), + [anon_sym_signed] = ACTIONS(1911), + [anon_sym_unsigned] = ACTIONS(1911), + [anon_sym_char] = ACTIONS(1911), + [anon_sym_short] = ACTIONS(1911), + [anon_sym_long] = ACTIONS(1911), + [anon_sym_const] = ACTIONS(1911), + [anon_sym_volatile] = ACTIONS(1911), + [anon_sym_ctypedef] = ACTIONS(1911), + [anon_sym_struct] = ACTIONS(1911), + [anon_sym_union] = ACTIONS(1911), + [anon_sym_enum] = ACTIONS(1911), + [anon_sym_cppclass] = ACTIONS(1911), + [anon_sym_fused] = ACTIONS(1911), + [anon_sym_public] = ACTIONS(1911), + [anon_sym_packed] = ACTIONS(1911), + [anon_sym_inline] = ACTIONS(1911), + [anon_sym_readonly] = ACTIONS(1911), + [anon_sym_sizeof] = ACTIONS(1911), + [sym__dedent] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1913), }, [566] = { - [sym_identifier] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_import] = ACTIONS(1884), - [anon_sym_cimport] = ACTIONS(1884), - [anon_sym_from] = ACTIONS(1884), - [anon_sym_LPAREN] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_print] = ACTIONS(1884), - [anon_sym_assert] = ACTIONS(1884), - [anon_sym_return] = ACTIONS(1884), - [anon_sym_del] = ACTIONS(1884), - [anon_sym_raise] = ACTIONS(1884), - [anon_sym_pass] = ACTIONS(1884), - [anon_sym_break] = ACTIONS(1884), - [anon_sym_continue] = ACTIONS(1884), - [anon_sym_if] = ACTIONS(1884), - [anon_sym_match] = ACTIONS(1884), - [anon_sym_async] = ACTIONS(1884), - [anon_sym_for] = ACTIONS(1884), - [anon_sym_while] = ACTIONS(1884), - [anon_sym_try] = ACTIONS(1884), - [anon_sym_with] = ACTIONS(1884), - [anon_sym_def] = ACTIONS(1884), - [anon_sym_global] = ACTIONS(1884), - [anon_sym_nonlocal] = ACTIONS(1884), - [anon_sym_exec] = ACTIONS(1884), - [anon_sym_type] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1886), - [anon_sym_AT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_not] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1886), - [anon_sym_TILDE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_lambda] = ACTIONS(1884), - [anon_sym_yield] = ACTIONS(1884), - [sym_ellipsis] = ACTIONS(1886), - [anon_sym_None] = ACTIONS(1884), - [sym_integer] = ACTIONS(1884), - [sym_float] = ACTIONS(1886), - [anon_sym_await] = ACTIONS(1884), - [anon_sym_api] = ACTIONS(1884), - [sym_true] = ACTIONS(1884), - [sym_false] = ACTIONS(1884), + [sym_identifier] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1917), + [anon_sym_import] = ACTIONS(1915), + [anon_sym_cimport] = ACTIONS(1915), + [anon_sym_from] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(1917), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_print] = ACTIONS(1915), + [anon_sym_assert] = ACTIONS(1915), + [anon_sym_return] = ACTIONS(1915), + [anon_sym_del] = ACTIONS(1915), + [anon_sym_raise] = ACTIONS(1915), + [anon_sym_pass] = ACTIONS(1915), + [anon_sym_break] = ACTIONS(1915), + [anon_sym_continue] = ACTIONS(1915), + [anon_sym_if] = ACTIONS(1915), + [anon_sym_match] = ACTIONS(1915), + [anon_sym_async] = ACTIONS(1915), + [anon_sym_for] = ACTIONS(1915), + [anon_sym_while] = ACTIONS(1915), + [anon_sym_try] = ACTIONS(1915), + [anon_sym_with] = ACTIONS(1915), + [anon_sym_def] = ACTIONS(1915), + [anon_sym_global] = ACTIONS(1915), + [anon_sym_nonlocal] = ACTIONS(1915), + [anon_sym_exec] = ACTIONS(1915), + [anon_sym_type] = ACTIONS(1915), + [anon_sym_class] = ACTIONS(1915), + [anon_sym_LBRACK] = ACTIONS(1917), + [anon_sym_AT] = ACTIONS(1917), + [anon_sym_DASH] = ACTIONS(1917), + [anon_sym_LBRACE] = ACTIONS(1917), + [anon_sym_PLUS] = ACTIONS(1917), + [anon_sym_not] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1917), + [anon_sym_TILDE] = ACTIONS(1917), + [anon_sym_LT] = ACTIONS(1917), + [anon_sym_lambda] = ACTIONS(1915), + [anon_sym_yield] = ACTIONS(1915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1917), + [anon_sym_None] = ACTIONS(1915), + [sym_integer] = ACTIONS(1915), + [sym_float] = ACTIONS(1917), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_api] = ACTIONS(1915), + [sym_true] = ACTIONS(1915), + [sym_false] = ACTIONS(1915), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1884), - [anon_sym_include] = ACTIONS(1884), - [anon_sym_DEF] = ACTIONS(1884), - [anon_sym_cdef] = ACTIONS(1884), - [anon_sym_cpdef] = ACTIONS(1884), - [anon_sym_int] = ACTIONS(1884), - [anon_sym_double] = ACTIONS(1884), - [anon_sym_complex] = ACTIONS(1884), - [anon_sym_new] = ACTIONS(1884), - [anon_sym_signed] = ACTIONS(1884), - [anon_sym_unsigned] = ACTIONS(1884), - [anon_sym_char] = ACTIONS(1884), - [anon_sym_short] = ACTIONS(1884), - [anon_sym_long] = ACTIONS(1884), - [anon_sym_const] = ACTIONS(1884), - [anon_sym_volatile] = ACTIONS(1884), - [anon_sym_ctypedef] = ACTIONS(1884), - [anon_sym_struct] = ACTIONS(1884), - [anon_sym_union] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_cppclass] = ACTIONS(1884), - [anon_sym_fused] = ACTIONS(1884), - [anon_sym_public] = ACTIONS(1884), - [anon_sym_packed] = ACTIONS(1884), - [anon_sym_inline] = ACTIONS(1884), - [anon_sym_readonly] = ACTIONS(1884), - [anon_sym_sizeof] = ACTIONS(1884), - [sym__dedent] = ACTIONS(1886), - [sym_string_start] = ACTIONS(1886), + [anon_sym_property] = ACTIONS(1915), + [anon_sym_include] = ACTIONS(1915), + [anon_sym_DEF] = ACTIONS(1915), + [anon_sym_cdef] = ACTIONS(1915), + [anon_sym_cpdef] = ACTIONS(1915), + [anon_sym_int] = ACTIONS(1915), + [anon_sym_double] = ACTIONS(1915), + [anon_sym_complex] = ACTIONS(1915), + [anon_sym_new] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_char] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_const] = ACTIONS(1915), + [anon_sym_volatile] = ACTIONS(1915), + [anon_sym_ctypedef] = ACTIONS(1915), + [anon_sym_struct] = ACTIONS(1915), + [anon_sym_union] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1915), + [anon_sym_cppclass] = ACTIONS(1915), + [anon_sym_fused] = ACTIONS(1915), + [anon_sym_public] = ACTIONS(1915), + [anon_sym_packed] = ACTIONS(1915), + [anon_sym_inline] = ACTIONS(1915), + [anon_sym_readonly] = ACTIONS(1915), + [anon_sym_sizeof] = ACTIONS(1915), + [sym__dedent] = ACTIONS(1917), + [sym_string_start] = ACTIONS(1917), }, [567] = { - [sym_identifier] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_import] = ACTIONS(1888), - [anon_sym_cimport] = ACTIONS(1888), - [anon_sym_from] = ACTIONS(1888), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1890), - [anon_sym_print] = ACTIONS(1888), - [anon_sym_assert] = ACTIONS(1888), - [anon_sym_return] = ACTIONS(1888), - [anon_sym_del] = ACTIONS(1888), - [anon_sym_raise] = ACTIONS(1888), - [anon_sym_pass] = ACTIONS(1888), - [anon_sym_break] = ACTIONS(1888), - [anon_sym_continue] = ACTIONS(1888), - [anon_sym_if] = ACTIONS(1888), - [anon_sym_match] = ACTIONS(1888), - [anon_sym_async] = ACTIONS(1888), - [anon_sym_for] = ACTIONS(1888), - [anon_sym_while] = ACTIONS(1888), - [anon_sym_try] = ACTIONS(1888), - [anon_sym_with] = ACTIONS(1888), - [anon_sym_def] = ACTIONS(1888), - [anon_sym_global] = ACTIONS(1888), - [anon_sym_nonlocal] = ACTIONS(1888), - [anon_sym_exec] = ACTIONS(1888), - [anon_sym_type] = ACTIONS(1888), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1890), - [anon_sym_AT] = ACTIONS(1890), - [anon_sym_DASH] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1890), - [anon_sym_PLUS] = ACTIONS(1890), - [anon_sym_not] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_TILDE] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(1890), - [anon_sym_lambda] = ACTIONS(1888), - [anon_sym_yield] = ACTIONS(1888), - [sym_ellipsis] = ACTIONS(1890), - [anon_sym_None] = ACTIONS(1888), - [sym_integer] = ACTIONS(1888), - [sym_float] = ACTIONS(1890), - [anon_sym_await] = ACTIONS(1888), - [anon_sym_api] = ACTIONS(1888), - [sym_true] = ACTIONS(1888), - [sym_false] = ACTIONS(1888), + [sym_identifier] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_import] = ACTIONS(1919), + [anon_sym_cimport] = ACTIONS(1919), + [anon_sym_from] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_STAR] = ACTIONS(1921), + [anon_sym_print] = ACTIONS(1919), + [anon_sym_assert] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_del] = ACTIONS(1919), + [anon_sym_raise] = ACTIONS(1919), + [anon_sym_pass] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_async] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_with] = ACTIONS(1919), + [anon_sym_def] = ACTIONS(1919), + [anon_sym_global] = ACTIONS(1919), + [anon_sym_nonlocal] = ACTIONS(1919), + [anon_sym_exec] = ACTIONS(1919), + [anon_sym_type] = ACTIONS(1919), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_AT] = ACTIONS(1921), + [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_PLUS] = ACTIONS(1921), + [anon_sym_not] = ACTIONS(1919), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(1921), + [anon_sym_lambda] = ACTIONS(1919), + [anon_sym_yield] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1921), + [anon_sym_None] = ACTIONS(1919), + [sym_integer] = ACTIONS(1919), + [sym_float] = ACTIONS(1921), + [anon_sym_await] = ACTIONS(1919), + [anon_sym_api] = ACTIONS(1919), + [sym_true] = ACTIONS(1919), + [sym_false] = ACTIONS(1919), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1888), - [anon_sym_include] = ACTIONS(1888), - [anon_sym_DEF] = ACTIONS(1888), - [anon_sym_cdef] = ACTIONS(1888), - [anon_sym_cpdef] = ACTIONS(1888), - [anon_sym_int] = ACTIONS(1888), - [anon_sym_double] = ACTIONS(1888), - [anon_sym_complex] = ACTIONS(1888), - [anon_sym_new] = ACTIONS(1888), - [anon_sym_signed] = ACTIONS(1888), - [anon_sym_unsigned] = ACTIONS(1888), - [anon_sym_char] = ACTIONS(1888), - [anon_sym_short] = ACTIONS(1888), - [anon_sym_long] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(1888), - [anon_sym_volatile] = ACTIONS(1888), - [anon_sym_ctypedef] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1888), - [anon_sym_enum] = ACTIONS(1888), - [anon_sym_cppclass] = ACTIONS(1888), - [anon_sym_fused] = ACTIONS(1888), - [anon_sym_public] = ACTIONS(1888), - [anon_sym_packed] = ACTIONS(1888), - [anon_sym_inline] = ACTIONS(1888), - [anon_sym_readonly] = ACTIONS(1888), - [anon_sym_sizeof] = ACTIONS(1888), - [sym__dedent] = ACTIONS(1890), - [sym_string_start] = ACTIONS(1890), + [anon_sym_property] = ACTIONS(1919), + [anon_sym_include] = ACTIONS(1919), + [anon_sym_DEF] = ACTIONS(1919), + [anon_sym_cdef] = ACTIONS(1919), + [anon_sym_cpdef] = ACTIONS(1919), + [anon_sym_int] = ACTIONS(1919), + [anon_sym_double] = ACTIONS(1919), + [anon_sym_complex] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(1919), + [anon_sym_signed] = ACTIONS(1919), + [anon_sym_unsigned] = ACTIONS(1919), + [anon_sym_char] = ACTIONS(1919), + [anon_sym_short] = ACTIONS(1919), + [anon_sym_long] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [anon_sym_volatile] = ACTIONS(1919), + [anon_sym_ctypedef] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1919), + [anon_sym_union] = ACTIONS(1919), + [anon_sym_enum] = ACTIONS(1919), + [anon_sym_cppclass] = ACTIONS(1919), + [anon_sym_fused] = ACTIONS(1919), + [anon_sym_public] = ACTIONS(1919), + [anon_sym_packed] = ACTIONS(1919), + [anon_sym_inline] = ACTIONS(1919), + [anon_sym_readonly] = ACTIONS(1919), + [anon_sym_sizeof] = ACTIONS(1919), + [sym__dedent] = ACTIONS(1921), + [sym_string_start] = ACTIONS(1921), }, [568] = { - [sym_identifier] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1894), - [anon_sym_import] = ACTIONS(1892), - [anon_sym_cimport] = ACTIONS(1892), - [anon_sym_from] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1894), - [anon_sym_print] = ACTIONS(1892), - [anon_sym_assert] = ACTIONS(1892), - [anon_sym_return] = ACTIONS(1892), - [anon_sym_del] = ACTIONS(1892), - [anon_sym_raise] = ACTIONS(1892), - [anon_sym_pass] = ACTIONS(1892), - [anon_sym_break] = ACTIONS(1892), - [anon_sym_continue] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_match] = ACTIONS(1892), - [anon_sym_async] = ACTIONS(1892), - [anon_sym_for] = ACTIONS(1892), - [anon_sym_while] = ACTIONS(1892), - [anon_sym_try] = ACTIONS(1892), - [anon_sym_with] = ACTIONS(1892), - [anon_sym_def] = ACTIONS(1892), - [anon_sym_global] = ACTIONS(1892), - [anon_sym_nonlocal] = ACTIONS(1892), - [anon_sym_exec] = ACTIONS(1892), - [anon_sym_type] = ACTIONS(1892), - [anon_sym_class] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_AT] = ACTIONS(1894), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_not] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1894), - [anon_sym_TILDE] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1894), - [anon_sym_lambda] = ACTIONS(1892), - [anon_sym_yield] = ACTIONS(1892), - [sym_ellipsis] = ACTIONS(1894), - [anon_sym_None] = ACTIONS(1892), - [sym_integer] = ACTIONS(1892), - [sym_float] = ACTIONS(1894), - [anon_sym_await] = ACTIONS(1892), - [anon_sym_api] = ACTIONS(1892), - [sym_true] = ACTIONS(1892), - [sym_false] = ACTIONS(1892), + [sym_identifier] = ACTIONS(1923), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_import] = ACTIONS(1923), + [anon_sym_cimport] = ACTIONS(1923), + [anon_sym_from] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1925), + [anon_sym_print] = ACTIONS(1923), + [anon_sym_assert] = ACTIONS(1923), + [anon_sym_return] = ACTIONS(1923), + [anon_sym_del] = ACTIONS(1923), + [anon_sym_raise] = ACTIONS(1923), + [anon_sym_pass] = ACTIONS(1923), + [anon_sym_break] = ACTIONS(1923), + [anon_sym_continue] = ACTIONS(1923), + [anon_sym_if] = ACTIONS(1923), + [anon_sym_match] = ACTIONS(1923), + [anon_sym_async] = ACTIONS(1923), + [anon_sym_for] = ACTIONS(1923), + [anon_sym_while] = ACTIONS(1923), + [anon_sym_try] = ACTIONS(1923), + [anon_sym_with] = ACTIONS(1923), + [anon_sym_def] = ACTIONS(1923), + [anon_sym_global] = ACTIONS(1923), + [anon_sym_nonlocal] = ACTIONS(1923), + [anon_sym_exec] = ACTIONS(1923), + [anon_sym_type] = ACTIONS(1923), + [anon_sym_class] = ACTIONS(1923), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_AT] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_AMP] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_LT] = ACTIONS(1925), + [anon_sym_lambda] = ACTIONS(1923), + [anon_sym_yield] = ACTIONS(1923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1925), + [anon_sym_None] = ACTIONS(1923), + [sym_integer] = ACTIONS(1923), + [sym_float] = ACTIONS(1925), + [anon_sym_await] = ACTIONS(1923), + [anon_sym_api] = ACTIONS(1923), + [sym_true] = ACTIONS(1923), + [sym_false] = ACTIONS(1923), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1892), - [anon_sym_include] = ACTIONS(1892), - [anon_sym_DEF] = ACTIONS(1892), - [anon_sym_cdef] = ACTIONS(1892), - [anon_sym_cpdef] = ACTIONS(1892), - [anon_sym_int] = ACTIONS(1892), - [anon_sym_double] = ACTIONS(1892), - [anon_sym_complex] = ACTIONS(1892), - [anon_sym_new] = ACTIONS(1892), - [anon_sym_signed] = ACTIONS(1892), - [anon_sym_unsigned] = ACTIONS(1892), - [anon_sym_char] = ACTIONS(1892), - [anon_sym_short] = ACTIONS(1892), - [anon_sym_long] = ACTIONS(1892), - [anon_sym_const] = ACTIONS(1892), - [anon_sym_volatile] = ACTIONS(1892), - [anon_sym_ctypedef] = ACTIONS(1892), - [anon_sym_struct] = ACTIONS(1892), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_enum] = ACTIONS(1892), - [anon_sym_cppclass] = ACTIONS(1892), - [anon_sym_fused] = ACTIONS(1892), - [anon_sym_public] = ACTIONS(1892), - [anon_sym_packed] = ACTIONS(1892), - [anon_sym_inline] = ACTIONS(1892), - [anon_sym_readonly] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1892), - [sym__dedent] = ACTIONS(1894), - [sym_string_start] = ACTIONS(1894), + [anon_sym_property] = ACTIONS(1923), + [anon_sym_include] = ACTIONS(1923), + [anon_sym_DEF] = ACTIONS(1923), + [anon_sym_cdef] = ACTIONS(1923), + [anon_sym_cpdef] = ACTIONS(1923), + [anon_sym_int] = ACTIONS(1923), + [anon_sym_double] = ACTIONS(1923), + [anon_sym_complex] = ACTIONS(1923), + [anon_sym_new] = ACTIONS(1923), + [anon_sym_signed] = ACTIONS(1923), + [anon_sym_unsigned] = ACTIONS(1923), + [anon_sym_char] = ACTIONS(1923), + [anon_sym_short] = ACTIONS(1923), + [anon_sym_long] = ACTIONS(1923), + [anon_sym_const] = ACTIONS(1923), + [anon_sym_volatile] = ACTIONS(1923), + [anon_sym_ctypedef] = ACTIONS(1923), + [anon_sym_struct] = ACTIONS(1923), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_enum] = ACTIONS(1923), + [anon_sym_cppclass] = ACTIONS(1923), + [anon_sym_fused] = ACTIONS(1923), + [anon_sym_public] = ACTIONS(1923), + [anon_sym_packed] = ACTIONS(1923), + [anon_sym_inline] = ACTIONS(1923), + [anon_sym_readonly] = ACTIONS(1923), + [anon_sym_sizeof] = ACTIONS(1923), + [sym__dedent] = ACTIONS(1925), + [sym_string_start] = ACTIONS(1925), }, [569] = { - [sym_identifier] = ACTIONS(1896), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_import] = ACTIONS(1896), - [anon_sym_cimport] = ACTIONS(1896), - [anon_sym_from] = ACTIONS(1896), - [anon_sym_LPAREN] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_print] = ACTIONS(1896), - [anon_sym_assert] = ACTIONS(1896), - [anon_sym_return] = ACTIONS(1896), - [anon_sym_del] = ACTIONS(1896), - [anon_sym_raise] = ACTIONS(1896), - [anon_sym_pass] = ACTIONS(1896), - [anon_sym_break] = ACTIONS(1896), - [anon_sym_continue] = ACTIONS(1896), - [anon_sym_if] = ACTIONS(1896), - [anon_sym_match] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(1896), - [anon_sym_for] = ACTIONS(1896), - [anon_sym_while] = ACTIONS(1896), - [anon_sym_try] = ACTIONS(1896), - [anon_sym_with] = ACTIONS(1896), - [anon_sym_def] = ACTIONS(1896), - [anon_sym_global] = ACTIONS(1896), - [anon_sym_nonlocal] = ACTIONS(1896), - [anon_sym_exec] = ACTIONS(1896), - [anon_sym_type] = ACTIONS(1896), - [anon_sym_class] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_AT] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_LBRACE] = ACTIONS(1898), - [anon_sym_PLUS] = ACTIONS(1898), - [anon_sym_not] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1898), - [anon_sym_TILDE] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_lambda] = ACTIONS(1896), - [anon_sym_yield] = ACTIONS(1896), - [sym_ellipsis] = ACTIONS(1898), - [anon_sym_None] = ACTIONS(1896), - [sym_integer] = ACTIONS(1896), - [sym_float] = ACTIONS(1898), - [anon_sym_await] = ACTIONS(1896), - [anon_sym_api] = ACTIONS(1896), - [sym_true] = ACTIONS(1896), - [sym_false] = ACTIONS(1896), + [sym_identifier] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_import] = ACTIONS(1927), + [anon_sym_cimport] = ACTIONS(1927), + [anon_sym_from] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1929), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_print] = ACTIONS(1927), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_return] = ACTIONS(1927), + [anon_sym_del] = ACTIONS(1927), + [anon_sym_raise] = ACTIONS(1927), + [anon_sym_pass] = ACTIONS(1927), + [anon_sym_break] = ACTIONS(1927), + [anon_sym_continue] = ACTIONS(1927), + [anon_sym_if] = ACTIONS(1927), + [anon_sym_match] = ACTIONS(1927), + [anon_sym_async] = ACTIONS(1927), + [anon_sym_for] = ACTIONS(1927), + [anon_sym_while] = ACTIONS(1927), + [anon_sym_try] = ACTIONS(1927), + [anon_sym_with] = ACTIONS(1927), + [anon_sym_def] = ACTIONS(1927), + [anon_sym_global] = ACTIONS(1927), + [anon_sym_nonlocal] = ACTIONS(1927), + [anon_sym_exec] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_class] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(1929), + [anon_sym_AT] = ACTIONS(1929), + [anon_sym_DASH] = ACTIONS(1929), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1929), + [anon_sym_not] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1929), + [anon_sym_TILDE] = ACTIONS(1929), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_lambda] = ACTIONS(1927), + [anon_sym_yield] = ACTIONS(1927), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1929), + [anon_sym_None] = ACTIONS(1927), + [sym_integer] = ACTIONS(1927), + [sym_float] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_api] = ACTIONS(1927), + [sym_true] = ACTIONS(1927), + [sym_false] = ACTIONS(1927), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1896), - [anon_sym_include] = ACTIONS(1896), - [anon_sym_DEF] = ACTIONS(1896), - [anon_sym_cdef] = ACTIONS(1896), - [anon_sym_cpdef] = ACTIONS(1896), - [anon_sym_int] = ACTIONS(1896), - [anon_sym_double] = ACTIONS(1896), - [anon_sym_complex] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1896), - [anon_sym_signed] = ACTIONS(1896), - [anon_sym_unsigned] = ACTIONS(1896), - [anon_sym_char] = ACTIONS(1896), - [anon_sym_short] = ACTIONS(1896), - [anon_sym_long] = ACTIONS(1896), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_volatile] = ACTIONS(1896), - [anon_sym_ctypedef] = ACTIONS(1896), - [anon_sym_struct] = ACTIONS(1896), - [anon_sym_union] = ACTIONS(1896), - [anon_sym_enum] = ACTIONS(1896), - [anon_sym_cppclass] = ACTIONS(1896), - [anon_sym_fused] = ACTIONS(1896), - [anon_sym_public] = ACTIONS(1896), - [anon_sym_packed] = ACTIONS(1896), - [anon_sym_inline] = ACTIONS(1896), - [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_sizeof] = ACTIONS(1896), - [sym__dedent] = ACTIONS(1898), - [sym_string_start] = ACTIONS(1898), + [anon_sym_property] = ACTIONS(1927), + [anon_sym_include] = ACTIONS(1927), + [anon_sym_DEF] = ACTIONS(1927), + [anon_sym_cdef] = ACTIONS(1927), + [anon_sym_cpdef] = ACTIONS(1927), + [anon_sym_int] = ACTIONS(1927), + [anon_sym_double] = ACTIONS(1927), + [anon_sym_complex] = ACTIONS(1927), + [anon_sym_new] = ACTIONS(1927), + [anon_sym_signed] = ACTIONS(1927), + [anon_sym_unsigned] = ACTIONS(1927), + [anon_sym_char] = ACTIONS(1927), + [anon_sym_short] = ACTIONS(1927), + [anon_sym_long] = ACTIONS(1927), + [anon_sym_const] = ACTIONS(1927), + [anon_sym_volatile] = ACTIONS(1927), + [anon_sym_ctypedef] = ACTIONS(1927), + [anon_sym_struct] = ACTIONS(1927), + [anon_sym_union] = ACTIONS(1927), + [anon_sym_enum] = ACTIONS(1927), + [anon_sym_cppclass] = ACTIONS(1927), + [anon_sym_fused] = ACTIONS(1927), + [anon_sym_public] = ACTIONS(1927), + [anon_sym_packed] = ACTIONS(1927), + [anon_sym_inline] = ACTIONS(1927), + [anon_sym_readonly] = ACTIONS(1927), + [anon_sym_sizeof] = ACTIONS(1927), + [sym__dedent] = ACTIONS(1929), + [sym_string_start] = ACTIONS(1929), }, [570] = { - [sym_identifier] = ACTIONS(1900), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_import] = ACTIONS(1900), - [anon_sym_cimport] = ACTIONS(1900), - [anon_sym_from] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_print] = ACTIONS(1900), - [anon_sym_assert] = ACTIONS(1900), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_del] = ACTIONS(1900), - [anon_sym_raise] = ACTIONS(1900), - [anon_sym_pass] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_match] = ACTIONS(1900), - [anon_sym_async] = ACTIONS(1900), - [anon_sym_for] = ACTIONS(1900), - [anon_sym_while] = ACTIONS(1900), - [anon_sym_try] = ACTIONS(1900), - [anon_sym_with] = ACTIONS(1900), - [anon_sym_def] = ACTIONS(1900), - [anon_sym_global] = ACTIONS(1900), - [anon_sym_nonlocal] = ACTIONS(1900), - [anon_sym_exec] = ACTIONS(1900), - [anon_sym_type] = ACTIONS(1900), - [anon_sym_class] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1902), - [anon_sym_AT] = ACTIONS(1902), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_PLUS] = ACTIONS(1902), - [anon_sym_not] = ACTIONS(1900), - [anon_sym_AMP] = ACTIONS(1902), - [anon_sym_TILDE] = ACTIONS(1902), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_lambda] = ACTIONS(1900), - [anon_sym_yield] = ACTIONS(1900), - [sym_ellipsis] = ACTIONS(1902), - [anon_sym_None] = ACTIONS(1900), - [sym_integer] = ACTIONS(1900), - [sym_float] = ACTIONS(1902), - [anon_sym_await] = ACTIONS(1900), - [anon_sym_api] = ACTIONS(1900), - [sym_true] = ACTIONS(1900), - [sym_false] = ACTIONS(1900), + [sym_identifier] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym_import] = ACTIONS(1931), + [anon_sym_cimport] = ACTIONS(1931), + [anon_sym_from] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_print] = ACTIONS(1931), + [anon_sym_assert] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_del] = ACTIONS(1931), + [anon_sym_raise] = ACTIONS(1931), + [anon_sym_pass] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_match] = ACTIONS(1931), + [anon_sym_async] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_try] = ACTIONS(1931), + [anon_sym_with] = ACTIONS(1931), + [anon_sym_def] = ACTIONS(1931), + [anon_sym_global] = ACTIONS(1931), + [anon_sym_nonlocal] = ACTIONS(1931), + [anon_sym_exec] = ACTIONS(1931), + [anon_sym_type] = ACTIONS(1931), + [anon_sym_class] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1933), + [anon_sym_AT] = ACTIONS(1933), + [anon_sym_DASH] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_PLUS] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1931), + [anon_sym_AMP] = ACTIONS(1933), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_LT] = ACTIONS(1933), + [anon_sym_lambda] = ACTIONS(1931), + [anon_sym_yield] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1931), + [sym_integer] = ACTIONS(1931), + [sym_float] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1931), + [anon_sym_api] = ACTIONS(1931), + [sym_true] = ACTIONS(1931), + [sym_false] = ACTIONS(1931), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1900), - [anon_sym_include] = ACTIONS(1900), - [anon_sym_DEF] = ACTIONS(1900), - [anon_sym_cdef] = ACTIONS(1900), - [anon_sym_cpdef] = ACTIONS(1900), - [anon_sym_int] = ACTIONS(1900), - [anon_sym_double] = ACTIONS(1900), - [anon_sym_complex] = ACTIONS(1900), - [anon_sym_new] = ACTIONS(1900), - [anon_sym_signed] = ACTIONS(1900), - [anon_sym_unsigned] = ACTIONS(1900), - [anon_sym_char] = ACTIONS(1900), - [anon_sym_short] = ACTIONS(1900), - [anon_sym_long] = ACTIONS(1900), - [anon_sym_const] = ACTIONS(1900), - [anon_sym_volatile] = ACTIONS(1900), - [anon_sym_ctypedef] = ACTIONS(1900), - [anon_sym_struct] = ACTIONS(1900), - [anon_sym_union] = ACTIONS(1900), - [anon_sym_enum] = ACTIONS(1900), - [anon_sym_cppclass] = ACTIONS(1900), - [anon_sym_fused] = ACTIONS(1900), - [anon_sym_public] = ACTIONS(1900), - [anon_sym_packed] = ACTIONS(1900), - [anon_sym_inline] = ACTIONS(1900), - [anon_sym_readonly] = ACTIONS(1900), - [anon_sym_sizeof] = ACTIONS(1900), - [sym__dedent] = ACTIONS(1902), - [sym_string_start] = ACTIONS(1902), + [anon_sym_property] = ACTIONS(1931), + [anon_sym_include] = ACTIONS(1931), + [anon_sym_DEF] = ACTIONS(1931), + [anon_sym_cdef] = ACTIONS(1931), + [anon_sym_cpdef] = ACTIONS(1931), + [anon_sym_int] = ACTIONS(1931), + [anon_sym_double] = ACTIONS(1931), + [anon_sym_complex] = ACTIONS(1931), + [anon_sym_new] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_char] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [anon_sym_volatile] = ACTIONS(1931), + [anon_sym_ctypedef] = ACTIONS(1931), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_union] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [anon_sym_cppclass] = ACTIONS(1931), + [anon_sym_fused] = ACTIONS(1931), + [anon_sym_public] = ACTIONS(1931), + [anon_sym_packed] = ACTIONS(1931), + [anon_sym_inline] = ACTIONS(1931), + [anon_sym_readonly] = ACTIONS(1931), + [anon_sym_sizeof] = ACTIONS(1931), + [sym__dedent] = ACTIONS(1933), + [sym_string_start] = ACTIONS(1933), }, [571] = { - [sym_identifier] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1906), - [anon_sym_import] = ACTIONS(1904), - [anon_sym_cimport] = ACTIONS(1904), - [anon_sym_from] = ACTIONS(1904), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_print] = ACTIONS(1904), - [anon_sym_assert] = ACTIONS(1904), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_del] = ACTIONS(1904), - [anon_sym_raise] = ACTIONS(1904), - [anon_sym_pass] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_match] = ACTIONS(1904), - [anon_sym_async] = ACTIONS(1904), - [anon_sym_for] = ACTIONS(1904), - [anon_sym_while] = ACTIONS(1904), - [anon_sym_try] = ACTIONS(1904), - [anon_sym_with] = ACTIONS(1904), - [anon_sym_def] = ACTIONS(1904), - [anon_sym_global] = ACTIONS(1904), - [anon_sym_nonlocal] = ACTIONS(1904), - [anon_sym_exec] = ACTIONS(1904), - [anon_sym_type] = ACTIONS(1904), - [anon_sym_class] = ACTIONS(1904), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_AT] = ACTIONS(1906), - [anon_sym_DASH] = ACTIONS(1906), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_PLUS] = ACTIONS(1906), - [anon_sym_not] = ACTIONS(1904), - [anon_sym_AMP] = ACTIONS(1906), - [anon_sym_TILDE] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1906), - [anon_sym_lambda] = ACTIONS(1904), - [anon_sym_yield] = ACTIONS(1904), - [sym_ellipsis] = ACTIONS(1906), - [anon_sym_None] = ACTIONS(1904), - [sym_integer] = ACTIONS(1904), - [sym_float] = ACTIONS(1906), - [anon_sym_await] = ACTIONS(1904), - [anon_sym_api] = ACTIONS(1904), - [sym_true] = ACTIONS(1904), - [sym_false] = ACTIONS(1904), + [sym_identifier] = ACTIONS(1935), + [anon_sym_SEMI] = ACTIONS(1937), + [anon_sym_import] = ACTIONS(1935), + [anon_sym_cimport] = ACTIONS(1935), + [anon_sym_from] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1937), + [anon_sym_print] = ACTIONS(1935), + [anon_sym_assert] = ACTIONS(1935), + [anon_sym_return] = ACTIONS(1935), + [anon_sym_del] = ACTIONS(1935), + [anon_sym_raise] = ACTIONS(1935), + [anon_sym_pass] = ACTIONS(1935), + [anon_sym_break] = ACTIONS(1935), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_if] = ACTIONS(1935), + [anon_sym_match] = ACTIONS(1935), + [anon_sym_async] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_while] = ACTIONS(1935), + [anon_sym_try] = ACTIONS(1935), + [anon_sym_with] = ACTIONS(1935), + [anon_sym_def] = ACTIONS(1935), + [anon_sym_global] = ACTIONS(1935), + [anon_sym_nonlocal] = ACTIONS(1935), + [anon_sym_exec] = ACTIONS(1935), + [anon_sym_type] = ACTIONS(1935), + [anon_sym_class] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_AT] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_LBRACE] = ACTIONS(1937), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_not] = ACTIONS(1935), + [anon_sym_AMP] = ACTIONS(1937), + [anon_sym_TILDE] = ACTIONS(1937), + [anon_sym_LT] = ACTIONS(1937), + [anon_sym_lambda] = ACTIONS(1935), + [anon_sym_yield] = ACTIONS(1935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1937), + [anon_sym_None] = ACTIONS(1935), + [sym_integer] = ACTIONS(1935), + [sym_float] = ACTIONS(1937), + [anon_sym_await] = ACTIONS(1935), + [anon_sym_api] = ACTIONS(1935), + [sym_true] = ACTIONS(1935), + [sym_false] = ACTIONS(1935), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1904), - [anon_sym_include] = ACTIONS(1904), - [anon_sym_DEF] = ACTIONS(1904), - [anon_sym_cdef] = ACTIONS(1904), - [anon_sym_cpdef] = ACTIONS(1904), - [anon_sym_int] = ACTIONS(1904), - [anon_sym_double] = ACTIONS(1904), - [anon_sym_complex] = ACTIONS(1904), - [anon_sym_new] = ACTIONS(1904), - [anon_sym_signed] = ACTIONS(1904), - [anon_sym_unsigned] = ACTIONS(1904), - [anon_sym_char] = ACTIONS(1904), - [anon_sym_short] = ACTIONS(1904), - [anon_sym_long] = ACTIONS(1904), - [anon_sym_const] = ACTIONS(1904), - [anon_sym_volatile] = ACTIONS(1904), - [anon_sym_ctypedef] = ACTIONS(1904), - [anon_sym_struct] = ACTIONS(1904), - [anon_sym_union] = ACTIONS(1904), - [anon_sym_enum] = ACTIONS(1904), - [anon_sym_cppclass] = ACTIONS(1904), - [anon_sym_fused] = ACTIONS(1904), - [anon_sym_public] = ACTIONS(1904), - [anon_sym_packed] = ACTIONS(1904), - [anon_sym_inline] = ACTIONS(1904), - [anon_sym_readonly] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1904), - [sym__dedent] = ACTIONS(1906), - [sym_string_start] = ACTIONS(1906), + [anon_sym_property] = ACTIONS(1935), + [anon_sym_include] = ACTIONS(1935), + [anon_sym_DEF] = ACTIONS(1935), + [anon_sym_cdef] = ACTIONS(1935), + [anon_sym_cpdef] = ACTIONS(1935), + [anon_sym_int] = ACTIONS(1935), + [anon_sym_double] = ACTIONS(1935), + [anon_sym_complex] = ACTIONS(1935), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_signed] = ACTIONS(1935), + [anon_sym_unsigned] = ACTIONS(1935), + [anon_sym_char] = ACTIONS(1935), + [anon_sym_short] = ACTIONS(1935), + [anon_sym_long] = ACTIONS(1935), + [anon_sym_const] = ACTIONS(1935), + [anon_sym_volatile] = ACTIONS(1935), + [anon_sym_ctypedef] = ACTIONS(1935), + [anon_sym_struct] = ACTIONS(1935), + [anon_sym_union] = ACTIONS(1935), + [anon_sym_enum] = ACTIONS(1935), + [anon_sym_cppclass] = ACTIONS(1935), + [anon_sym_fused] = ACTIONS(1935), + [anon_sym_public] = ACTIONS(1935), + [anon_sym_packed] = ACTIONS(1935), + [anon_sym_inline] = ACTIONS(1935), + [anon_sym_readonly] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1935), + [sym__dedent] = ACTIONS(1937), + [sym_string_start] = ACTIONS(1937), }, [572] = { - [sym_identifier] = ACTIONS(1908), - [anon_sym_SEMI] = ACTIONS(1910), - [anon_sym_import] = ACTIONS(1908), - [anon_sym_cimport] = ACTIONS(1908), - [anon_sym_from] = ACTIONS(1908), - [anon_sym_LPAREN] = ACTIONS(1910), - [anon_sym_STAR] = ACTIONS(1910), - [anon_sym_print] = ACTIONS(1908), - [anon_sym_assert] = ACTIONS(1908), - [anon_sym_return] = ACTIONS(1908), - [anon_sym_del] = ACTIONS(1908), - [anon_sym_raise] = ACTIONS(1908), - [anon_sym_pass] = ACTIONS(1908), - [anon_sym_break] = ACTIONS(1908), - [anon_sym_continue] = ACTIONS(1908), - [anon_sym_if] = ACTIONS(1908), - [anon_sym_match] = ACTIONS(1908), - [anon_sym_async] = ACTIONS(1908), - [anon_sym_for] = ACTIONS(1908), - [anon_sym_while] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1908), - [anon_sym_with] = ACTIONS(1908), - [anon_sym_def] = ACTIONS(1908), - [anon_sym_global] = ACTIONS(1908), - [anon_sym_nonlocal] = ACTIONS(1908), - [anon_sym_exec] = ACTIONS(1908), - [anon_sym_type] = ACTIONS(1908), - [anon_sym_class] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1910), - [anon_sym_AT] = ACTIONS(1910), - [anon_sym_DASH] = ACTIONS(1910), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_PLUS] = ACTIONS(1910), - [anon_sym_not] = ACTIONS(1908), - [anon_sym_AMP] = ACTIONS(1910), - [anon_sym_TILDE] = ACTIONS(1910), - [anon_sym_LT] = ACTIONS(1910), - [anon_sym_lambda] = ACTIONS(1908), - [anon_sym_yield] = ACTIONS(1908), - [sym_ellipsis] = ACTIONS(1910), - [anon_sym_None] = ACTIONS(1908), - [sym_integer] = ACTIONS(1908), - [sym_float] = ACTIONS(1910), - [anon_sym_await] = ACTIONS(1908), - [anon_sym_api] = ACTIONS(1908), - [sym_true] = ACTIONS(1908), - [sym_false] = ACTIONS(1908), + [sym_identifier] = ACTIONS(1939), + [anon_sym_SEMI] = ACTIONS(1941), + [anon_sym_import] = ACTIONS(1939), + [anon_sym_cimport] = ACTIONS(1939), + [anon_sym_from] = ACTIONS(1939), + [anon_sym_LPAREN] = ACTIONS(1941), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_print] = ACTIONS(1939), + [anon_sym_assert] = ACTIONS(1939), + [anon_sym_return] = ACTIONS(1939), + [anon_sym_del] = ACTIONS(1939), + [anon_sym_raise] = ACTIONS(1939), + [anon_sym_pass] = ACTIONS(1939), + [anon_sym_break] = ACTIONS(1939), + [anon_sym_continue] = ACTIONS(1939), + [anon_sym_if] = ACTIONS(1939), + [anon_sym_match] = ACTIONS(1939), + [anon_sym_async] = ACTIONS(1939), + [anon_sym_for] = ACTIONS(1939), + [anon_sym_while] = ACTIONS(1939), + [anon_sym_try] = ACTIONS(1939), + [anon_sym_with] = ACTIONS(1939), + [anon_sym_def] = ACTIONS(1939), + [anon_sym_global] = ACTIONS(1939), + [anon_sym_nonlocal] = ACTIONS(1939), + [anon_sym_exec] = ACTIONS(1939), + [anon_sym_type] = ACTIONS(1939), + [anon_sym_class] = ACTIONS(1939), + [anon_sym_LBRACK] = ACTIONS(1941), + [anon_sym_AT] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1941), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1941), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(1941), + [anon_sym_lambda] = ACTIONS(1939), + [anon_sym_yield] = ACTIONS(1939), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1941), + [anon_sym_None] = ACTIONS(1939), + [sym_integer] = ACTIONS(1939), + [sym_float] = ACTIONS(1941), + [anon_sym_await] = ACTIONS(1939), + [anon_sym_api] = ACTIONS(1939), + [sym_true] = ACTIONS(1939), + [sym_false] = ACTIONS(1939), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1908), - [anon_sym_include] = ACTIONS(1908), - [anon_sym_DEF] = ACTIONS(1908), - [anon_sym_cdef] = ACTIONS(1908), - [anon_sym_cpdef] = ACTIONS(1908), - [anon_sym_int] = ACTIONS(1908), - [anon_sym_double] = ACTIONS(1908), - [anon_sym_complex] = ACTIONS(1908), - [anon_sym_new] = ACTIONS(1908), - [anon_sym_signed] = ACTIONS(1908), - [anon_sym_unsigned] = ACTIONS(1908), - [anon_sym_char] = ACTIONS(1908), - [anon_sym_short] = ACTIONS(1908), - [anon_sym_long] = ACTIONS(1908), - [anon_sym_const] = ACTIONS(1908), - [anon_sym_volatile] = ACTIONS(1908), - [anon_sym_ctypedef] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(1908), - [anon_sym_union] = ACTIONS(1908), - [anon_sym_enum] = ACTIONS(1908), - [anon_sym_cppclass] = ACTIONS(1908), - [anon_sym_fused] = ACTIONS(1908), - [anon_sym_public] = ACTIONS(1908), - [anon_sym_packed] = ACTIONS(1908), - [anon_sym_inline] = ACTIONS(1908), - [anon_sym_readonly] = ACTIONS(1908), - [anon_sym_sizeof] = ACTIONS(1908), - [sym__dedent] = ACTIONS(1910), - [sym_string_start] = ACTIONS(1910), + [anon_sym_property] = ACTIONS(1939), + [anon_sym_include] = ACTIONS(1939), + [anon_sym_DEF] = ACTIONS(1939), + [anon_sym_cdef] = ACTIONS(1939), + [anon_sym_cpdef] = ACTIONS(1939), + [anon_sym_int] = ACTIONS(1939), + [anon_sym_double] = ACTIONS(1939), + [anon_sym_complex] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1939), + [anon_sym_signed] = ACTIONS(1939), + [anon_sym_unsigned] = ACTIONS(1939), + [anon_sym_char] = ACTIONS(1939), + [anon_sym_short] = ACTIONS(1939), + [anon_sym_long] = ACTIONS(1939), + [anon_sym_const] = ACTIONS(1939), + [anon_sym_volatile] = ACTIONS(1939), + [anon_sym_ctypedef] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(1939), + [anon_sym_union] = ACTIONS(1939), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_cppclass] = ACTIONS(1939), + [anon_sym_fused] = ACTIONS(1939), + [anon_sym_public] = ACTIONS(1939), + [anon_sym_packed] = ACTIONS(1939), + [anon_sym_inline] = ACTIONS(1939), + [anon_sym_readonly] = ACTIONS(1939), + [anon_sym_sizeof] = ACTIONS(1939), + [sym__dedent] = ACTIONS(1941), + [sym_string_start] = ACTIONS(1941), }, [573] = { - [sym_identifier] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym_import] = ACTIONS(1912), - [anon_sym_cimport] = ACTIONS(1912), - [anon_sym_from] = ACTIONS(1912), - [anon_sym_LPAREN] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1914), - [anon_sym_print] = ACTIONS(1912), - [anon_sym_assert] = ACTIONS(1912), - [anon_sym_return] = ACTIONS(1912), - [anon_sym_del] = ACTIONS(1912), - [anon_sym_raise] = ACTIONS(1912), - [anon_sym_pass] = ACTIONS(1912), - [anon_sym_break] = ACTIONS(1912), - [anon_sym_continue] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(1912), - [anon_sym_match] = ACTIONS(1912), - [anon_sym_async] = ACTIONS(1912), - [anon_sym_for] = ACTIONS(1912), - [anon_sym_while] = ACTIONS(1912), - [anon_sym_try] = ACTIONS(1912), - [anon_sym_with] = ACTIONS(1912), - [anon_sym_def] = ACTIONS(1912), - [anon_sym_global] = ACTIONS(1912), - [anon_sym_nonlocal] = ACTIONS(1912), - [anon_sym_exec] = ACTIONS(1912), - [anon_sym_type] = ACTIONS(1912), - [anon_sym_class] = ACTIONS(1912), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_AT] = ACTIONS(1914), - [anon_sym_DASH] = ACTIONS(1914), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_PLUS] = ACTIONS(1914), - [anon_sym_not] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1914), - [anon_sym_TILDE] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1914), - [anon_sym_lambda] = ACTIONS(1912), - [anon_sym_yield] = ACTIONS(1912), - [sym_ellipsis] = ACTIONS(1914), - [anon_sym_None] = ACTIONS(1912), - [sym_integer] = ACTIONS(1912), - [sym_float] = ACTIONS(1914), - [anon_sym_await] = ACTIONS(1912), - [anon_sym_api] = ACTIONS(1912), - [sym_true] = ACTIONS(1912), - [sym_false] = ACTIONS(1912), + [sym_identifier] = ACTIONS(1943), + [anon_sym_SEMI] = ACTIONS(1945), + [anon_sym_import] = ACTIONS(1943), + [anon_sym_cimport] = ACTIONS(1943), + [anon_sym_from] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_print] = ACTIONS(1943), + [anon_sym_assert] = ACTIONS(1943), + [anon_sym_return] = ACTIONS(1943), + [anon_sym_del] = ACTIONS(1943), + [anon_sym_raise] = ACTIONS(1943), + [anon_sym_pass] = ACTIONS(1943), + [anon_sym_break] = ACTIONS(1943), + [anon_sym_continue] = ACTIONS(1943), + [anon_sym_if] = ACTIONS(1943), + [anon_sym_match] = ACTIONS(1943), + [anon_sym_async] = ACTIONS(1943), + [anon_sym_for] = ACTIONS(1943), + [anon_sym_while] = ACTIONS(1943), + [anon_sym_try] = ACTIONS(1943), + [anon_sym_with] = ACTIONS(1943), + [anon_sym_def] = ACTIONS(1943), + [anon_sym_global] = ACTIONS(1943), + [anon_sym_nonlocal] = ACTIONS(1943), + [anon_sym_exec] = ACTIONS(1943), + [anon_sym_type] = ACTIONS(1943), + [anon_sym_class] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_AT] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1945), + [anon_sym_not] = ACTIONS(1943), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1945), + [anon_sym_lambda] = ACTIONS(1943), + [anon_sym_yield] = ACTIONS(1943), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1943), + [sym_integer] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(1943), + [anon_sym_api] = ACTIONS(1943), + [sym_true] = ACTIONS(1943), + [sym_false] = ACTIONS(1943), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1912), - [anon_sym_include] = ACTIONS(1912), - [anon_sym_DEF] = ACTIONS(1912), - [anon_sym_cdef] = ACTIONS(1912), - [anon_sym_cpdef] = ACTIONS(1912), - [anon_sym_int] = ACTIONS(1912), - [anon_sym_double] = ACTIONS(1912), - [anon_sym_complex] = ACTIONS(1912), - [anon_sym_new] = ACTIONS(1912), - [anon_sym_signed] = ACTIONS(1912), - [anon_sym_unsigned] = ACTIONS(1912), - [anon_sym_char] = ACTIONS(1912), - [anon_sym_short] = ACTIONS(1912), - [anon_sym_long] = ACTIONS(1912), - [anon_sym_const] = ACTIONS(1912), - [anon_sym_volatile] = ACTIONS(1912), - [anon_sym_ctypedef] = ACTIONS(1912), - [anon_sym_struct] = ACTIONS(1912), - [anon_sym_union] = ACTIONS(1912), - [anon_sym_enum] = ACTIONS(1912), - [anon_sym_cppclass] = ACTIONS(1912), - [anon_sym_fused] = ACTIONS(1912), - [anon_sym_public] = ACTIONS(1912), - [anon_sym_packed] = ACTIONS(1912), - [anon_sym_inline] = ACTIONS(1912), - [anon_sym_readonly] = ACTIONS(1912), - [anon_sym_sizeof] = ACTIONS(1912), - [sym__dedent] = ACTIONS(1914), - [sym_string_start] = ACTIONS(1914), + [anon_sym_property] = ACTIONS(1943), + [anon_sym_include] = ACTIONS(1943), + [anon_sym_DEF] = ACTIONS(1943), + [anon_sym_cdef] = ACTIONS(1943), + [anon_sym_cpdef] = ACTIONS(1943), + [anon_sym_int] = ACTIONS(1943), + [anon_sym_double] = ACTIONS(1943), + [anon_sym_complex] = ACTIONS(1943), + [anon_sym_new] = ACTIONS(1943), + [anon_sym_signed] = ACTIONS(1943), + [anon_sym_unsigned] = ACTIONS(1943), + [anon_sym_char] = ACTIONS(1943), + [anon_sym_short] = ACTIONS(1943), + [anon_sym_long] = ACTIONS(1943), + [anon_sym_const] = ACTIONS(1943), + [anon_sym_volatile] = ACTIONS(1943), + [anon_sym_ctypedef] = ACTIONS(1943), + [anon_sym_struct] = ACTIONS(1943), + [anon_sym_union] = ACTIONS(1943), + [anon_sym_enum] = ACTIONS(1943), + [anon_sym_cppclass] = ACTIONS(1943), + [anon_sym_fused] = ACTIONS(1943), + [anon_sym_public] = ACTIONS(1943), + [anon_sym_packed] = ACTIONS(1943), + [anon_sym_inline] = ACTIONS(1943), + [anon_sym_readonly] = ACTIONS(1943), + [anon_sym_sizeof] = ACTIONS(1943), + [sym__dedent] = ACTIONS(1945), + [sym_string_start] = ACTIONS(1945), }, [574] = { - [sym_identifier] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_import] = ACTIONS(1916), - [anon_sym_cimport] = ACTIONS(1916), - [anon_sym_from] = ACTIONS(1916), - [anon_sym_LPAREN] = ACTIONS(1918), - [anon_sym_STAR] = ACTIONS(1918), - [anon_sym_print] = ACTIONS(1916), - [anon_sym_assert] = ACTIONS(1916), - [anon_sym_return] = ACTIONS(1916), - [anon_sym_del] = ACTIONS(1916), - [anon_sym_raise] = ACTIONS(1916), - [anon_sym_pass] = ACTIONS(1916), - [anon_sym_break] = ACTIONS(1916), - [anon_sym_continue] = ACTIONS(1916), - [anon_sym_if] = ACTIONS(1916), - [anon_sym_match] = ACTIONS(1916), - [anon_sym_async] = ACTIONS(1916), - [anon_sym_for] = ACTIONS(1916), - [anon_sym_while] = ACTIONS(1916), - [anon_sym_try] = ACTIONS(1916), - [anon_sym_with] = ACTIONS(1916), - [anon_sym_def] = ACTIONS(1916), - [anon_sym_global] = ACTIONS(1916), - [anon_sym_nonlocal] = ACTIONS(1916), - [anon_sym_exec] = ACTIONS(1916), - [anon_sym_type] = ACTIONS(1916), - [anon_sym_class] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_AT] = ACTIONS(1918), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_PLUS] = ACTIONS(1918), - [anon_sym_not] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1918), - [anon_sym_TILDE] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_lambda] = ACTIONS(1916), - [anon_sym_yield] = ACTIONS(1916), - [sym_ellipsis] = ACTIONS(1918), - [anon_sym_None] = ACTIONS(1916), - [sym_integer] = ACTIONS(1916), - [sym_float] = ACTIONS(1918), - [anon_sym_await] = ACTIONS(1916), - [anon_sym_api] = ACTIONS(1916), - [sym_true] = ACTIONS(1916), - [sym_false] = ACTIONS(1916), + [sym_identifier] = ACTIONS(1947), + [anon_sym_SEMI] = ACTIONS(1949), + [anon_sym_import] = ACTIONS(1947), + [anon_sym_cimport] = ACTIONS(1947), + [anon_sym_from] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_STAR] = ACTIONS(1949), + [anon_sym_print] = ACTIONS(1947), + [anon_sym_assert] = ACTIONS(1947), + [anon_sym_return] = ACTIONS(1947), + [anon_sym_del] = ACTIONS(1947), + [anon_sym_raise] = ACTIONS(1947), + [anon_sym_pass] = ACTIONS(1947), + [anon_sym_break] = ACTIONS(1947), + [anon_sym_continue] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1947), + [anon_sym_match] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1947), + [anon_sym_for] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1947), + [anon_sym_try] = ACTIONS(1947), + [anon_sym_with] = ACTIONS(1947), + [anon_sym_def] = ACTIONS(1947), + [anon_sym_global] = ACTIONS(1947), + [anon_sym_nonlocal] = ACTIONS(1947), + [anon_sym_exec] = ACTIONS(1947), + [anon_sym_type] = ACTIONS(1947), + [anon_sym_class] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_AT] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_LBRACE] = ACTIONS(1949), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_not] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1949), + [anon_sym_TILDE] = ACTIONS(1949), + [anon_sym_LT] = ACTIONS(1949), + [anon_sym_lambda] = ACTIONS(1947), + [anon_sym_yield] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1949), + [anon_sym_None] = ACTIONS(1947), + [sym_integer] = ACTIONS(1947), + [sym_float] = ACTIONS(1949), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_api] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1916), - [anon_sym_include] = ACTIONS(1916), - [anon_sym_DEF] = ACTIONS(1916), - [anon_sym_cdef] = ACTIONS(1916), - [anon_sym_cpdef] = ACTIONS(1916), - [anon_sym_int] = ACTIONS(1916), - [anon_sym_double] = ACTIONS(1916), - [anon_sym_complex] = ACTIONS(1916), - [anon_sym_new] = ACTIONS(1916), - [anon_sym_signed] = ACTIONS(1916), - [anon_sym_unsigned] = ACTIONS(1916), - [anon_sym_char] = ACTIONS(1916), - [anon_sym_short] = ACTIONS(1916), - [anon_sym_long] = ACTIONS(1916), - [anon_sym_const] = ACTIONS(1916), - [anon_sym_volatile] = ACTIONS(1916), - [anon_sym_ctypedef] = ACTIONS(1916), - [anon_sym_struct] = ACTIONS(1916), - [anon_sym_union] = ACTIONS(1916), - [anon_sym_enum] = ACTIONS(1916), - [anon_sym_cppclass] = ACTIONS(1916), - [anon_sym_fused] = ACTIONS(1916), - [anon_sym_public] = ACTIONS(1916), - [anon_sym_packed] = ACTIONS(1916), - [anon_sym_inline] = ACTIONS(1916), - [anon_sym_readonly] = ACTIONS(1916), - [anon_sym_sizeof] = ACTIONS(1916), - [sym__dedent] = ACTIONS(1918), - [sym_string_start] = ACTIONS(1918), + [anon_sym_property] = ACTIONS(1947), + [anon_sym_include] = ACTIONS(1947), + [anon_sym_DEF] = ACTIONS(1947), + [anon_sym_cdef] = ACTIONS(1947), + [anon_sym_cpdef] = ACTIONS(1947), + [anon_sym_int] = ACTIONS(1947), + [anon_sym_double] = ACTIONS(1947), + [anon_sym_complex] = ACTIONS(1947), + [anon_sym_new] = ACTIONS(1947), + [anon_sym_signed] = ACTIONS(1947), + [anon_sym_unsigned] = ACTIONS(1947), + [anon_sym_char] = ACTIONS(1947), + [anon_sym_short] = ACTIONS(1947), + [anon_sym_long] = ACTIONS(1947), + [anon_sym_const] = ACTIONS(1947), + [anon_sym_volatile] = ACTIONS(1947), + [anon_sym_ctypedef] = ACTIONS(1947), + [anon_sym_struct] = ACTIONS(1947), + [anon_sym_union] = ACTIONS(1947), + [anon_sym_enum] = ACTIONS(1947), + [anon_sym_cppclass] = ACTIONS(1947), + [anon_sym_fused] = ACTIONS(1947), + [anon_sym_public] = ACTIONS(1947), + [anon_sym_packed] = ACTIONS(1947), + [anon_sym_inline] = ACTIONS(1947), + [anon_sym_readonly] = ACTIONS(1947), + [anon_sym_sizeof] = ACTIONS(1947), + [sym__dedent] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1949), }, [575] = { - [sym_identifier] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1922), - [anon_sym_import] = ACTIONS(1920), - [anon_sym_cimport] = ACTIONS(1920), - [anon_sym_from] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_print] = ACTIONS(1920), - [anon_sym_assert] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_del] = ACTIONS(1920), - [anon_sym_raise] = ACTIONS(1920), - [anon_sym_pass] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_async] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_try] = ACTIONS(1920), - [anon_sym_with] = ACTIONS(1920), - [anon_sym_def] = ACTIONS(1920), - [anon_sym_global] = ACTIONS(1920), - [anon_sym_nonlocal] = ACTIONS(1920), - [anon_sym_exec] = ACTIONS(1920), - [anon_sym_type] = ACTIONS(1920), - [anon_sym_class] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_AT] = ACTIONS(1922), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_not] = ACTIONS(1920), - [anon_sym_AMP] = ACTIONS(1922), - [anon_sym_TILDE] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_lambda] = ACTIONS(1920), - [anon_sym_yield] = ACTIONS(1920), - [sym_ellipsis] = ACTIONS(1922), - [anon_sym_None] = ACTIONS(1920), - [sym_integer] = ACTIONS(1920), - [sym_float] = ACTIONS(1922), - [anon_sym_await] = ACTIONS(1920), - [anon_sym_api] = ACTIONS(1920), - [sym_true] = ACTIONS(1920), - [sym_false] = ACTIONS(1920), + [sym_identifier] = ACTIONS(1951), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_import] = ACTIONS(1951), + [anon_sym_cimport] = ACTIONS(1951), + [anon_sym_from] = ACTIONS(1951), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1953), + [anon_sym_print] = ACTIONS(1951), + [anon_sym_assert] = ACTIONS(1951), + [anon_sym_return] = ACTIONS(1951), + [anon_sym_del] = ACTIONS(1951), + [anon_sym_raise] = ACTIONS(1951), + [anon_sym_pass] = ACTIONS(1951), + [anon_sym_break] = ACTIONS(1951), + [anon_sym_continue] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1951), + [anon_sym_async] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1951), + [anon_sym_while] = ACTIONS(1951), + [anon_sym_try] = ACTIONS(1951), + [anon_sym_with] = ACTIONS(1951), + [anon_sym_def] = ACTIONS(1951), + [anon_sym_global] = ACTIONS(1951), + [anon_sym_nonlocal] = ACTIONS(1951), + [anon_sym_exec] = ACTIONS(1951), + [anon_sym_type] = ACTIONS(1951), + [anon_sym_class] = ACTIONS(1951), + [anon_sym_LBRACK] = ACTIONS(1953), + [anon_sym_AT] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_not] = ACTIONS(1951), + [anon_sym_AMP] = ACTIONS(1953), + [anon_sym_TILDE] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1953), + [anon_sym_lambda] = ACTIONS(1951), + [anon_sym_yield] = ACTIONS(1951), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1953), + [anon_sym_None] = ACTIONS(1951), + [sym_integer] = ACTIONS(1951), + [sym_float] = ACTIONS(1953), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_api] = ACTIONS(1951), + [sym_true] = ACTIONS(1951), + [sym_false] = ACTIONS(1951), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1920), - [anon_sym_include] = ACTIONS(1920), - [anon_sym_DEF] = ACTIONS(1920), - [anon_sym_cdef] = ACTIONS(1920), - [anon_sym_cpdef] = ACTIONS(1920), - [anon_sym_int] = ACTIONS(1920), - [anon_sym_double] = ACTIONS(1920), - [anon_sym_complex] = ACTIONS(1920), - [anon_sym_new] = ACTIONS(1920), - [anon_sym_signed] = ACTIONS(1920), - [anon_sym_unsigned] = ACTIONS(1920), - [anon_sym_char] = ACTIONS(1920), - [anon_sym_short] = ACTIONS(1920), - [anon_sym_long] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_volatile] = ACTIONS(1920), - [anon_sym_ctypedef] = ACTIONS(1920), - [anon_sym_struct] = ACTIONS(1920), - [anon_sym_union] = ACTIONS(1920), - [anon_sym_enum] = ACTIONS(1920), - [anon_sym_cppclass] = ACTIONS(1920), - [anon_sym_fused] = ACTIONS(1920), - [anon_sym_public] = ACTIONS(1920), - [anon_sym_packed] = ACTIONS(1920), - [anon_sym_inline] = ACTIONS(1920), - [anon_sym_readonly] = ACTIONS(1920), - [anon_sym_sizeof] = ACTIONS(1920), - [sym__dedent] = ACTIONS(1922), - [sym_string_start] = ACTIONS(1922), + [anon_sym_property] = ACTIONS(1951), + [anon_sym_include] = ACTIONS(1951), + [anon_sym_DEF] = ACTIONS(1951), + [anon_sym_cdef] = ACTIONS(1951), + [anon_sym_cpdef] = ACTIONS(1951), + [anon_sym_int] = ACTIONS(1951), + [anon_sym_double] = ACTIONS(1951), + [anon_sym_complex] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_signed] = ACTIONS(1951), + [anon_sym_unsigned] = ACTIONS(1951), + [anon_sym_char] = ACTIONS(1951), + [anon_sym_short] = ACTIONS(1951), + [anon_sym_long] = ACTIONS(1951), + [anon_sym_const] = ACTIONS(1951), + [anon_sym_volatile] = ACTIONS(1951), + [anon_sym_ctypedef] = ACTIONS(1951), + [anon_sym_struct] = ACTIONS(1951), + [anon_sym_union] = ACTIONS(1951), + [anon_sym_enum] = ACTIONS(1951), + [anon_sym_cppclass] = ACTIONS(1951), + [anon_sym_fused] = ACTIONS(1951), + [anon_sym_public] = ACTIONS(1951), + [anon_sym_packed] = ACTIONS(1951), + [anon_sym_inline] = ACTIONS(1951), + [anon_sym_readonly] = ACTIONS(1951), + [anon_sym_sizeof] = ACTIONS(1951), + [sym__dedent] = ACTIONS(1953), + [sym_string_start] = ACTIONS(1953), }, [576] = { - [sym_identifier] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_import] = ACTIONS(1924), - [anon_sym_cimport] = ACTIONS(1924), - [anon_sym_from] = ACTIONS(1924), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_STAR] = ACTIONS(1926), - [anon_sym_print] = ACTIONS(1924), - [anon_sym_assert] = ACTIONS(1924), - [anon_sym_return] = ACTIONS(1924), - [anon_sym_del] = ACTIONS(1924), - [anon_sym_raise] = ACTIONS(1924), - [anon_sym_pass] = ACTIONS(1924), - [anon_sym_break] = ACTIONS(1924), - [anon_sym_continue] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(1924), - [anon_sym_match] = ACTIONS(1924), - [anon_sym_async] = ACTIONS(1924), - [anon_sym_for] = ACTIONS(1924), - [anon_sym_while] = ACTIONS(1924), - [anon_sym_try] = ACTIONS(1924), - [anon_sym_with] = ACTIONS(1924), - [anon_sym_def] = ACTIONS(1924), - [anon_sym_global] = ACTIONS(1924), - [anon_sym_nonlocal] = ACTIONS(1924), - [anon_sym_exec] = ACTIONS(1924), - [anon_sym_type] = ACTIONS(1924), - [anon_sym_class] = ACTIONS(1924), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_AT] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_not] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1926), - [anon_sym_TILDE] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1926), - [anon_sym_lambda] = ACTIONS(1924), - [anon_sym_yield] = ACTIONS(1924), - [sym_ellipsis] = ACTIONS(1926), - [anon_sym_None] = ACTIONS(1924), - [sym_integer] = ACTIONS(1924), - [sym_float] = ACTIONS(1926), - [anon_sym_await] = ACTIONS(1924), - [anon_sym_api] = ACTIONS(1924), - [sym_true] = ACTIONS(1924), - [sym_false] = ACTIONS(1924), + [sym_identifier] = ACTIONS(1955), + [anon_sym_SEMI] = ACTIONS(1957), + [anon_sym_import] = ACTIONS(1955), + [anon_sym_cimport] = ACTIONS(1955), + [anon_sym_from] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_print] = ACTIONS(1955), + [anon_sym_assert] = ACTIONS(1955), + [anon_sym_return] = ACTIONS(1955), + [anon_sym_del] = ACTIONS(1955), + [anon_sym_raise] = ACTIONS(1955), + [anon_sym_pass] = ACTIONS(1955), + [anon_sym_break] = ACTIONS(1955), + [anon_sym_continue] = ACTIONS(1955), + [anon_sym_if] = ACTIONS(1955), + [anon_sym_match] = ACTIONS(1955), + [anon_sym_async] = ACTIONS(1955), + [anon_sym_for] = ACTIONS(1955), + [anon_sym_while] = ACTIONS(1955), + [anon_sym_try] = ACTIONS(1955), + [anon_sym_with] = ACTIONS(1955), + [anon_sym_def] = ACTIONS(1955), + [anon_sym_global] = ACTIONS(1955), + [anon_sym_nonlocal] = ACTIONS(1955), + [anon_sym_exec] = ACTIONS(1955), + [anon_sym_type] = ACTIONS(1955), + [anon_sym_class] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(1957), + [anon_sym_AT] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1957), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_not] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_TILDE] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_lambda] = ACTIONS(1955), + [anon_sym_yield] = ACTIONS(1955), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1957), + [anon_sym_None] = ACTIONS(1955), + [sym_integer] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_api] = ACTIONS(1955), + [sym_true] = ACTIONS(1955), + [sym_false] = ACTIONS(1955), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1924), - [anon_sym_include] = ACTIONS(1924), - [anon_sym_DEF] = ACTIONS(1924), - [anon_sym_cdef] = ACTIONS(1924), - [anon_sym_cpdef] = ACTIONS(1924), - [anon_sym_int] = ACTIONS(1924), - [anon_sym_double] = ACTIONS(1924), - [anon_sym_complex] = ACTIONS(1924), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_signed] = ACTIONS(1924), - [anon_sym_unsigned] = ACTIONS(1924), - [anon_sym_char] = ACTIONS(1924), - [anon_sym_short] = ACTIONS(1924), - [anon_sym_long] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1924), - [anon_sym_volatile] = ACTIONS(1924), - [anon_sym_ctypedef] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(1924), - [anon_sym_union] = ACTIONS(1924), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_cppclass] = ACTIONS(1924), - [anon_sym_fused] = ACTIONS(1924), - [anon_sym_public] = ACTIONS(1924), - [anon_sym_packed] = ACTIONS(1924), - [anon_sym_inline] = ACTIONS(1924), - [anon_sym_readonly] = ACTIONS(1924), - [anon_sym_sizeof] = ACTIONS(1924), - [sym__dedent] = ACTIONS(1926), - [sym_string_start] = ACTIONS(1926), + [anon_sym_property] = ACTIONS(1955), + [anon_sym_include] = ACTIONS(1955), + [anon_sym_DEF] = ACTIONS(1955), + [anon_sym_cdef] = ACTIONS(1955), + [anon_sym_cpdef] = ACTIONS(1955), + [anon_sym_int] = ACTIONS(1955), + [anon_sym_double] = ACTIONS(1955), + [anon_sym_complex] = ACTIONS(1955), + [anon_sym_new] = ACTIONS(1955), + [anon_sym_signed] = ACTIONS(1955), + [anon_sym_unsigned] = ACTIONS(1955), + [anon_sym_char] = ACTIONS(1955), + [anon_sym_short] = ACTIONS(1955), + [anon_sym_long] = ACTIONS(1955), + [anon_sym_const] = ACTIONS(1955), + [anon_sym_volatile] = ACTIONS(1955), + [anon_sym_ctypedef] = ACTIONS(1955), + [anon_sym_struct] = ACTIONS(1955), + [anon_sym_union] = ACTIONS(1955), + [anon_sym_enum] = ACTIONS(1955), + [anon_sym_cppclass] = ACTIONS(1955), + [anon_sym_fused] = ACTIONS(1955), + [anon_sym_public] = ACTIONS(1955), + [anon_sym_packed] = ACTIONS(1955), + [anon_sym_inline] = ACTIONS(1955), + [anon_sym_readonly] = ACTIONS(1955), + [anon_sym_sizeof] = ACTIONS(1955), + [sym__dedent] = ACTIONS(1957), + [sym_string_start] = ACTIONS(1957), }, [577] = { - [sym_identifier] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_import] = ACTIONS(1928), - [anon_sym_cimport] = ACTIONS(1928), - [anon_sym_from] = ACTIONS(1928), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_print] = ACTIONS(1928), - [anon_sym_assert] = ACTIONS(1928), - [anon_sym_return] = ACTIONS(1928), - [anon_sym_del] = ACTIONS(1928), - [anon_sym_raise] = ACTIONS(1928), - [anon_sym_pass] = ACTIONS(1928), - [anon_sym_break] = ACTIONS(1928), - [anon_sym_continue] = ACTIONS(1928), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_try] = ACTIONS(1928), - [anon_sym_with] = ACTIONS(1928), - [anon_sym_def] = ACTIONS(1928), - [anon_sym_global] = ACTIONS(1928), - [anon_sym_nonlocal] = ACTIONS(1928), - [anon_sym_exec] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_class] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_AT] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_not] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_TILDE] = ACTIONS(1930), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_lambda] = ACTIONS(1928), - [anon_sym_yield] = ACTIONS(1928), - [sym_ellipsis] = ACTIONS(1930), - [anon_sym_None] = ACTIONS(1928), - [sym_integer] = ACTIONS(1928), - [sym_float] = ACTIONS(1930), - [anon_sym_await] = ACTIONS(1928), - [anon_sym_api] = ACTIONS(1928), - [sym_true] = ACTIONS(1928), - [sym_false] = ACTIONS(1928), + [sym_identifier] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_import] = ACTIONS(1959), + [anon_sym_cimport] = ACTIONS(1959), + [anon_sym_from] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_print] = ACTIONS(1959), + [anon_sym_assert] = ACTIONS(1959), + [anon_sym_return] = ACTIONS(1959), + [anon_sym_del] = ACTIONS(1959), + [anon_sym_raise] = ACTIONS(1959), + [anon_sym_pass] = ACTIONS(1959), + [anon_sym_break] = ACTIONS(1959), + [anon_sym_continue] = ACTIONS(1959), + [anon_sym_if] = ACTIONS(1959), + [anon_sym_match] = ACTIONS(1959), + [anon_sym_async] = ACTIONS(1959), + [anon_sym_for] = ACTIONS(1959), + [anon_sym_while] = ACTIONS(1959), + [anon_sym_try] = ACTIONS(1959), + [anon_sym_with] = ACTIONS(1959), + [anon_sym_def] = ACTIONS(1959), + [anon_sym_global] = ACTIONS(1959), + [anon_sym_nonlocal] = ACTIONS(1959), + [anon_sym_exec] = ACTIONS(1959), + [anon_sym_type] = ACTIONS(1959), + [anon_sym_class] = ACTIONS(1959), + [anon_sym_LBRACK] = ACTIONS(1961), + [anon_sym_AT] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1961), + [anon_sym_PLUS] = ACTIONS(1961), + [anon_sym_not] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_TILDE] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_lambda] = ACTIONS(1959), + [anon_sym_yield] = ACTIONS(1959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1961), + [anon_sym_None] = ACTIONS(1959), + [sym_integer] = ACTIONS(1959), + [sym_float] = ACTIONS(1961), + [anon_sym_await] = ACTIONS(1959), + [anon_sym_api] = ACTIONS(1959), + [sym_true] = ACTIONS(1959), + [sym_false] = ACTIONS(1959), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1928), - [anon_sym_include] = ACTIONS(1928), - [anon_sym_DEF] = ACTIONS(1928), - [anon_sym_cdef] = ACTIONS(1928), - [anon_sym_cpdef] = ACTIONS(1928), - [anon_sym_int] = ACTIONS(1928), - [anon_sym_double] = ACTIONS(1928), - [anon_sym_complex] = ACTIONS(1928), - [anon_sym_new] = ACTIONS(1928), - [anon_sym_signed] = ACTIONS(1928), - [anon_sym_unsigned] = ACTIONS(1928), - [anon_sym_char] = ACTIONS(1928), - [anon_sym_short] = ACTIONS(1928), - [anon_sym_long] = ACTIONS(1928), - [anon_sym_const] = ACTIONS(1928), - [anon_sym_volatile] = ACTIONS(1928), - [anon_sym_ctypedef] = ACTIONS(1928), - [anon_sym_struct] = ACTIONS(1928), - [anon_sym_union] = ACTIONS(1928), - [anon_sym_enum] = ACTIONS(1928), - [anon_sym_cppclass] = ACTIONS(1928), - [anon_sym_fused] = ACTIONS(1928), - [anon_sym_public] = ACTIONS(1928), - [anon_sym_packed] = ACTIONS(1928), - [anon_sym_inline] = ACTIONS(1928), - [anon_sym_readonly] = ACTIONS(1928), - [anon_sym_sizeof] = ACTIONS(1928), - [sym__dedent] = ACTIONS(1930), - [sym_string_start] = ACTIONS(1930), + [anon_sym_property] = ACTIONS(1959), + [anon_sym_include] = ACTIONS(1959), + [anon_sym_DEF] = ACTIONS(1959), + [anon_sym_cdef] = ACTIONS(1959), + [anon_sym_cpdef] = ACTIONS(1959), + [anon_sym_int] = ACTIONS(1959), + [anon_sym_double] = ACTIONS(1959), + [anon_sym_complex] = ACTIONS(1959), + [anon_sym_new] = ACTIONS(1959), + [anon_sym_signed] = ACTIONS(1959), + [anon_sym_unsigned] = ACTIONS(1959), + [anon_sym_char] = ACTIONS(1959), + [anon_sym_short] = ACTIONS(1959), + [anon_sym_long] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(1959), + [anon_sym_volatile] = ACTIONS(1959), + [anon_sym_ctypedef] = ACTIONS(1959), + [anon_sym_struct] = ACTIONS(1959), + [anon_sym_union] = ACTIONS(1959), + [anon_sym_enum] = ACTIONS(1959), + [anon_sym_cppclass] = ACTIONS(1959), + [anon_sym_fused] = ACTIONS(1959), + [anon_sym_public] = ACTIONS(1959), + [anon_sym_packed] = ACTIONS(1959), + [anon_sym_inline] = ACTIONS(1959), + [anon_sym_readonly] = ACTIONS(1959), + [anon_sym_sizeof] = ACTIONS(1959), + [sym__dedent] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1961), }, [578] = { - [sym_identifier] = ACTIONS(1932), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_import] = ACTIONS(1932), - [anon_sym_cimport] = ACTIONS(1932), - [anon_sym_from] = ACTIONS(1932), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_print] = ACTIONS(1932), - [anon_sym_assert] = ACTIONS(1932), - [anon_sym_return] = ACTIONS(1932), - [anon_sym_del] = ACTIONS(1932), - [anon_sym_raise] = ACTIONS(1932), - [anon_sym_pass] = ACTIONS(1932), - [anon_sym_break] = ACTIONS(1932), - [anon_sym_continue] = ACTIONS(1932), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_try] = ACTIONS(1932), - [anon_sym_with] = ACTIONS(1932), - [anon_sym_def] = ACTIONS(1932), - [anon_sym_global] = ACTIONS(1932), - [anon_sym_nonlocal] = ACTIONS(1932), - [anon_sym_exec] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_AT] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1934), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_PLUS] = ACTIONS(1934), - [anon_sym_not] = ACTIONS(1932), - [anon_sym_AMP] = ACTIONS(1934), - [anon_sym_TILDE] = ACTIONS(1934), - [anon_sym_LT] = ACTIONS(1934), - [anon_sym_lambda] = ACTIONS(1932), - [anon_sym_yield] = ACTIONS(1932), - [sym_ellipsis] = ACTIONS(1934), - [anon_sym_None] = ACTIONS(1932), - [sym_integer] = ACTIONS(1932), - [sym_float] = ACTIONS(1934), - [anon_sym_await] = ACTIONS(1932), - [anon_sym_api] = ACTIONS(1932), - [sym_true] = ACTIONS(1932), - [sym_false] = ACTIONS(1932), + [sym_identifier] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1965), + [anon_sym_import] = ACTIONS(1963), + [anon_sym_cimport] = ACTIONS(1963), + [anon_sym_from] = ACTIONS(1963), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1965), + [anon_sym_print] = ACTIONS(1963), + [anon_sym_assert] = ACTIONS(1963), + [anon_sym_return] = ACTIONS(1963), + [anon_sym_del] = ACTIONS(1963), + [anon_sym_raise] = ACTIONS(1963), + [anon_sym_pass] = ACTIONS(1963), + [anon_sym_break] = ACTIONS(1963), + [anon_sym_continue] = ACTIONS(1963), + [anon_sym_if] = ACTIONS(1963), + [anon_sym_match] = ACTIONS(1963), + [anon_sym_async] = ACTIONS(1963), + [anon_sym_for] = ACTIONS(1963), + [anon_sym_while] = ACTIONS(1963), + [anon_sym_try] = ACTIONS(1963), + [anon_sym_with] = ACTIONS(1963), + [anon_sym_def] = ACTIONS(1963), + [anon_sym_global] = ACTIONS(1963), + [anon_sym_nonlocal] = ACTIONS(1963), + [anon_sym_exec] = ACTIONS(1963), + [anon_sym_type] = ACTIONS(1963), + [anon_sym_class] = ACTIONS(1963), + [anon_sym_LBRACK] = ACTIONS(1965), + [anon_sym_AT] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1965), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1965), + [anon_sym_lambda] = ACTIONS(1963), + [anon_sym_yield] = ACTIONS(1963), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1965), + [anon_sym_None] = ACTIONS(1963), + [sym_integer] = ACTIONS(1963), + [sym_float] = ACTIONS(1965), + [anon_sym_await] = ACTIONS(1963), + [anon_sym_api] = ACTIONS(1963), + [sym_true] = ACTIONS(1963), + [sym_false] = ACTIONS(1963), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1932), - [anon_sym_include] = ACTIONS(1932), - [anon_sym_DEF] = ACTIONS(1932), - [anon_sym_cdef] = ACTIONS(1932), - [anon_sym_cpdef] = ACTIONS(1932), - [anon_sym_int] = ACTIONS(1932), - [anon_sym_double] = ACTIONS(1932), - [anon_sym_complex] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_signed] = ACTIONS(1932), - [anon_sym_unsigned] = ACTIONS(1932), - [anon_sym_char] = ACTIONS(1932), - [anon_sym_short] = ACTIONS(1932), - [anon_sym_long] = ACTIONS(1932), - [anon_sym_const] = ACTIONS(1932), - [anon_sym_volatile] = ACTIONS(1932), - [anon_sym_ctypedef] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1932), - [anon_sym_union] = ACTIONS(1932), - [anon_sym_enum] = ACTIONS(1932), - [anon_sym_cppclass] = ACTIONS(1932), - [anon_sym_fused] = ACTIONS(1932), - [anon_sym_public] = ACTIONS(1932), - [anon_sym_packed] = ACTIONS(1932), - [anon_sym_inline] = ACTIONS(1932), - [anon_sym_readonly] = ACTIONS(1932), - [anon_sym_sizeof] = ACTIONS(1932), - [sym__dedent] = ACTIONS(1934), - [sym_string_start] = ACTIONS(1934), + [anon_sym_property] = ACTIONS(1963), + [anon_sym_include] = ACTIONS(1963), + [anon_sym_DEF] = ACTIONS(1963), + [anon_sym_cdef] = ACTIONS(1963), + [anon_sym_cpdef] = ACTIONS(1963), + [anon_sym_int] = ACTIONS(1963), + [anon_sym_double] = ACTIONS(1963), + [anon_sym_complex] = ACTIONS(1963), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_signed] = ACTIONS(1963), + [anon_sym_unsigned] = ACTIONS(1963), + [anon_sym_char] = ACTIONS(1963), + [anon_sym_short] = ACTIONS(1963), + [anon_sym_long] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1963), + [anon_sym_volatile] = ACTIONS(1963), + [anon_sym_ctypedef] = ACTIONS(1963), + [anon_sym_struct] = ACTIONS(1963), + [anon_sym_union] = ACTIONS(1963), + [anon_sym_enum] = ACTIONS(1963), + [anon_sym_cppclass] = ACTIONS(1963), + [anon_sym_fused] = ACTIONS(1963), + [anon_sym_public] = ACTIONS(1963), + [anon_sym_packed] = ACTIONS(1963), + [anon_sym_inline] = ACTIONS(1963), + [anon_sym_readonly] = ACTIONS(1963), + [anon_sym_sizeof] = ACTIONS(1963), + [sym__dedent] = ACTIONS(1965), + [sym_string_start] = ACTIONS(1965), }, [579] = { - [sym_identifier] = ACTIONS(1936), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_import] = ACTIONS(1936), - [anon_sym_cimport] = ACTIONS(1936), - [anon_sym_from] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_print] = ACTIONS(1936), - [anon_sym_assert] = ACTIONS(1936), - [anon_sym_return] = ACTIONS(1936), - [anon_sym_del] = ACTIONS(1936), - [anon_sym_raise] = ACTIONS(1936), - [anon_sym_pass] = ACTIONS(1936), - [anon_sym_break] = ACTIONS(1936), - [anon_sym_continue] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_try] = ACTIONS(1936), - [anon_sym_with] = ACTIONS(1936), - [anon_sym_def] = ACTIONS(1936), - [anon_sym_global] = ACTIONS(1936), - [anon_sym_nonlocal] = ACTIONS(1936), - [anon_sym_exec] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_class] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_AT] = ACTIONS(1938), - [anon_sym_DASH] = ACTIONS(1938), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(1938), - [anon_sym_not] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_TILDE] = ACTIONS(1938), - [anon_sym_LT] = ACTIONS(1938), - [anon_sym_lambda] = ACTIONS(1936), - [anon_sym_yield] = ACTIONS(1936), - [sym_ellipsis] = ACTIONS(1938), - [anon_sym_None] = ACTIONS(1936), - [sym_integer] = ACTIONS(1936), - [sym_float] = ACTIONS(1938), - [anon_sym_await] = ACTIONS(1936), - [anon_sym_api] = ACTIONS(1936), - [sym_true] = ACTIONS(1936), - [sym_false] = ACTIONS(1936), + [sym_identifier] = ACTIONS(1967), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym_import] = ACTIONS(1967), + [anon_sym_cimport] = ACTIONS(1967), + [anon_sym_from] = ACTIONS(1967), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1969), + [anon_sym_print] = ACTIONS(1967), + [anon_sym_assert] = ACTIONS(1967), + [anon_sym_return] = ACTIONS(1967), + [anon_sym_del] = ACTIONS(1967), + [anon_sym_raise] = ACTIONS(1967), + [anon_sym_pass] = ACTIONS(1967), + [anon_sym_break] = ACTIONS(1967), + [anon_sym_continue] = ACTIONS(1967), + [anon_sym_if] = ACTIONS(1967), + [anon_sym_match] = ACTIONS(1967), + [anon_sym_async] = ACTIONS(1967), + [anon_sym_for] = ACTIONS(1967), + [anon_sym_while] = ACTIONS(1967), + [anon_sym_try] = ACTIONS(1967), + [anon_sym_with] = ACTIONS(1967), + [anon_sym_def] = ACTIONS(1967), + [anon_sym_global] = ACTIONS(1967), + [anon_sym_nonlocal] = ACTIONS(1967), + [anon_sym_exec] = ACTIONS(1967), + [anon_sym_type] = ACTIONS(1967), + [anon_sym_class] = ACTIONS(1967), + [anon_sym_LBRACK] = ACTIONS(1969), + [anon_sym_AT] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(1969), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_not] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1969), + [anon_sym_TILDE] = ACTIONS(1969), + [anon_sym_LT] = ACTIONS(1969), + [anon_sym_lambda] = ACTIONS(1967), + [anon_sym_yield] = ACTIONS(1967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1969), + [anon_sym_None] = ACTIONS(1967), + [sym_integer] = ACTIONS(1967), + [sym_float] = ACTIONS(1969), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_api] = ACTIONS(1967), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1936), - [anon_sym_include] = ACTIONS(1936), - [anon_sym_DEF] = ACTIONS(1936), - [anon_sym_cdef] = ACTIONS(1936), - [anon_sym_cpdef] = ACTIONS(1936), - [anon_sym_int] = ACTIONS(1936), - [anon_sym_double] = ACTIONS(1936), - [anon_sym_complex] = ACTIONS(1936), - [anon_sym_new] = ACTIONS(1936), - [anon_sym_signed] = ACTIONS(1936), - [anon_sym_unsigned] = ACTIONS(1936), - [anon_sym_char] = ACTIONS(1936), - [anon_sym_short] = ACTIONS(1936), - [anon_sym_long] = ACTIONS(1936), - [anon_sym_const] = ACTIONS(1936), - [anon_sym_volatile] = ACTIONS(1936), - [anon_sym_ctypedef] = ACTIONS(1936), - [anon_sym_struct] = ACTIONS(1936), - [anon_sym_union] = ACTIONS(1936), - [anon_sym_enum] = ACTIONS(1936), - [anon_sym_cppclass] = ACTIONS(1936), - [anon_sym_fused] = ACTIONS(1936), - [anon_sym_public] = ACTIONS(1936), - [anon_sym_packed] = ACTIONS(1936), - [anon_sym_inline] = ACTIONS(1936), - [anon_sym_readonly] = ACTIONS(1936), - [anon_sym_sizeof] = ACTIONS(1936), - [sym__dedent] = ACTIONS(1938), - [sym_string_start] = ACTIONS(1938), + [anon_sym_property] = ACTIONS(1967), + [anon_sym_include] = ACTIONS(1967), + [anon_sym_DEF] = ACTIONS(1967), + [anon_sym_cdef] = ACTIONS(1967), + [anon_sym_cpdef] = ACTIONS(1967), + [anon_sym_int] = ACTIONS(1967), + [anon_sym_double] = ACTIONS(1967), + [anon_sym_complex] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1967), + [anon_sym_signed] = ACTIONS(1967), + [anon_sym_unsigned] = ACTIONS(1967), + [anon_sym_char] = ACTIONS(1967), + [anon_sym_short] = ACTIONS(1967), + [anon_sym_long] = ACTIONS(1967), + [anon_sym_const] = ACTIONS(1967), + [anon_sym_volatile] = ACTIONS(1967), + [anon_sym_ctypedef] = ACTIONS(1967), + [anon_sym_struct] = ACTIONS(1967), + [anon_sym_union] = ACTIONS(1967), + [anon_sym_enum] = ACTIONS(1967), + [anon_sym_cppclass] = ACTIONS(1967), + [anon_sym_fused] = ACTIONS(1967), + [anon_sym_public] = ACTIONS(1967), + [anon_sym_packed] = ACTIONS(1967), + [anon_sym_inline] = ACTIONS(1967), + [anon_sym_readonly] = ACTIONS(1967), + [anon_sym_sizeof] = ACTIONS(1967), + [sym__dedent] = ACTIONS(1969), + [sym_string_start] = ACTIONS(1969), }, [580] = { - [sym_identifier] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_import] = ACTIONS(1940), - [anon_sym_cimport] = ACTIONS(1940), - [anon_sym_from] = ACTIONS(1940), - [anon_sym_LPAREN] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1942), - [anon_sym_print] = ACTIONS(1940), - [anon_sym_assert] = ACTIONS(1940), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_del] = ACTIONS(1940), - [anon_sym_raise] = ACTIONS(1940), - [anon_sym_pass] = ACTIONS(1940), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_try] = ACTIONS(1940), - [anon_sym_with] = ACTIONS(1940), - [anon_sym_def] = ACTIONS(1940), - [anon_sym_global] = ACTIONS(1940), - [anon_sym_nonlocal] = ACTIONS(1940), - [anon_sym_exec] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_class] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_AT] = ACTIONS(1942), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_PLUS] = ACTIONS(1942), - [anon_sym_not] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_TILDE] = ACTIONS(1942), - [anon_sym_LT] = ACTIONS(1942), - [anon_sym_lambda] = ACTIONS(1940), - [anon_sym_yield] = ACTIONS(1940), - [sym_ellipsis] = ACTIONS(1942), - [anon_sym_None] = ACTIONS(1940), - [sym_integer] = ACTIONS(1940), - [sym_float] = ACTIONS(1942), - [anon_sym_await] = ACTIONS(1940), - [anon_sym_api] = ACTIONS(1940), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), + [sym_identifier] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_import] = ACTIONS(1971), + [anon_sym_cimport] = ACTIONS(1971), + [anon_sym_from] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_print] = ACTIONS(1971), + [anon_sym_assert] = ACTIONS(1971), + [anon_sym_return] = ACTIONS(1971), + [anon_sym_del] = ACTIONS(1971), + [anon_sym_raise] = ACTIONS(1971), + [anon_sym_pass] = ACTIONS(1971), + [anon_sym_break] = ACTIONS(1971), + [anon_sym_continue] = ACTIONS(1971), + [anon_sym_if] = ACTIONS(1971), + [anon_sym_match] = ACTIONS(1971), + [anon_sym_async] = ACTIONS(1971), + [anon_sym_for] = ACTIONS(1971), + [anon_sym_while] = ACTIONS(1971), + [anon_sym_try] = ACTIONS(1971), + [anon_sym_with] = ACTIONS(1971), + [anon_sym_def] = ACTIONS(1971), + [anon_sym_global] = ACTIONS(1971), + [anon_sym_nonlocal] = ACTIONS(1971), + [anon_sym_exec] = ACTIONS(1971), + [anon_sym_type] = ACTIONS(1971), + [anon_sym_class] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1973), + [anon_sym_AT] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_lambda] = ACTIONS(1971), + [anon_sym_yield] = ACTIONS(1971), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1973), + [anon_sym_None] = ACTIONS(1971), + [sym_integer] = ACTIONS(1971), + [sym_float] = ACTIONS(1973), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_api] = ACTIONS(1971), + [sym_true] = ACTIONS(1971), + [sym_false] = ACTIONS(1971), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1940), - [anon_sym_include] = ACTIONS(1940), - [anon_sym_DEF] = ACTIONS(1940), - [anon_sym_cdef] = ACTIONS(1940), - [anon_sym_cpdef] = ACTIONS(1940), - [anon_sym_int] = ACTIONS(1940), - [anon_sym_double] = ACTIONS(1940), - [anon_sym_complex] = ACTIONS(1940), - [anon_sym_new] = ACTIONS(1940), - [anon_sym_signed] = ACTIONS(1940), - [anon_sym_unsigned] = ACTIONS(1940), - [anon_sym_char] = ACTIONS(1940), - [anon_sym_short] = ACTIONS(1940), - [anon_sym_long] = ACTIONS(1940), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_volatile] = ACTIONS(1940), - [anon_sym_ctypedef] = ACTIONS(1940), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1940), - [anon_sym_enum] = ACTIONS(1940), - [anon_sym_cppclass] = ACTIONS(1940), - [anon_sym_fused] = ACTIONS(1940), - [anon_sym_public] = ACTIONS(1940), - [anon_sym_packed] = ACTIONS(1940), - [anon_sym_inline] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1940), - [anon_sym_sizeof] = ACTIONS(1940), - [sym__dedent] = ACTIONS(1942), - [sym_string_start] = ACTIONS(1942), + [anon_sym_property] = ACTIONS(1971), + [anon_sym_include] = ACTIONS(1971), + [anon_sym_DEF] = ACTIONS(1971), + [anon_sym_cdef] = ACTIONS(1971), + [anon_sym_cpdef] = ACTIONS(1971), + [anon_sym_int] = ACTIONS(1971), + [anon_sym_double] = ACTIONS(1971), + [anon_sym_complex] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1971), + [anon_sym_signed] = ACTIONS(1971), + [anon_sym_unsigned] = ACTIONS(1971), + [anon_sym_char] = ACTIONS(1971), + [anon_sym_short] = ACTIONS(1971), + [anon_sym_long] = ACTIONS(1971), + [anon_sym_const] = ACTIONS(1971), + [anon_sym_volatile] = ACTIONS(1971), + [anon_sym_ctypedef] = ACTIONS(1971), + [anon_sym_struct] = ACTIONS(1971), + [anon_sym_union] = ACTIONS(1971), + [anon_sym_enum] = ACTIONS(1971), + [anon_sym_cppclass] = ACTIONS(1971), + [anon_sym_fused] = ACTIONS(1971), + [anon_sym_public] = ACTIONS(1971), + [anon_sym_packed] = ACTIONS(1971), + [anon_sym_inline] = ACTIONS(1971), + [anon_sym_readonly] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1971), + [sym__dedent] = ACTIONS(1973), + [sym_string_start] = ACTIONS(1973), }, [581] = { - [sym_identifier] = ACTIONS(1944), - [anon_sym_SEMI] = ACTIONS(1946), - [anon_sym_import] = ACTIONS(1944), - [anon_sym_cimport] = ACTIONS(1944), - [anon_sym_from] = ACTIONS(1944), - [anon_sym_LPAREN] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1946), - [anon_sym_print] = ACTIONS(1944), - [anon_sym_assert] = ACTIONS(1944), - [anon_sym_return] = ACTIONS(1944), - [anon_sym_del] = ACTIONS(1944), - [anon_sym_raise] = ACTIONS(1944), - [anon_sym_pass] = ACTIONS(1944), - [anon_sym_break] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(1944), - [anon_sym_if] = ACTIONS(1944), - [anon_sym_match] = ACTIONS(1944), - [anon_sym_async] = ACTIONS(1944), - [anon_sym_for] = ACTIONS(1944), - [anon_sym_while] = ACTIONS(1944), - [anon_sym_try] = ACTIONS(1944), - [anon_sym_with] = ACTIONS(1944), - [anon_sym_def] = ACTIONS(1944), - [anon_sym_global] = ACTIONS(1944), - [anon_sym_nonlocal] = ACTIONS(1944), - [anon_sym_exec] = ACTIONS(1944), - [anon_sym_type] = ACTIONS(1944), - [anon_sym_class] = ACTIONS(1944), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_AT] = ACTIONS(1946), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_not] = ACTIONS(1944), - [anon_sym_AMP] = ACTIONS(1946), - [anon_sym_TILDE] = ACTIONS(1946), - [anon_sym_LT] = ACTIONS(1946), - [anon_sym_lambda] = ACTIONS(1944), - [anon_sym_yield] = ACTIONS(1944), - [sym_ellipsis] = ACTIONS(1946), - [anon_sym_None] = ACTIONS(1944), - [sym_integer] = ACTIONS(1944), - [sym_float] = ACTIONS(1946), - [anon_sym_await] = ACTIONS(1944), - [anon_sym_api] = ACTIONS(1944), - [sym_true] = ACTIONS(1944), - [sym_false] = ACTIONS(1944), + [sym_identifier] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1977), + [anon_sym_import] = ACTIONS(1975), + [anon_sym_cimport] = ACTIONS(1975), + [anon_sym_from] = ACTIONS(1975), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_STAR] = ACTIONS(1977), + [anon_sym_print] = ACTIONS(1975), + [anon_sym_assert] = ACTIONS(1975), + [anon_sym_return] = ACTIONS(1975), + [anon_sym_del] = ACTIONS(1975), + [anon_sym_raise] = ACTIONS(1975), + [anon_sym_pass] = ACTIONS(1975), + [anon_sym_break] = ACTIONS(1975), + [anon_sym_continue] = ACTIONS(1975), + [anon_sym_if] = ACTIONS(1975), + [anon_sym_match] = ACTIONS(1975), + [anon_sym_async] = ACTIONS(1975), + [anon_sym_for] = ACTIONS(1975), + [anon_sym_while] = ACTIONS(1975), + [anon_sym_try] = ACTIONS(1975), + [anon_sym_with] = ACTIONS(1975), + [anon_sym_def] = ACTIONS(1975), + [anon_sym_global] = ACTIONS(1975), + [anon_sym_nonlocal] = ACTIONS(1975), + [anon_sym_exec] = ACTIONS(1975), + [anon_sym_type] = ACTIONS(1975), + [anon_sym_class] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1977), + [anon_sym_AT] = ACTIONS(1977), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(1977), + [anon_sym_lambda] = ACTIONS(1975), + [anon_sym_yield] = ACTIONS(1975), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1977), + [anon_sym_None] = ACTIONS(1975), + [sym_integer] = ACTIONS(1975), + [sym_float] = ACTIONS(1977), + [anon_sym_await] = ACTIONS(1975), + [anon_sym_api] = ACTIONS(1975), + [sym_true] = ACTIONS(1975), + [sym_false] = ACTIONS(1975), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1944), - [anon_sym_include] = ACTIONS(1944), - [anon_sym_DEF] = ACTIONS(1944), - [anon_sym_cdef] = ACTIONS(1944), - [anon_sym_cpdef] = ACTIONS(1944), - [anon_sym_int] = ACTIONS(1944), - [anon_sym_double] = ACTIONS(1944), - [anon_sym_complex] = ACTIONS(1944), - [anon_sym_new] = ACTIONS(1944), - [anon_sym_signed] = ACTIONS(1944), - [anon_sym_unsigned] = ACTIONS(1944), - [anon_sym_char] = ACTIONS(1944), - [anon_sym_short] = ACTIONS(1944), - [anon_sym_long] = ACTIONS(1944), - [anon_sym_const] = ACTIONS(1944), - [anon_sym_volatile] = ACTIONS(1944), - [anon_sym_ctypedef] = ACTIONS(1944), - [anon_sym_struct] = ACTIONS(1944), - [anon_sym_union] = ACTIONS(1944), - [anon_sym_enum] = ACTIONS(1944), - [anon_sym_cppclass] = ACTIONS(1944), - [anon_sym_fused] = ACTIONS(1944), - [anon_sym_public] = ACTIONS(1944), - [anon_sym_packed] = ACTIONS(1944), - [anon_sym_inline] = ACTIONS(1944), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_sizeof] = ACTIONS(1944), - [sym__dedent] = ACTIONS(1946), - [sym_string_start] = ACTIONS(1946), + [anon_sym_property] = ACTIONS(1975), + [anon_sym_include] = ACTIONS(1975), + [anon_sym_DEF] = ACTIONS(1975), + [anon_sym_cdef] = ACTIONS(1975), + [anon_sym_cpdef] = ACTIONS(1975), + [anon_sym_int] = ACTIONS(1975), + [anon_sym_double] = ACTIONS(1975), + [anon_sym_complex] = ACTIONS(1975), + [anon_sym_new] = ACTIONS(1975), + [anon_sym_signed] = ACTIONS(1975), + [anon_sym_unsigned] = ACTIONS(1975), + [anon_sym_char] = ACTIONS(1975), + [anon_sym_short] = ACTIONS(1975), + [anon_sym_long] = ACTIONS(1975), + [anon_sym_const] = ACTIONS(1975), + [anon_sym_volatile] = ACTIONS(1975), + [anon_sym_ctypedef] = ACTIONS(1975), + [anon_sym_struct] = ACTIONS(1975), + [anon_sym_union] = ACTIONS(1975), + [anon_sym_enum] = ACTIONS(1975), + [anon_sym_cppclass] = ACTIONS(1975), + [anon_sym_fused] = ACTIONS(1975), + [anon_sym_public] = ACTIONS(1975), + [anon_sym_packed] = ACTIONS(1975), + [anon_sym_inline] = ACTIONS(1975), + [anon_sym_readonly] = ACTIONS(1975), + [anon_sym_sizeof] = ACTIONS(1975), + [sym__dedent] = ACTIONS(1977), + [sym_string_start] = ACTIONS(1977), }, [582] = { - [sym_identifier] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1950), - [anon_sym_import] = ACTIONS(1948), - [anon_sym_cimport] = ACTIONS(1948), - [anon_sym_from] = ACTIONS(1948), - [anon_sym_LPAREN] = ACTIONS(1950), - [anon_sym_STAR] = ACTIONS(1950), - [anon_sym_print] = ACTIONS(1948), - [anon_sym_assert] = ACTIONS(1948), - [anon_sym_return] = ACTIONS(1948), - [anon_sym_del] = ACTIONS(1948), - [anon_sym_raise] = ACTIONS(1948), - [anon_sym_pass] = ACTIONS(1948), - [anon_sym_break] = ACTIONS(1948), - [anon_sym_continue] = ACTIONS(1948), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_match] = ACTIONS(1948), - [anon_sym_async] = ACTIONS(1948), - [anon_sym_for] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_try] = ACTIONS(1948), - [anon_sym_with] = ACTIONS(1948), - [anon_sym_def] = ACTIONS(1948), - [anon_sym_global] = ACTIONS(1948), - [anon_sym_nonlocal] = ACTIONS(1948), - [anon_sym_exec] = ACTIONS(1948), - [anon_sym_type] = ACTIONS(1948), - [anon_sym_class] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1950), - [anon_sym_AT] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1950), - [anon_sym_not] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1950), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_LT] = ACTIONS(1950), - [anon_sym_lambda] = ACTIONS(1948), - [anon_sym_yield] = ACTIONS(1948), - [sym_ellipsis] = ACTIONS(1950), - [anon_sym_None] = ACTIONS(1948), - [sym_integer] = ACTIONS(1948), - [sym_float] = ACTIONS(1950), - [anon_sym_await] = ACTIONS(1948), - [anon_sym_api] = ACTIONS(1948), - [sym_true] = ACTIONS(1948), - [sym_false] = ACTIONS(1948), + [sym_identifier] = ACTIONS(1979), + [anon_sym_SEMI] = ACTIONS(1981), + [anon_sym_import] = ACTIONS(1979), + [anon_sym_cimport] = ACTIONS(1979), + [anon_sym_from] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1981), + [anon_sym_STAR] = ACTIONS(1981), + [anon_sym_print] = ACTIONS(1979), + [anon_sym_assert] = ACTIONS(1979), + [anon_sym_return] = ACTIONS(1979), + [anon_sym_del] = ACTIONS(1979), + [anon_sym_raise] = ACTIONS(1979), + [anon_sym_pass] = ACTIONS(1979), + [anon_sym_break] = ACTIONS(1979), + [anon_sym_continue] = ACTIONS(1979), + [anon_sym_if] = ACTIONS(1979), + [anon_sym_match] = ACTIONS(1979), + [anon_sym_async] = ACTIONS(1979), + [anon_sym_for] = ACTIONS(1979), + [anon_sym_while] = ACTIONS(1979), + [anon_sym_try] = ACTIONS(1979), + [anon_sym_with] = ACTIONS(1979), + [anon_sym_def] = ACTIONS(1979), + [anon_sym_global] = ACTIONS(1979), + [anon_sym_nonlocal] = ACTIONS(1979), + [anon_sym_exec] = ACTIONS(1979), + [anon_sym_type] = ACTIONS(1979), + [anon_sym_class] = ACTIONS(1979), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_AT] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(1979), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(1981), + [anon_sym_lambda] = ACTIONS(1979), + [anon_sym_yield] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_None] = ACTIONS(1979), + [sym_integer] = ACTIONS(1979), + [sym_float] = ACTIONS(1981), + [anon_sym_await] = ACTIONS(1979), + [anon_sym_api] = ACTIONS(1979), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1948), - [anon_sym_include] = ACTIONS(1948), - [anon_sym_DEF] = ACTIONS(1948), - [anon_sym_cdef] = ACTIONS(1948), - [anon_sym_cpdef] = ACTIONS(1948), - [anon_sym_int] = ACTIONS(1948), - [anon_sym_double] = ACTIONS(1948), - [anon_sym_complex] = ACTIONS(1948), - [anon_sym_new] = ACTIONS(1948), - [anon_sym_signed] = ACTIONS(1948), - [anon_sym_unsigned] = ACTIONS(1948), - [anon_sym_char] = ACTIONS(1948), - [anon_sym_short] = ACTIONS(1948), - [anon_sym_long] = ACTIONS(1948), - [anon_sym_const] = ACTIONS(1948), - [anon_sym_volatile] = ACTIONS(1948), - [anon_sym_ctypedef] = ACTIONS(1948), - [anon_sym_struct] = ACTIONS(1948), - [anon_sym_union] = ACTIONS(1948), - [anon_sym_enum] = ACTIONS(1948), - [anon_sym_cppclass] = ACTIONS(1948), - [anon_sym_fused] = ACTIONS(1948), - [anon_sym_public] = ACTIONS(1948), - [anon_sym_packed] = ACTIONS(1948), - [anon_sym_inline] = ACTIONS(1948), - [anon_sym_readonly] = ACTIONS(1948), - [anon_sym_sizeof] = ACTIONS(1948), - [sym__dedent] = ACTIONS(1950), - [sym_string_start] = ACTIONS(1950), + [anon_sym_property] = ACTIONS(1979), + [anon_sym_include] = ACTIONS(1979), + [anon_sym_DEF] = ACTIONS(1979), + [anon_sym_cdef] = ACTIONS(1979), + [anon_sym_cpdef] = ACTIONS(1979), + [anon_sym_int] = ACTIONS(1979), + [anon_sym_double] = ACTIONS(1979), + [anon_sym_complex] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_signed] = ACTIONS(1979), + [anon_sym_unsigned] = ACTIONS(1979), + [anon_sym_char] = ACTIONS(1979), + [anon_sym_short] = ACTIONS(1979), + [anon_sym_long] = ACTIONS(1979), + [anon_sym_const] = ACTIONS(1979), + [anon_sym_volatile] = ACTIONS(1979), + [anon_sym_ctypedef] = ACTIONS(1979), + [anon_sym_struct] = ACTIONS(1979), + [anon_sym_union] = ACTIONS(1979), + [anon_sym_enum] = ACTIONS(1979), + [anon_sym_cppclass] = ACTIONS(1979), + [anon_sym_fused] = ACTIONS(1979), + [anon_sym_public] = ACTIONS(1979), + [anon_sym_packed] = ACTIONS(1979), + [anon_sym_inline] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1979), + [anon_sym_sizeof] = ACTIONS(1979), + [sym__dedent] = ACTIONS(1981), + [sym_string_start] = ACTIONS(1981), }, [583] = { - [sym_identifier] = ACTIONS(1952), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_import] = ACTIONS(1952), - [anon_sym_cimport] = ACTIONS(1952), - [anon_sym_from] = ACTIONS(1952), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_STAR] = ACTIONS(1954), - [anon_sym_print] = ACTIONS(1952), - [anon_sym_assert] = ACTIONS(1952), - [anon_sym_return] = ACTIONS(1952), - [anon_sym_del] = ACTIONS(1952), - [anon_sym_raise] = ACTIONS(1952), - [anon_sym_pass] = ACTIONS(1952), - [anon_sym_break] = ACTIONS(1952), - [anon_sym_continue] = ACTIONS(1952), - [anon_sym_if] = ACTIONS(1952), - [anon_sym_match] = ACTIONS(1952), - [anon_sym_async] = ACTIONS(1952), - [anon_sym_for] = ACTIONS(1952), - [anon_sym_while] = ACTIONS(1952), - [anon_sym_try] = ACTIONS(1952), - [anon_sym_with] = ACTIONS(1952), - [anon_sym_def] = ACTIONS(1952), - [anon_sym_global] = ACTIONS(1952), - [anon_sym_nonlocal] = ACTIONS(1952), - [anon_sym_exec] = ACTIONS(1952), - [anon_sym_type] = ACTIONS(1952), - [anon_sym_class] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_AT] = ACTIONS(1954), - [anon_sym_DASH] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_PLUS] = ACTIONS(1954), - [anon_sym_not] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1954), - [anon_sym_TILDE] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_lambda] = ACTIONS(1952), - [anon_sym_yield] = ACTIONS(1952), - [sym_ellipsis] = ACTIONS(1954), - [anon_sym_None] = ACTIONS(1952), - [sym_integer] = ACTIONS(1952), - [sym_float] = ACTIONS(1954), - [anon_sym_await] = ACTIONS(1952), - [anon_sym_api] = ACTIONS(1952), - [sym_true] = ACTIONS(1952), - [sym_false] = ACTIONS(1952), + [sym_identifier] = ACTIONS(1983), + [anon_sym_SEMI] = ACTIONS(1985), + [anon_sym_import] = ACTIONS(1983), + [anon_sym_cimport] = ACTIONS(1983), + [anon_sym_from] = ACTIONS(1983), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_STAR] = ACTIONS(1985), + [anon_sym_print] = ACTIONS(1983), + [anon_sym_assert] = ACTIONS(1983), + [anon_sym_return] = ACTIONS(1983), + [anon_sym_del] = ACTIONS(1983), + [anon_sym_raise] = ACTIONS(1983), + [anon_sym_pass] = ACTIONS(1983), + [anon_sym_break] = ACTIONS(1983), + [anon_sym_continue] = ACTIONS(1983), + [anon_sym_if] = ACTIONS(1983), + [anon_sym_match] = ACTIONS(1983), + [anon_sym_async] = ACTIONS(1983), + [anon_sym_for] = ACTIONS(1983), + [anon_sym_while] = ACTIONS(1983), + [anon_sym_try] = ACTIONS(1983), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_def] = ACTIONS(1983), + [anon_sym_global] = ACTIONS(1983), + [anon_sym_nonlocal] = ACTIONS(1983), + [anon_sym_exec] = ACTIONS(1983), + [anon_sym_type] = ACTIONS(1983), + [anon_sym_class] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1985), + [anon_sym_AT] = ACTIONS(1985), + [anon_sym_DASH] = ACTIONS(1985), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_PLUS] = ACTIONS(1985), + [anon_sym_not] = ACTIONS(1983), + [anon_sym_AMP] = ACTIONS(1985), + [anon_sym_TILDE] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1985), + [anon_sym_lambda] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1983), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1985), + [anon_sym_None] = ACTIONS(1983), + [sym_integer] = ACTIONS(1983), + [sym_float] = ACTIONS(1985), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_api] = ACTIONS(1983), + [sym_true] = ACTIONS(1983), + [sym_false] = ACTIONS(1983), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1952), - [anon_sym_include] = ACTIONS(1952), - [anon_sym_DEF] = ACTIONS(1952), - [anon_sym_cdef] = ACTIONS(1952), - [anon_sym_cpdef] = ACTIONS(1952), - [anon_sym_int] = ACTIONS(1952), - [anon_sym_double] = ACTIONS(1952), - [anon_sym_complex] = ACTIONS(1952), - [anon_sym_new] = ACTIONS(1952), - [anon_sym_signed] = ACTIONS(1952), - [anon_sym_unsigned] = ACTIONS(1952), - [anon_sym_char] = ACTIONS(1952), - [anon_sym_short] = ACTIONS(1952), - [anon_sym_long] = ACTIONS(1952), - [anon_sym_const] = ACTIONS(1952), - [anon_sym_volatile] = ACTIONS(1952), - [anon_sym_ctypedef] = ACTIONS(1952), - [anon_sym_struct] = ACTIONS(1952), - [anon_sym_union] = ACTIONS(1952), - [anon_sym_enum] = ACTIONS(1952), - [anon_sym_cppclass] = ACTIONS(1952), - [anon_sym_fused] = ACTIONS(1952), - [anon_sym_public] = ACTIONS(1952), - [anon_sym_packed] = ACTIONS(1952), - [anon_sym_inline] = ACTIONS(1952), - [anon_sym_readonly] = ACTIONS(1952), - [anon_sym_sizeof] = ACTIONS(1952), - [sym__dedent] = ACTIONS(1954), - [sym_string_start] = ACTIONS(1954), + [anon_sym_property] = ACTIONS(1983), + [anon_sym_include] = ACTIONS(1983), + [anon_sym_DEF] = ACTIONS(1983), + [anon_sym_cdef] = ACTIONS(1983), + [anon_sym_cpdef] = ACTIONS(1983), + [anon_sym_int] = ACTIONS(1983), + [anon_sym_double] = ACTIONS(1983), + [anon_sym_complex] = ACTIONS(1983), + [anon_sym_new] = ACTIONS(1983), + [anon_sym_signed] = ACTIONS(1983), + [anon_sym_unsigned] = ACTIONS(1983), + [anon_sym_char] = ACTIONS(1983), + [anon_sym_short] = ACTIONS(1983), + [anon_sym_long] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_ctypedef] = ACTIONS(1983), + [anon_sym_struct] = ACTIONS(1983), + [anon_sym_union] = ACTIONS(1983), + [anon_sym_enum] = ACTIONS(1983), + [anon_sym_cppclass] = ACTIONS(1983), + [anon_sym_fused] = ACTIONS(1983), + [anon_sym_public] = ACTIONS(1983), + [anon_sym_packed] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_sizeof] = ACTIONS(1983), + [sym__dedent] = ACTIONS(1985), + [sym_string_start] = ACTIONS(1985), }, [584] = { - [sym_identifier] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1958), - [anon_sym_import] = ACTIONS(1956), - [anon_sym_cimport] = ACTIONS(1956), - [anon_sym_from] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1958), - [anon_sym_STAR] = ACTIONS(1958), - [anon_sym_print] = ACTIONS(1956), - [anon_sym_assert] = ACTIONS(1956), - [anon_sym_return] = ACTIONS(1956), - [anon_sym_del] = ACTIONS(1956), - [anon_sym_raise] = ACTIONS(1956), - [anon_sym_pass] = ACTIONS(1956), - [anon_sym_break] = ACTIONS(1956), - [anon_sym_continue] = ACTIONS(1956), - [anon_sym_if] = ACTIONS(1956), - [anon_sym_match] = ACTIONS(1956), - [anon_sym_async] = ACTIONS(1956), - [anon_sym_for] = ACTIONS(1956), - [anon_sym_while] = ACTIONS(1956), - [anon_sym_try] = ACTIONS(1956), - [anon_sym_with] = ACTIONS(1956), - [anon_sym_def] = ACTIONS(1956), - [anon_sym_global] = ACTIONS(1956), - [anon_sym_nonlocal] = ACTIONS(1956), - [anon_sym_exec] = ACTIONS(1956), - [anon_sym_type] = ACTIONS(1956), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_AT] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_LBRACE] = ACTIONS(1958), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_not] = ACTIONS(1956), - [anon_sym_AMP] = ACTIONS(1958), - [anon_sym_TILDE] = ACTIONS(1958), - [anon_sym_LT] = ACTIONS(1958), - [anon_sym_lambda] = ACTIONS(1956), - [anon_sym_yield] = ACTIONS(1956), - [sym_ellipsis] = ACTIONS(1958), - [anon_sym_None] = ACTIONS(1956), - [sym_integer] = ACTIONS(1956), - [sym_float] = ACTIONS(1958), - [anon_sym_await] = ACTIONS(1956), - [anon_sym_api] = ACTIONS(1956), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), + [sym_identifier] = ACTIONS(1987), + [anon_sym_SEMI] = ACTIONS(1989), + [anon_sym_import] = ACTIONS(1987), + [anon_sym_cimport] = ACTIONS(1987), + [anon_sym_from] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1989), + [anon_sym_print] = ACTIONS(1987), + [anon_sym_assert] = ACTIONS(1987), + [anon_sym_return] = ACTIONS(1987), + [anon_sym_del] = ACTIONS(1987), + [anon_sym_raise] = ACTIONS(1987), + [anon_sym_pass] = ACTIONS(1987), + [anon_sym_break] = ACTIONS(1987), + [anon_sym_continue] = ACTIONS(1987), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_match] = ACTIONS(1987), + [anon_sym_async] = ACTIONS(1987), + [anon_sym_for] = ACTIONS(1987), + [anon_sym_while] = ACTIONS(1987), + [anon_sym_try] = ACTIONS(1987), + [anon_sym_with] = ACTIONS(1987), + [anon_sym_def] = ACTIONS(1987), + [anon_sym_global] = ACTIONS(1987), + [anon_sym_nonlocal] = ACTIONS(1987), + [anon_sym_exec] = ACTIONS(1987), + [anon_sym_type] = ACTIONS(1987), + [anon_sym_class] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_AT] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_LBRACE] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_not] = ACTIONS(1987), + [anon_sym_AMP] = ACTIONS(1989), + [anon_sym_TILDE] = ACTIONS(1989), + [anon_sym_LT] = ACTIONS(1989), + [anon_sym_lambda] = ACTIONS(1987), + [anon_sym_yield] = ACTIONS(1987), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), + [anon_sym_None] = ACTIONS(1987), + [sym_integer] = ACTIONS(1987), + [sym_float] = ACTIONS(1989), + [anon_sym_await] = ACTIONS(1987), + [anon_sym_api] = ACTIONS(1987), + [sym_true] = ACTIONS(1987), + [sym_false] = ACTIONS(1987), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1956), - [anon_sym_include] = ACTIONS(1956), - [anon_sym_DEF] = ACTIONS(1956), - [anon_sym_cdef] = ACTIONS(1956), - [anon_sym_cpdef] = ACTIONS(1956), - [anon_sym_int] = ACTIONS(1956), - [anon_sym_double] = ACTIONS(1956), - [anon_sym_complex] = ACTIONS(1956), - [anon_sym_new] = ACTIONS(1956), - [anon_sym_signed] = ACTIONS(1956), - [anon_sym_unsigned] = ACTIONS(1956), - [anon_sym_char] = ACTIONS(1956), - [anon_sym_short] = ACTIONS(1956), - [anon_sym_long] = ACTIONS(1956), - [anon_sym_const] = ACTIONS(1956), - [anon_sym_volatile] = ACTIONS(1956), - [anon_sym_ctypedef] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1956), - [anon_sym_union] = ACTIONS(1956), - [anon_sym_enum] = ACTIONS(1956), - [anon_sym_cppclass] = ACTIONS(1956), - [anon_sym_fused] = ACTIONS(1956), - [anon_sym_public] = ACTIONS(1956), - [anon_sym_packed] = ACTIONS(1956), - [anon_sym_inline] = ACTIONS(1956), - [anon_sym_readonly] = ACTIONS(1956), - [anon_sym_sizeof] = ACTIONS(1956), - [sym__dedent] = ACTIONS(1958), - [sym_string_start] = ACTIONS(1958), + [anon_sym_property] = ACTIONS(1987), + [anon_sym_include] = ACTIONS(1987), + [anon_sym_DEF] = ACTIONS(1987), + [anon_sym_cdef] = ACTIONS(1987), + [anon_sym_cpdef] = ACTIONS(1987), + [anon_sym_int] = ACTIONS(1987), + [anon_sym_double] = ACTIONS(1987), + [anon_sym_complex] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_signed] = ACTIONS(1987), + [anon_sym_unsigned] = ACTIONS(1987), + [anon_sym_char] = ACTIONS(1987), + [anon_sym_short] = ACTIONS(1987), + [anon_sym_long] = ACTIONS(1987), + [anon_sym_const] = ACTIONS(1987), + [anon_sym_volatile] = ACTIONS(1987), + [anon_sym_ctypedef] = ACTIONS(1987), + [anon_sym_struct] = ACTIONS(1987), + [anon_sym_union] = ACTIONS(1987), + [anon_sym_enum] = ACTIONS(1987), + [anon_sym_cppclass] = ACTIONS(1987), + [anon_sym_fused] = ACTIONS(1987), + [anon_sym_public] = ACTIONS(1987), + [anon_sym_packed] = ACTIONS(1987), + [anon_sym_inline] = ACTIONS(1987), + [anon_sym_readonly] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1987), + [sym__dedent] = ACTIONS(1989), + [sym_string_start] = ACTIONS(1989), }, [585] = { - [sym_identifier] = ACTIONS(1960), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_import] = ACTIONS(1960), - [anon_sym_cimport] = ACTIONS(1960), - [anon_sym_from] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1962), - [anon_sym_print] = ACTIONS(1960), - [anon_sym_assert] = ACTIONS(1960), - [anon_sym_return] = ACTIONS(1960), - [anon_sym_del] = ACTIONS(1960), - [anon_sym_raise] = ACTIONS(1960), - [anon_sym_pass] = ACTIONS(1960), - [anon_sym_break] = ACTIONS(1960), - [anon_sym_continue] = ACTIONS(1960), - [anon_sym_if] = ACTIONS(1960), - [anon_sym_match] = ACTIONS(1960), - [anon_sym_async] = ACTIONS(1960), - [anon_sym_for] = ACTIONS(1960), - [anon_sym_while] = ACTIONS(1960), - [anon_sym_try] = ACTIONS(1960), - [anon_sym_with] = ACTIONS(1960), - [anon_sym_def] = ACTIONS(1960), - [anon_sym_global] = ACTIONS(1960), - [anon_sym_nonlocal] = ACTIONS(1960), - [anon_sym_exec] = ACTIONS(1960), - [anon_sym_type] = ACTIONS(1960), - [anon_sym_class] = ACTIONS(1960), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_AT] = ACTIONS(1962), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_LBRACE] = ACTIONS(1962), - [anon_sym_PLUS] = ACTIONS(1962), - [anon_sym_not] = ACTIONS(1960), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_TILDE] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_lambda] = ACTIONS(1960), - [anon_sym_yield] = ACTIONS(1960), - [sym_ellipsis] = ACTIONS(1962), - [anon_sym_None] = ACTIONS(1960), - [sym_integer] = ACTIONS(1960), - [sym_float] = ACTIONS(1962), - [anon_sym_await] = ACTIONS(1960), - [anon_sym_api] = ACTIONS(1960), - [sym_true] = ACTIONS(1960), - [sym_false] = ACTIONS(1960), + [sym_identifier] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1993), + [anon_sym_import] = ACTIONS(1991), + [anon_sym_cimport] = ACTIONS(1991), + [anon_sym_from] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1991), + [anon_sym_assert] = ACTIONS(1991), + [anon_sym_return] = ACTIONS(1991), + [anon_sym_del] = ACTIONS(1991), + [anon_sym_raise] = ACTIONS(1991), + [anon_sym_pass] = ACTIONS(1991), + [anon_sym_break] = ACTIONS(1991), + [anon_sym_continue] = ACTIONS(1991), + [anon_sym_if] = ACTIONS(1991), + [anon_sym_match] = ACTIONS(1991), + [anon_sym_async] = ACTIONS(1991), + [anon_sym_for] = ACTIONS(1991), + [anon_sym_while] = ACTIONS(1991), + [anon_sym_try] = ACTIONS(1991), + [anon_sym_with] = ACTIONS(1991), + [anon_sym_def] = ACTIONS(1991), + [anon_sym_global] = ACTIONS(1991), + [anon_sym_nonlocal] = ACTIONS(1991), + [anon_sym_exec] = ACTIONS(1991), + [anon_sym_type] = ACTIONS(1991), + [anon_sym_class] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1993), + [anon_sym_AT] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_not] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_LT] = ACTIONS(1993), + [anon_sym_lambda] = ACTIONS(1991), + [anon_sym_yield] = ACTIONS(1991), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1993), + [anon_sym_None] = ACTIONS(1991), + [sym_integer] = ACTIONS(1991), + [sym_float] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(1991), + [anon_sym_api] = ACTIONS(1991), + [sym_true] = ACTIONS(1991), + [sym_false] = ACTIONS(1991), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1960), - [anon_sym_include] = ACTIONS(1960), - [anon_sym_DEF] = ACTIONS(1960), - [anon_sym_cdef] = ACTIONS(1960), - [anon_sym_cpdef] = ACTIONS(1960), - [anon_sym_int] = ACTIONS(1960), - [anon_sym_double] = ACTIONS(1960), - [anon_sym_complex] = ACTIONS(1960), - [anon_sym_new] = ACTIONS(1960), - [anon_sym_signed] = ACTIONS(1960), - [anon_sym_unsigned] = ACTIONS(1960), - [anon_sym_char] = ACTIONS(1960), - [anon_sym_short] = ACTIONS(1960), - [anon_sym_long] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1960), - [anon_sym_volatile] = ACTIONS(1960), - [anon_sym_ctypedef] = ACTIONS(1960), - [anon_sym_struct] = ACTIONS(1960), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_enum] = ACTIONS(1960), - [anon_sym_cppclass] = ACTIONS(1960), - [anon_sym_fused] = ACTIONS(1960), - [anon_sym_public] = ACTIONS(1960), - [anon_sym_packed] = ACTIONS(1960), - [anon_sym_inline] = ACTIONS(1960), - [anon_sym_readonly] = ACTIONS(1960), - [anon_sym_sizeof] = ACTIONS(1960), - [sym__dedent] = ACTIONS(1962), - [sym_string_start] = ACTIONS(1962), + [anon_sym_property] = ACTIONS(1991), + [anon_sym_include] = ACTIONS(1991), + [anon_sym_DEF] = ACTIONS(1991), + [anon_sym_cdef] = ACTIONS(1991), + [anon_sym_cpdef] = ACTIONS(1991), + [anon_sym_int] = ACTIONS(1991), + [anon_sym_double] = ACTIONS(1991), + [anon_sym_complex] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1991), + [anon_sym_signed] = ACTIONS(1991), + [anon_sym_unsigned] = ACTIONS(1991), + [anon_sym_char] = ACTIONS(1991), + [anon_sym_short] = ACTIONS(1991), + [anon_sym_long] = ACTIONS(1991), + [anon_sym_const] = ACTIONS(1991), + [anon_sym_volatile] = ACTIONS(1991), + [anon_sym_ctypedef] = ACTIONS(1991), + [anon_sym_struct] = ACTIONS(1991), + [anon_sym_union] = ACTIONS(1991), + [anon_sym_enum] = ACTIONS(1991), + [anon_sym_cppclass] = ACTIONS(1991), + [anon_sym_fused] = ACTIONS(1991), + [anon_sym_public] = ACTIONS(1991), + [anon_sym_packed] = ACTIONS(1991), + [anon_sym_inline] = ACTIONS(1991), + [anon_sym_readonly] = ACTIONS(1991), + [anon_sym_sizeof] = ACTIONS(1991), + [sym__dedent] = ACTIONS(1993), + [sym_string_start] = ACTIONS(1993), }, [586] = { - [sym_identifier] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_import] = ACTIONS(1964), - [anon_sym_cimport] = ACTIONS(1964), - [anon_sym_from] = ACTIONS(1964), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1966), - [anon_sym_print] = ACTIONS(1964), - [anon_sym_assert] = ACTIONS(1964), - [anon_sym_return] = ACTIONS(1964), - [anon_sym_del] = ACTIONS(1964), - [anon_sym_raise] = ACTIONS(1964), - [anon_sym_pass] = ACTIONS(1964), - [anon_sym_break] = ACTIONS(1964), - [anon_sym_continue] = ACTIONS(1964), - [anon_sym_if] = ACTIONS(1964), - [anon_sym_match] = ACTIONS(1964), - [anon_sym_async] = ACTIONS(1964), - [anon_sym_for] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1964), - [anon_sym_try] = ACTIONS(1964), - [anon_sym_with] = ACTIONS(1964), - [anon_sym_def] = ACTIONS(1964), - [anon_sym_global] = ACTIONS(1964), - [anon_sym_nonlocal] = ACTIONS(1964), - [anon_sym_exec] = ACTIONS(1964), - [anon_sym_type] = ACTIONS(1964), - [anon_sym_class] = ACTIONS(1964), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_AT] = ACTIONS(1966), - [anon_sym_DASH] = ACTIONS(1966), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_PLUS] = ACTIONS(1966), - [anon_sym_not] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1966), - [anon_sym_TILDE] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_lambda] = ACTIONS(1964), - [anon_sym_yield] = ACTIONS(1964), - [sym_ellipsis] = ACTIONS(1966), - [anon_sym_None] = ACTIONS(1964), - [sym_integer] = ACTIONS(1964), - [sym_float] = ACTIONS(1966), - [anon_sym_await] = ACTIONS(1964), - [anon_sym_api] = ACTIONS(1964), - [sym_true] = ACTIONS(1964), - [sym_false] = ACTIONS(1964), + [sym_identifier] = ACTIONS(1995), + [anon_sym_SEMI] = ACTIONS(1997), + [anon_sym_import] = ACTIONS(1995), + [anon_sym_cimport] = ACTIONS(1995), + [anon_sym_from] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_STAR] = ACTIONS(1997), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_assert] = ACTIONS(1995), + [anon_sym_return] = ACTIONS(1995), + [anon_sym_del] = ACTIONS(1995), + [anon_sym_raise] = ACTIONS(1995), + [anon_sym_pass] = ACTIONS(1995), + [anon_sym_break] = ACTIONS(1995), + [anon_sym_continue] = ACTIONS(1995), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_match] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_for] = ACTIONS(1995), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_try] = ACTIONS(1995), + [anon_sym_with] = ACTIONS(1995), + [anon_sym_def] = ACTIONS(1995), + [anon_sym_global] = ACTIONS(1995), + [anon_sym_nonlocal] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_type] = ACTIONS(1995), + [anon_sym_class] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_AT] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_not] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1997), + [anon_sym_TILDE] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1997), + [anon_sym_lambda] = ACTIONS(1995), + [anon_sym_yield] = ACTIONS(1995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1997), + [anon_sym_None] = ACTIONS(1995), + [sym_integer] = ACTIONS(1995), + [sym_float] = ACTIONS(1997), + [anon_sym_await] = ACTIONS(1995), + [anon_sym_api] = ACTIONS(1995), + [sym_true] = ACTIONS(1995), + [sym_false] = ACTIONS(1995), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1964), - [anon_sym_include] = ACTIONS(1964), - [anon_sym_DEF] = ACTIONS(1964), - [anon_sym_cdef] = ACTIONS(1964), - [anon_sym_cpdef] = ACTIONS(1964), - [anon_sym_int] = ACTIONS(1964), - [anon_sym_double] = ACTIONS(1964), - [anon_sym_complex] = ACTIONS(1964), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_signed] = ACTIONS(1964), - [anon_sym_unsigned] = ACTIONS(1964), - [anon_sym_char] = ACTIONS(1964), - [anon_sym_short] = ACTIONS(1964), - [anon_sym_long] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1964), - [anon_sym_volatile] = ACTIONS(1964), - [anon_sym_ctypedef] = ACTIONS(1964), - [anon_sym_struct] = ACTIONS(1964), - [anon_sym_union] = ACTIONS(1964), - [anon_sym_enum] = ACTIONS(1964), - [anon_sym_cppclass] = ACTIONS(1964), - [anon_sym_fused] = ACTIONS(1964), - [anon_sym_public] = ACTIONS(1964), - [anon_sym_packed] = ACTIONS(1964), - [anon_sym_inline] = ACTIONS(1964), - [anon_sym_readonly] = ACTIONS(1964), - [anon_sym_sizeof] = ACTIONS(1964), - [sym__dedent] = ACTIONS(1966), - [sym_string_start] = ACTIONS(1966), + [anon_sym_property] = ACTIONS(1995), + [anon_sym_include] = ACTIONS(1995), + [anon_sym_DEF] = ACTIONS(1995), + [anon_sym_cdef] = ACTIONS(1995), + [anon_sym_cpdef] = ACTIONS(1995), + [anon_sym_int] = ACTIONS(1995), + [anon_sym_double] = ACTIONS(1995), + [anon_sym_complex] = ACTIONS(1995), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_signed] = ACTIONS(1995), + [anon_sym_unsigned] = ACTIONS(1995), + [anon_sym_char] = ACTIONS(1995), + [anon_sym_short] = ACTIONS(1995), + [anon_sym_long] = ACTIONS(1995), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_volatile] = ACTIONS(1995), + [anon_sym_ctypedef] = ACTIONS(1995), + [anon_sym_struct] = ACTIONS(1995), + [anon_sym_union] = ACTIONS(1995), + [anon_sym_enum] = ACTIONS(1995), + [anon_sym_cppclass] = ACTIONS(1995), + [anon_sym_fused] = ACTIONS(1995), + [anon_sym_public] = ACTIONS(1995), + [anon_sym_packed] = ACTIONS(1995), + [anon_sym_inline] = ACTIONS(1995), + [anon_sym_readonly] = ACTIONS(1995), + [anon_sym_sizeof] = ACTIONS(1995), + [sym__dedent] = ACTIONS(1997), + [sym_string_start] = ACTIONS(1997), }, [587] = { - [sym_identifier] = ACTIONS(1968), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_import] = ACTIONS(1968), - [anon_sym_cimport] = ACTIONS(1968), - [anon_sym_from] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_print] = ACTIONS(1968), - [anon_sym_assert] = ACTIONS(1968), - [anon_sym_return] = ACTIONS(1968), - [anon_sym_del] = ACTIONS(1968), - [anon_sym_raise] = ACTIONS(1968), - [anon_sym_pass] = ACTIONS(1968), - [anon_sym_break] = ACTIONS(1968), - [anon_sym_continue] = ACTIONS(1968), - [anon_sym_if] = ACTIONS(1968), - [anon_sym_match] = ACTIONS(1968), - [anon_sym_async] = ACTIONS(1968), - [anon_sym_for] = ACTIONS(1968), - [anon_sym_while] = ACTIONS(1968), - [anon_sym_try] = ACTIONS(1968), - [anon_sym_with] = ACTIONS(1968), - [anon_sym_def] = ACTIONS(1968), - [anon_sym_global] = ACTIONS(1968), - [anon_sym_nonlocal] = ACTIONS(1968), - [anon_sym_exec] = ACTIONS(1968), - [anon_sym_type] = ACTIONS(1968), - [anon_sym_class] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_AT] = ACTIONS(1970), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_PLUS] = ACTIONS(1970), - [anon_sym_not] = ACTIONS(1968), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_TILDE] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_lambda] = ACTIONS(1968), - [anon_sym_yield] = ACTIONS(1968), - [sym_ellipsis] = ACTIONS(1970), - [anon_sym_None] = ACTIONS(1968), - [sym_integer] = ACTIONS(1968), - [sym_float] = ACTIONS(1970), - [anon_sym_await] = ACTIONS(1968), - [anon_sym_api] = ACTIONS(1968), - [sym_true] = ACTIONS(1968), - [sym_false] = ACTIONS(1968), + [sym_identifier] = ACTIONS(1999), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_import] = ACTIONS(1999), + [anon_sym_cimport] = ACTIONS(1999), + [anon_sym_from] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_print] = ACTIONS(1999), + [anon_sym_assert] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(1999), + [anon_sym_del] = ACTIONS(1999), + [anon_sym_raise] = ACTIONS(1999), + [anon_sym_pass] = ACTIONS(1999), + [anon_sym_break] = ACTIONS(1999), + [anon_sym_continue] = ACTIONS(1999), + [anon_sym_if] = ACTIONS(1999), + [anon_sym_match] = ACTIONS(1999), + [anon_sym_async] = ACTIONS(1999), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_while] = ACTIONS(1999), + [anon_sym_try] = ACTIONS(1999), + [anon_sym_with] = ACTIONS(1999), + [anon_sym_def] = ACTIONS(1999), + [anon_sym_global] = ACTIONS(1999), + [anon_sym_nonlocal] = ACTIONS(1999), + [anon_sym_exec] = ACTIONS(1999), + [anon_sym_type] = ACTIONS(1999), + [anon_sym_class] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(2001), + [anon_sym_AT] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_not] = ACTIONS(1999), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_TILDE] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_lambda] = ACTIONS(1999), + [anon_sym_yield] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), + [anon_sym_None] = ACTIONS(1999), + [sym_integer] = ACTIONS(1999), + [sym_float] = ACTIONS(2001), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_api] = ACTIONS(1999), + [sym_true] = ACTIONS(1999), + [sym_false] = ACTIONS(1999), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1968), - [anon_sym_include] = ACTIONS(1968), - [anon_sym_DEF] = ACTIONS(1968), - [anon_sym_cdef] = ACTIONS(1968), - [anon_sym_cpdef] = ACTIONS(1968), - [anon_sym_int] = ACTIONS(1968), - [anon_sym_double] = ACTIONS(1968), - [anon_sym_complex] = ACTIONS(1968), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_signed] = ACTIONS(1968), - [anon_sym_unsigned] = ACTIONS(1968), - [anon_sym_char] = ACTIONS(1968), - [anon_sym_short] = ACTIONS(1968), - [anon_sym_long] = ACTIONS(1968), - [anon_sym_const] = ACTIONS(1968), - [anon_sym_volatile] = ACTIONS(1968), - [anon_sym_ctypedef] = ACTIONS(1968), - [anon_sym_struct] = ACTIONS(1968), - [anon_sym_union] = ACTIONS(1968), - [anon_sym_enum] = ACTIONS(1968), - [anon_sym_cppclass] = ACTIONS(1968), - [anon_sym_fused] = ACTIONS(1968), - [anon_sym_public] = ACTIONS(1968), - [anon_sym_packed] = ACTIONS(1968), - [anon_sym_inline] = ACTIONS(1968), - [anon_sym_readonly] = ACTIONS(1968), - [anon_sym_sizeof] = ACTIONS(1968), - [sym__dedent] = ACTIONS(1970), - [sym_string_start] = ACTIONS(1970), + [anon_sym_property] = ACTIONS(1999), + [anon_sym_include] = ACTIONS(1999), + [anon_sym_DEF] = ACTIONS(1999), + [anon_sym_cdef] = ACTIONS(1999), + [anon_sym_cpdef] = ACTIONS(1999), + [anon_sym_int] = ACTIONS(1999), + [anon_sym_double] = ACTIONS(1999), + [anon_sym_complex] = ACTIONS(1999), + [anon_sym_new] = ACTIONS(1999), + [anon_sym_signed] = ACTIONS(1999), + [anon_sym_unsigned] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_short] = ACTIONS(1999), + [anon_sym_long] = ACTIONS(1999), + [anon_sym_const] = ACTIONS(1999), + [anon_sym_volatile] = ACTIONS(1999), + [anon_sym_ctypedef] = ACTIONS(1999), + [anon_sym_struct] = ACTIONS(1999), + [anon_sym_union] = ACTIONS(1999), + [anon_sym_enum] = ACTIONS(1999), + [anon_sym_cppclass] = ACTIONS(1999), + [anon_sym_fused] = ACTIONS(1999), + [anon_sym_public] = ACTIONS(1999), + [anon_sym_packed] = ACTIONS(1999), + [anon_sym_inline] = ACTIONS(1999), + [anon_sym_readonly] = ACTIONS(1999), + [anon_sym_sizeof] = ACTIONS(1999), + [sym__dedent] = ACTIONS(2001), + [sym_string_start] = ACTIONS(2001), }, [588] = { - [sym_identifier] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_import] = ACTIONS(1964), - [anon_sym_cimport] = ACTIONS(1964), - [anon_sym_from] = ACTIONS(1964), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1966), - [anon_sym_print] = ACTIONS(1964), - [anon_sym_assert] = ACTIONS(1964), - [anon_sym_return] = ACTIONS(1964), - [anon_sym_del] = ACTIONS(1964), - [anon_sym_raise] = ACTIONS(1964), - [anon_sym_pass] = ACTIONS(1964), - [anon_sym_break] = ACTIONS(1964), - [anon_sym_continue] = ACTIONS(1964), - [anon_sym_if] = ACTIONS(1964), - [anon_sym_match] = ACTIONS(1964), - [anon_sym_async] = ACTIONS(1964), - [anon_sym_for] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1964), - [anon_sym_try] = ACTIONS(1964), - [anon_sym_with] = ACTIONS(1964), - [anon_sym_def] = ACTIONS(1964), - [anon_sym_global] = ACTIONS(1964), - [anon_sym_nonlocal] = ACTIONS(1964), - [anon_sym_exec] = ACTIONS(1964), - [anon_sym_type] = ACTIONS(1964), - [anon_sym_class] = ACTIONS(1964), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_AT] = ACTIONS(1966), - [anon_sym_DASH] = ACTIONS(1966), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_PLUS] = ACTIONS(1966), - [anon_sym_not] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1966), - [anon_sym_TILDE] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_lambda] = ACTIONS(1964), - [anon_sym_yield] = ACTIONS(1964), - [sym_ellipsis] = ACTIONS(1966), - [anon_sym_None] = ACTIONS(1964), - [sym_integer] = ACTIONS(1964), - [sym_float] = ACTIONS(1966), - [anon_sym_await] = ACTIONS(1964), - [anon_sym_api] = ACTIONS(1964), - [sym_true] = ACTIONS(1964), - [sym_false] = ACTIONS(1964), + [sym_identifier] = ACTIONS(2003), + [anon_sym_SEMI] = ACTIONS(2005), + [anon_sym_import] = ACTIONS(2003), + [anon_sym_cimport] = ACTIONS(2003), + [anon_sym_from] = ACTIONS(2003), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_STAR] = ACTIONS(2005), + [anon_sym_print] = ACTIONS(2003), + [anon_sym_assert] = ACTIONS(2003), + [anon_sym_return] = ACTIONS(2003), + [anon_sym_del] = ACTIONS(2003), + [anon_sym_raise] = ACTIONS(2003), + [anon_sym_pass] = ACTIONS(2003), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2003), + [anon_sym_if] = ACTIONS(2003), + [anon_sym_match] = ACTIONS(2003), + [anon_sym_async] = ACTIONS(2003), + [anon_sym_for] = ACTIONS(2003), + [anon_sym_while] = ACTIONS(2003), + [anon_sym_try] = ACTIONS(2003), + [anon_sym_with] = ACTIONS(2003), + [anon_sym_def] = ACTIONS(2003), + [anon_sym_global] = ACTIONS(2003), + [anon_sym_nonlocal] = ACTIONS(2003), + [anon_sym_exec] = ACTIONS(2003), + [anon_sym_type] = ACTIONS(2003), + [anon_sym_class] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2005), + [anon_sym_AT] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(2003), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(2005), + [anon_sym_lambda] = ACTIONS(2003), + [anon_sym_yield] = ACTIONS(2003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2005), + [anon_sym_None] = ACTIONS(2003), + [sym_integer] = ACTIONS(2003), + [sym_float] = ACTIONS(2005), + [anon_sym_await] = ACTIONS(2003), + [anon_sym_api] = ACTIONS(2003), + [sym_true] = ACTIONS(2003), + [sym_false] = ACTIONS(2003), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1964), - [anon_sym_include] = ACTIONS(1964), - [anon_sym_DEF] = ACTIONS(1964), - [anon_sym_cdef] = ACTIONS(1964), - [anon_sym_cpdef] = ACTIONS(1964), - [anon_sym_int] = ACTIONS(1964), - [anon_sym_double] = ACTIONS(1964), - [anon_sym_complex] = ACTIONS(1964), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_signed] = ACTIONS(1964), - [anon_sym_unsigned] = ACTIONS(1964), - [anon_sym_char] = ACTIONS(1964), - [anon_sym_short] = ACTIONS(1964), - [anon_sym_long] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1964), - [anon_sym_volatile] = ACTIONS(1964), - [anon_sym_ctypedef] = ACTIONS(1964), - [anon_sym_struct] = ACTIONS(1964), - [anon_sym_union] = ACTIONS(1964), - [anon_sym_enum] = ACTIONS(1964), - [anon_sym_cppclass] = ACTIONS(1964), - [anon_sym_fused] = ACTIONS(1964), - [anon_sym_public] = ACTIONS(1964), - [anon_sym_packed] = ACTIONS(1964), - [anon_sym_inline] = ACTIONS(1964), - [anon_sym_readonly] = ACTIONS(1964), - [anon_sym_sizeof] = ACTIONS(1964), - [sym__dedent] = ACTIONS(1966), - [sym_string_start] = ACTIONS(1966), + [anon_sym_property] = ACTIONS(2003), + [anon_sym_include] = ACTIONS(2003), + [anon_sym_DEF] = ACTIONS(2003), + [anon_sym_cdef] = ACTIONS(2003), + [anon_sym_cpdef] = ACTIONS(2003), + [anon_sym_int] = ACTIONS(2003), + [anon_sym_double] = ACTIONS(2003), + [anon_sym_complex] = ACTIONS(2003), + [anon_sym_new] = ACTIONS(2003), + [anon_sym_signed] = ACTIONS(2003), + [anon_sym_unsigned] = ACTIONS(2003), + [anon_sym_char] = ACTIONS(2003), + [anon_sym_short] = ACTIONS(2003), + [anon_sym_long] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2003), + [anon_sym_volatile] = ACTIONS(2003), + [anon_sym_ctypedef] = ACTIONS(2003), + [anon_sym_struct] = ACTIONS(2003), + [anon_sym_union] = ACTIONS(2003), + [anon_sym_enum] = ACTIONS(2003), + [anon_sym_cppclass] = ACTIONS(2003), + [anon_sym_fused] = ACTIONS(2003), + [anon_sym_public] = ACTIONS(2003), + [anon_sym_packed] = ACTIONS(2003), + [anon_sym_inline] = ACTIONS(2003), + [anon_sym_readonly] = ACTIONS(2003), + [anon_sym_sizeof] = ACTIONS(2003), + [sym__dedent] = ACTIONS(2005), + [sym_string_start] = ACTIONS(2005), }, [589] = { - [sym_identifier] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_import] = ACTIONS(1972), - [anon_sym_cimport] = ACTIONS(1972), - [anon_sym_from] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1974), - [anon_sym_print] = ACTIONS(1972), - [anon_sym_assert] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_del] = ACTIONS(1972), - [anon_sym_raise] = ACTIONS(1972), - [anon_sym_pass] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_match] = ACTIONS(1972), - [anon_sym_async] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_try] = ACTIONS(1972), - [anon_sym_with] = ACTIONS(1972), - [anon_sym_def] = ACTIONS(1972), - [anon_sym_global] = ACTIONS(1972), - [anon_sym_nonlocal] = ACTIONS(1972), - [anon_sym_exec] = ACTIONS(1972), - [anon_sym_type] = ACTIONS(1972), - [anon_sym_class] = ACTIONS(1972), - [anon_sym_LBRACK] = ACTIONS(1974), - [anon_sym_AT] = ACTIONS(1974), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_not] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1974), - [anon_sym_TILDE] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_lambda] = ACTIONS(1972), - [anon_sym_yield] = ACTIONS(1972), - [sym_ellipsis] = ACTIONS(1974), - [anon_sym_None] = ACTIONS(1972), - [sym_integer] = ACTIONS(1972), - [sym_float] = ACTIONS(1974), - [anon_sym_await] = ACTIONS(1972), - [anon_sym_api] = ACTIONS(1972), - [sym_true] = ACTIONS(1972), - [sym_false] = ACTIONS(1972), + [sym_identifier] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(2009), + [anon_sym_import] = ACTIONS(2007), + [anon_sym_cimport] = ACTIONS(2007), + [anon_sym_from] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_STAR] = ACTIONS(2009), + [anon_sym_print] = ACTIONS(2007), + [anon_sym_assert] = ACTIONS(2007), + [anon_sym_return] = ACTIONS(2007), + [anon_sym_del] = ACTIONS(2007), + [anon_sym_raise] = ACTIONS(2007), + [anon_sym_pass] = ACTIONS(2007), + [anon_sym_break] = ACTIONS(2007), + [anon_sym_continue] = ACTIONS(2007), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_match] = ACTIONS(2007), + [anon_sym_async] = ACTIONS(2007), + [anon_sym_for] = ACTIONS(2007), + [anon_sym_while] = ACTIONS(2007), + [anon_sym_try] = ACTIONS(2007), + [anon_sym_with] = ACTIONS(2007), + [anon_sym_def] = ACTIONS(2007), + [anon_sym_global] = ACTIONS(2007), + [anon_sym_nonlocal] = ACTIONS(2007), + [anon_sym_exec] = ACTIONS(2007), + [anon_sym_type] = ACTIONS(2007), + [anon_sym_class] = ACTIONS(2007), + [anon_sym_LBRACK] = ACTIONS(2009), + [anon_sym_AT] = ACTIONS(2009), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2009), + [anon_sym_not] = ACTIONS(2007), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_lambda] = ACTIONS(2007), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2009), + [anon_sym_None] = ACTIONS(2007), + [sym_integer] = ACTIONS(2007), + [sym_float] = ACTIONS(2009), + [anon_sym_await] = ACTIONS(2007), + [anon_sym_api] = ACTIONS(2007), + [sym_true] = ACTIONS(2007), + [sym_false] = ACTIONS(2007), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1972), - [anon_sym_include] = ACTIONS(1972), - [anon_sym_DEF] = ACTIONS(1972), - [anon_sym_cdef] = ACTIONS(1972), - [anon_sym_cpdef] = ACTIONS(1972), - [anon_sym_int] = ACTIONS(1972), - [anon_sym_double] = ACTIONS(1972), - [anon_sym_complex] = ACTIONS(1972), - [anon_sym_new] = ACTIONS(1972), - [anon_sym_signed] = ACTIONS(1972), - [anon_sym_unsigned] = ACTIONS(1972), - [anon_sym_char] = ACTIONS(1972), - [anon_sym_short] = ACTIONS(1972), - [anon_sym_long] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [anon_sym_volatile] = ACTIONS(1972), - [anon_sym_ctypedef] = ACTIONS(1972), - [anon_sym_struct] = ACTIONS(1972), - [anon_sym_union] = ACTIONS(1972), - [anon_sym_enum] = ACTIONS(1972), - [anon_sym_cppclass] = ACTIONS(1972), - [anon_sym_fused] = ACTIONS(1972), - [anon_sym_public] = ACTIONS(1972), - [anon_sym_packed] = ACTIONS(1972), - [anon_sym_inline] = ACTIONS(1972), - [anon_sym_readonly] = ACTIONS(1972), - [anon_sym_sizeof] = ACTIONS(1972), - [sym__dedent] = ACTIONS(1974), - [sym_string_start] = ACTIONS(1974), + [anon_sym_property] = ACTIONS(2007), + [anon_sym_include] = ACTIONS(2007), + [anon_sym_DEF] = ACTIONS(2007), + [anon_sym_cdef] = ACTIONS(2007), + [anon_sym_cpdef] = ACTIONS(2007), + [anon_sym_int] = ACTIONS(2007), + [anon_sym_double] = ACTIONS(2007), + [anon_sym_complex] = ACTIONS(2007), + [anon_sym_new] = ACTIONS(2007), + [anon_sym_signed] = ACTIONS(2007), + [anon_sym_unsigned] = ACTIONS(2007), + [anon_sym_char] = ACTIONS(2007), + [anon_sym_short] = ACTIONS(2007), + [anon_sym_long] = ACTIONS(2007), + [anon_sym_const] = ACTIONS(2007), + [anon_sym_volatile] = ACTIONS(2007), + [anon_sym_ctypedef] = ACTIONS(2007), + [anon_sym_struct] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_enum] = ACTIONS(2007), + [anon_sym_cppclass] = ACTIONS(2007), + [anon_sym_fused] = ACTIONS(2007), + [anon_sym_public] = ACTIONS(2007), + [anon_sym_packed] = ACTIONS(2007), + [anon_sym_inline] = ACTIONS(2007), + [anon_sym_readonly] = ACTIONS(2007), + [anon_sym_sizeof] = ACTIONS(2007), + [sym__dedent] = ACTIONS(2009), + [sym_string_start] = ACTIONS(2009), }, [590] = { - [sym_identifier] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_import] = ACTIONS(1964), - [anon_sym_cimport] = ACTIONS(1964), - [anon_sym_from] = ACTIONS(1964), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1966), - [anon_sym_print] = ACTIONS(1964), - [anon_sym_assert] = ACTIONS(1964), - [anon_sym_return] = ACTIONS(1964), - [anon_sym_del] = ACTIONS(1964), - [anon_sym_raise] = ACTIONS(1964), - [anon_sym_pass] = ACTIONS(1964), - [anon_sym_break] = ACTIONS(1964), - [anon_sym_continue] = ACTIONS(1964), - [anon_sym_if] = ACTIONS(1964), - [anon_sym_match] = ACTIONS(1964), - [anon_sym_async] = ACTIONS(1964), - [anon_sym_for] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1964), - [anon_sym_try] = ACTIONS(1964), - [anon_sym_with] = ACTIONS(1964), - [anon_sym_def] = ACTIONS(1964), - [anon_sym_global] = ACTIONS(1964), - [anon_sym_nonlocal] = ACTIONS(1964), - [anon_sym_exec] = ACTIONS(1964), - [anon_sym_type] = ACTIONS(1964), - [anon_sym_class] = ACTIONS(1964), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_AT] = ACTIONS(1966), - [anon_sym_DASH] = ACTIONS(1966), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_PLUS] = ACTIONS(1966), - [anon_sym_not] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1966), - [anon_sym_TILDE] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_lambda] = ACTIONS(1964), - [anon_sym_yield] = ACTIONS(1964), - [sym_ellipsis] = ACTIONS(1966), - [anon_sym_None] = ACTIONS(1964), - [sym_integer] = ACTIONS(1964), - [sym_float] = ACTIONS(1966), - [anon_sym_await] = ACTIONS(1964), - [anon_sym_api] = ACTIONS(1964), - [sym_true] = ACTIONS(1964), - [sym_false] = ACTIONS(1964), + [sym_identifier] = ACTIONS(2003), + [anon_sym_SEMI] = ACTIONS(2005), + [anon_sym_import] = ACTIONS(2003), + [anon_sym_cimport] = ACTIONS(2003), + [anon_sym_from] = ACTIONS(2003), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_STAR] = ACTIONS(2005), + [anon_sym_print] = ACTIONS(2003), + [anon_sym_assert] = ACTIONS(2003), + [anon_sym_return] = ACTIONS(2003), + [anon_sym_del] = ACTIONS(2003), + [anon_sym_raise] = ACTIONS(2003), + [anon_sym_pass] = ACTIONS(2003), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2003), + [anon_sym_if] = ACTIONS(2003), + [anon_sym_match] = ACTIONS(2003), + [anon_sym_async] = ACTIONS(2003), + [anon_sym_for] = ACTIONS(2003), + [anon_sym_while] = ACTIONS(2003), + [anon_sym_try] = ACTIONS(2003), + [anon_sym_with] = ACTIONS(2003), + [anon_sym_def] = ACTIONS(2003), + [anon_sym_global] = ACTIONS(2003), + [anon_sym_nonlocal] = ACTIONS(2003), + [anon_sym_exec] = ACTIONS(2003), + [anon_sym_type] = ACTIONS(2003), + [anon_sym_class] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2005), + [anon_sym_AT] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(2003), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(2005), + [anon_sym_lambda] = ACTIONS(2003), + [anon_sym_yield] = ACTIONS(2003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2005), + [anon_sym_None] = ACTIONS(2003), + [sym_integer] = ACTIONS(2003), + [sym_float] = ACTIONS(2005), + [anon_sym_await] = ACTIONS(2003), + [anon_sym_api] = ACTIONS(2003), + [sym_true] = ACTIONS(2003), + [sym_false] = ACTIONS(2003), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1964), - [anon_sym_include] = ACTIONS(1964), - [anon_sym_DEF] = ACTIONS(1964), - [anon_sym_cdef] = ACTIONS(1964), - [anon_sym_cpdef] = ACTIONS(1964), - [anon_sym_int] = ACTIONS(1964), - [anon_sym_double] = ACTIONS(1964), - [anon_sym_complex] = ACTIONS(1964), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_signed] = ACTIONS(1964), - [anon_sym_unsigned] = ACTIONS(1964), - [anon_sym_char] = ACTIONS(1964), - [anon_sym_short] = ACTIONS(1964), - [anon_sym_long] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1964), - [anon_sym_volatile] = ACTIONS(1964), - [anon_sym_ctypedef] = ACTIONS(1964), - [anon_sym_struct] = ACTIONS(1964), - [anon_sym_union] = ACTIONS(1964), - [anon_sym_enum] = ACTIONS(1964), - [anon_sym_cppclass] = ACTIONS(1964), - [anon_sym_fused] = ACTIONS(1964), - [anon_sym_public] = ACTIONS(1964), - [anon_sym_packed] = ACTIONS(1964), - [anon_sym_inline] = ACTIONS(1964), - [anon_sym_readonly] = ACTIONS(1964), - [anon_sym_sizeof] = ACTIONS(1964), - [sym__dedent] = ACTIONS(1966), - [sym_string_start] = ACTIONS(1966), + [anon_sym_property] = ACTIONS(2003), + [anon_sym_include] = ACTIONS(2003), + [anon_sym_DEF] = ACTIONS(2003), + [anon_sym_cdef] = ACTIONS(2003), + [anon_sym_cpdef] = ACTIONS(2003), + [anon_sym_int] = ACTIONS(2003), + [anon_sym_double] = ACTIONS(2003), + [anon_sym_complex] = ACTIONS(2003), + [anon_sym_new] = ACTIONS(2003), + [anon_sym_signed] = ACTIONS(2003), + [anon_sym_unsigned] = ACTIONS(2003), + [anon_sym_char] = ACTIONS(2003), + [anon_sym_short] = ACTIONS(2003), + [anon_sym_long] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2003), + [anon_sym_volatile] = ACTIONS(2003), + [anon_sym_ctypedef] = ACTIONS(2003), + [anon_sym_struct] = ACTIONS(2003), + [anon_sym_union] = ACTIONS(2003), + [anon_sym_enum] = ACTIONS(2003), + [anon_sym_cppclass] = ACTIONS(2003), + [anon_sym_fused] = ACTIONS(2003), + [anon_sym_public] = ACTIONS(2003), + [anon_sym_packed] = ACTIONS(2003), + [anon_sym_inline] = ACTIONS(2003), + [anon_sym_readonly] = ACTIONS(2003), + [anon_sym_sizeof] = ACTIONS(2003), + [sym__dedent] = ACTIONS(2005), + [sym_string_start] = ACTIONS(2005), }, [591] = { - [sym_identifier] = ACTIONS(1976), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_import] = ACTIONS(1976), - [anon_sym_cimport] = ACTIONS(1976), - [anon_sym_from] = ACTIONS(1976), - [anon_sym_LPAREN] = ACTIONS(1978), - [anon_sym_STAR] = ACTIONS(1978), - [anon_sym_print] = ACTIONS(1976), - [anon_sym_assert] = ACTIONS(1976), - [anon_sym_return] = ACTIONS(1976), - [anon_sym_del] = ACTIONS(1976), - [anon_sym_raise] = ACTIONS(1976), - [anon_sym_pass] = ACTIONS(1976), - [anon_sym_break] = ACTIONS(1976), - [anon_sym_continue] = ACTIONS(1976), - [anon_sym_if] = ACTIONS(1976), - [anon_sym_match] = ACTIONS(1976), - [anon_sym_async] = ACTIONS(1976), - [anon_sym_for] = ACTIONS(1976), - [anon_sym_while] = ACTIONS(1976), - [anon_sym_try] = ACTIONS(1976), - [anon_sym_with] = ACTIONS(1976), - [anon_sym_def] = ACTIONS(1976), - [anon_sym_global] = ACTIONS(1976), - [anon_sym_nonlocal] = ACTIONS(1976), - [anon_sym_exec] = ACTIONS(1976), - [anon_sym_type] = ACTIONS(1976), - [anon_sym_class] = ACTIONS(1976), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_AT] = ACTIONS(1978), - [anon_sym_DASH] = ACTIONS(1978), - [anon_sym_LBRACE] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(1978), - [anon_sym_not] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1978), - [anon_sym_TILDE] = ACTIONS(1978), - [anon_sym_LT] = ACTIONS(1978), - [anon_sym_lambda] = ACTIONS(1976), - [anon_sym_yield] = ACTIONS(1976), - [sym_ellipsis] = ACTIONS(1978), - [anon_sym_None] = ACTIONS(1976), - [sym_integer] = ACTIONS(1976), - [sym_float] = ACTIONS(1978), - [anon_sym_await] = ACTIONS(1976), - [anon_sym_api] = ACTIONS(1976), - [sym_true] = ACTIONS(1976), - [sym_false] = ACTIONS(1976), + [sym_identifier] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2013), + [anon_sym_import] = ACTIONS(2011), + [anon_sym_cimport] = ACTIONS(2011), + [anon_sym_from] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2013), + [anon_sym_print] = ACTIONS(2011), + [anon_sym_assert] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(2011), + [anon_sym_del] = ACTIONS(2011), + [anon_sym_raise] = ACTIONS(2011), + [anon_sym_pass] = ACTIONS(2011), + [anon_sym_break] = ACTIONS(2011), + [anon_sym_continue] = ACTIONS(2011), + [anon_sym_if] = ACTIONS(2011), + [anon_sym_match] = ACTIONS(2011), + [anon_sym_async] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2011), + [anon_sym_try] = ACTIONS(2011), + [anon_sym_with] = ACTIONS(2011), + [anon_sym_def] = ACTIONS(2011), + [anon_sym_global] = ACTIONS(2011), + [anon_sym_nonlocal] = ACTIONS(2011), + [anon_sym_exec] = ACTIONS(2011), + [anon_sym_type] = ACTIONS(2011), + [anon_sym_class] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2013), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_not] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2013), + [anon_sym_TILDE] = ACTIONS(2013), + [anon_sym_LT] = ACTIONS(2013), + [anon_sym_lambda] = ACTIONS(2011), + [anon_sym_yield] = ACTIONS(2011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2013), + [anon_sym_None] = ACTIONS(2011), + [sym_integer] = ACTIONS(2011), + [sym_float] = ACTIONS(2013), + [anon_sym_await] = ACTIONS(2011), + [anon_sym_api] = ACTIONS(2011), + [sym_true] = ACTIONS(2011), + [sym_false] = ACTIONS(2011), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1976), - [anon_sym_include] = ACTIONS(1976), - [anon_sym_DEF] = ACTIONS(1976), - [anon_sym_cdef] = ACTIONS(1976), - [anon_sym_cpdef] = ACTIONS(1976), - [anon_sym_int] = ACTIONS(1976), - [anon_sym_double] = ACTIONS(1976), - [anon_sym_complex] = ACTIONS(1976), - [anon_sym_new] = ACTIONS(1976), - [anon_sym_signed] = ACTIONS(1976), - [anon_sym_unsigned] = ACTIONS(1976), - [anon_sym_char] = ACTIONS(1976), - [anon_sym_short] = ACTIONS(1976), - [anon_sym_long] = ACTIONS(1976), - [anon_sym_const] = ACTIONS(1976), - [anon_sym_volatile] = ACTIONS(1976), - [anon_sym_ctypedef] = ACTIONS(1976), - [anon_sym_struct] = ACTIONS(1976), - [anon_sym_union] = ACTIONS(1976), - [anon_sym_enum] = ACTIONS(1976), - [anon_sym_cppclass] = ACTIONS(1976), - [anon_sym_fused] = ACTIONS(1976), - [anon_sym_public] = ACTIONS(1976), - [anon_sym_packed] = ACTIONS(1976), - [anon_sym_inline] = ACTIONS(1976), - [anon_sym_readonly] = ACTIONS(1976), - [anon_sym_sizeof] = ACTIONS(1976), - [sym__dedent] = ACTIONS(1978), - [sym_string_start] = ACTIONS(1978), + [anon_sym_property] = ACTIONS(2011), + [anon_sym_include] = ACTIONS(2011), + [anon_sym_DEF] = ACTIONS(2011), + [anon_sym_cdef] = ACTIONS(2011), + [anon_sym_cpdef] = ACTIONS(2011), + [anon_sym_int] = ACTIONS(2011), + [anon_sym_double] = ACTIONS(2011), + [anon_sym_complex] = ACTIONS(2011), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_signed] = ACTIONS(2011), + [anon_sym_unsigned] = ACTIONS(2011), + [anon_sym_char] = ACTIONS(2011), + [anon_sym_short] = ACTIONS(2011), + [anon_sym_long] = ACTIONS(2011), + [anon_sym_const] = ACTIONS(2011), + [anon_sym_volatile] = ACTIONS(2011), + [anon_sym_ctypedef] = ACTIONS(2011), + [anon_sym_struct] = ACTIONS(2011), + [anon_sym_union] = ACTIONS(2011), + [anon_sym_enum] = ACTIONS(2011), + [anon_sym_cppclass] = ACTIONS(2011), + [anon_sym_fused] = ACTIONS(2011), + [anon_sym_public] = ACTIONS(2011), + [anon_sym_packed] = ACTIONS(2011), + [anon_sym_inline] = ACTIONS(2011), + [anon_sym_readonly] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(2011), + [sym__dedent] = ACTIONS(2013), + [sym_string_start] = ACTIONS(2013), }, [592] = { - [sym_identifier] = ACTIONS(1980), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_import] = ACTIONS(1980), - [anon_sym_cimport] = ACTIONS(1980), - [anon_sym_from] = ACTIONS(1980), - [anon_sym_LPAREN] = ACTIONS(1982), - [anon_sym_STAR] = ACTIONS(1982), - [anon_sym_print] = ACTIONS(1980), - [anon_sym_assert] = ACTIONS(1980), - [anon_sym_return] = ACTIONS(1980), - [anon_sym_del] = ACTIONS(1980), - [anon_sym_raise] = ACTIONS(1980), - [anon_sym_pass] = ACTIONS(1980), - [anon_sym_break] = ACTIONS(1980), - [anon_sym_continue] = ACTIONS(1980), - [anon_sym_if] = ACTIONS(1980), - [anon_sym_match] = ACTIONS(1980), - [anon_sym_async] = ACTIONS(1980), - [anon_sym_for] = ACTIONS(1980), - [anon_sym_while] = ACTIONS(1980), - [anon_sym_try] = ACTIONS(1980), - [anon_sym_with] = ACTIONS(1980), - [anon_sym_def] = ACTIONS(1980), - [anon_sym_global] = ACTIONS(1980), - [anon_sym_nonlocal] = ACTIONS(1980), - [anon_sym_exec] = ACTIONS(1980), - [anon_sym_type] = ACTIONS(1980), - [anon_sym_class] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1982), - [anon_sym_AT] = ACTIONS(1982), - [anon_sym_DASH] = ACTIONS(1982), - [anon_sym_LBRACE] = ACTIONS(1982), - [anon_sym_PLUS] = ACTIONS(1982), - [anon_sym_not] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1982), - [anon_sym_TILDE] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1982), - [anon_sym_lambda] = ACTIONS(1980), - [anon_sym_yield] = ACTIONS(1980), - [sym_ellipsis] = ACTIONS(1982), - [anon_sym_None] = ACTIONS(1980), - [sym_integer] = ACTIONS(1980), - [sym_float] = ACTIONS(1982), - [anon_sym_await] = ACTIONS(1980), - [anon_sym_api] = ACTIONS(1980), - [sym_true] = ACTIONS(1980), - [sym_false] = ACTIONS(1980), + [sym_identifier] = ACTIONS(2003), + [anon_sym_SEMI] = ACTIONS(2005), + [anon_sym_import] = ACTIONS(2003), + [anon_sym_cimport] = ACTIONS(2003), + [anon_sym_from] = ACTIONS(2003), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_STAR] = ACTIONS(2005), + [anon_sym_print] = ACTIONS(2003), + [anon_sym_assert] = ACTIONS(2003), + [anon_sym_return] = ACTIONS(2003), + [anon_sym_del] = ACTIONS(2003), + [anon_sym_raise] = ACTIONS(2003), + [anon_sym_pass] = ACTIONS(2003), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2003), + [anon_sym_if] = ACTIONS(2003), + [anon_sym_match] = ACTIONS(2003), + [anon_sym_async] = ACTIONS(2003), + [anon_sym_for] = ACTIONS(2003), + [anon_sym_while] = ACTIONS(2003), + [anon_sym_try] = ACTIONS(2003), + [anon_sym_with] = ACTIONS(2003), + [anon_sym_def] = ACTIONS(2003), + [anon_sym_global] = ACTIONS(2003), + [anon_sym_nonlocal] = ACTIONS(2003), + [anon_sym_exec] = ACTIONS(2003), + [anon_sym_type] = ACTIONS(2003), + [anon_sym_class] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2005), + [anon_sym_AT] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(2003), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(2005), + [anon_sym_lambda] = ACTIONS(2003), + [anon_sym_yield] = ACTIONS(2003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2005), + [anon_sym_None] = ACTIONS(2003), + [sym_integer] = ACTIONS(2003), + [sym_float] = ACTIONS(2005), + [anon_sym_await] = ACTIONS(2003), + [anon_sym_api] = ACTIONS(2003), + [sym_true] = ACTIONS(2003), + [sym_false] = ACTIONS(2003), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1980), - [anon_sym_include] = ACTIONS(1980), - [anon_sym_DEF] = ACTIONS(1980), - [anon_sym_cdef] = ACTIONS(1980), - [anon_sym_cpdef] = ACTIONS(1980), - [anon_sym_int] = ACTIONS(1980), - [anon_sym_double] = ACTIONS(1980), - [anon_sym_complex] = ACTIONS(1980), - [anon_sym_new] = ACTIONS(1980), - [anon_sym_signed] = ACTIONS(1980), - [anon_sym_unsigned] = ACTIONS(1980), - [anon_sym_char] = ACTIONS(1980), - [anon_sym_short] = ACTIONS(1980), - [anon_sym_long] = ACTIONS(1980), - [anon_sym_const] = ACTIONS(1980), - [anon_sym_volatile] = ACTIONS(1980), - [anon_sym_ctypedef] = ACTIONS(1980), - [anon_sym_struct] = ACTIONS(1980), - [anon_sym_union] = ACTIONS(1980), - [anon_sym_enum] = ACTIONS(1980), - [anon_sym_cppclass] = ACTIONS(1980), - [anon_sym_fused] = ACTIONS(1980), - [anon_sym_public] = ACTIONS(1980), - [anon_sym_packed] = ACTIONS(1980), - [anon_sym_inline] = ACTIONS(1980), - [anon_sym_readonly] = ACTIONS(1980), - [anon_sym_sizeof] = ACTIONS(1980), - [sym__dedent] = ACTIONS(1982), - [sym_string_start] = ACTIONS(1982), + [anon_sym_property] = ACTIONS(2003), + [anon_sym_include] = ACTIONS(2003), + [anon_sym_DEF] = ACTIONS(2003), + [anon_sym_cdef] = ACTIONS(2003), + [anon_sym_cpdef] = ACTIONS(2003), + [anon_sym_int] = ACTIONS(2003), + [anon_sym_double] = ACTIONS(2003), + [anon_sym_complex] = ACTIONS(2003), + [anon_sym_new] = ACTIONS(2003), + [anon_sym_signed] = ACTIONS(2003), + [anon_sym_unsigned] = ACTIONS(2003), + [anon_sym_char] = ACTIONS(2003), + [anon_sym_short] = ACTIONS(2003), + [anon_sym_long] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2003), + [anon_sym_volatile] = ACTIONS(2003), + [anon_sym_ctypedef] = ACTIONS(2003), + [anon_sym_struct] = ACTIONS(2003), + [anon_sym_union] = ACTIONS(2003), + [anon_sym_enum] = ACTIONS(2003), + [anon_sym_cppclass] = ACTIONS(2003), + [anon_sym_fused] = ACTIONS(2003), + [anon_sym_public] = ACTIONS(2003), + [anon_sym_packed] = ACTIONS(2003), + [anon_sym_inline] = ACTIONS(2003), + [anon_sym_readonly] = ACTIONS(2003), + [anon_sym_sizeof] = ACTIONS(2003), + [sym__dedent] = ACTIONS(2005), + [sym_string_start] = ACTIONS(2005), }, [593] = { - [sym_identifier] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1704), - [anon_sym_import] = ACTIONS(1702), - [anon_sym_cimport] = ACTIONS(1702), - [anon_sym_from] = ACTIONS(1702), - [anon_sym_LPAREN] = ACTIONS(1704), - [anon_sym_STAR] = ACTIONS(1704), - [anon_sym_print] = ACTIONS(1702), - [anon_sym_assert] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_del] = ACTIONS(1702), - [anon_sym_raise] = ACTIONS(1702), - [anon_sym_pass] = ACTIONS(1702), - [anon_sym_break] = ACTIONS(1702), - [anon_sym_continue] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_match] = ACTIONS(1702), - [anon_sym_async] = ACTIONS(1702), - [anon_sym_for] = ACTIONS(1702), - [anon_sym_while] = ACTIONS(1702), - [anon_sym_try] = ACTIONS(1702), - [anon_sym_with] = ACTIONS(1702), - [anon_sym_def] = ACTIONS(1702), - [anon_sym_global] = ACTIONS(1702), - [anon_sym_nonlocal] = ACTIONS(1702), - [anon_sym_exec] = ACTIONS(1702), - [anon_sym_type] = ACTIONS(1702), - [anon_sym_class] = ACTIONS(1702), - [anon_sym_LBRACK] = ACTIONS(1704), - [anon_sym_AT] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(1704), - [anon_sym_PLUS] = ACTIONS(1704), - [anon_sym_not] = ACTIONS(1702), - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_lambda] = ACTIONS(1702), - [anon_sym_yield] = ACTIONS(1702), - [sym_ellipsis] = ACTIONS(1704), - [anon_sym_None] = ACTIONS(1702), - [sym_integer] = ACTIONS(1702), - [sym_float] = ACTIONS(1704), - [anon_sym_await] = ACTIONS(1702), - [anon_sym_api] = ACTIONS(1702), - [sym_true] = ACTIONS(1702), - [sym_false] = ACTIONS(1702), + [sym_identifier] = ACTIONS(2015), + [anon_sym_SEMI] = ACTIONS(2017), + [anon_sym_import] = ACTIONS(2015), + [anon_sym_cimport] = ACTIONS(2015), + [anon_sym_from] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_print] = ACTIONS(2015), + [anon_sym_assert] = ACTIONS(2015), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_del] = ACTIONS(2015), + [anon_sym_raise] = ACTIONS(2015), + [anon_sym_pass] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2015), + [anon_sym_continue] = ACTIONS(2015), + [anon_sym_if] = ACTIONS(2015), + [anon_sym_match] = ACTIONS(2015), + [anon_sym_async] = ACTIONS(2015), + [anon_sym_for] = ACTIONS(2015), + [anon_sym_while] = ACTIONS(2015), + [anon_sym_try] = ACTIONS(2015), + [anon_sym_with] = ACTIONS(2015), + [anon_sym_def] = ACTIONS(2015), + [anon_sym_global] = ACTIONS(2015), + [anon_sym_nonlocal] = ACTIONS(2015), + [anon_sym_exec] = ACTIONS(2015), + [anon_sym_type] = ACTIONS(2015), + [anon_sym_class] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_AT] = ACTIONS(2017), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2017), + [anon_sym_PLUS] = ACTIONS(2017), + [anon_sym_not] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2017), + [anon_sym_TILDE] = ACTIONS(2017), + [anon_sym_LT] = ACTIONS(2017), + [anon_sym_lambda] = ACTIONS(2015), + [anon_sym_yield] = ACTIONS(2015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2017), + [anon_sym_None] = ACTIONS(2015), + [sym_integer] = ACTIONS(2015), + [sym_float] = ACTIONS(2017), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_api] = ACTIONS(2015), + [sym_true] = ACTIONS(2015), + [sym_false] = ACTIONS(2015), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1702), - [anon_sym_include] = ACTIONS(1702), - [anon_sym_DEF] = ACTIONS(1702), - [anon_sym_cdef] = ACTIONS(1702), - [anon_sym_cpdef] = ACTIONS(1702), - [anon_sym_int] = ACTIONS(1702), - [anon_sym_double] = ACTIONS(1702), - [anon_sym_complex] = ACTIONS(1702), - [anon_sym_new] = ACTIONS(1702), - [anon_sym_signed] = ACTIONS(1702), - [anon_sym_unsigned] = ACTIONS(1702), - [anon_sym_char] = ACTIONS(1702), - [anon_sym_short] = ACTIONS(1702), - [anon_sym_long] = ACTIONS(1702), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_volatile] = ACTIONS(1702), - [anon_sym_ctypedef] = ACTIONS(1702), - [anon_sym_struct] = ACTIONS(1702), - [anon_sym_union] = ACTIONS(1702), - [anon_sym_enum] = ACTIONS(1702), - [anon_sym_cppclass] = ACTIONS(1702), - [anon_sym_fused] = ACTIONS(1702), - [anon_sym_public] = ACTIONS(1702), - [anon_sym_packed] = ACTIONS(1702), - [anon_sym_inline] = ACTIONS(1702), - [anon_sym_readonly] = ACTIONS(1702), - [anon_sym_sizeof] = ACTIONS(1702), - [sym__dedent] = ACTIONS(1704), - [sym_string_start] = ACTIONS(1704), + [anon_sym_property] = ACTIONS(2015), + [anon_sym_include] = ACTIONS(2015), + [anon_sym_DEF] = ACTIONS(2015), + [anon_sym_cdef] = ACTIONS(2015), + [anon_sym_cpdef] = ACTIONS(2015), + [anon_sym_int] = ACTIONS(2015), + [anon_sym_double] = ACTIONS(2015), + [anon_sym_complex] = ACTIONS(2015), + [anon_sym_new] = ACTIONS(2015), + [anon_sym_signed] = ACTIONS(2015), + [anon_sym_unsigned] = ACTIONS(2015), + [anon_sym_char] = ACTIONS(2015), + [anon_sym_short] = ACTIONS(2015), + [anon_sym_long] = ACTIONS(2015), + [anon_sym_const] = ACTIONS(2015), + [anon_sym_volatile] = ACTIONS(2015), + [anon_sym_ctypedef] = ACTIONS(2015), + [anon_sym_struct] = ACTIONS(2015), + [anon_sym_union] = ACTIONS(2015), + [anon_sym_enum] = ACTIONS(2015), + [anon_sym_cppclass] = ACTIONS(2015), + [anon_sym_fused] = ACTIONS(2015), + [anon_sym_public] = ACTIONS(2015), + [anon_sym_packed] = ACTIONS(2015), + [anon_sym_inline] = ACTIONS(2015), + [anon_sym_readonly] = ACTIONS(2015), + [anon_sym_sizeof] = ACTIONS(2015), + [sym__dedent] = ACTIONS(2017), + [sym_string_start] = ACTIONS(2017), }, [594] = { - [sym_identifier] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_import] = ACTIONS(1984), - [anon_sym_cimport] = ACTIONS(1984), - [anon_sym_from] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_print] = ACTIONS(1984), - [anon_sym_assert] = ACTIONS(1984), - [anon_sym_return] = ACTIONS(1984), - [anon_sym_del] = ACTIONS(1984), - [anon_sym_raise] = ACTIONS(1984), - [anon_sym_pass] = ACTIONS(1984), - [anon_sym_break] = ACTIONS(1984), - [anon_sym_continue] = ACTIONS(1984), - [anon_sym_if] = ACTIONS(1984), - [anon_sym_match] = ACTIONS(1984), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_for] = ACTIONS(1984), - [anon_sym_while] = ACTIONS(1984), - [anon_sym_try] = ACTIONS(1984), - [anon_sym_with] = ACTIONS(1984), - [anon_sym_def] = ACTIONS(1984), - [anon_sym_global] = ACTIONS(1984), - [anon_sym_nonlocal] = ACTIONS(1984), - [anon_sym_exec] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_class] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_AT] = ACTIONS(1986), - [anon_sym_DASH] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(1986), - [anon_sym_not] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1986), - [anon_sym_TILDE] = ACTIONS(1986), - [anon_sym_LT] = ACTIONS(1986), - [anon_sym_lambda] = ACTIONS(1984), - [anon_sym_yield] = ACTIONS(1984), - [sym_ellipsis] = ACTIONS(1986), - [anon_sym_None] = ACTIONS(1984), - [sym_integer] = ACTIONS(1984), - [sym_float] = ACTIONS(1986), - [anon_sym_await] = ACTIONS(1984), - [anon_sym_api] = ACTIONS(1984), - [sym_true] = ACTIONS(1984), - [sym_false] = ACTIONS(1984), + [sym_identifier] = ACTIONS(2019), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_import] = ACTIONS(2019), + [anon_sym_cimport] = ACTIONS(2019), + [anon_sym_from] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_STAR] = ACTIONS(2021), + [anon_sym_print] = ACTIONS(2019), + [anon_sym_assert] = ACTIONS(2019), + [anon_sym_return] = ACTIONS(2019), + [anon_sym_del] = ACTIONS(2019), + [anon_sym_raise] = ACTIONS(2019), + [anon_sym_pass] = ACTIONS(2019), + [anon_sym_break] = ACTIONS(2019), + [anon_sym_continue] = ACTIONS(2019), + [anon_sym_if] = ACTIONS(2019), + [anon_sym_match] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_for] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [anon_sym_try] = ACTIONS(2019), + [anon_sym_with] = ACTIONS(2019), + [anon_sym_def] = ACTIONS(2019), + [anon_sym_global] = ACTIONS(2019), + [anon_sym_nonlocal] = ACTIONS(2019), + [anon_sym_exec] = ACTIONS(2019), + [anon_sym_type] = ACTIONS(2019), + [anon_sym_class] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_AT] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2021), + [anon_sym_not] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_TILDE] = ACTIONS(2021), + [anon_sym_LT] = ACTIONS(2021), + [anon_sym_lambda] = ACTIONS(2019), + [anon_sym_yield] = ACTIONS(2019), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2021), + [anon_sym_None] = ACTIONS(2019), + [sym_integer] = ACTIONS(2019), + [sym_float] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(2019), + [anon_sym_api] = ACTIONS(2019), + [sym_true] = ACTIONS(2019), + [sym_false] = ACTIONS(2019), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1984), - [anon_sym_include] = ACTIONS(1984), - [anon_sym_DEF] = ACTIONS(1984), - [anon_sym_cdef] = ACTIONS(1984), - [anon_sym_cpdef] = ACTIONS(1984), - [anon_sym_int] = ACTIONS(1984), - [anon_sym_double] = ACTIONS(1984), - [anon_sym_complex] = ACTIONS(1984), - [anon_sym_new] = ACTIONS(1984), - [anon_sym_signed] = ACTIONS(1984), - [anon_sym_unsigned] = ACTIONS(1984), - [anon_sym_char] = ACTIONS(1984), - [anon_sym_short] = ACTIONS(1984), - [anon_sym_long] = ACTIONS(1984), - [anon_sym_const] = ACTIONS(1984), - [anon_sym_volatile] = ACTIONS(1984), - [anon_sym_ctypedef] = ACTIONS(1984), - [anon_sym_struct] = ACTIONS(1984), - [anon_sym_union] = ACTIONS(1984), - [anon_sym_enum] = ACTIONS(1984), - [anon_sym_cppclass] = ACTIONS(1984), - [anon_sym_fused] = ACTIONS(1984), - [anon_sym_public] = ACTIONS(1984), - [anon_sym_packed] = ACTIONS(1984), - [anon_sym_inline] = ACTIONS(1984), - [anon_sym_readonly] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1984), - [sym__dedent] = ACTIONS(1986), - [sym_string_start] = ACTIONS(1986), + [anon_sym_property] = ACTIONS(2019), + [anon_sym_include] = ACTIONS(2019), + [anon_sym_DEF] = ACTIONS(2019), + [anon_sym_cdef] = ACTIONS(2019), + [anon_sym_cpdef] = ACTIONS(2019), + [anon_sym_int] = ACTIONS(2019), + [anon_sym_double] = ACTIONS(2019), + [anon_sym_complex] = ACTIONS(2019), + [anon_sym_new] = ACTIONS(2019), + [anon_sym_signed] = ACTIONS(2019), + [anon_sym_unsigned] = ACTIONS(2019), + [anon_sym_char] = ACTIONS(2019), + [anon_sym_short] = ACTIONS(2019), + [anon_sym_long] = ACTIONS(2019), + [anon_sym_const] = ACTIONS(2019), + [anon_sym_volatile] = ACTIONS(2019), + [anon_sym_ctypedef] = ACTIONS(2019), + [anon_sym_struct] = ACTIONS(2019), + [anon_sym_union] = ACTIONS(2019), + [anon_sym_enum] = ACTIONS(2019), + [anon_sym_cppclass] = ACTIONS(2019), + [anon_sym_fused] = ACTIONS(2019), + [anon_sym_public] = ACTIONS(2019), + [anon_sym_packed] = ACTIONS(2019), + [anon_sym_inline] = ACTIONS(2019), + [anon_sym_readonly] = ACTIONS(2019), + [anon_sym_sizeof] = ACTIONS(2019), + [sym__dedent] = ACTIONS(2021), + [sym_string_start] = ACTIONS(2021), }, [595] = { - [sym_identifier] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1676), - [anon_sym_import] = ACTIONS(1674), - [anon_sym_cimport] = ACTIONS(1674), - [anon_sym_from] = ACTIONS(1674), - [anon_sym_LPAREN] = ACTIONS(1676), - [anon_sym_STAR] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1674), - [anon_sym_assert] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1674), - [anon_sym_del] = ACTIONS(1674), - [anon_sym_raise] = ACTIONS(1674), - [anon_sym_pass] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1674), - [anon_sym_continue] = ACTIONS(1674), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_match] = ACTIONS(1674), - [anon_sym_async] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_with] = ACTIONS(1674), - [anon_sym_def] = ACTIONS(1674), - [anon_sym_global] = ACTIONS(1674), - [anon_sym_nonlocal] = ACTIONS(1674), - [anon_sym_exec] = ACTIONS(1674), - [anon_sym_type] = ACTIONS(1674), - [anon_sym_class] = ACTIONS(1674), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_AT] = ACTIONS(1676), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_not] = ACTIONS(1674), - [anon_sym_AMP] = ACTIONS(1676), - [anon_sym_TILDE] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(1676), - [anon_sym_lambda] = ACTIONS(1674), - [anon_sym_yield] = ACTIONS(1674), - [sym_ellipsis] = ACTIONS(1676), - [anon_sym_None] = ACTIONS(1674), - [sym_integer] = ACTIONS(1674), - [sym_float] = ACTIONS(1676), - [anon_sym_await] = ACTIONS(1674), - [anon_sym_api] = ACTIONS(1674), - [sym_true] = ACTIONS(1674), - [sym_false] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1743), + [anon_sym_import] = ACTIONS(1741), + [anon_sym_cimport] = ACTIONS(1741), + [anon_sym_from] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1743), + [anon_sym_print] = ACTIONS(1741), + [anon_sym_assert] = ACTIONS(1741), + [anon_sym_return] = ACTIONS(1741), + [anon_sym_del] = ACTIONS(1741), + [anon_sym_raise] = ACTIONS(1741), + [anon_sym_pass] = ACTIONS(1741), + [anon_sym_break] = ACTIONS(1741), + [anon_sym_continue] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1741), + [anon_sym_match] = ACTIONS(1741), + [anon_sym_async] = ACTIONS(1741), + [anon_sym_for] = ACTIONS(1741), + [anon_sym_while] = ACTIONS(1741), + [anon_sym_try] = ACTIONS(1741), + [anon_sym_with] = ACTIONS(1741), + [anon_sym_def] = ACTIONS(1741), + [anon_sym_global] = ACTIONS(1741), + [anon_sym_nonlocal] = ACTIONS(1741), + [anon_sym_exec] = ACTIONS(1741), + [anon_sym_type] = ACTIONS(1741), + [anon_sym_class] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1743), + [anon_sym_AT] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_not] = ACTIONS(1741), + [anon_sym_AMP] = ACTIONS(1743), + [anon_sym_TILDE] = ACTIONS(1743), + [anon_sym_LT] = ACTIONS(1743), + [anon_sym_lambda] = ACTIONS(1741), + [anon_sym_yield] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), + [anon_sym_None] = ACTIONS(1741), + [sym_integer] = ACTIONS(1741), + [sym_float] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_api] = ACTIONS(1741), + [sym_true] = ACTIONS(1741), + [sym_false] = ACTIONS(1741), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1674), - [anon_sym_include] = ACTIONS(1674), - [anon_sym_DEF] = ACTIONS(1674), - [anon_sym_cdef] = ACTIONS(1674), - [anon_sym_cpdef] = ACTIONS(1674), - [anon_sym_int] = ACTIONS(1674), - [anon_sym_double] = ACTIONS(1674), - [anon_sym_complex] = ACTIONS(1674), - [anon_sym_new] = ACTIONS(1674), - [anon_sym_signed] = ACTIONS(1674), - [anon_sym_unsigned] = ACTIONS(1674), - [anon_sym_char] = ACTIONS(1674), - [anon_sym_short] = ACTIONS(1674), - [anon_sym_long] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_volatile] = ACTIONS(1674), - [anon_sym_ctypedef] = ACTIONS(1674), - [anon_sym_struct] = ACTIONS(1674), - [anon_sym_union] = ACTIONS(1674), - [anon_sym_enum] = ACTIONS(1674), - [anon_sym_cppclass] = ACTIONS(1674), - [anon_sym_fused] = ACTIONS(1674), - [anon_sym_public] = ACTIONS(1674), - [anon_sym_packed] = ACTIONS(1674), - [anon_sym_inline] = ACTIONS(1674), - [anon_sym_readonly] = ACTIONS(1674), - [anon_sym_sizeof] = ACTIONS(1674), - [sym__dedent] = ACTIONS(1676), - [sym_string_start] = ACTIONS(1676), + [anon_sym_property] = ACTIONS(1741), + [anon_sym_include] = ACTIONS(1741), + [anon_sym_DEF] = ACTIONS(1741), + [anon_sym_cdef] = ACTIONS(1741), + [anon_sym_cpdef] = ACTIONS(1741), + [anon_sym_int] = ACTIONS(1741), + [anon_sym_double] = ACTIONS(1741), + [anon_sym_complex] = ACTIONS(1741), + [anon_sym_new] = ACTIONS(1741), + [anon_sym_signed] = ACTIONS(1741), + [anon_sym_unsigned] = ACTIONS(1741), + [anon_sym_char] = ACTIONS(1741), + [anon_sym_short] = ACTIONS(1741), + [anon_sym_long] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_volatile] = ACTIONS(1741), + [anon_sym_ctypedef] = ACTIONS(1741), + [anon_sym_struct] = ACTIONS(1741), + [anon_sym_union] = ACTIONS(1741), + [anon_sym_enum] = ACTIONS(1741), + [anon_sym_cppclass] = ACTIONS(1741), + [anon_sym_fused] = ACTIONS(1741), + [anon_sym_public] = ACTIONS(1741), + [anon_sym_packed] = ACTIONS(1741), + [anon_sym_inline] = ACTIONS(1741), + [anon_sym_readonly] = ACTIONS(1741), + [anon_sym_sizeof] = ACTIONS(1741), + [sym__dedent] = ACTIONS(1743), + [sym_string_start] = ACTIONS(1743), }, [596] = { - [sym_identifier] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1990), - [anon_sym_import] = ACTIONS(1988), - [anon_sym_cimport] = ACTIONS(1988), - [anon_sym_from] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_STAR] = ACTIONS(1990), - [anon_sym_print] = ACTIONS(1988), - [anon_sym_assert] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_del] = ACTIONS(1988), - [anon_sym_raise] = ACTIONS(1988), - [anon_sym_pass] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_match] = ACTIONS(1988), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1988), - [anon_sym_try] = ACTIONS(1988), - [anon_sym_with] = ACTIONS(1988), - [anon_sym_def] = ACTIONS(1988), - [anon_sym_global] = ACTIONS(1988), - [anon_sym_nonlocal] = ACTIONS(1988), - [anon_sym_exec] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_class] = ACTIONS(1988), - [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_AT] = ACTIONS(1990), - [anon_sym_DASH] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1990), - [anon_sym_PLUS] = ACTIONS(1990), - [anon_sym_not] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1990), - [anon_sym_TILDE] = ACTIONS(1990), - [anon_sym_LT] = ACTIONS(1990), - [anon_sym_lambda] = ACTIONS(1988), - [anon_sym_yield] = ACTIONS(1988), - [sym_ellipsis] = ACTIONS(1990), - [anon_sym_None] = ACTIONS(1988), - [sym_integer] = ACTIONS(1988), - [sym_float] = ACTIONS(1990), - [anon_sym_await] = ACTIONS(1988), - [anon_sym_api] = ACTIONS(1988), - [sym_true] = ACTIONS(1988), - [sym_false] = ACTIONS(1988), + [sym_identifier] = ACTIONS(2023), + [anon_sym_SEMI] = ACTIONS(2025), + [anon_sym_import] = ACTIONS(2023), + [anon_sym_cimport] = ACTIONS(2023), + [anon_sym_from] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_print] = ACTIONS(2023), + [anon_sym_assert] = ACTIONS(2023), + [anon_sym_return] = ACTIONS(2023), + [anon_sym_del] = ACTIONS(2023), + [anon_sym_raise] = ACTIONS(2023), + [anon_sym_pass] = ACTIONS(2023), + [anon_sym_break] = ACTIONS(2023), + [anon_sym_continue] = ACTIONS(2023), + [anon_sym_if] = ACTIONS(2023), + [anon_sym_match] = ACTIONS(2023), + [anon_sym_async] = ACTIONS(2023), + [anon_sym_for] = ACTIONS(2023), + [anon_sym_while] = ACTIONS(2023), + [anon_sym_try] = ACTIONS(2023), + [anon_sym_with] = ACTIONS(2023), + [anon_sym_def] = ACTIONS(2023), + [anon_sym_global] = ACTIONS(2023), + [anon_sym_nonlocal] = ACTIONS(2023), + [anon_sym_exec] = ACTIONS(2023), + [anon_sym_type] = ACTIONS(2023), + [anon_sym_class] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_AT] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_LBRACE] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_not] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(2025), + [anon_sym_TILDE] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_lambda] = ACTIONS(2023), + [anon_sym_yield] = ACTIONS(2023), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2025), + [anon_sym_None] = ACTIONS(2023), + [sym_integer] = ACTIONS(2023), + [sym_float] = ACTIONS(2025), + [anon_sym_await] = ACTIONS(2023), + [anon_sym_api] = ACTIONS(2023), + [sym_true] = ACTIONS(2023), + [sym_false] = ACTIONS(2023), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1988), - [anon_sym_include] = ACTIONS(1988), - [anon_sym_DEF] = ACTIONS(1988), - [anon_sym_cdef] = ACTIONS(1988), - [anon_sym_cpdef] = ACTIONS(1988), - [anon_sym_int] = ACTIONS(1988), - [anon_sym_double] = ACTIONS(1988), - [anon_sym_complex] = ACTIONS(1988), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_signed] = ACTIONS(1988), - [anon_sym_unsigned] = ACTIONS(1988), - [anon_sym_char] = ACTIONS(1988), - [anon_sym_short] = ACTIONS(1988), - [anon_sym_long] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_volatile] = ACTIONS(1988), - [anon_sym_ctypedef] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [anon_sym_cppclass] = ACTIONS(1988), - [anon_sym_fused] = ACTIONS(1988), - [anon_sym_public] = ACTIONS(1988), - [anon_sym_packed] = ACTIONS(1988), - [anon_sym_inline] = ACTIONS(1988), - [anon_sym_readonly] = ACTIONS(1988), - [anon_sym_sizeof] = ACTIONS(1988), - [sym__dedent] = ACTIONS(1990), - [sym_string_start] = ACTIONS(1990), + [anon_sym_property] = ACTIONS(2023), + [anon_sym_include] = ACTIONS(2023), + [anon_sym_DEF] = ACTIONS(2023), + [anon_sym_cdef] = ACTIONS(2023), + [anon_sym_cpdef] = ACTIONS(2023), + [anon_sym_int] = ACTIONS(2023), + [anon_sym_double] = ACTIONS(2023), + [anon_sym_complex] = ACTIONS(2023), + [anon_sym_new] = ACTIONS(2023), + [anon_sym_signed] = ACTIONS(2023), + [anon_sym_unsigned] = ACTIONS(2023), + [anon_sym_char] = ACTIONS(2023), + [anon_sym_short] = ACTIONS(2023), + [anon_sym_long] = ACTIONS(2023), + [anon_sym_const] = ACTIONS(2023), + [anon_sym_volatile] = ACTIONS(2023), + [anon_sym_ctypedef] = ACTIONS(2023), + [anon_sym_struct] = ACTIONS(2023), + [anon_sym_union] = ACTIONS(2023), + [anon_sym_enum] = ACTIONS(2023), + [anon_sym_cppclass] = ACTIONS(2023), + [anon_sym_fused] = ACTIONS(2023), + [anon_sym_public] = ACTIONS(2023), + [anon_sym_packed] = ACTIONS(2023), + [anon_sym_inline] = ACTIONS(2023), + [anon_sym_readonly] = ACTIONS(2023), + [anon_sym_sizeof] = ACTIONS(2023), + [sym__dedent] = ACTIONS(2025), + [sym_string_start] = ACTIONS(2025), }, [597] = { - [sym_identifier] = ACTIONS(1992), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_import] = ACTIONS(1992), - [anon_sym_cimport] = ACTIONS(1992), - [anon_sym_from] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1994), - [anon_sym_print] = ACTIONS(1992), - [anon_sym_assert] = ACTIONS(1992), - [anon_sym_return] = ACTIONS(1992), - [anon_sym_del] = ACTIONS(1992), - [anon_sym_raise] = ACTIONS(1992), - [anon_sym_pass] = ACTIONS(1992), - [anon_sym_break] = ACTIONS(1992), - [anon_sym_continue] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_match] = ACTIONS(1992), - [anon_sym_async] = ACTIONS(1992), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_try] = ACTIONS(1992), - [anon_sym_with] = ACTIONS(1992), - [anon_sym_def] = ACTIONS(1992), - [anon_sym_global] = ACTIONS(1992), - [anon_sym_nonlocal] = ACTIONS(1992), - [anon_sym_exec] = ACTIONS(1992), - [anon_sym_type] = ACTIONS(1992), - [anon_sym_class] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1994), - [anon_sym_AT] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_not] = ACTIONS(1992), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_LT] = ACTIONS(1994), - [anon_sym_lambda] = ACTIONS(1992), - [anon_sym_yield] = ACTIONS(1992), - [sym_ellipsis] = ACTIONS(1994), - [anon_sym_None] = ACTIONS(1992), - [sym_integer] = ACTIONS(1992), - [sym_float] = ACTIONS(1994), - [anon_sym_await] = ACTIONS(1992), - [anon_sym_api] = ACTIONS(1992), - [sym_true] = ACTIONS(1992), - [sym_false] = ACTIONS(1992), + [sym_identifier] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(1685), + [anon_sym_cimport] = ACTIONS(1685), + [anon_sym_from] = ACTIONS(1685), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1687), + [anon_sym_print] = ACTIONS(1685), + [anon_sym_assert] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1685), + [anon_sym_del] = ACTIONS(1685), + [anon_sym_raise] = ACTIONS(1685), + [anon_sym_pass] = ACTIONS(1685), + [anon_sym_break] = ACTIONS(1685), + [anon_sym_continue] = ACTIONS(1685), + [anon_sym_if] = ACTIONS(1685), + [anon_sym_match] = ACTIONS(1685), + [anon_sym_async] = ACTIONS(1685), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1685), + [anon_sym_try] = ACTIONS(1685), + [anon_sym_with] = ACTIONS(1685), + [anon_sym_def] = ACTIONS(1685), + [anon_sym_global] = ACTIONS(1685), + [anon_sym_nonlocal] = ACTIONS(1685), + [anon_sym_exec] = ACTIONS(1685), + [anon_sym_type] = ACTIONS(1685), + [anon_sym_class] = ACTIONS(1685), + [anon_sym_LBRACK] = ACTIONS(1687), + [anon_sym_AT] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_not] = ACTIONS(1685), + [anon_sym_AMP] = ACTIONS(1687), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1687), + [anon_sym_lambda] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1687), + [anon_sym_None] = ACTIONS(1685), + [sym_integer] = ACTIONS(1685), + [sym_float] = ACTIONS(1687), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_api] = ACTIONS(1685), + [sym_true] = ACTIONS(1685), + [sym_false] = ACTIONS(1685), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1992), - [anon_sym_include] = ACTIONS(1992), - [anon_sym_DEF] = ACTIONS(1992), - [anon_sym_cdef] = ACTIONS(1992), - [anon_sym_cpdef] = ACTIONS(1992), - [anon_sym_int] = ACTIONS(1992), - [anon_sym_double] = ACTIONS(1992), - [anon_sym_complex] = ACTIONS(1992), - [anon_sym_new] = ACTIONS(1992), - [anon_sym_signed] = ACTIONS(1992), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_char] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_const] = ACTIONS(1992), - [anon_sym_volatile] = ACTIONS(1992), - [anon_sym_ctypedef] = ACTIONS(1992), - [anon_sym_struct] = ACTIONS(1992), - [anon_sym_union] = ACTIONS(1992), - [anon_sym_enum] = ACTIONS(1992), - [anon_sym_cppclass] = ACTIONS(1992), - [anon_sym_fused] = ACTIONS(1992), - [anon_sym_public] = ACTIONS(1992), - [anon_sym_packed] = ACTIONS(1992), - [anon_sym_inline] = ACTIONS(1992), - [anon_sym_readonly] = ACTIONS(1992), - [anon_sym_sizeof] = ACTIONS(1992), - [sym__dedent] = ACTIONS(1994), - [sym_string_start] = ACTIONS(1994), + [anon_sym_property] = ACTIONS(1685), + [anon_sym_include] = ACTIONS(1685), + [anon_sym_DEF] = ACTIONS(1685), + [anon_sym_cdef] = ACTIONS(1685), + [anon_sym_cpdef] = ACTIONS(1685), + [anon_sym_int] = ACTIONS(1685), + [anon_sym_double] = ACTIONS(1685), + [anon_sym_complex] = ACTIONS(1685), + [anon_sym_new] = ACTIONS(1685), + [anon_sym_signed] = ACTIONS(1685), + [anon_sym_unsigned] = ACTIONS(1685), + [anon_sym_char] = ACTIONS(1685), + [anon_sym_short] = ACTIONS(1685), + [anon_sym_long] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_volatile] = ACTIONS(1685), + [anon_sym_ctypedef] = ACTIONS(1685), + [anon_sym_struct] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_enum] = ACTIONS(1685), + [anon_sym_cppclass] = ACTIONS(1685), + [anon_sym_fused] = ACTIONS(1685), + [anon_sym_public] = ACTIONS(1685), + [anon_sym_packed] = ACTIONS(1685), + [anon_sym_inline] = ACTIONS(1685), + [anon_sym_readonly] = ACTIONS(1685), + [anon_sym_sizeof] = ACTIONS(1685), + [sym__dedent] = ACTIONS(1687), + [sym_string_start] = ACTIONS(1687), }, [598] = { - [sym_identifier] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1998), - [anon_sym_import] = ACTIONS(1996), - [anon_sym_cimport] = ACTIONS(1996), - [anon_sym_from] = ACTIONS(1996), - [anon_sym_LPAREN] = ACTIONS(1998), - [anon_sym_STAR] = ACTIONS(1998), - [anon_sym_print] = ACTIONS(1996), - [anon_sym_assert] = ACTIONS(1996), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_del] = ACTIONS(1996), - [anon_sym_raise] = ACTIONS(1996), - [anon_sym_pass] = ACTIONS(1996), - [anon_sym_break] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(1996), - [anon_sym_if] = ACTIONS(1996), - [anon_sym_match] = ACTIONS(1996), - [anon_sym_async] = ACTIONS(1996), - [anon_sym_for] = ACTIONS(1996), - [anon_sym_while] = ACTIONS(1996), - [anon_sym_try] = ACTIONS(1996), - [anon_sym_with] = ACTIONS(1996), - [anon_sym_def] = ACTIONS(1996), - [anon_sym_global] = ACTIONS(1996), - [anon_sym_nonlocal] = ACTIONS(1996), - [anon_sym_exec] = ACTIONS(1996), - [anon_sym_type] = ACTIONS(1996), - [anon_sym_class] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_AT] = ACTIONS(1998), - [anon_sym_DASH] = ACTIONS(1998), - [anon_sym_LBRACE] = ACTIONS(1998), - [anon_sym_PLUS] = ACTIONS(1998), - [anon_sym_not] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1998), - [anon_sym_TILDE] = ACTIONS(1998), - [anon_sym_LT] = ACTIONS(1998), - [anon_sym_lambda] = ACTIONS(1996), - [anon_sym_yield] = ACTIONS(1996), - [sym_ellipsis] = ACTIONS(1998), - [anon_sym_None] = ACTIONS(1996), - [sym_integer] = ACTIONS(1996), - [sym_float] = ACTIONS(1998), - [anon_sym_await] = ACTIONS(1996), - [anon_sym_api] = ACTIONS(1996), - [sym_true] = ACTIONS(1996), - [sym_false] = ACTIONS(1996), + [sym_identifier] = ACTIONS(2027), + [anon_sym_SEMI] = ACTIONS(2029), + [anon_sym_import] = ACTIONS(2027), + [anon_sym_cimport] = ACTIONS(2027), + [anon_sym_from] = ACTIONS(2027), + [anon_sym_LPAREN] = ACTIONS(2029), + [anon_sym_STAR] = ACTIONS(2029), + [anon_sym_print] = ACTIONS(2027), + [anon_sym_assert] = ACTIONS(2027), + [anon_sym_return] = ACTIONS(2027), + [anon_sym_del] = ACTIONS(2027), + [anon_sym_raise] = ACTIONS(2027), + [anon_sym_pass] = ACTIONS(2027), + [anon_sym_break] = ACTIONS(2027), + [anon_sym_continue] = ACTIONS(2027), + [anon_sym_if] = ACTIONS(2027), + [anon_sym_match] = ACTIONS(2027), + [anon_sym_async] = ACTIONS(2027), + [anon_sym_for] = ACTIONS(2027), + [anon_sym_while] = ACTIONS(2027), + [anon_sym_try] = ACTIONS(2027), + [anon_sym_with] = ACTIONS(2027), + [anon_sym_def] = ACTIONS(2027), + [anon_sym_global] = ACTIONS(2027), + [anon_sym_nonlocal] = ACTIONS(2027), + [anon_sym_exec] = ACTIONS(2027), + [anon_sym_type] = ACTIONS(2027), + [anon_sym_class] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2029), + [anon_sym_AT] = ACTIONS(2029), + [anon_sym_DASH] = ACTIONS(2029), + [anon_sym_LBRACE] = ACTIONS(2029), + [anon_sym_PLUS] = ACTIONS(2029), + [anon_sym_not] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2029), + [anon_sym_TILDE] = ACTIONS(2029), + [anon_sym_LT] = ACTIONS(2029), + [anon_sym_lambda] = ACTIONS(2027), + [anon_sym_yield] = ACTIONS(2027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2029), + [anon_sym_None] = ACTIONS(2027), + [sym_integer] = ACTIONS(2027), + [sym_float] = ACTIONS(2029), + [anon_sym_await] = ACTIONS(2027), + [anon_sym_api] = ACTIONS(2027), + [sym_true] = ACTIONS(2027), + [sym_false] = ACTIONS(2027), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1996), - [anon_sym_include] = ACTIONS(1996), - [anon_sym_DEF] = ACTIONS(1996), - [anon_sym_cdef] = ACTIONS(1996), - [anon_sym_cpdef] = ACTIONS(1996), - [anon_sym_int] = ACTIONS(1996), - [anon_sym_double] = ACTIONS(1996), - [anon_sym_complex] = ACTIONS(1996), - [anon_sym_new] = ACTIONS(1996), - [anon_sym_signed] = ACTIONS(1996), - [anon_sym_unsigned] = ACTIONS(1996), - [anon_sym_char] = ACTIONS(1996), - [anon_sym_short] = ACTIONS(1996), - [anon_sym_long] = ACTIONS(1996), - [anon_sym_const] = ACTIONS(1996), - [anon_sym_volatile] = ACTIONS(1996), - [anon_sym_ctypedef] = ACTIONS(1996), - [anon_sym_struct] = ACTIONS(1996), - [anon_sym_union] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1996), - [anon_sym_cppclass] = ACTIONS(1996), - [anon_sym_fused] = ACTIONS(1996), - [anon_sym_public] = ACTIONS(1996), - [anon_sym_packed] = ACTIONS(1996), - [anon_sym_inline] = ACTIONS(1996), - [anon_sym_readonly] = ACTIONS(1996), - [anon_sym_sizeof] = ACTIONS(1996), - [sym__dedent] = ACTIONS(1998), - [sym_string_start] = ACTIONS(1998), + [anon_sym_property] = ACTIONS(2027), + [anon_sym_include] = ACTIONS(2027), + [anon_sym_DEF] = ACTIONS(2027), + [anon_sym_cdef] = ACTIONS(2027), + [anon_sym_cpdef] = ACTIONS(2027), + [anon_sym_int] = ACTIONS(2027), + [anon_sym_double] = ACTIONS(2027), + [anon_sym_complex] = ACTIONS(2027), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_signed] = ACTIONS(2027), + [anon_sym_unsigned] = ACTIONS(2027), + [anon_sym_char] = ACTIONS(2027), + [anon_sym_short] = ACTIONS(2027), + [anon_sym_long] = ACTIONS(2027), + [anon_sym_const] = ACTIONS(2027), + [anon_sym_volatile] = ACTIONS(2027), + [anon_sym_ctypedef] = ACTIONS(2027), + [anon_sym_struct] = ACTIONS(2027), + [anon_sym_union] = ACTIONS(2027), + [anon_sym_enum] = ACTIONS(2027), + [anon_sym_cppclass] = ACTIONS(2027), + [anon_sym_fused] = ACTIONS(2027), + [anon_sym_public] = ACTIONS(2027), + [anon_sym_packed] = ACTIONS(2027), + [anon_sym_inline] = ACTIONS(2027), + [anon_sym_readonly] = ACTIONS(2027), + [anon_sym_sizeof] = ACTIONS(2027), + [sym__dedent] = ACTIONS(2029), + [sym_string_start] = ACTIONS(2029), }, [599] = { - [sym_identifier] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_import] = ACTIONS(2000), - [anon_sym_cimport] = ACTIONS(2000), - [anon_sym_from] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_print] = ACTIONS(2000), - [anon_sym_assert] = ACTIONS(2000), - [anon_sym_return] = ACTIONS(2000), - [anon_sym_del] = ACTIONS(2000), - [anon_sym_raise] = ACTIONS(2000), - [anon_sym_pass] = ACTIONS(2000), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_if] = ACTIONS(2000), - [anon_sym_match] = ACTIONS(2000), - [anon_sym_async] = ACTIONS(2000), - [anon_sym_for] = ACTIONS(2000), - [anon_sym_while] = ACTIONS(2000), - [anon_sym_try] = ACTIONS(2000), - [anon_sym_with] = ACTIONS(2000), - [anon_sym_def] = ACTIONS(2000), - [anon_sym_global] = ACTIONS(2000), - [anon_sym_nonlocal] = ACTIONS(2000), - [anon_sym_exec] = ACTIONS(2000), - [anon_sym_type] = ACTIONS(2000), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_AT] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_PLUS] = ACTIONS(2002), - [anon_sym_not] = ACTIONS(2000), - [anon_sym_AMP] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(2002), - [anon_sym_lambda] = ACTIONS(2000), - [anon_sym_yield] = ACTIONS(2000), - [sym_ellipsis] = ACTIONS(2002), - [anon_sym_None] = ACTIONS(2000), - [sym_integer] = ACTIONS(2000), - [sym_float] = ACTIONS(2002), - [anon_sym_await] = ACTIONS(2000), - [anon_sym_api] = ACTIONS(2000), - [sym_true] = ACTIONS(2000), - [sym_false] = ACTIONS(2000), + [sym_identifier] = ACTIONS(2031), + [anon_sym_SEMI] = ACTIONS(2033), + [anon_sym_import] = ACTIONS(2031), + [anon_sym_cimport] = ACTIONS(2031), + [anon_sym_from] = ACTIONS(2031), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_STAR] = ACTIONS(2033), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_assert] = ACTIONS(2031), + [anon_sym_return] = ACTIONS(2031), + [anon_sym_del] = ACTIONS(2031), + [anon_sym_raise] = ACTIONS(2031), + [anon_sym_pass] = ACTIONS(2031), + [anon_sym_break] = ACTIONS(2031), + [anon_sym_continue] = ACTIONS(2031), + [anon_sym_if] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_for] = ACTIONS(2031), + [anon_sym_while] = ACTIONS(2031), + [anon_sym_try] = ACTIONS(2031), + [anon_sym_with] = ACTIONS(2031), + [anon_sym_def] = ACTIONS(2031), + [anon_sym_global] = ACTIONS(2031), + [anon_sym_nonlocal] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_type] = ACTIONS(2031), + [anon_sym_class] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2033), + [anon_sym_AT] = ACTIONS(2033), + [anon_sym_DASH] = ACTIONS(2033), + [anon_sym_LBRACE] = ACTIONS(2033), + [anon_sym_PLUS] = ACTIONS(2033), + [anon_sym_not] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym_TILDE] = ACTIONS(2033), + [anon_sym_LT] = ACTIONS(2033), + [anon_sym_lambda] = ACTIONS(2031), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2033), + [anon_sym_None] = ACTIONS(2031), + [sym_integer] = ACTIONS(2031), + [sym_float] = ACTIONS(2033), + [anon_sym_await] = ACTIONS(2031), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(2031), + [sym_false] = ACTIONS(2031), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2000), - [anon_sym_include] = ACTIONS(2000), - [anon_sym_DEF] = ACTIONS(2000), - [anon_sym_cdef] = ACTIONS(2000), - [anon_sym_cpdef] = ACTIONS(2000), - [anon_sym_int] = ACTIONS(2000), - [anon_sym_double] = ACTIONS(2000), - [anon_sym_complex] = ACTIONS(2000), - [anon_sym_new] = ACTIONS(2000), - [anon_sym_signed] = ACTIONS(2000), - [anon_sym_unsigned] = ACTIONS(2000), - [anon_sym_char] = ACTIONS(2000), - [anon_sym_short] = ACTIONS(2000), - [anon_sym_long] = ACTIONS(2000), - [anon_sym_const] = ACTIONS(2000), - [anon_sym_volatile] = ACTIONS(2000), - [anon_sym_ctypedef] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2000), - [anon_sym_union] = ACTIONS(2000), - [anon_sym_enum] = ACTIONS(2000), - [anon_sym_cppclass] = ACTIONS(2000), - [anon_sym_fused] = ACTIONS(2000), - [anon_sym_public] = ACTIONS(2000), - [anon_sym_packed] = ACTIONS(2000), - [anon_sym_inline] = ACTIONS(2000), - [anon_sym_readonly] = ACTIONS(2000), - [anon_sym_sizeof] = ACTIONS(2000), - [sym__dedent] = ACTIONS(2002), - [sym_string_start] = ACTIONS(2002), + [anon_sym_property] = ACTIONS(2031), + [anon_sym_include] = ACTIONS(2031), + [anon_sym_DEF] = ACTIONS(2031), + [anon_sym_cdef] = ACTIONS(2031), + [anon_sym_cpdef] = ACTIONS(2031), + [anon_sym_int] = ACTIONS(2031), + [anon_sym_double] = ACTIONS(2031), + [anon_sym_complex] = ACTIONS(2031), + [anon_sym_new] = ACTIONS(2031), + [anon_sym_signed] = ACTIONS(2031), + [anon_sym_unsigned] = ACTIONS(2031), + [anon_sym_char] = ACTIONS(2031), + [anon_sym_short] = ACTIONS(2031), + [anon_sym_long] = ACTIONS(2031), + [anon_sym_const] = ACTIONS(2031), + [anon_sym_volatile] = ACTIONS(2031), + [anon_sym_ctypedef] = ACTIONS(2031), + [anon_sym_struct] = ACTIONS(2031), + [anon_sym_union] = ACTIONS(2031), + [anon_sym_enum] = ACTIONS(2031), + [anon_sym_cppclass] = ACTIONS(2031), + [anon_sym_fused] = ACTIONS(2031), + [anon_sym_public] = ACTIONS(2031), + [anon_sym_packed] = ACTIONS(2031), + [anon_sym_inline] = ACTIONS(2031), + [anon_sym_readonly] = ACTIONS(2031), + [anon_sym_sizeof] = ACTIONS(2031), + [sym__dedent] = ACTIONS(2033), + [sym_string_start] = ACTIONS(2033), }, [600] = { - [sym_identifier] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym_import] = ACTIONS(2004), - [anon_sym_cimport] = ACTIONS(2004), - [anon_sym_from] = ACTIONS(2004), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_print] = ACTIONS(2004), - [anon_sym_assert] = ACTIONS(2004), - [anon_sym_return] = ACTIONS(2004), - [anon_sym_del] = ACTIONS(2004), - [anon_sym_raise] = ACTIONS(2004), - [anon_sym_pass] = ACTIONS(2004), - [anon_sym_break] = ACTIONS(2004), - [anon_sym_continue] = ACTIONS(2004), - [anon_sym_if] = ACTIONS(2004), - [anon_sym_match] = ACTIONS(2004), - [anon_sym_async] = ACTIONS(2004), - [anon_sym_for] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2004), - [anon_sym_try] = ACTIONS(2004), - [anon_sym_with] = ACTIONS(2004), - [anon_sym_def] = ACTIONS(2004), - [anon_sym_global] = ACTIONS(2004), - [anon_sym_nonlocal] = ACTIONS(2004), - [anon_sym_exec] = ACTIONS(2004), - [anon_sym_type] = ACTIONS(2004), - [anon_sym_class] = ACTIONS(2004), - [anon_sym_LBRACK] = ACTIONS(2006), - [anon_sym_AT] = ACTIONS(2006), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_PLUS] = ACTIONS(2006), - [anon_sym_not] = ACTIONS(2004), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_TILDE] = ACTIONS(2006), - [anon_sym_LT] = ACTIONS(2006), - [anon_sym_lambda] = ACTIONS(2004), - [anon_sym_yield] = ACTIONS(2004), - [sym_ellipsis] = ACTIONS(2006), - [anon_sym_None] = ACTIONS(2004), - [sym_integer] = ACTIONS(2004), - [sym_float] = ACTIONS(2006), - [anon_sym_await] = ACTIONS(2004), - [anon_sym_api] = ACTIONS(2004), - [sym_true] = ACTIONS(2004), - [sym_false] = ACTIONS(2004), + [sym_identifier] = ACTIONS(2035), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_import] = ACTIONS(2035), + [anon_sym_cimport] = ACTIONS(2035), + [anon_sym_from] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_STAR] = ACTIONS(2037), + [anon_sym_print] = ACTIONS(2035), + [anon_sym_assert] = ACTIONS(2035), + [anon_sym_return] = ACTIONS(2035), + [anon_sym_del] = ACTIONS(2035), + [anon_sym_raise] = ACTIONS(2035), + [anon_sym_pass] = ACTIONS(2035), + [anon_sym_break] = ACTIONS(2035), + [anon_sym_continue] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_match] = ACTIONS(2035), + [anon_sym_async] = ACTIONS(2035), + [anon_sym_for] = ACTIONS(2035), + [anon_sym_while] = ACTIONS(2035), + [anon_sym_try] = ACTIONS(2035), + [anon_sym_with] = ACTIONS(2035), + [anon_sym_def] = ACTIONS(2035), + [anon_sym_global] = ACTIONS(2035), + [anon_sym_nonlocal] = ACTIONS(2035), + [anon_sym_exec] = ACTIONS(2035), + [anon_sym_type] = ACTIONS(2035), + [anon_sym_class] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2037), + [anon_sym_AT] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_LT] = ACTIONS(2037), + [anon_sym_lambda] = ACTIONS(2035), + [anon_sym_yield] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2037), + [anon_sym_None] = ACTIONS(2035), + [sym_integer] = ACTIONS(2035), + [sym_float] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(2035), + [anon_sym_api] = ACTIONS(2035), + [sym_true] = ACTIONS(2035), + [sym_false] = ACTIONS(2035), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2004), - [anon_sym_include] = ACTIONS(2004), - [anon_sym_DEF] = ACTIONS(2004), - [anon_sym_cdef] = ACTIONS(2004), - [anon_sym_cpdef] = ACTIONS(2004), - [anon_sym_int] = ACTIONS(2004), - [anon_sym_double] = ACTIONS(2004), - [anon_sym_complex] = ACTIONS(2004), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_signed] = ACTIONS(2004), - [anon_sym_unsigned] = ACTIONS(2004), - [anon_sym_char] = ACTIONS(2004), - [anon_sym_short] = ACTIONS(2004), - [anon_sym_long] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_volatile] = ACTIONS(2004), - [anon_sym_ctypedef] = ACTIONS(2004), - [anon_sym_struct] = ACTIONS(2004), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_enum] = ACTIONS(2004), - [anon_sym_cppclass] = ACTIONS(2004), - [anon_sym_fused] = ACTIONS(2004), - [anon_sym_public] = ACTIONS(2004), - [anon_sym_packed] = ACTIONS(2004), - [anon_sym_inline] = ACTIONS(2004), - [anon_sym_readonly] = ACTIONS(2004), - [anon_sym_sizeof] = ACTIONS(2004), - [sym__dedent] = ACTIONS(2006), - [sym_string_start] = ACTIONS(2006), + [anon_sym_property] = ACTIONS(2035), + [anon_sym_include] = ACTIONS(2035), + [anon_sym_DEF] = ACTIONS(2035), + [anon_sym_cdef] = ACTIONS(2035), + [anon_sym_cpdef] = ACTIONS(2035), + [anon_sym_int] = ACTIONS(2035), + [anon_sym_double] = ACTIONS(2035), + [anon_sym_complex] = ACTIONS(2035), + [anon_sym_new] = ACTIONS(2035), + [anon_sym_signed] = ACTIONS(2035), + [anon_sym_unsigned] = ACTIONS(2035), + [anon_sym_char] = ACTIONS(2035), + [anon_sym_short] = ACTIONS(2035), + [anon_sym_long] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_volatile] = ACTIONS(2035), + [anon_sym_ctypedef] = ACTIONS(2035), + [anon_sym_struct] = ACTIONS(2035), + [anon_sym_union] = ACTIONS(2035), + [anon_sym_enum] = ACTIONS(2035), + [anon_sym_cppclass] = ACTIONS(2035), + [anon_sym_fused] = ACTIONS(2035), + [anon_sym_public] = ACTIONS(2035), + [anon_sym_packed] = ACTIONS(2035), + [anon_sym_inline] = ACTIONS(2035), + [anon_sym_readonly] = ACTIONS(2035), + [anon_sym_sizeof] = ACTIONS(2035), + [sym__dedent] = ACTIONS(2037), + [sym_string_start] = ACTIONS(2037), }, [601] = { - [sym_identifier] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_import] = ACTIONS(2008), - [anon_sym_cimport] = ACTIONS(2008), - [anon_sym_from] = ACTIONS(2008), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_print] = ACTIONS(2008), - [anon_sym_assert] = ACTIONS(2008), - [anon_sym_return] = ACTIONS(2008), - [anon_sym_del] = ACTIONS(2008), - [anon_sym_raise] = ACTIONS(2008), - [anon_sym_pass] = ACTIONS(2008), - [anon_sym_break] = ACTIONS(2008), - [anon_sym_continue] = ACTIONS(2008), - [anon_sym_if] = ACTIONS(2008), - [anon_sym_match] = ACTIONS(2008), - [anon_sym_async] = ACTIONS(2008), - [anon_sym_for] = ACTIONS(2008), - [anon_sym_while] = ACTIONS(2008), - [anon_sym_try] = ACTIONS(2008), - [anon_sym_with] = ACTIONS(2008), - [anon_sym_def] = ACTIONS(2008), - [anon_sym_global] = ACTIONS(2008), - [anon_sym_nonlocal] = ACTIONS(2008), - [anon_sym_exec] = ACTIONS(2008), - [anon_sym_type] = ACTIONS(2008), - [anon_sym_class] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_AT] = ACTIONS(2010), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2010), - [anon_sym_PLUS] = ACTIONS(2010), - [anon_sym_not] = ACTIONS(2008), - [anon_sym_AMP] = ACTIONS(2010), - [anon_sym_TILDE] = ACTIONS(2010), - [anon_sym_LT] = ACTIONS(2010), - [anon_sym_lambda] = ACTIONS(2008), - [anon_sym_yield] = ACTIONS(2008), - [sym_ellipsis] = ACTIONS(2010), - [anon_sym_None] = ACTIONS(2008), - [sym_integer] = ACTIONS(2008), - [sym_float] = ACTIONS(2010), - [anon_sym_await] = ACTIONS(2008), - [anon_sym_api] = ACTIONS(2008), - [sym_true] = ACTIONS(2008), - [sym_false] = ACTIONS(2008), + [sym_identifier] = ACTIONS(2039), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_import] = ACTIONS(2039), + [anon_sym_cimport] = ACTIONS(2039), + [anon_sym_from] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_STAR] = ACTIONS(2041), + [anon_sym_print] = ACTIONS(2039), + [anon_sym_assert] = ACTIONS(2039), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_del] = ACTIONS(2039), + [anon_sym_raise] = ACTIONS(2039), + [anon_sym_pass] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_match] = ACTIONS(2039), + [anon_sym_async] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_try] = ACTIONS(2039), + [anon_sym_with] = ACTIONS(2039), + [anon_sym_def] = ACTIONS(2039), + [anon_sym_global] = ACTIONS(2039), + [anon_sym_nonlocal] = ACTIONS(2039), + [anon_sym_exec] = ACTIONS(2039), + [anon_sym_type] = ACTIONS(2039), + [anon_sym_class] = ACTIONS(2039), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_AT] = ACTIONS(2041), + [anon_sym_DASH] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_PLUS] = ACTIONS(2041), + [anon_sym_not] = ACTIONS(2039), + [anon_sym_AMP] = ACTIONS(2041), + [anon_sym_TILDE] = ACTIONS(2041), + [anon_sym_LT] = ACTIONS(2041), + [anon_sym_lambda] = ACTIONS(2039), + [anon_sym_yield] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2041), + [anon_sym_None] = ACTIONS(2039), + [sym_integer] = ACTIONS(2039), + [sym_float] = ACTIONS(2041), + [anon_sym_await] = ACTIONS(2039), + [anon_sym_api] = ACTIONS(2039), + [sym_true] = ACTIONS(2039), + [sym_false] = ACTIONS(2039), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2008), - [anon_sym_include] = ACTIONS(2008), - [anon_sym_DEF] = ACTIONS(2008), - [anon_sym_cdef] = ACTIONS(2008), - [anon_sym_cpdef] = ACTIONS(2008), - [anon_sym_int] = ACTIONS(2008), - [anon_sym_double] = ACTIONS(2008), - [anon_sym_complex] = ACTIONS(2008), - [anon_sym_new] = ACTIONS(2008), - [anon_sym_signed] = ACTIONS(2008), - [anon_sym_unsigned] = ACTIONS(2008), - [anon_sym_char] = ACTIONS(2008), - [anon_sym_short] = ACTIONS(2008), - [anon_sym_long] = ACTIONS(2008), - [anon_sym_const] = ACTIONS(2008), - [anon_sym_volatile] = ACTIONS(2008), - [anon_sym_ctypedef] = ACTIONS(2008), - [anon_sym_struct] = ACTIONS(2008), - [anon_sym_union] = ACTIONS(2008), - [anon_sym_enum] = ACTIONS(2008), - [anon_sym_cppclass] = ACTIONS(2008), - [anon_sym_fused] = ACTIONS(2008), - [anon_sym_public] = ACTIONS(2008), - [anon_sym_packed] = ACTIONS(2008), - [anon_sym_inline] = ACTIONS(2008), - [anon_sym_readonly] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(2008), - [sym__dedent] = ACTIONS(2010), - [sym_string_start] = ACTIONS(2010), + [anon_sym_property] = ACTIONS(2039), + [anon_sym_include] = ACTIONS(2039), + [anon_sym_DEF] = ACTIONS(2039), + [anon_sym_cdef] = ACTIONS(2039), + [anon_sym_cpdef] = ACTIONS(2039), + [anon_sym_int] = ACTIONS(2039), + [anon_sym_double] = ACTIONS(2039), + [anon_sym_complex] = ACTIONS(2039), + [anon_sym_new] = ACTIONS(2039), + [anon_sym_signed] = ACTIONS(2039), + [anon_sym_unsigned] = ACTIONS(2039), + [anon_sym_char] = ACTIONS(2039), + [anon_sym_short] = ACTIONS(2039), + [anon_sym_long] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [anon_sym_volatile] = ACTIONS(2039), + [anon_sym_ctypedef] = ACTIONS(2039), + [anon_sym_struct] = ACTIONS(2039), + [anon_sym_union] = ACTIONS(2039), + [anon_sym_enum] = ACTIONS(2039), + [anon_sym_cppclass] = ACTIONS(2039), + [anon_sym_fused] = ACTIONS(2039), + [anon_sym_public] = ACTIONS(2039), + [anon_sym_packed] = ACTIONS(2039), + [anon_sym_inline] = ACTIONS(2039), + [anon_sym_readonly] = ACTIONS(2039), + [anon_sym_sizeof] = ACTIONS(2039), + [sym__dedent] = ACTIONS(2041), + [sym_string_start] = ACTIONS(2041), }, [602] = { - [sym_identifier] = ACTIONS(2012), - [anon_sym_SEMI] = ACTIONS(2014), - [anon_sym_import] = ACTIONS(2012), - [anon_sym_cimport] = ACTIONS(2012), - [anon_sym_from] = ACTIONS(2012), - [anon_sym_LPAREN] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2014), - [anon_sym_print] = ACTIONS(2012), - [anon_sym_assert] = ACTIONS(2012), - [anon_sym_return] = ACTIONS(2012), - [anon_sym_del] = ACTIONS(2012), - [anon_sym_raise] = ACTIONS(2012), - [anon_sym_pass] = ACTIONS(2012), - [anon_sym_break] = ACTIONS(2012), - [anon_sym_continue] = ACTIONS(2012), - [anon_sym_if] = ACTIONS(2012), - [anon_sym_match] = ACTIONS(2012), - [anon_sym_async] = ACTIONS(2012), - [anon_sym_for] = ACTIONS(2012), - [anon_sym_while] = ACTIONS(2012), - [anon_sym_try] = ACTIONS(2012), - [anon_sym_with] = ACTIONS(2012), - [anon_sym_def] = ACTIONS(2012), - [anon_sym_global] = ACTIONS(2012), - [anon_sym_nonlocal] = ACTIONS(2012), - [anon_sym_exec] = ACTIONS(2012), - [anon_sym_type] = ACTIONS(2012), - [anon_sym_class] = ACTIONS(2012), - [anon_sym_LBRACK] = ACTIONS(2014), - [anon_sym_AT] = ACTIONS(2014), - [anon_sym_DASH] = ACTIONS(2014), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_PLUS] = ACTIONS(2014), - [anon_sym_not] = ACTIONS(2012), - [anon_sym_AMP] = ACTIONS(2014), - [anon_sym_TILDE] = ACTIONS(2014), - [anon_sym_LT] = ACTIONS(2014), - [anon_sym_lambda] = ACTIONS(2012), - [anon_sym_yield] = ACTIONS(2012), - [sym_ellipsis] = ACTIONS(2014), - [anon_sym_None] = ACTIONS(2012), - [sym_integer] = ACTIONS(2012), - [sym_float] = ACTIONS(2014), - [anon_sym_await] = ACTIONS(2012), - [anon_sym_api] = ACTIONS(2012), - [sym_true] = ACTIONS(2012), - [sym_false] = ACTIONS(2012), + [sym_identifier] = ACTIONS(2043), + [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_import] = ACTIONS(2043), + [anon_sym_cimport] = ACTIONS(2043), + [anon_sym_from] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2045), + [anon_sym_STAR] = ACTIONS(2045), + [anon_sym_print] = ACTIONS(2043), + [anon_sym_assert] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_del] = ACTIONS(2043), + [anon_sym_raise] = ACTIONS(2043), + [anon_sym_pass] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_async] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_with] = ACTIONS(2043), + [anon_sym_def] = ACTIONS(2043), + [anon_sym_global] = ACTIONS(2043), + [anon_sym_nonlocal] = ACTIONS(2043), + [anon_sym_exec] = ACTIONS(2043), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_class] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2045), + [anon_sym_AT] = ACTIONS(2045), + [anon_sym_DASH] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(2045), + [anon_sym_PLUS] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2043), + [anon_sym_AMP] = ACTIONS(2045), + [anon_sym_TILDE] = ACTIONS(2045), + [anon_sym_LT] = ACTIONS(2045), + [anon_sym_lambda] = ACTIONS(2043), + [anon_sym_yield] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2045), + [anon_sym_None] = ACTIONS(2043), + [sym_integer] = ACTIONS(2043), + [sym_float] = ACTIONS(2045), + [anon_sym_await] = ACTIONS(2043), + [anon_sym_api] = ACTIONS(2043), + [sym_true] = ACTIONS(2043), + [sym_false] = ACTIONS(2043), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2012), - [anon_sym_include] = ACTIONS(2012), - [anon_sym_DEF] = ACTIONS(2012), - [anon_sym_cdef] = ACTIONS(2012), - [anon_sym_cpdef] = ACTIONS(2012), - [anon_sym_int] = ACTIONS(2012), - [anon_sym_double] = ACTIONS(2012), - [anon_sym_complex] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2012), - [anon_sym_signed] = ACTIONS(2012), - [anon_sym_unsigned] = ACTIONS(2012), - [anon_sym_char] = ACTIONS(2012), - [anon_sym_short] = ACTIONS(2012), - [anon_sym_long] = ACTIONS(2012), - [anon_sym_const] = ACTIONS(2012), - [anon_sym_volatile] = ACTIONS(2012), - [anon_sym_ctypedef] = ACTIONS(2012), - [anon_sym_struct] = ACTIONS(2012), - [anon_sym_union] = ACTIONS(2012), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_cppclass] = ACTIONS(2012), - [anon_sym_fused] = ACTIONS(2012), - [anon_sym_public] = ACTIONS(2012), - [anon_sym_packed] = ACTIONS(2012), - [anon_sym_inline] = ACTIONS(2012), - [anon_sym_readonly] = ACTIONS(2012), - [anon_sym_sizeof] = ACTIONS(2012), - [sym__dedent] = ACTIONS(2014), - [sym_string_start] = ACTIONS(2014), + [anon_sym_property] = ACTIONS(2043), + [anon_sym_include] = ACTIONS(2043), + [anon_sym_DEF] = ACTIONS(2043), + [anon_sym_cdef] = ACTIONS(2043), + [anon_sym_cpdef] = ACTIONS(2043), + [anon_sym_int] = ACTIONS(2043), + [anon_sym_double] = ACTIONS(2043), + [anon_sym_complex] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(2043), + [anon_sym_signed] = ACTIONS(2043), + [anon_sym_unsigned] = ACTIONS(2043), + [anon_sym_char] = ACTIONS(2043), + [anon_sym_short] = ACTIONS(2043), + [anon_sym_long] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [anon_sym_volatile] = ACTIONS(2043), + [anon_sym_ctypedef] = ACTIONS(2043), + [anon_sym_struct] = ACTIONS(2043), + [anon_sym_union] = ACTIONS(2043), + [anon_sym_enum] = ACTIONS(2043), + [anon_sym_cppclass] = ACTIONS(2043), + [anon_sym_fused] = ACTIONS(2043), + [anon_sym_public] = ACTIONS(2043), + [anon_sym_packed] = ACTIONS(2043), + [anon_sym_inline] = ACTIONS(2043), + [anon_sym_readonly] = ACTIONS(2043), + [anon_sym_sizeof] = ACTIONS(2043), + [sym__dedent] = ACTIONS(2045), + [sym_string_start] = ACTIONS(2045), }, [603] = { - [sym_identifier] = ACTIONS(2016), - [anon_sym_SEMI] = ACTIONS(2018), - [anon_sym_import] = ACTIONS(2016), - [anon_sym_cimport] = ACTIONS(2016), - [anon_sym_from] = ACTIONS(2016), - [anon_sym_LPAREN] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2018), - [anon_sym_print] = ACTIONS(2016), - [anon_sym_assert] = ACTIONS(2016), - [anon_sym_return] = ACTIONS(2016), - [anon_sym_del] = ACTIONS(2016), - [anon_sym_raise] = ACTIONS(2016), - [anon_sym_pass] = ACTIONS(2016), - [anon_sym_break] = ACTIONS(2016), - [anon_sym_continue] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(2016), - [anon_sym_match] = ACTIONS(2016), - [anon_sym_async] = ACTIONS(2016), - [anon_sym_for] = ACTIONS(2016), - [anon_sym_while] = ACTIONS(2016), - [anon_sym_try] = ACTIONS(2016), - [anon_sym_with] = ACTIONS(2016), - [anon_sym_def] = ACTIONS(2016), - [anon_sym_global] = ACTIONS(2016), - [anon_sym_nonlocal] = ACTIONS(2016), - [anon_sym_exec] = ACTIONS(2016), - [anon_sym_type] = ACTIONS(2016), - [anon_sym_class] = ACTIONS(2016), - [anon_sym_LBRACK] = ACTIONS(2018), - [anon_sym_AT] = ACTIONS(2018), - [anon_sym_DASH] = ACTIONS(2018), - [anon_sym_LBRACE] = ACTIONS(2018), - [anon_sym_PLUS] = ACTIONS(2018), - [anon_sym_not] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2018), - [anon_sym_TILDE] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(2018), - [anon_sym_lambda] = ACTIONS(2016), - [anon_sym_yield] = ACTIONS(2016), - [sym_ellipsis] = ACTIONS(2018), - [anon_sym_None] = ACTIONS(2016), - [sym_integer] = ACTIONS(2016), - [sym_float] = ACTIONS(2018), - [anon_sym_await] = ACTIONS(2016), - [anon_sym_api] = ACTIONS(2016), - [sym_true] = ACTIONS(2016), - [sym_false] = ACTIONS(2016), + [sym_identifier] = ACTIONS(2047), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_import] = ACTIONS(2047), + [anon_sym_cimport] = ACTIONS(2047), + [anon_sym_from] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_STAR] = ACTIONS(2049), + [anon_sym_print] = ACTIONS(2047), + [anon_sym_assert] = ACTIONS(2047), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_del] = ACTIONS(2047), + [anon_sym_raise] = ACTIONS(2047), + [anon_sym_pass] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_match] = ACTIONS(2047), + [anon_sym_async] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_with] = ACTIONS(2047), + [anon_sym_def] = ACTIONS(2047), + [anon_sym_global] = ACTIONS(2047), + [anon_sym_nonlocal] = ACTIONS(2047), + [anon_sym_exec] = ACTIONS(2047), + [anon_sym_type] = ACTIONS(2047), + [anon_sym_class] = ACTIONS(2047), + [anon_sym_LBRACK] = ACTIONS(2049), + [anon_sym_AT] = ACTIONS(2049), + [anon_sym_DASH] = ACTIONS(2049), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_PLUS] = ACTIONS(2049), + [anon_sym_not] = ACTIONS(2047), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_LT] = ACTIONS(2049), + [anon_sym_lambda] = ACTIONS(2047), + [anon_sym_yield] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2049), + [anon_sym_None] = ACTIONS(2047), + [sym_integer] = ACTIONS(2047), + [sym_float] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2047), + [anon_sym_api] = ACTIONS(2047), + [sym_true] = ACTIONS(2047), + [sym_false] = ACTIONS(2047), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2016), - [anon_sym_include] = ACTIONS(2016), - [anon_sym_DEF] = ACTIONS(2016), - [anon_sym_cdef] = ACTIONS(2016), - [anon_sym_cpdef] = ACTIONS(2016), - [anon_sym_int] = ACTIONS(2016), - [anon_sym_double] = ACTIONS(2016), - [anon_sym_complex] = ACTIONS(2016), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_signed] = ACTIONS(2016), - [anon_sym_unsigned] = ACTIONS(2016), - [anon_sym_char] = ACTIONS(2016), - [anon_sym_short] = ACTIONS(2016), - [anon_sym_long] = ACTIONS(2016), - [anon_sym_const] = ACTIONS(2016), - [anon_sym_volatile] = ACTIONS(2016), - [anon_sym_ctypedef] = ACTIONS(2016), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2016), - [anon_sym_enum] = ACTIONS(2016), - [anon_sym_cppclass] = ACTIONS(2016), - [anon_sym_fused] = ACTIONS(2016), - [anon_sym_public] = ACTIONS(2016), - [anon_sym_packed] = ACTIONS(2016), - [anon_sym_inline] = ACTIONS(2016), - [anon_sym_readonly] = ACTIONS(2016), - [anon_sym_sizeof] = ACTIONS(2016), - [sym__dedent] = ACTIONS(2018), - [sym_string_start] = ACTIONS(2018), + [anon_sym_property] = ACTIONS(2047), + [anon_sym_include] = ACTIONS(2047), + [anon_sym_DEF] = ACTIONS(2047), + [anon_sym_cdef] = ACTIONS(2047), + [anon_sym_cpdef] = ACTIONS(2047), + [anon_sym_int] = ACTIONS(2047), + [anon_sym_double] = ACTIONS(2047), + [anon_sym_complex] = ACTIONS(2047), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_signed] = ACTIONS(2047), + [anon_sym_unsigned] = ACTIONS(2047), + [anon_sym_char] = ACTIONS(2047), + [anon_sym_short] = ACTIONS(2047), + [anon_sym_long] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [anon_sym_volatile] = ACTIONS(2047), + [anon_sym_ctypedef] = ACTIONS(2047), + [anon_sym_struct] = ACTIONS(2047), + [anon_sym_union] = ACTIONS(2047), + [anon_sym_enum] = ACTIONS(2047), + [anon_sym_cppclass] = ACTIONS(2047), + [anon_sym_fused] = ACTIONS(2047), + [anon_sym_public] = ACTIONS(2047), + [anon_sym_packed] = ACTIONS(2047), + [anon_sym_inline] = ACTIONS(2047), + [anon_sym_readonly] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2047), + [sym__dedent] = ACTIONS(2049), + [sym_string_start] = ACTIONS(2049), }, [604] = { - [sym_identifier] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2022), - [anon_sym_import] = ACTIONS(2020), - [anon_sym_cimport] = ACTIONS(2020), - [anon_sym_from] = ACTIONS(2020), - [anon_sym_LPAREN] = ACTIONS(2022), - [anon_sym_STAR] = ACTIONS(2022), - [anon_sym_print] = ACTIONS(2020), - [anon_sym_assert] = ACTIONS(2020), - [anon_sym_return] = ACTIONS(2020), - [anon_sym_del] = ACTIONS(2020), - [anon_sym_raise] = ACTIONS(2020), - [anon_sym_pass] = ACTIONS(2020), - [anon_sym_break] = ACTIONS(2020), - [anon_sym_continue] = ACTIONS(2020), - [anon_sym_if] = ACTIONS(2020), - [anon_sym_match] = ACTIONS(2020), - [anon_sym_async] = ACTIONS(2020), - [anon_sym_for] = ACTIONS(2020), - [anon_sym_while] = ACTIONS(2020), - [anon_sym_try] = ACTIONS(2020), - [anon_sym_with] = ACTIONS(2020), - [anon_sym_def] = ACTIONS(2020), - [anon_sym_global] = ACTIONS(2020), - [anon_sym_nonlocal] = ACTIONS(2020), - [anon_sym_exec] = ACTIONS(2020), - [anon_sym_type] = ACTIONS(2020), - [anon_sym_class] = ACTIONS(2020), - [anon_sym_LBRACK] = ACTIONS(2022), - [anon_sym_AT] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2022), - [anon_sym_LBRACE] = ACTIONS(2022), - [anon_sym_PLUS] = ACTIONS(2022), - [anon_sym_not] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2022), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_LT] = ACTIONS(2022), - [anon_sym_lambda] = ACTIONS(2020), - [anon_sym_yield] = ACTIONS(2020), - [sym_ellipsis] = ACTIONS(2022), - [anon_sym_None] = ACTIONS(2020), - [sym_integer] = ACTIONS(2020), - [sym_float] = ACTIONS(2022), - [anon_sym_await] = ACTIONS(2020), - [anon_sym_api] = ACTIONS(2020), - [sym_true] = ACTIONS(2020), - [sym_false] = ACTIONS(2020), + [sym_identifier] = ACTIONS(2051), + [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_import] = ACTIONS(2051), + [anon_sym_cimport] = ACTIONS(2051), + [anon_sym_from] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(2053), + [anon_sym_print] = ACTIONS(2051), + [anon_sym_assert] = ACTIONS(2051), + [anon_sym_return] = ACTIONS(2051), + [anon_sym_del] = ACTIONS(2051), + [anon_sym_raise] = ACTIONS(2051), + [anon_sym_pass] = ACTIONS(2051), + [anon_sym_break] = ACTIONS(2051), + [anon_sym_continue] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2051), + [anon_sym_async] = ACTIONS(2051), + [anon_sym_for] = ACTIONS(2051), + [anon_sym_while] = ACTIONS(2051), + [anon_sym_try] = ACTIONS(2051), + [anon_sym_with] = ACTIONS(2051), + [anon_sym_def] = ACTIONS(2051), + [anon_sym_global] = ACTIONS(2051), + [anon_sym_nonlocal] = ACTIONS(2051), + [anon_sym_exec] = ACTIONS(2051), + [anon_sym_type] = ACTIONS(2051), + [anon_sym_class] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_AT] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_not] = ACTIONS(2051), + [anon_sym_AMP] = ACTIONS(2053), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_lambda] = ACTIONS(2051), + [anon_sym_yield] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2053), + [anon_sym_None] = ACTIONS(2051), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2053), + [anon_sym_await] = ACTIONS(2051), + [anon_sym_api] = ACTIONS(2051), + [sym_true] = ACTIONS(2051), + [sym_false] = ACTIONS(2051), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2020), - [anon_sym_include] = ACTIONS(2020), - [anon_sym_DEF] = ACTIONS(2020), - [anon_sym_cdef] = ACTIONS(2020), - [anon_sym_cpdef] = ACTIONS(2020), - [anon_sym_int] = ACTIONS(2020), - [anon_sym_double] = ACTIONS(2020), - [anon_sym_complex] = ACTIONS(2020), - [anon_sym_new] = ACTIONS(2020), - [anon_sym_signed] = ACTIONS(2020), - [anon_sym_unsigned] = ACTIONS(2020), - [anon_sym_char] = ACTIONS(2020), - [anon_sym_short] = ACTIONS(2020), - [anon_sym_long] = ACTIONS(2020), - [anon_sym_const] = ACTIONS(2020), - [anon_sym_volatile] = ACTIONS(2020), - [anon_sym_ctypedef] = ACTIONS(2020), - [anon_sym_struct] = ACTIONS(2020), - [anon_sym_union] = ACTIONS(2020), - [anon_sym_enum] = ACTIONS(2020), - [anon_sym_cppclass] = ACTIONS(2020), - [anon_sym_fused] = ACTIONS(2020), - [anon_sym_public] = ACTIONS(2020), - [anon_sym_packed] = ACTIONS(2020), - [anon_sym_inline] = ACTIONS(2020), - [anon_sym_readonly] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2020), - [sym__dedent] = ACTIONS(2022), - [sym_string_start] = ACTIONS(2022), + [anon_sym_property] = ACTIONS(2051), + [anon_sym_include] = ACTIONS(2051), + [anon_sym_DEF] = ACTIONS(2051), + [anon_sym_cdef] = ACTIONS(2051), + [anon_sym_cpdef] = ACTIONS(2051), + [anon_sym_int] = ACTIONS(2051), + [anon_sym_double] = ACTIONS(2051), + [anon_sym_complex] = ACTIONS(2051), + [anon_sym_new] = ACTIONS(2051), + [anon_sym_signed] = ACTIONS(2051), + [anon_sym_unsigned] = ACTIONS(2051), + [anon_sym_char] = ACTIONS(2051), + [anon_sym_short] = ACTIONS(2051), + [anon_sym_long] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(2051), + [anon_sym_volatile] = ACTIONS(2051), + [anon_sym_ctypedef] = ACTIONS(2051), + [anon_sym_struct] = ACTIONS(2051), + [anon_sym_union] = ACTIONS(2051), + [anon_sym_enum] = ACTIONS(2051), + [anon_sym_cppclass] = ACTIONS(2051), + [anon_sym_fused] = ACTIONS(2051), + [anon_sym_public] = ACTIONS(2051), + [anon_sym_packed] = ACTIONS(2051), + [anon_sym_inline] = ACTIONS(2051), + [anon_sym_readonly] = ACTIONS(2051), + [anon_sym_sizeof] = ACTIONS(2051), + [sym__dedent] = ACTIONS(2053), + [sym_string_start] = ACTIONS(2053), }, [605] = { - [sym_identifier] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2026), - [anon_sym_import] = ACTIONS(2024), - [anon_sym_cimport] = ACTIONS(2024), - [anon_sym_from] = ACTIONS(2024), - [anon_sym_LPAREN] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_print] = ACTIONS(2024), - [anon_sym_assert] = ACTIONS(2024), - [anon_sym_return] = ACTIONS(2024), - [anon_sym_del] = ACTIONS(2024), - [anon_sym_raise] = ACTIONS(2024), - [anon_sym_pass] = ACTIONS(2024), - [anon_sym_break] = ACTIONS(2024), - [anon_sym_continue] = ACTIONS(2024), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_match] = ACTIONS(2024), - [anon_sym_async] = ACTIONS(2024), - [anon_sym_for] = ACTIONS(2024), - [anon_sym_while] = ACTIONS(2024), - [anon_sym_try] = ACTIONS(2024), - [anon_sym_with] = ACTIONS(2024), - [anon_sym_def] = ACTIONS(2024), - [anon_sym_global] = ACTIONS(2024), - [anon_sym_nonlocal] = ACTIONS(2024), - [anon_sym_exec] = ACTIONS(2024), - [anon_sym_type] = ACTIONS(2024), - [anon_sym_class] = ACTIONS(2024), - [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_AT] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_not] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2026), - [anon_sym_TILDE] = ACTIONS(2026), - [anon_sym_LT] = ACTIONS(2026), - [anon_sym_lambda] = ACTIONS(2024), - [anon_sym_yield] = ACTIONS(2024), - [sym_ellipsis] = ACTIONS(2026), - [anon_sym_None] = ACTIONS(2024), - [sym_integer] = ACTIONS(2024), - [sym_float] = ACTIONS(2026), - [anon_sym_await] = ACTIONS(2024), - [anon_sym_api] = ACTIONS(2024), - [sym_true] = ACTIONS(2024), - [sym_false] = ACTIONS(2024), + [sym_identifier] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2055), + [anon_sym_cimport] = ACTIONS(2055), + [anon_sym_from] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_print] = ACTIONS(2055), + [anon_sym_assert] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2055), + [anon_sym_del] = ACTIONS(2055), + [anon_sym_raise] = ACTIONS(2055), + [anon_sym_pass] = ACTIONS(2055), + [anon_sym_break] = ACTIONS(2055), + [anon_sym_continue] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_async] = ACTIONS(2055), + [anon_sym_for] = ACTIONS(2055), + [anon_sym_while] = ACTIONS(2055), + [anon_sym_try] = ACTIONS(2055), + [anon_sym_with] = ACTIONS(2055), + [anon_sym_def] = ACTIONS(2055), + [anon_sym_global] = ACTIONS(2055), + [anon_sym_nonlocal] = ACTIONS(2055), + [anon_sym_exec] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2055), + [anon_sym_class] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_not] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_lambda] = ACTIONS(2055), + [anon_sym_yield] = ACTIONS(2055), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2057), + [anon_sym_None] = ACTIONS(2055), + [sym_integer] = ACTIONS(2055), + [sym_float] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2055), + [anon_sym_api] = ACTIONS(2055), + [sym_true] = ACTIONS(2055), + [sym_false] = ACTIONS(2055), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2024), - [anon_sym_include] = ACTIONS(2024), - [anon_sym_DEF] = ACTIONS(2024), - [anon_sym_cdef] = ACTIONS(2024), - [anon_sym_cpdef] = ACTIONS(2024), - [anon_sym_int] = ACTIONS(2024), - [anon_sym_double] = ACTIONS(2024), - [anon_sym_complex] = ACTIONS(2024), - [anon_sym_new] = ACTIONS(2024), - [anon_sym_signed] = ACTIONS(2024), - [anon_sym_unsigned] = ACTIONS(2024), - [anon_sym_char] = ACTIONS(2024), - [anon_sym_short] = ACTIONS(2024), - [anon_sym_long] = ACTIONS(2024), - [anon_sym_const] = ACTIONS(2024), - [anon_sym_volatile] = ACTIONS(2024), - [anon_sym_ctypedef] = ACTIONS(2024), - [anon_sym_struct] = ACTIONS(2024), - [anon_sym_union] = ACTIONS(2024), - [anon_sym_enum] = ACTIONS(2024), - [anon_sym_cppclass] = ACTIONS(2024), - [anon_sym_fused] = ACTIONS(2024), - [anon_sym_public] = ACTIONS(2024), - [anon_sym_packed] = ACTIONS(2024), - [anon_sym_inline] = ACTIONS(2024), - [anon_sym_readonly] = ACTIONS(2024), - [anon_sym_sizeof] = ACTIONS(2024), - [sym__dedent] = ACTIONS(2026), - [sym_string_start] = ACTIONS(2026), + [anon_sym_property] = ACTIONS(2055), + [anon_sym_include] = ACTIONS(2055), + [anon_sym_DEF] = ACTIONS(2055), + [anon_sym_cdef] = ACTIONS(2055), + [anon_sym_cpdef] = ACTIONS(2055), + [anon_sym_int] = ACTIONS(2055), + [anon_sym_double] = ACTIONS(2055), + [anon_sym_complex] = ACTIONS(2055), + [anon_sym_new] = ACTIONS(2055), + [anon_sym_signed] = ACTIONS(2055), + [anon_sym_unsigned] = ACTIONS(2055), + [anon_sym_char] = ACTIONS(2055), + [anon_sym_short] = ACTIONS(2055), + [anon_sym_long] = ACTIONS(2055), + [anon_sym_const] = ACTIONS(2055), + [anon_sym_volatile] = ACTIONS(2055), + [anon_sym_ctypedef] = ACTIONS(2055), + [anon_sym_struct] = ACTIONS(2055), + [anon_sym_union] = ACTIONS(2055), + [anon_sym_enum] = ACTIONS(2055), + [anon_sym_cppclass] = ACTIONS(2055), + [anon_sym_fused] = ACTIONS(2055), + [anon_sym_public] = ACTIONS(2055), + [anon_sym_packed] = ACTIONS(2055), + [anon_sym_inline] = ACTIONS(2055), + [anon_sym_readonly] = ACTIONS(2055), + [anon_sym_sizeof] = ACTIONS(2055), + [sym__dedent] = ACTIONS(2057), + [sym_string_start] = ACTIONS(2057), }, [606] = { - [sym_identifier] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2030), - [anon_sym_import] = ACTIONS(2028), - [anon_sym_cimport] = ACTIONS(2028), - [anon_sym_from] = ACTIONS(2028), - [anon_sym_LPAREN] = ACTIONS(2030), - [anon_sym_STAR] = ACTIONS(2030), - [anon_sym_print] = ACTIONS(2028), - [anon_sym_assert] = ACTIONS(2028), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_del] = ACTIONS(2028), - [anon_sym_raise] = ACTIONS(2028), - [anon_sym_pass] = ACTIONS(2028), - [anon_sym_break] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(2028), - [anon_sym_if] = ACTIONS(2028), - [anon_sym_match] = ACTIONS(2028), - [anon_sym_async] = ACTIONS(2028), - [anon_sym_for] = ACTIONS(2028), - [anon_sym_while] = ACTIONS(2028), - [anon_sym_try] = ACTIONS(2028), - [anon_sym_with] = ACTIONS(2028), - [anon_sym_def] = ACTIONS(2028), - [anon_sym_global] = ACTIONS(2028), - [anon_sym_nonlocal] = ACTIONS(2028), - [anon_sym_exec] = ACTIONS(2028), - [anon_sym_type] = ACTIONS(2028), - [anon_sym_class] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_AT] = ACTIONS(2030), - [anon_sym_DASH] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(2030), - [anon_sym_PLUS] = ACTIONS(2030), - [anon_sym_not] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2030), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_LT] = ACTIONS(2030), - [anon_sym_lambda] = ACTIONS(2028), - [anon_sym_yield] = ACTIONS(2028), - [sym_ellipsis] = ACTIONS(2030), - [anon_sym_None] = ACTIONS(2028), - [sym_integer] = ACTIONS(2028), - [sym_float] = ACTIONS(2030), - [anon_sym_await] = ACTIONS(2028), - [anon_sym_api] = ACTIONS(2028), - [sym_true] = ACTIONS(2028), - [sym_false] = ACTIONS(2028), + [sym_identifier] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(2061), + [anon_sym_import] = ACTIONS(2059), + [anon_sym_cimport] = ACTIONS(2059), + [anon_sym_from] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_STAR] = ACTIONS(2061), + [anon_sym_print] = ACTIONS(2059), + [anon_sym_assert] = ACTIONS(2059), + [anon_sym_return] = ACTIONS(2059), + [anon_sym_del] = ACTIONS(2059), + [anon_sym_raise] = ACTIONS(2059), + [anon_sym_pass] = ACTIONS(2059), + [anon_sym_break] = ACTIONS(2059), + [anon_sym_continue] = ACTIONS(2059), + [anon_sym_if] = ACTIONS(2059), + [anon_sym_match] = ACTIONS(2059), + [anon_sym_async] = ACTIONS(2059), + [anon_sym_for] = ACTIONS(2059), + [anon_sym_while] = ACTIONS(2059), + [anon_sym_try] = ACTIONS(2059), + [anon_sym_with] = ACTIONS(2059), + [anon_sym_def] = ACTIONS(2059), + [anon_sym_global] = ACTIONS(2059), + [anon_sym_nonlocal] = ACTIONS(2059), + [anon_sym_exec] = ACTIONS(2059), + [anon_sym_type] = ACTIONS(2059), + [anon_sym_class] = ACTIONS(2059), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_AT] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2061), + [anon_sym_not] = ACTIONS(2059), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_TILDE] = ACTIONS(2061), + [anon_sym_LT] = ACTIONS(2061), + [anon_sym_lambda] = ACTIONS(2059), + [anon_sym_yield] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2061), + [anon_sym_None] = ACTIONS(2059), + [sym_integer] = ACTIONS(2059), + [sym_float] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(2059), + [anon_sym_api] = ACTIONS(2059), + [sym_true] = ACTIONS(2059), + [sym_false] = ACTIONS(2059), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2028), - [anon_sym_include] = ACTIONS(2028), - [anon_sym_DEF] = ACTIONS(2028), - [anon_sym_cdef] = ACTIONS(2028), - [anon_sym_cpdef] = ACTIONS(2028), - [anon_sym_int] = ACTIONS(2028), - [anon_sym_double] = ACTIONS(2028), - [anon_sym_complex] = ACTIONS(2028), - [anon_sym_new] = ACTIONS(2028), - [anon_sym_signed] = ACTIONS(2028), - [anon_sym_unsigned] = ACTIONS(2028), - [anon_sym_char] = ACTIONS(2028), - [anon_sym_short] = ACTIONS(2028), - [anon_sym_long] = ACTIONS(2028), - [anon_sym_const] = ACTIONS(2028), - [anon_sym_volatile] = ACTIONS(2028), - [anon_sym_ctypedef] = ACTIONS(2028), - [anon_sym_struct] = ACTIONS(2028), - [anon_sym_union] = ACTIONS(2028), - [anon_sym_enum] = ACTIONS(2028), - [anon_sym_cppclass] = ACTIONS(2028), - [anon_sym_fused] = ACTIONS(2028), - [anon_sym_public] = ACTIONS(2028), - [anon_sym_packed] = ACTIONS(2028), - [anon_sym_inline] = ACTIONS(2028), - [anon_sym_readonly] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2028), - [sym__dedent] = ACTIONS(2030), - [sym_string_start] = ACTIONS(2030), + [anon_sym_property] = ACTIONS(2059), + [anon_sym_include] = ACTIONS(2059), + [anon_sym_DEF] = ACTIONS(2059), + [anon_sym_cdef] = ACTIONS(2059), + [anon_sym_cpdef] = ACTIONS(2059), + [anon_sym_int] = ACTIONS(2059), + [anon_sym_double] = ACTIONS(2059), + [anon_sym_complex] = ACTIONS(2059), + [anon_sym_new] = ACTIONS(2059), + [anon_sym_signed] = ACTIONS(2059), + [anon_sym_unsigned] = ACTIONS(2059), + [anon_sym_char] = ACTIONS(2059), + [anon_sym_short] = ACTIONS(2059), + [anon_sym_long] = ACTIONS(2059), + [anon_sym_const] = ACTIONS(2059), + [anon_sym_volatile] = ACTIONS(2059), + [anon_sym_ctypedef] = ACTIONS(2059), + [anon_sym_struct] = ACTIONS(2059), + [anon_sym_union] = ACTIONS(2059), + [anon_sym_enum] = ACTIONS(2059), + [anon_sym_cppclass] = ACTIONS(2059), + [anon_sym_fused] = ACTIONS(2059), + [anon_sym_public] = ACTIONS(2059), + [anon_sym_packed] = ACTIONS(2059), + [anon_sym_inline] = ACTIONS(2059), + [anon_sym_readonly] = ACTIONS(2059), + [anon_sym_sizeof] = ACTIONS(2059), + [sym__dedent] = ACTIONS(2061), + [sym_string_start] = ACTIONS(2061), }, [607] = { - [sym_identifier] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_import] = ACTIONS(2032), - [anon_sym_cimport] = ACTIONS(2032), - [anon_sym_from] = ACTIONS(2032), - [anon_sym_LPAREN] = ACTIONS(2034), - [anon_sym_STAR] = ACTIONS(2034), - [anon_sym_print] = ACTIONS(2032), - [anon_sym_assert] = ACTIONS(2032), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_del] = ACTIONS(2032), - [anon_sym_raise] = ACTIONS(2032), - [anon_sym_pass] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_match] = ACTIONS(2032), - [anon_sym_async] = ACTIONS(2032), - [anon_sym_for] = ACTIONS(2032), - [anon_sym_while] = ACTIONS(2032), - [anon_sym_try] = ACTIONS(2032), - [anon_sym_with] = ACTIONS(2032), - [anon_sym_def] = ACTIONS(2032), - [anon_sym_global] = ACTIONS(2032), - [anon_sym_nonlocal] = ACTIONS(2032), - [anon_sym_exec] = ACTIONS(2032), - [anon_sym_type] = ACTIONS(2032), - [anon_sym_class] = ACTIONS(2032), - [anon_sym_LBRACK] = ACTIONS(2034), - [anon_sym_AT] = ACTIONS(2034), - [anon_sym_DASH] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2034), - [anon_sym_PLUS] = ACTIONS(2034), - [anon_sym_not] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2034), - [anon_sym_TILDE] = ACTIONS(2034), - [anon_sym_LT] = ACTIONS(2034), - [anon_sym_lambda] = ACTIONS(2032), - [anon_sym_yield] = ACTIONS(2032), - [sym_ellipsis] = ACTIONS(2034), - [anon_sym_None] = ACTIONS(2032), - [sym_integer] = ACTIONS(2032), - [sym_float] = ACTIONS(2034), - [anon_sym_await] = ACTIONS(2032), - [anon_sym_api] = ACTIONS(2032), - [sym_true] = ACTIONS(2032), - [sym_false] = ACTIONS(2032), + [sym_identifier] = ACTIONS(2063), + [anon_sym_SEMI] = ACTIONS(2065), + [anon_sym_import] = ACTIONS(2063), + [anon_sym_cimport] = ACTIONS(2063), + [anon_sym_from] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2065), + [anon_sym_print] = ACTIONS(2063), + [anon_sym_assert] = ACTIONS(2063), + [anon_sym_return] = ACTIONS(2063), + [anon_sym_del] = ACTIONS(2063), + [anon_sym_raise] = ACTIONS(2063), + [anon_sym_pass] = ACTIONS(2063), + [anon_sym_break] = ACTIONS(2063), + [anon_sym_continue] = ACTIONS(2063), + [anon_sym_if] = ACTIONS(2063), + [anon_sym_match] = ACTIONS(2063), + [anon_sym_async] = ACTIONS(2063), + [anon_sym_for] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2063), + [anon_sym_try] = ACTIONS(2063), + [anon_sym_with] = ACTIONS(2063), + [anon_sym_def] = ACTIONS(2063), + [anon_sym_global] = ACTIONS(2063), + [anon_sym_nonlocal] = ACTIONS(2063), + [anon_sym_exec] = ACTIONS(2063), + [anon_sym_type] = ACTIONS(2063), + [anon_sym_class] = ACTIONS(2063), + [anon_sym_LBRACK] = ACTIONS(2065), + [anon_sym_AT] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_not] = ACTIONS(2063), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_lambda] = ACTIONS(2063), + [anon_sym_yield] = ACTIONS(2063), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2065), + [anon_sym_None] = ACTIONS(2063), + [sym_integer] = ACTIONS(2063), + [sym_float] = ACTIONS(2065), + [anon_sym_await] = ACTIONS(2063), + [anon_sym_api] = ACTIONS(2063), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2032), - [anon_sym_include] = ACTIONS(2032), - [anon_sym_DEF] = ACTIONS(2032), - [anon_sym_cdef] = ACTIONS(2032), - [anon_sym_cpdef] = ACTIONS(2032), - [anon_sym_int] = ACTIONS(2032), - [anon_sym_double] = ACTIONS(2032), - [anon_sym_complex] = ACTIONS(2032), - [anon_sym_new] = ACTIONS(2032), - [anon_sym_signed] = ACTIONS(2032), - [anon_sym_unsigned] = ACTIONS(2032), - [anon_sym_char] = ACTIONS(2032), - [anon_sym_short] = ACTIONS(2032), - [anon_sym_long] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2032), - [anon_sym_volatile] = ACTIONS(2032), - [anon_sym_ctypedef] = ACTIONS(2032), - [anon_sym_struct] = ACTIONS(2032), - [anon_sym_union] = ACTIONS(2032), - [anon_sym_enum] = ACTIONS(2032), - [anon_sym_cppclass] = ACTIONS(2032), - [anon_sym_fused] = ACTIONS(2032), - [anon_sym_public] = ACTIONS(2032), - [anon_sym_packed] = ACTIONS(2032), - [anon_sym_inline] = ACTIONS(2032), - [anon_sym_readonly] = ACTIONS(2032), - [anon_sym_sizeof] = ACTIONS(2032), - [sym__dedent] = ACTIONS(2034), - [sym_string_start] = ACTIONS(2034), + [anon_sym_property] = ACTIONS(2063), + [anon_sym_include] = ACTIONS(2063), + [anon_sym_DEF] = ACTIONS(2063), + [anon_sym_cdef] = ACTIONS(2063), + [anon_sym_cpdef] = ACTIONS(2063), + [anon_sym_int] = ACTIONS(2063), + [anon_sym_double] = ACTIONS(2063), + [anon_sym_complex] = ACTIONS(2063), + [anon_sym_new] = ACTIONS(2063), + [anon_sym_signed] = ACTIONS(2063), + [anon_sym_unsigned] = ACTIONS(2063), + [anon_sym_char] = ACTIONS(2063), + [anon_sym_short] = ACTIONS(2063), + [anon_sym_long] = ACTIONS(2063), + [anon_sym_const] = ACTIONS(2063), + [anon_sym_volatile] = ACTIONS(2063), + [anon_sym_ctypedef] = ACTIONS(2063), + [anon_sym_struct] = ACTIONS(2063), + [anon_sym_union] = ACTIONS(2063), + [anon_sym_enum] = ACTIONS(2063), + [anon_sym_cppclass] = ACTIONS(2063), + [anon_sym_fused] = ACTIONS(2063), + [anon_sym_public] = ACTIONS(2063), + [anon_sym_packed] = ACTIONS(2063), + [anon_sym_inline] = ACTIONS(2063), + [anon_sym_readonly] = ACTIONS(2063), + [anon_sym_sizeof] = ACTIONS(2063), + [sym__dedent] = ACTIONS(2065), + [sym_string_start] = ACTIONS(2065), }, [608] = { - [sym_identifier] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_import] = ACTIONS(2036), - [anon_sym_cimport] = ACTIONS(2036), - [anon_sym_from] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_print] = ACTIONS(2036), - [anon_sym_assert] = ACTIONS(2036), - [anon_sym_return] = ACTIONS(2036), - [anon_sym_del] = ACTIONS(2036), - [anon_sym_raise] = ACTIONS(2036), - [anon_sym_pass] = ACTIONS(2036), - [anon_sym_break] = ACTIONS(2036), - [anon_sym_continue] = ACTIONS(2036), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_match] = ACTIONS(2036), - [anon_sym_async] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_while] = ACTIONS(2036), - [anon_sym_try] = ACTIONS(2036), - [anon_sym_with] = ACTIONS(2036), - [anon_sym_def] = ACTIONS(2036), - [anon_sym_global] = ACTIONS(2036), - [anon_sym_nonlocal] = ACTIONS(2036), - [anon_sym_exec] = ACTIONS(2036), - [anon_sym_type] = ACTIONS(2036), - [anon_sym_class] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2038), - [anon_sym_AT] = ACTIONS(2038), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_not] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2038), - [anon_sym_TILDE] = ACTIONS(2038), - [anon_sym_LT] = ACTIONS(2038), - [anon_sym_lambda] = ACTIONS(2036), - [anon_sym_yield] = ACTIONS(2036), - [sym_ellipsis] = ACTIONS(2038), - [anon_sym_None] = ACTIONS(2036), - [sym_integer] = ACTIONS(2036), - [sym_float] = ACTIONS(2038), - [anon_sym_await] = ACTIONS(2036), - [anon_sym_api] = ACTIONS(2036), - [sym_true] = ACTIONS(2036), - [sym_false] = ACTIONS(2036), + [sym_identifier] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2069), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_cimport] = ACTIONS(2067), + [anon_sym_from] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_STAR] = ACTIONS(2069), + [anon_sym_print] = ACTIONS(2067), + [anon_sym_assert] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_del] = ACTIONS(2067), + [anon_sym_raise] = ACTIONS(2067), + [anon_sym_pass] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_match] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_def] = ACTIONS(2067), + [anon_sym_global] = ACTIONS(2067), + [anon_sym_nonlocal] = ACTIONS(2067), + [anon_sym_exec] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_AT] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_PLUS] = ACTIONS(2069), + [anon_sym_not] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2069), + [anon_sym_TILDE] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2069), + [anon_sym_lambda] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2069), + [anon_sym_None] = ACTIONS(2067), + [sym_integer] = ACTIONS(2067), + [sym_float] = ACTIONS(2069), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_api] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2036), - [anon_sym_include] = ACTIONS(2036), - [anon_sym_DEF] = ACTIONS(2036), - [anon_sym_cdef] = ACTIONS(2036), - [anon_sym_cpdef] = ACTIONS(2036), - [anon_sym_int] = ACTIONS(2036), - [anon_sym_double] = ACTIONS(2036), - [anon_sym_complex] = ACTIONS(2036), - [anon_sym_new] = ACTIONS(2036), - [anon_sym_signed] = ACTIONS(2036), - [anon_sym_unsigned] = ACTIONS(2036), - [anon_sym_char] = ACTIONS(2036), - [anon_sym_short] = ACTIONS(2036), - [anon_sym_long] = ACTIONS(2036), - [anon_sym_const] = ACTIONS(2036), - [anon_sym_volatile] = ACTIONS(2036), - [anon_sym_ctypedef] = ACTIONS(2036), - [anon_sym_struct] = ACTIONS(2036), - [anon_sym_union] = ACTIONS(2036), - [anon_sym_enum] = ACTIONS(2036), - [anon_sym_cppclass] = ACTIONS(2036), - [anon_sym_fused] = ACTIONS(2036), - [anon_sym_public] = ACTIONS(2036), - [anon_sym_packed] = ACTIONS(2036), - [anon_sym_inline] = ACTIONS(2036), - [anon_sym_readonly] = ACTIONS(2036), - [anon_sym_sizeof] = ACTIONS(2036), - [sym__dedent] = ACTIONS(2038), - [sym_string_start] = ACTIONS(2038), + [anon_sym_property] = ACTIONS(2067), + [anon_sym_include] = ACTIONS(2067), + [anon_sym_DEF] = ACTIONS(2067), + [anon_sym_cdef] = ACTIONS(2067), + [anon_sym_cpdef] = ACTIONS(2067), + [anon_sym_int] = ACTIONS(2067), + [anon_sym_double] = ACTIONS(2067), + [anon_sym_complex] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_signed] = ACTIONS(2067), + [anon_sym_unsigned] = ACTIONS(2067), + [anon_sym_char] = ACTIONS(2067), + [anon_sym_short] = ACTIONS(2067), + [anon_sym_long] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_volatile] = ACTIONS(2067), + [anon_sym_ctypedef] = ACTIONS(2067), + [anon_sym_struct] = ACTIONS(2067), + [anon_sym_union] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [anon_sym_cppclass] = ACTIONS(2067), + [anon_sym_fused] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_packed] = ACTIONS(2067), + [anon_sym_inline] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_sizeof] = ACTIONS(2067), + [sym__dedent] = ACTIONS(2069), + [sym_string_start] = ACTIONS(2069), }, [609] = { - [sym_identifier] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2042), - [anon_sym_import] = ACTIONS(2040), - [anon_sym_cimport] = ACTIONS(2040), - [anon_sym_from] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(2042), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_print] = ACTIONS(2040), - [anon_sym_assert] = ACTIONS(2040), - [anon_sym_return] = ACTIONS(2040), - [anon_sym_del] = ACTIONS(2040), - [anon_sym_raise] = ACTIONS(2040), - [anon_sym_pass] = ACTIONS(2040), - [anon_sym_break] = ACTIONS(2040), - [anon_sym_continue] = ACTIONS(2040), - [anon_sym_if] = ACTIONS(2040), - [anon_sym_match] = ACTIONS(2040), - [anon_sym_async] = ACTIONS(2040), - [anon_sym_for] = ACTIONS(2040), - [anon_sym_while] = ACTIONS(2040), - [anon_sym_try] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(2040), - [anon_sym_def] = ACTIONS(2040), - [anon_sym_global] = ACTIONS(2040), - [anon_sym_nonlocal] = ACTIONS(2040), - [anon_sym_exec] = ACTIONS(2040), - [anon_sym_type] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2042), - [anon_sym_AT] = ACTIONS(2042), - [anon_sym_DASH] = ACTIONS(2042), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_PLUS] = ACTIONS(2042), - [anon_sym_not] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2042), - [anon_sym_TILDE] = ACTIONS(2042), - [anon_sym_LT] = ACTIONS(2042), - [anon_sym_lambda] = ACTIONS(2040), - [anon_sym_yield] = ACTIONS(2040), - [sym_ellipsis] = ACTIONS(2042), - [anon_sym_None] = ACTIONS(2040), - [sym_integer] = ACTIONS(2040), - [sym_float] = ACTIONS(2042), - [anon_sym_await] = ACTIONS(2040), - [anon_sym_api] = ACTIONS(2040), - [sym_true] = ACTIONS(2040), - [sym_false] = ACTIONS(2040), + [sym_identifier] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_import] = ACTIONS(2071), + [anon_sym_cimport] = ACTIONS(2071), + [anon_sym_from] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_print] = ACTIONS(2071), + [anon_sym_assert] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2071), + [anon_sym_del] = ACTIONS(2071), + [anon_sym_raise] = ACTIONS(2071), + [anon_sym_pass] = ACTIONS(2071), + [anon_sym_break] = ACTIONS(2071), + [anon_sym_continue] = ACTIONS(2071), + [anon_sym_if] = ACTIONS(2071), + [anon_sym_match] = ACTIONS(2071), + [anon_sym_async] = ACTIONS(2071), + [anon_sym_for] = ACTIONS(2071), + [anon_sym_while] = ACTIONS(2071), + [anon_sym_try] = ACTIONS(2071), + [anon_sym_with] = ACTIONS(2071), + [anon_sym_def] = ACTIONS(2071), + [anon_sym_global] = ACTIONS(2071), + [anon_sym_nonlocal] = ACTIONS(2071), + [anon_sym_exec] = ACTIONS(2071), + [anon_sym_type] = ACTIONS(2071), + [anon_sym_class] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(2073), + [anon_sym_AT] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_LBRACE] = ACTIONS(2073), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_not] = ACTIONS(2071), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_lambda] = ACTIONS(2071), + [anon_sym_yield] = ACTIONS(2071), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_None] = ACTIONS(2071), + [sym_integer] = ACTIONS(2071), + [sym_float] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_api] = ACTIONS(2071), + [sym_true] = ACTIONS(2071), + [sym_false] = ACTIONS(2071), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2040), - [anon_sym_include] = ACTIONS(2040), - [anon_sym_DEF] = ACTIONS(2040), - [anon_sym_cdef] = ACTIONS(2040), - [anon_sym_cpdef] = ACTIONS(2040), - [anon_sym_int] = ACTIONS(2040), - [anon_sym_double] = ACTIONS(2040), - [anon_sym_complex] = ACTIONS(2040), - [anon_sym_new] = ACTIONS(2040), - [anon_sym_signed] = ACTIONS(2040), - [anon_sym_unsigned] = ACTIONS(2040), - [anon_sym_char] = ACTIONS(2040), - [anon_sym_short] = ACTIONS(2040), - [anon_sym_long] = ACTIONS(2040), - [anon_sym_const] = ACTIONS(2040), - [anon_sym_volatile] = ACTIONS(2040), - [anon_sym_ctypedef] = ACTIONS(2040), - [anon_sym_struct] = ACTIONS(2040), - [anon_sym_union] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_cppclass] = ACTIONS(2040), - [anon_sym_fused] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_packed] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_readonly] = ACTIONS(2040), - [anon_sym_sizeof] = ACTIONS(2040), - [sym__dedent] = ACTIONS(2042), - [sym_string_start] = ACTIONS(2042), + [anon_sym_property] = ACTIONS(2071), + [anon_sym_include] = ACTIONS(2071), + [anon_sym_DEF] = ACTIONS(2071), + [anon_sym_cdef] = ACTIONS(2071), + [anon_sym_cpdef] = ACTIONS(2071), + [anon_sym_int] = ACTIONS(2071), + [anon_sym_double] = ACTIONS(2071), + [anon_sym_complex] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2071), + [anon_sym_signed] = ACTIONS(2071), + [anon_sym_unsigned] = ACTIONS(2071), + [anon_sym_char] = ACTIONS(2071), + [anon_sym_short] = ACTIONS(2071), + [anon_sym_long] = ACTIONS(2071), + [anon_sym_const] = ACTIONS(2071), + [anon_sym_volatile] = ACTIONS(2071), + [anon_sym_ctypedef] = ACTIONS(2071), + [anon_sym_struct] = ACTIONS(2071), + [anon_sym_union] = ACTIONS(2071), + [anon_sym_enum] = ACTIONS(2071), + [anon_sym_cppclass] = ACTIONS(2071), + [anon_sym_fused] = ACTIONS(2071), + [anon_sym_public] = ACTIONS(2071), + [anon_sym_packed] = ACTIONS(2071), + [anon_sym_inline] = ACTIONS(2071), + [anon_sym_readonly] = ACTIONS(2071), + [anon_sym_sizeof] = ACTIONS(2071), + [sym__dedent] = ACTIONS(2073), + [sym_string_start] = ACTIONS(2073), }, [610] = { - [sym_identifier] = ACTIONS(2044), - [anon_sym_SEMI] = ACTIONS(2046), - [anon_sym_import] = ACTIONS(2044), - [anon_sym_cimport] = ACTIONS(2044), - [anon_sym_from] = ACTIONS(2044), - [anon_sym_LPAREN] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2046), - [anon_sym_print] = ACTIONS(2044), - [anon_sym_assert] = ACTIONS(2044), - [anon_sym_return] = ACTIONS(2044), - [anon_sym_del] = ACTIONS(2044), - [anon_sym_raise] = ACTIONS(2044), - [anon_sym_pass] = ACTIONS(2044), - [anon_sym_break] = ACTIONS(2044), - [anon_sym_continue] = ACTIONS(2044), - [anon_sym_if] = ACTIONS(2044), - [anon_sym_match] = ACTIONS(2044), - [anon_sym_async] = ACTIONS(2044), - [anon_sym_for] = ACTIONS(2044), - [anon_sym_while] = ACTIONS(2044), - [anon_sym_try] = ACTIONS(2044), - [anon_sym_with] = ACTIONS(2044), - [anon_sym_def] = ACTIONS(2044), - [anon_sym_global] = ACTIONS(2044), - [anon_sym_nonlocal] = ACTIONS(2044), - [anon_sym_exec] = ACTIONS(2044), - [anon_sym_type] = ACTIONS(2044), - [anon_sym_class] = ACTIONS(2044), - [anon_sym_LBRACK] = ACTIONS(2046), - [anon_sym_AT] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2046), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_not] = ACTIONS(2044), - [anon_sym_AMP] = ACTIONS(2046), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_LT] = ACTIONS(2046), - [anon_sym_lambda] = ACTIONS(2044), - [anon_sym_yield] = ACTIONS(2044), - [sym_ellipsis] = ACTIONS(2046), - [anon_sym_None] = ACTIONS(2044), - [sym_integer] = ACTIONS(2044), - [sym_float] = ACTIONS(2046), - [anon_sym_await] = ACTIONS(2044), - [anon_sym_api] = ACTIONS(2044), - [sym_true] = ACTIONS(2044), - [sym_false] = ACTIONS(2044), + [sym_identifier] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2077), + [anon_sym_import] = ACTIONS(2075), + [anon_sym_cimport] = ACTIONS(2075), + [anon_sym_from] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_STAR] = ACTIONS(2077), + [anon_sym_print] = ACTIONS(2075), + [anon_sym_assert] = ACTIONS(2075), + [anon_sym_return] = ACTIONS(2075), + [anon_sym_del] = ACTIONS(2075), + [anon_sym_raise] = ACTIONS(2075), + [anon_sym_pass] = ACTIONS(2075), + [anon_sym_break] = ACTIONS(2075), + [anon_sym_continue] = ACTIONS(2075), + [anon_sym_if] = ACTIONS(2075), + [anon_sym_match] = ACTIONS(2075), + [anon_sym_async] = ACTIONS(2075), + [anon_sym_for] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2075), + [anon_sym_try] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(2075), + [anon_sym_def] = ACTIONS(2075), + [anon_sym_global] = ACTIONS(2075), + [anon_sym_nonlocal] = ACTIONS(2075), + [anon_sym_exec] = ACTIONS(2075), + [anon_sym_type] = ACTIONS(2075), + [anon_sym_class] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_AT] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(2077), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_PLUS] = ACTIONS(2077), + [anon_sym_not] = ACTIONS(2075), + [anon_sym_AMP] = ACTIONS(2077), + [anon_sym_TILDE] = ACTIONS(2077), + [anon_sym_LT] = ACTIONS(2077), + [anon_sym_lambda] = ACTIONS(2075), + [anon_sym_yield] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2077), + [anon_sym_None] = ACTIONS(2075), + [sym_integer] = ACTIONS(2075), + [sym_float] = ACTIONS(2077), + [anon_sym_await] = ACTIONS(2075), + [anon_sym_api] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2044), - [anon_sym_include] = ACTIONS(2044), - [anon_sym_DEF] = ACTIONS(2044), - [anon_sym_cdef] = ACTIONS(2044), - [anon_sym_cpdef] = ACTIONS(2044), - [anon_sym_int] = ACTIONS(2044), - [anon_sym_double] = ACTIONS(2044), - [anon_sym_complex] = ACTIONS(2044), - [anon_sym_new] = ACTIONS(2044), - [anon_sym_signed] = ACTIONS(2044), - [anon_sym_unsigned] = ACTIONS(2044), - [anon_sym_char] = ACTIONS(2044), - [anon_sym_short] = ACTIONS(2044), - [anon_sym_long] = ACTIONS(2044), - [anon_sym_const] = ACTIONS(2044), - [anon_sym_volatile] = ACTIONS(2044), - [anon_sym_ctypedef] = ACTIONS(2044), - [anon_sym_struct] = ACTIONS(2044), - [anon_sym_union] = ACTIONS(2044), - [anon_sym_enum] = ACTIONS(2044), - [anon_sym_cppclass] = ACTIONS(2044), - [anon_sym_fused] = ACTIONS(2044), - [anon_sym_public] = ACTIONS(2044), - [anon_sym_packed] = ACTIONS(2044), - [anon_sym_inline] = ACTIONS(2044), - [anon_sym_readonly] = ACTIONS(2044), - [anon_sym_sizeof] = ACTIONS(2044), - [sym__dedent] = ACTIONS(2046), - [sym_string_start] = ACTIONS(2046), + [anon_sym_property] = ACTIONS(2075), + [anon_sym_include] = ACTIONS(2075), + [anon_sym_DEF] = ACTIONS(2075), + [anon_sym_cdef] = ACTIONS(2075), + [anon_sym_cpdef] = ACTIONS(2075), + [anon_sym_int] = ACTIONS(2075), + [anon_sym_double] = ACTIONS(2075), + [anon_sym_complex] = ACTIONS(2075), + [anon_sym_new] = ACTIONS(2075), + [anon_sym_signed] = ACTIONS(2075), + [anon_sym_unsigned] = ACTIONS(2075), + [anon_sym_char] = ACTIONS(2075), + [anon_sym_short] = ACTIONS(2075), + [anon_sym_long] = ACTIONS(2075), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_volatile] = ACTIONS(2075), + [anon_sym_ctypedef] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(2075), + [anon_sym_union] = ACTIONS(2075), + [anon_sym_enum] = ACTIONS(2075), + [anon_sym_cppclass] = ACTIONS(2075), + [anon_sym_fused] = ACTIONS(2075), + [anon_sym_public] = ACTIONS(2075), + [anon_sym_packed] = ACTIONS(2075), + [anon_sym_inline] = ACTIONS(2075), + [anon_sym_readonly] = ACTIONS(2075), + [anon_sym_sizeof] = ACTIONS(2075), + [sym__dedent] = ACTIONS(2077), + [sym_string_start] = ACTIONS(2077), }, [611] = { - [sym_identifier] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2050), - [anon_sym_import] = ACTIONS(2048), - [anon_sym_cimport] = ACTIONS(2048), - [anon_sym_from] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2050), - [anon_sym_print] = ACTIONS(2048), - [anon_sym_assert] = ACTIONS(2048), - [anon_sym_return] = ACTIONS(2048), - [anon_sym_del] = ACTIONS(2048), - [anon_sym_raise] = ACTIONS(2048), - [anon_sym_pass] = ACTIONS(2048), - [anon_sym_break] = ACTIONS(2048), - [anon_sym_continue] = ACTIONS(2048), - [anon_sym_if] = ACTIONS(2048), - [anon_sym_match] = ACTIONS(2048), - [anon_sym_async] = ACTIONS(2048), - [anon_sym_for] = ACTIONS(2048), - [anon_sym_while] = ACTIONS(2048), - [anon_sym_try] = ACTIONS(2048), - [anon_sym_with] = ACTIONS(2048), - [anon_sym_def] = ACTIONS(2048), - [anon_sym_global] = ACTIONS(2048), - [anon_sym_nonlocal] = ACTIONS(2048), - [anon_sym_exec] = ACTIONS(2048), - [anon_sym_type] = ACTIONS(2048), - [anon_sym_class] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_AT] = ACTIONS(2050), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2050), - [anon_sym_PLUS] = ACTIONS(2050), - [anon_sym_not] = ACTIONS(2048), - [anon_sym_AMP] = ACTIONS(2050), - [anon_sym_TILDE] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_lambda] = ACTIONS(2048), - [anon_sym_yield] = ACTIONS(2048), - [sym_ellipsis] = ACTIONS(2050), - [anon_sym_None] = ACTIONS(2048), - [sym_integer] = ACTIONS(2048), - [sym_float] = ACTIONS(2050), - [anon_sym_await] = ACTIONS(2048), - [anon_sym_api] = ACTIONS(2048), - [sym_true] = ACTIONS(2048), - [sym_false] = ACTIONS(2048), + [sym_identifier] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_import] = ACTIONS(2079), + [anon_sym_cimport] = ACTIONS(2079), + [anon_sym_from] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2081), + [anon_sym_print] = ACTIONS(2079), + [anon_sym_assert] = ACTIONS(2079), + [anon_sym_return] = ACTIONS(2079), + [anon_sym_del] = ACTIONS(2079), + [anon_sym_raise] = ACTIONS(2079), + [anon_sym_pass] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_if] = ACTIONS(2079), + [anon_sym_match] = ACTIONS(2079), + [anon_sym_async] = ACTIONS(2079), + [anon_sym_for] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2079), + [anon_sym_try] = ACTIONS(2079), + [anon_sym_with] = ACTIONS(2079), + [anon_sym_def] = ACTIONS(2079), + [anon_sym_global] = ACTIONS(2079), + [anon_sym_nonlocal] = ACTIONS(2079), + [anon_sym_exec] = ACTIONS(2079), + [anon_sym_type] = ACTIONS(2079), + [anon_sym_class] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2081), + [anon_sym_AT] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_LBRACE] = ACTIONS(2081), + [anon_sym_PLUS] = ACTIONS(2081), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_AMP] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_LT] = ACTIONS(2081), + [anon_sym_lambda] = ACTIONS(2079), + [anon_sym_yield] = ACTIONS(2079), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2081), + [anon_sym_None] = ACTIONS(2079), + [sym_integer] = ACTIONS(2079), + [sym_float] = ACTIONS(2081), + [anon_sym_await] = ACTIONS(2079), + [anon_sym_api] = ACTIONS(2079), + [sym_true] = ACTIONS(2079), + [sym_false] = ACTIONS(2079), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2048), - [anon_sym_include] = ACTIONS(2048), - [anon_sym_DEF] = ACTIONS(2048), - [anon_sym_cdef] = ACTIONS(2048), - [anon_sym_cpdef] = ACTIONS(2048), - [anon_sym_int] = ACTIONS(2048), - [anon_sym_double] = ACTIONS(2048), - [anon_sym_complex] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2048), - [anon_sym_signed] = ACTIONS(2048), - [anon_sym_unsigned] = ACTIONS(2048), - [anon_sym_char] = ACTIONS(2048), - [anon_sym_short] = ACTIONS(2048), - [anon_sym_long] = ACTIONS(2048), - [anon_sym_const] = ACTIONS(2048), - [anon_sym_volatile] = ACTIONS(2048), - [anon_sym_ctypedef] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(2048), - [anon_sym_union] = ACTIONS(2048), - [anon_sym_enum] = ACTIONS(2048), - [anon_sym_cppclass] = ACTIONS(2048), - [anon_sym_fused] = ACTIONS(2048), - [anon_sym_public] = ACTIONS(2048), - [anon_sym_packed] = ACTIONS(2048), - [anon_sym_inline] = ACTIONS(2048), - [anon_sym_readonly] = ACTIONS(2048), - [anon_sym_sizeof] = ACTIONS(2048), - [sym__dedent] = ACTIONS(2050), - [sym_string_start] = ACTIONS(2050), + [anon_sym_property] = ACTIONS(2079), + [anon_sym_include] = ACTIONS(2079), + [anon_sym_DEF] = ACTIONS(2079), + [anon_sym_cdef] = ACTIONS(2079), + [anon_sym_cpdef] = ACTIONS(2079), + [anon_sym_int] = ACTIONS(2079), + [anon_sym_double] = ACTIONS(2079), + [anon_sym_complex] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2079), + [anon_sym_signed] = ACTIONS(2079), + [anon_sym_unsigned] = ACTIONS(2079), + [anon_sym_char] = ACTIONS(2079), + [anon_sym_short] = ACTIONS(2079), + [anon_sym_long] = ACTIONS(2079), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_volatile] = ACTIONS(2079), + [anon_sym_ctypedef] = ACTIONS(2079), + [anon_sym_struct] = ACTIONS(2079), + [anon_sym_union] = ACTIONS(2079), + [anon_sym_enum] = ACTIONS(2079), + [anon_sym_cppclass] = ACTIONS(2079), + [anon_sym_fused] = ACTIONS(2079), + [anon_sym_public] = ACTIONS(2079), + [anon_sym_packed] = ACTIONS(2079), + [anon_sym_inline] = ACTIONS(2079), + [anon_sym_readonly] = ACTIONS(2079), + [anon_sym_sizeof] = ACTIONS(2079), + [sym__dedent] = ACTIONS(2081), + [sym_string_start] = ACTIONS(2081), }, [612] = { - [sym_identifier] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_import] = ACTIONS(2052), - [anon_sym_cimport] = ACTIONS(2052), - [anon_sym_from] = ACTIONS(2052), - [anon_sym_LPAREN] = ACTIONS(2054), - [anon_sym_STAR] = ACTIONS(2054), - [anon_sym_print] = ACTIONS(2052), - [anon_sym_assert] = ACTIONS(2052), - [anon_sym_return] = ACTIONS(2052), - [anon_sym_del] = ACTIONS(2052), - [anon_sym_raise] = ACTIONS(2052), - [anon_sym_pass] = ACTIONS(2052), - [anon_sym_break] = ACTIONS(2052), - [anon_sym_continue] = ACTIONS(2052), - [anon_sym_if] = ACTIONS(2052), - [anon_sym_match] = ACTIONS(2052), - [anon_sym_async] = ACTIONS(2052), - [anon_sym_for] = ACTIONS(2052), - [anon_sym_while] = ACTIONS(2052), - [anon_sym_try] = ACTIONS(2052), - [anon_sym_with] = ACTIONS(2052), - [anon_sym_def] = ACTIONS(2052), - [anon_sym_global] = ACTIONS(2052), - [anon_sym_nonlocal] = ACTIONS(2052), - [anon_sym_exec] = ACTIONS(2052), - [anon_sym_type] = ACTIONS(2052), - [anon_sym_class] = ACTIONS(2052), - [anon_sym_LBRACK] = ACTIONS(2054), - [anon_sym_AT] = ACTIONS(2054), - [anon_sym_DASH] = ACTIONS(2054), - [anon_sym_LBRACE] = ACTIONS(2054), - [anon_sym_PLUS] = ACTIONS(2054), - [anon_sym_not] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2054), - [anon_sym_TILDE] = ACTIONS(2054), - [anon_sym_LT] = ACTIONS(2054), - [anon_sym_lambda] = ACTIONS(2052), - [anon_sym_yield] = ACTIONS(2052), - [sym_ellipsis] = ACTIONS(2054), - [anon_sym_None] = ACTIONS(2052), - [sym_integer] = ACTIONS(2052), - [sym_float] = ACTIONS(2054), - [anon_sym_await] = ACTIONS(2052), - [anon_sym_api] = ACTIONS(2052), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), + [sym_identifier] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_import] = ACTIONS(2083), + [anon_sym_cimport] = ACTIONS(2083), + [anon_sym_from] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(2085), + [anon_sym_print] = ACTIONS(2083), + [anon_sym_assert] = ACTIONS(2083), + [anon_sym_return] = ACTIONS(2083), + [anon_sym_del] = ACTIONS(2083), + [anon_sym_raise] = ACTIONS(2083), + [anon_sym_pass] = ACTIONS(2083), + [anon_sym_break] = ACTIONS(2083), + [anon_sym_continue] = ACTIONS(2083), + [anon_sym_if] = ACTIONS(2083), + [anon_sym_match] = ACTIONS(2083), + [anon_sym_async] = ACTIONS(2083), + [anon_sym_for] = ACTIONS(2083), + [anon_sym_while] = ACTIONS(2083), + [anon_sym_try] = ACTIONS(2083), + [anon_sym_with] = ACTIONS(2083), + [anon_sym_def] = ACTIONS(2083), + [anon_sym_global] = ACTIONS(2083), + [anon_sym_nonlocal] = ACTIONS(2083), + [anon_sym_exec] = ACTIONS(2083), + [anon_sym_type] = ACTIONS(2083), + [anon_sym_class] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_AT] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_not] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2085), + [anon_sym_TILDE] = ACTIONS(2085), + [anon_sym_LT] = ACTIONS(2085), + [anon_sym_lambda] = ACTIONS(2083), + [anon_sym_yield] = ACTIONS(2083), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2085), + [anon_sym_None] = ACTIONS(2083), + [sym_integer] = ACTIONS(2083), + [sym_float] = ACTIONS(2085), + [anon_sym_await] = ACTIONS(2083), + [anon_sym_api] = ACTIONS(2083), + [sym_true] = ACTIONS(2083), + [sym_false] = ACTIONS(2083), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2052), - [anon_sym_include] = ACTIONS(2052), - [anon_sym_DEF] = ACTIONS(2052), - [anon_sym_cdef] = ACTIONS(2052), - [anon_sym_cpdef] = ACTIONS(2052), - [anon_sym_int] = ACTIONS(2052), - [anon_sym_double] = ACTIONS(2052), - [anon_sym_complex] = ACTIONS(2052), - [anon_sym_new] = ACTIONS(2052), - [anon_sym_signed] = ACTIONS(2052), - [anon_sym_unsigned] = ACTIONS(2052), - [anon_sym_char] = ACTIONS(2052), - [anon_sym_short] = ACTIONS(2052), - [anon_sym_long] = ACTIONS(2052), - [anon_sym_const] = ACTIONS(2052), - [anon_sym_volatile] = ACTIONS(2052), - [anon_sym_ctypedef] = ACTIONS(2052), - [anon_sym_struct] = ACTIONS(2052), - [anon_sym_union] = ACTIONS(2052), - [anon_sym_enum] = ACTIONS(2052), - [anon_sym_cppclass] = ACTIONS(2052), - [anon_sym_fused] = ACTIONS(2052), - [anon_sym_public] = ACTIONS(2052), - [anon_sym_packed] = ACTIONS(2052), - [anon_sym_inline] = ACTIONS(2052), - [anon_sym_readonly] = ACTIONS(2052), - [anon_sym_sizeof] = ACTIONS(2052), - [sym__dedent] = ACTIONS(2054), - [sym_string_start] = ACTIONS(2054), + [anon_sym_property] = ACTIONS(2083), + [anon_sym_include] = ACTIONS(2083), + [anon_sym_DEF] = ACTIONS(2083), + [anon_sym_cdef] = ACTIONS(2083), + [anon_sym_cpdef] = ACTIONS(2083), + [anon_sym_int] = ACTIONS(2083), + [anon_sym_double] = ACTIONS(2083), + [anon_sym_complex] = ACTIONS(2083), + [anon_sym_new] = ACTIONS(2083), + [anon_sym_signed] = ACTIONS(2083), + [anon_sym_unsigned] = ACTIONS(2083), + [anon_sym_char] = ACTIONS(2083), + [anon_sym_short] = ACTIONS(2083), + [anon_sym_long] = ACTIONS(2083), + [anon_sym_const] = ACTIONS(2083), + [anon_sym_volatile] = ACTIONS(2083), + [anon_sym_ctypedef] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(2083), + [anon_sym_union] = ACTIONS(2083), + [anon_sym_enum] = ACTIONS(2083), + [anon_sym_cppclass] = ACTIONS(2083), + [anon_sym_fused] = ACTIONS(2083), + [anon_sym_public] = ACTIONS(2083), + [anon_sym_packed] = ACTIONS(2083), + [anon_sym_inline] = ACTIONS(2083), + [anon_sym_readonly] = ACTIONS(2083), + [anon_sym_sizeof] = ACTIONS(2083), + [sym__dedent] = ACTIONS(2085), + [sym_string_start] = ACTIONS(2085), }, [613] = { - [sym_identifier] = ACTIONS(2056), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_import] = ACTIONS(2056), - [anon_sym_cimport] = ACTIONS(2056), - [anon_sym_from] = ACTIONS(2056), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2058), - [anon_sym_print] = ACTIONS(2056), - [anon_sym_assert] = ACTIONS(2056), - [anon_sym_return] = ACTIONS(2056), - [anon_sym_del] = ACTIONS(2056), - [anon_sym_raise] = ACTIONS(2056), - [anon_sym_pass] = ACTIONS(2056), - [anon_sym_break] = ACTIONS(2056), - [anon_sym_continue] = ACTIONS(2056), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_match] = ACTIONS(2056), - [anon_sym_async] = ACTIONS(2056), - [anon_sym_for] = ACTIONS(2056), - [anon_sym_while] = ACTIONS(2056), - [anon_sym_try] = ACTIONS(2056), - [anon_sym_with] = ACTIONS(2056), - [anon_sym_def] = ACTIONS(2056), - [anon_sym_global] = ACTIONS(2056), - [anon_sym_nonlocal] = ACTIONS(2056), - [anon_sym_exec] = ACTIONS(2056), - [anon_sym_type] = ACTIONS(2056), - [anon_sym_class] = ACTIONS(2056), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_PLUS] = ACTIONS(2058), - [anon_sym_not] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_TILDE] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_lambda] = ACTIONS(2056), - [anon_sym_yield] = ACTIONS(2056), - [sym_ellipsis] = ACTIONS(2058), - [anon_sym_None] = ACTIONS(2056), - [sym_integer] = ACTIONS(2056), - [sym_float] = ACTIONS(2058), - [anon_sym_await] = ACTIONS(2056), - [anon_sym_api] = ACTIONS(2056), - [sym_true] = ACTIONS(2056), - [sym_false] = ACTIONS(2056), + [sym_identifier] = ACTIONS(2087), + [anon_sym_SEMI] = ACTIONS(2089), + [anon_sym_import] = ACTIONS(2087), + [anon_sym_cimport] = ACTIONS(2087), + [anon_sym_from] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_print] = ACTIONS(2087), + [anon_sym_assert] = ACTIONS(2087), + [anon_sym_return] = ACTIONS(2087), + [anon_sym_del] = ACTIONS(2087), + [anon_sym_raise] = ACTIONS(2087), + [anon_sym_pass] = ACTIONS(2087), + [anon_sym_break] = ACTIONS(2087), + [anon_sym_continue] = ACTIONS(2087), + [anon_sym_if] = ACTIONS(2087), + [anon_sym_match] = ACTIONS(2087), + [anon_sym_async] = ACTIONS(2087), + [anon_sym_for] = ACTIONS(2087), + [anon_sym_while] = ACTIONS(2087), + [anon_sym_try] = ACTIONS(2087), + [anon_sym_with] = ACTIONS(2087), + [anon_sym_def] = ACTIONS(2087), + [anon_sym_global] = ACTIONS(2087), + [anon_sym_nonlocal] = ACTIONS(2087), + [anon_sym_exec] = ACTIONS(2087), + [anon_sym_type] = ACTIONS(2087), + [anon_sym_class] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_AT] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_not] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_lambda] = ACTIONS(2087), + [anon_sym_yield] = ACTIONS(2087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2089), + [anon_sym_None] = ACTIONS(2087), + [sym_integer] = ACTIONS(2087), + [sym_float] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(2087), + [anon_sym_api] = ACTIONS(2087), + [sym_true] = ACTIONS(2087), + [sym_false] = ACTIONS(2087), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2056), - [anon_sym_include] = ACTIONS(2056), - [anon_sym_DEF] = ACTIONS(2056), - [anon_sym_cdef] = ACTIONS(2056), - [anon_sym_cpdef] = ACTIONS(2056), - [anon_sym_int] = ACTIONS(2056), - [anon_sym_double] = ACTIONS(2056), - [anon_sym_complex] = ACTIONS(2056), - [anon_sym_new] = ACTIONS(2056), - [anon_sym_signed] = ACTIONS(2056), - [anon_sym_unsigned] = ACTIONS(2056), - [anon_sym_char] = ACTIONS(2056), - [anon_sym_short] = ACTIONS(2056), - [anon_sym_long] = ACTIONS(2056), - [anon_sym_const] = ACTIONS(2056), - [anon_sym_volatile] = ACTIONS(2056), - [anon_sym_ctypedef] = ACTIONS(2056), - [anon_sym_struct] = ACTIONS(2056), - [anon_sym_union] = ACTIONS(2056), - [anon_sym_enum] = ACTIONS(2056), - [anon_sym_cppclass] = ACTIONS(2056), - [anon_sym_fused] = ACTIONS(2056), - [anon_sym_public] = ACTIONS(2056), - [anon_sym_packed] = ACTIONS(2056), - [anon_sym_inline] = ACTIONS(2056), - [anon_sym_readonly] = ACTIONS(2056), - [anon_sym_sizeof] = ACTIONS(2056), - [sym__dedent] = ACTIONS(2058), - [sym_string_start] = ACTIONS(2058), + [anon_sym_property] = ACTIONS(2087), + [anon_sym_include] = ACTIONS(2087), + [anon_sym_DEF] = ACTIONS(2087), + [anon_sym_cdef] = ACTIONS(2087), + [anon_sym_cpdef] = ACTIONS(2087), + [anon_sym_int] = ACTIONS(2087), + [anon_sym_double] = ACTIONS(2087), + [anon_sym_complex] = ACTIONS(2087), + [anon_sym_new] = ACTIONS(2087), + [anon_sym_signed] = ACTIONS(2087), + [anon_sym_unsigned] = ACTIONS(2087), + [anon_sym_char] = ACTIONS(2087), + [anon_sym_short] = ACTIONS(2087), + [anon_sym_long] = ACTIONS(2087), + [anon_sym_const] = ACTIONS(2087), + [anon_sym_volatile] = ACTIONS(2087), + [anon_sym_ctypedef] = ACTIONS(2087), + [anon_sym_struct] = ACTIONS(2087), + [anon_sym_union] = ACTIONS(2087), + [anon_sym_enum] = ACTIONS(2087), + [anon_sym_cppclass] = ACTIONS(2087), + [anon_sym_fused] = ACTIONS(2087), + [anon_sym_public] = ACTIONS(2087), + [anon_sym_packed] = ACTIONS(2087), + [anon_sym_inline] = ACTIONS(2087), + [anon_sym_readonly] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2087), + [sym__dedent] = ACTIONS(2089), + [sym_string_start] = ACTIONS(2089), }, [614] = { - [sym_identifier] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_import] = ACTIONS(2060), - [anon_sym_cimport] = ACTIONS(2060), - [anon_sym_from] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2062), - [anon_sym_print] = ACTIONS(2060), - [anon_sym_assert] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_del] = ACTIONS(2060), - [anon_sym_raise] = ACTIONS(2060), - [anon_sym_pass] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_match] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_def] = ACTIONS(2060), - [anon_sym_global] = ACTIONS(2060), - [anon_sym_nonlocal] = ACTIONS(2060), - [anon_sym_exec] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_class] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2062), - [anon_sym_AT] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_not] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2062), - [anon_sym_TILDE] = ACTIONS(2062), - [anon_sym_LT] = ACTIONS(2062), - [anon_sym_lambda] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [sym_ellipsis] = ACTIONS(2062), - [anon_sym_None] = ACTIONS(2060), - [sym_integer] = ACTIONS(2060), - [sym_float] = ACTIONS(2062), - [anon_sym_await] = ACTIONS(2060), - [anon_sym_api] = ACTIONS(2060), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), + [sym_identifier] = ACTIONS(2091), + [anon_sym_SEMI] = ACTIONS(2093), + [anon_sym_import] = ACTIONS(2091), + [anon_sym_cimport] = ACTIONS(2091), + [anon_sym_from] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2091), + [anon_sym_assert] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2091), + [anon_sym_del] = ACTIONS(2091), + [anon_sym_raise] = ACTIONS(2091), + [anon_sym_pass] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_match] = ACTIONS(2091), + [anon_sym_async] = ACTIONS(2091), + [anon_sym_for] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2091), + [anon_sym_try] = ACTIONS(2091), + [anon_sym_with] = ACTIONS(2091), + [anon_sym_def] = ACTIONS(2091), + [anon_sym_global] = ACTIONS(2091), + [anon_sym_nonlocal] = ACTIONS(2091), + [anon_sym_exec] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2091), + [anon_sym_class] = ACTIONS(2091), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_AT] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_not] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2093), + [anon_sym_TILDE] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_lambda] = ACTIONS(2091), + [anon_sym_yield] = ACTIONS(2091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2093), + [anon_sym_None] = ACTIONS(2091), + [sym_integer] = ACTIONS(2091), + [sym_float] = ACTIONS(2093), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_api] = ACTIONS(2091), + [sym_true] = ACTIONS(2091), + [sym_false] = ACTIONS(2091), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2060), - [anon_sym_include] = ACTIONS(2060), - [anon_sym_DEF] = ACTIONS(2060), - [anon_sym_cdef] = ACTIONS(2060), - [anon_sym_cpdef] = ACTIONS(2060), - [anon_sym_int] = ACTIONS(2060), - [anon_sym_double] = ACTIONS(2060), - [anon_sym_complex] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2060), - [anon_sym_signed] = ACTIONS(2060), - [anon_sym_unsigned] = ACTIONS(2060), - [anon_sym_char] = ACTIONS(2060), - [anon_sym_short] = ACTIONS(2060), - [anon_sym_long] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_volatile] = ACTIONS(2060), - [anon_sym_ctypedef] = ACTIONS(2060), - [anon_sym_struct] = ACTIONS(2060), - [anon_sym_union] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), - [anon_sym_cppclass] = ACTIONS(2060), - [anon_sym_fused] = ACTIONS(2060), - [anon_sym_public] = ACTIONS(2060), - [anon_sym_packed] = ACTIONS(2060), - [anon_sym_inline] = ACTIONS(2060), - [anon_sym_readonly] = ACTIONS(2060), - [anon_sym_sizeof] = ACTIONS(2060), - [sym__dedent] = ACTIONS(2062), - [sym_string_start] = ACTIONS(2062), + [anon_sym_property] = ACTIONS(2091), + [anon_sym_include] = ACTIONS(2091), + [anon_sym_DEF] = ACTIONS(2091), + [anon_sym_cdef] = ACTIONS(2091), + [anon_sym_cpdef] = ACTIONS(2091), + [anon_sym_int] = ACTIONS(2091), + [anon_sym_double] = ACTIONS(2091), + [anon_sym_complex] = ACTIONS(2091), + [anon_sym_new] = ACTIONS(2091), + [anon_sym_signed] = ACTIONS(2091), + [anon_sym_unsigned] = ACTIONS(2091), + [anon_sym_char] = ACTIONS(2091), + [anon_sym_short] = ACTIONS(2091), + [anon_sym_long] = ACTIONS(2091), + [anon_sym_const] = ACTIONS(2091), + [anon_sym_volatile] = ACTIONS(2091), + [anon_sym_ctypedef] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2091), + [anon_sym_union] = ACTIONS(2091), + [anon_sym_enum] = ACTIONS(2091), + [anon_sym_cppclass] = ACTIONS(2091), + [anon_sym_fused] = ACTIONS(2091), + [anon_sym_public] = ACTIONS(2091), + [anon_sym_packed] = ACTIONS(2091), + [anon_sym_inline] = ACTIONS(2091), + [anon_sym_readonly] = ACTIONS(2091), + [anon_sym_sizeof] = ACTIONS(2091), + [sym__dedent] = ACTIONS(2093), + [sym_string_start] = ACTIONS(2093), }, [615] = { - [sym_identifier] = ACTIONS(2064), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_import] = ACTIONS(2064), - [anon_sym_cimport] = ACTIONS(2064), - [anon_sym_from] = ACTIONS(2064), - [anon_sym_LPAREN] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(2066), - [anon_sym_print] = ACTIONS(2064), - [anon_sym_assert] = ACTIONS(2064), - [anon_sym_return] = ACTIONS(2064), - [anon_sym_del] = ACTIONS(2064), - [anon_sym_raise] = ACTIONS(2064), - [anon_sym_pass] = ACTIONS(2064), - [anon_sym_break] = ACTIONS(2064), - [anon_sym_continue] = ACTIONS(2064), - [anon_sym_if] = ACTIONS(2064), - [anon_sym_match] = ACTIONS(2064), - [anon_sym_async] = ACTIONS(2064), - [anon_sym_for] = ACTIONS(2064), - [anon_sym_while] = ACTIONS(2064), - [anon_sym_try] = ACTIONS(2064), - [anon_sym_with] = ACTIONS(2064), - [anon_sym_def] = ACTIONS(2064), - [anon_sym_global] = ACTIONS(2064), - [anon_sym_nonlocal] = ACTIONS(2064), - [anon_sym_exec] = ACTIONS(2064), - [anon_sym_type] = ACTIONS(2064), - [anon_sym_class] = ACTIONS(2064), - [anon_sym_LBRACK] = ACTIONS(2066), - [anon_sym_AT] = ACTIONS(2066), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_PLUS] = ACTIONS(2066), - [anon_sym_not] = ACTIONS(2064), - [anon_sym_AMP] = ACTIONS(2066), - [anon_sym_TILDE] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_lambda] = ACTIONS(2064), - [anon_sym_yield] = ACTIONS(2064), - [sym_ellipsis] = ACTIONS(2066), - [anon_sym_None] = ACTIONS(2064), - [sym_integer] = ACTIONS(2064), - [sym_float] = ACTIONS(2066), - [anon_sym_await] = ACTIONS(2064), - [anon_sym_api] = ACTIONS(2064), - [sym_true] = ACTIONS(2064), - [sym_false] = ACTIONS(2064), + [sym_list_splat_pattern] = STATE(2340), + [sym_primary_expression] = STATE(3038), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1141), + [anon_sym_DOT] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_COMMA] = ACTIONS(1199), + [anon_sym_as] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_print] = ACTIONS(1208), + [anon_sym_GT_GT] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_COLON] = ACTIONS(1199), + [anon_sym_match] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_in] = ACTIONS(1204), + [anon_sym_STAR_STAR] = ACTIONS(1402), + [anon_sym_exec] = ACTIONS(1208), + [anon_sym_EQ] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_AT] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_not] = ACTIONS(1204), + [anon_sym_and] = ACTIONS(1204), + [anon_sym_or] = ACTIONS(1204), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_CARET] = ACTIONS(1402), + [anon_sym_LT_LT] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_is] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_LT_EQ] = ACTIONS(1199), + [anon_sym_EQ_EQ] = ACTIONS(1199), + [anon_sym_BANG_EQ] = ACTIONS(1199), + [anon_sym_GT_EQ] = ACTIONS(1199), + [anon_sym_GT] = ACTIONS(1204), + [anon_sym_LT_GT] = ACTIONS(1199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_type_conversion] = ACTIONS(1199), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1216), + [anon_sym_api] = ACTIONS(1208), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2064), - [anon_sym_include] = ACTIONS(2064), - [anon_sym_DEF] = ACTIONS(2064), - [anon_sym_cdef] = ACTIONS(2064), - [anon_sym_cpdef] = ACTIONS(2064), - [anon_sym_int] = ACTIONS(2064), - [anon_sym_double] = ACTIONS(2064), - [anon_sym_complex] = ACTIONS(2064), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_signed] = ACTIONS(2064), - [anon_sym_unsigned] = ACTIONS(2064), - [anon_sym_char] = ACTIONS(2064), - [anon_sym_short] = ACTIONS(2064), - [anon_sym_long] = ACTIONS(2064), - [anon_sym_const] = ACTIONS(2064), - [anon_sym_volatile] = ACTIONS(2064), - [anon_sym_ctypedef] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(2064), - [anon_sym_union] = ACTIONS(2064), - [anon_sym_enum] = ACTIONS(2064), - [anon_sym_cppclass] = ACTIONS(2064), - [anon_sym_fused] = ACTIONS(2064), - [anon_sym_public] = ACTIONS(2064), - [anon_sym_packed] = ACTIONS(2064), - [anon_sym_inline] = ACTIONS(2064), - [anon_sym_readonly] = ACTIONS(2064), - [anon_sym_sizeof] = ACTIONS(2064), - [sym__dedent] = ACTIONS(2066), - [sym_string_start] = ACTIONS(2066), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [616] = { - [sym_identifier] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_import] = ACTIONS(2068), - [anon_sym_cimport] = ACTIONS(2068), - [anon_sym_from] = ACTIONS(2068), - [anon_sym_LPAREN] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2070), - [anon_sym_print] = ACTIONS(2068), - [anon_sym_assert] = ACTIONS(2068), - [anon_sym_return] = ACTIONS(2068), - [anon_sym_del] = ACTIONS(2068), - [anon_sym_raise] = ACTIONS(2068), - [anon_sym_pass] = ACTIONS(2068), - [anon_sym_break] = ACTIONS(2068), - [anon_sym_continue] = ACTIONS(2068), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_match] = ACTIONS(2068), - [anon_sym_async] = ACTIONS(2068), - [anon_sym_for] = ACTIONS(2068), - [anon_sym_while] = ACTIONS(2068), - [anon_sym_try] = ACTIONS(2068), - [anon_sym_with] = ACTIONS(2068), - [anon_sym_def] = ACTIONS(2068), - [anon_sym_global] = ACTIONS(2068), - [anon_sym_nonlocal] = ACTIONS(2068), - [anon_sym_exec] = ACTIONS(2068), - [anon_sym_type] = ACTIONS(2068), - [anon_sym_class] = ACTIONS(2068), - [anon_sym_LBRACK] = ACTIONS(2070), - [anon_sym_AT] = ACTIONS(2070), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2070), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_not] = ACTIONS(2068), - [anon_sym_AMP] = ACTIONS(2070), - [anon_sym_TILDE] = ACTIONS(2070), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_lambda] = ACTIONS(2068), - [anon_sym_yield] = ACTIONS(2068), - [sym_ellipsis] = ACTIONS(2070), - [anon_sym_None] = ACTIONS(2068), - [sym_integer] = ACTIONS(2068), - [sym_float] = ACTIONS(2070), - [anon_sym_await] = ACTIONS(2068), - [anon_sym_api] = ACTIONS(2068), - [sym_true] = ACTIONS(2068), - [sym_false] = ACTIONS(2068), + [sym_identifier] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym_import] = ACTIONS(2095), + [anon_sym_cimport] = ACTIONS(2095), + [anon_sym_from] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(2097), + [anon_sym_print] = ACTIONS(2095), + [anon_sym_assert] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2095), + [anon_sym_del] = ACTIONS(2095), + [anon_sym_raise] = ACTIONS(2095), + [anon_sym_pass] = ACTIONS(2095), + [anon_sym_break] = ACTIONS(2095), + [anon_sym_continue] = ACTIONS(2095), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_match] = ACTIONS(2095), + [anon_sym_async] = ACTIONS(2095), + [anon_sym_for] = ACTIONS(2095), + [anon_sym_while] = ACTIONS(2095), + [anon_sym_try] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2095), + [anon_sym_def] = ACTIONS(2095), + [anon_sym_global] = ACTIONS(2095), + [anon_sym_nonlocal] = ACTIONS(2095), + [anon_sym_exec] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_class] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_AT] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_not] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_TILDE] = ACTIONS(2097), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_lambda] = ACTIONS(2095), + [anon_sym_yield] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2097), + [anon_sym_None] = ACTIONS(2095), + [sym_integer] = ACTIONS(2095), + [sym_float] = ACTIONS(2097), + [anon_sym_await] = ACTIONS(2095), + [anon_sym_api] = ACTIONS(2095), + [sym_true] = ACTIONS(2095), + [sym_false] = ACTIONS(2095), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2068), - [anon_sym_include] = ACTIONS(2068), - [anon_sym_DEF] = ACTIONS(2068), - [anon_sym_cdef] = ACTIONS(2068), - [anon_sym_cpdef] = ACTIONS(2068), - [anon_sym_int] = ACTIONS(2068), - [anon_sym_double] = ACTIONS(2068), - [anon_sym_complex] = ACTIONS(2068), - [anon_sym_new] = ACTIONS(2068), - [anon_sym_signed] = ACTIONS(2068), - [anon_sym_unsigned] = ACTIONS(2068), - [anon_sym_char] = ACTIONS(2068), - [anon_sym_short] = ACTIONS(2068), - [anon_sym_long] = ACTIONS(2068), - [anon_sym_const] = ACTIONS(2068), - [anon_sym_volatile] = ACTIONS(2068), - [anon_sym_ctypedef] = ACTIONS(2068), - [anon_sym_struct] = ACTIONS(2068), - [anon_sym_union] = ACTIONS(2068), - [anon_sym_enum] = ACTIONS(2068), - [anon_sym_cppclass] = ACTIONS(2068), - [anon_sym_fused] = ACTIONS(2068), - [anon_sym_public] = ACTIONS(2068), - [anon_sym_packed] = ACTIONS(2068), - [anon_sym_inline] = ACTIONS(2068), - [anon_sym_readonly] = ACTIONS(2068), - [anon_sym_sizeof] = ACTIONS(2068), - [sym__dedent] = ACTIONS(2070), - [sym_string_start] = ACTIONS(2070), + [anon_sym_property] = ACTIONS(2095), + [anon_sym_include] = ACTIONS(2095), + [anon_sym_DEF] = ACTIONS(2095), + [anon_sym_cdef] = ACTIONS(2095), + [anon_sym_cpdef] = ACTIONS(2095), + [anon_sym_int] = ACTIONS(2095), + [anon_sym_double] = ACTIONS(2095), + [anon_sym_complex] = ACTIONS(2095), + [anon_sym_new] = ACTIONS(2095), + [anon_sym_signed] = ACTIONS(2095), + [anon_sym_unsigned] = ACTIONS(2095), + [anon_sym_char] = ACTIONS(2095), + [anon_sym_short] = ACTIONS(2095), + [anon_sym_long] = ACTIONS(2095), + [anon_sym_const] = ACTIONS(2095), + [anon_sym_volatile] = ACTIONS(2095), + [anon_sym_ctypedef] = ACTIONS(2095), + [anon_sym_struct] = ACTIONS(2095), + [anon_sym_union] = ACTIONS(2095), + [anon_sym_enum] = ACTIONS(2095), + [anon_sym_cppclass] = ACTIONS(2095), + [anon_sym_fused] = ACTIONS(2095), + [anon_sym_public] = ACTIONS(2095), + [anon_sym_packed] = ACTIONS(2095), + [anon_sym_inline] = ACTIONS(2095), + [anon_sym_readonly] = ACTIONS(2095), + [anon_sym_sizeof] = ACTIONS(2095), + [sym__dedent] = ACTIONS(2097), + [sym_string_start] = ACTIONS(2097), }, [617] = { - [sym_identifier] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2074), - [anon_sym_import] = ACTIONS(2072), - [anon_sym_cimport] = ACTIONS(2072), - [anon_sym_from] = ACTIONS(2072), - [anon_sym_LPAREN] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_print] = ACTIONS(2072), - [anon_sym_assert] = ACTIONS(2072), - [anon_sym_return] = ACTIONS(2072), - [anon_sym_del] = ACTIONS(2072), - [anon_sym_raise] = ACTIONS(2072), - [anon_sym_pass] = ACTIONS(2072), - [anon_sym_break] = ACTIONS(2072), - [anon_sym_continue] = ACTIONS(2072), - [anon_sym_if] = ACTIONS(2072), - [anon_sym_match] = ACTIONS(2072), - [anon_sym_async] = ACTIONS(2072), - [anon_sym_for] = ACTIONS(2072), - [anon_sym_while] = ACTIONS(2072), - [anon_sym_try] = ACTIONS(2072), - [anon_sym_with] = ACTIONS(2072), - [anon_sym_def] = ACTIONS(2072), - [anon_sym_global] = ACTIONS(2072), - [anon_sym_nonlocal] = ACTIONS(2072), - [anon_sym_exec] = ACTIONS(2072), - [anon_sym_type] = ACTIONS(2072), - [anon_sym_class] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2074), - [anon_sym_AT] = ACTIONS(2074), - [anon_sym_DASH] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_PLUS] = ACTIONS(2074), - [anon_sym_not] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_LT] = ACTIONS(2074), - [anon_sym_lambda] = ACTIONS(2072), - [anon_sym_yield] = ACTIONS(2072), - [sym_ellipsis] = ACTIONS(2074), - [anon_sym_None] = ACTIONS(2072), - [sym_integer] = ACTIONS(2072), - [sym_float] = ACTIONS(2074), - [anon_sym_await] = ACTIONS(2072), - [anon_sym_api] = ACTIONS(2072), - [sym_true] = ACTIONS(2072), - [sym_false] = ACTIONS(2072), + [sym_identifier] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2101), + [anon_sym_import] = ACTIONS(2099), + [anon_sym_cimport] = ACTIONS(2099), + [anon_sym_from] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_STAR] = ACTIONS(2101), + [anon_sym_print] = ACTIONS(2099), + [anon_sym_assert] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2099), + [anon_sym_del] = ACTIONS(2099), + [anon_sym_raise] = ACTIONS(2099), + [anon_sym_pass] = ACTIONS(2099), + [anon_sym_break] = ACTIONS(2099), + [anon_sym_continue] = ACTIONS(2099), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_match] = ACTIONS(2099), + [anon_sym_async] = ACTIONS(2099), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_while] = ACTIONS(2099), + [anon_sym_try] = ACTIONS(2099), + [anon_sym_with] = ACTIONS(2099), + [anon_sym_def] = ACTIONS(2099), + [anon_sym_global] = ACTIONS(2099), + [anon_sym_nonlocal] = ACTIONS(2099), + [anon_sym_exec] = ACTIONS(2099), + [anon_sym_type] = ACTIONS(2099), + [anon_sym_class] = ACTIONS(2099), + [anon_sym_LBRACK] = ACTIONS(2101), + [anon_sym_AT] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_not] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_lambda] = ACTIONS(2099), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2101), + [anon_sym_None] = ACTIONS(2099), + [sym_integer] = ACTIONS(2099), + [sym_float] = ACTIONS(2101), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_api] = ACTIONS(2099), + [sym_true] = ACTIONS(2099), + [sym_false] = ACTIONS(2099), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2072), - [anon_sym_include] = ACTIONS(2072), - [anon_sym_DEF] = ACTIONS(2072), - [anon_sym_cdef] = ACTIONS(2072), - [anon_sym_cpdef] = ACTIONS(2072), - [anon_sym_int] = ACTIONS(2072), - [anon_sym_double] = ACTIONS(2072), - [anon_sym_complex] = ACTIONS(2072), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_signed] = ACTIONS(2072), - [anon_sym_unsigned] = ACTIONS(2072), - [anon_sym_char] = ACTIONS(2072), - [anon_sym_short] = ACTIONS(2072), - [anon_sym_long] = ACTIONS(2072), - [anon_sym_const] = ACTIONS(2072), - [anon_sym_volatile] = ACTIONS(2072), - [anon_sym_ctypedef] = ACTIONS(2072), - [anon_sym_struct] = ACTIONS(2072), - [anon_sym_union] = ACTIONS(2072), - [anon_sym_enum] = ACTIONS(2072), - [anon_sym_cppclass] = ACTIONS(2072), - [anon_sym_fused] = ACTIONS(2072), - [anon_sym_public] = ACTIONS(2072), - [anon_sym_packed] = ACTIONS(2072), - [anon_sym_inline] = ACTIONS(2072), - [anon_sym_readonly] = ACTIONS(2072), - [anon_sym_sizeof] = ACTIONS(2072), - [sym__dedent] = ACTIONS(2074), - [sym_string_start] = ACTIONS(2074), + [anon_sym_property] = ACTIONS(2099), + [anon_sym_include] = ACTIONS(2099), + [anon_sym_DEF] = ACTIONS(2099), + [anon_sym_cdef] = ACTIONS(2099), + [anon_sym_cpdef] = ACTIONS(2099), + [anon_sym_int] = ACTIONS(2099), + [anon_sym_double] = ACTIONS(2099), + [anon_sym_complex] = ACTIONS(2099), + [anon_sym_new] = ACTIONS(2099), + [anon_sym_signed] = ACTIONS(2099), + [anon_sym_unsigned] = ACTIONS(2099), + [anon_sym_char] = ACTIONS(2099), + [anon_sym_short] = ACTIONS(2099), + [anon_sym_long] = ACTIONS(2099), + [anon_sym_const] = ACTIONS(2099), + [anon_sym_volatile] = ACTIONS(2099), + [anon_sym_ctypedef] = ACTIONS(2099), + [anon_sym_struct] = ACTIONS(2099), + [anon_sym_union] = ACTIONS(2099), + [anon_sym_enum] = ACTIONS(2099), + [anon_sym_cppclass] = ACTIONS(2099), + [anon_sym_fused] = ACTIONS(2099), + [anon_sym_public] = ACTIONS(2099), + [anon_sym_packed] = ACTIONS(2099), + [anon_sym_inline] = ACTIONS(2099), + [anon_sym_readonly] = ACTIONS(2099), + [anon_sym_sizeof] = ACTIONS(2099), + [sym__dedent] = ACTIONS(2101), + [sym_string_start] = ACTIONS(2101), }, [618] = { - [sym_identifier] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2078), - [anon_sym_import] = ACTIONS(2076), - [anon_sym_cimport] = ACTIONS(2076), - [anon_sym_from] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2078), - [anon_sym_print] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_del] = ACTIONS(2076), - [anon_sym_raise] = ACTIONS(2076), - [anon_sym_pass] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_async] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_while] = ACTIONS(2076), - [anon_sym_try] = ACTIONS(2076), - [anon_sym_with] = ACTIONS(2076), - [anon_sym_def] = ACTIONS(2076), - [anon_sym_global] = ACTIONS(2076), - [anon_sym_nonlocal] = ACTIONS(2076), - [anon_sym_exec] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_class] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_AT] = ACTIONS(2078), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_not] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_lambda] = ACTIONS(2076), - [anon_sym_yield] = ACTIONS(2076), - [sym_ellipsis] = ACTIONS(2078), - [anon_sym_None] = ACTIONS(2076), - [sym_integer] = ACTIONS(2076), - [sym_float] = ACTIONS(2078), - [anon_sym_await] = ACTIONS(2076), - [anon_sym_api] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), + [sym_identifier] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2103), + [anon_sym_cimport] = ACTIONS(2103), + [anon_sym_from] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_print] = ACTIONS(2103), + [anon_sym_assert] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2103), + [anon_sym_del] = ACTIONS(2103), + [anon_sym_raise] = ACTIONS(2103), + [anon_sym_pass] = ACTIONS(2103), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2103), + [anon_sym_if] = ACTIONS(2103), + [anon_sym_match] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(2103), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_while] = ACTIONS(2103), + [anon_sym_try] = ACTIONS(2103), + [anon_sym_with] = ACTIONS(2103), + [anon_sym_def] = ACTIONS(2103), + [anon_sym_global] = ACTIONS(2103), + [anon_sym_nonlocal] = ACTIONS(2103), + [anon_sym_exec] = ACTIONS(2103), + [anon_sym_type] = ACTIONS(2103), + [anon_sym_class] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_not] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_lambda] = ACTIONS(2103), + [anon_sym_yield] = ACTIONS(2103), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2105), + [anon_sym_None] = ACTIONS(2103), + [sym_integer] = ACTIONS(2103), + [sym_float] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_api] = ACTIONS(2103), + [sym_true] = ACTIONS(2103), + [sym_false] = ACTIONS(2103), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2076), - [anon_sym_include] = ACTIONS(2076), - [anon_sym_DEF] = ACTIONS(2076), - [anon_sym_cdef] = ACTIONS(2076), - [anon_sym_cpdef] = ACTIONS(2076), - [anon_sym_int] = ACTIONS(2076), - [anon_sym_double] = ACTIONS(2076), - [anon_sym_complex] = ACTIONS(2076), - [anon_sym_new] = ACTIONS(2076), - [anon_sym_signed] = ACTIONS(2076), - [anon_sym_unsigned] = ACTIONS(2076), - [anon_sym_char] = ACTIONS(2076), - [anon_sym_short] = ACTIONS(2076), - [anon_sym_long] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_volatile] = ACTIONS(2076), - [anon_sym_ctypedef] = ACTIONS(2076), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_cppclass] = ACTIONS(2076), - [anon_sym_fused] = ACTIONS(2076), - [anon_sym_public] = ACTIONS(2076), - [anon_sym_packed] = ACTIONS(2076), - [anon_sym_inline] = ACTIONS(2076), - [anon_sym_readonly] = ACTIONS(2076), - [anon_sym_sizeof] = ACTIONS(2076), - [sym__dedent] = ACTIONS(2078), - [sym_string_start] = ACTIONS(2078), + [anon_sym_property] = ACTIONS(2103), + [anon_sym_include] = ACTIONS(2103), + [anon_sym_DEF] = ACTIONS(2103), + [anon_sym_cdef] = ACTIONS(2103), + [anon_sym_cpdef] = ACTIONS(2103), + [anon_sym_int] = ACTIONS(2103), + [anon_sym_double] = ACTIONS(2103), + [anon_sym_complex] = ACTIONS(2103), + [anon_sym_new] = ACTIONS(2103), + [anon_sym_signed] = ACTIONS(2103), + [anon_sym_unsigned] = ACTIONS(2103), + [anon_sym_char] = ACTIONS(2103), + [anon_sym_short] = ACTIONS(2103), + [anon_sym_long] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_volatile] = ACTIONS(2103), + [anon_sym_ctypedef] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2103), + [anon_sym_union] = ACTIONS(2103), + [anon_sym_enum] = ACTIONS(2103), + [anon_sym_cppclass] = ACTIONS(2103), + [anon_sym_fused] = ACTIONS(2103), + [anon_sym_public] = ACTIONS(2103), + [anon_sym_packed] = ACTIONS(2103), + [anon_sym_inline] = ACTIONS(2103), + [anon_sym_readonly] = ACTIONS(2103), + [anon_sym_sizeof] = ACTIONS(2103), + [sym__dedent] = ACTIONS(2105), + [sym_string_start] = ACTIONS(2105), }, [619] = { - [sym_identifier] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2082), - [anon_sym_import] = ACTIONS(2080), - [anon_sym_cimport] = ACTIONS(2080), - [anon_sym_from] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2082), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_print] = ACTIONS(2080), - [anon_sym_assert] = ACTIONS(2080), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_del] = ACTIONS(2080), - [anon_sym_raise] = ACTIONS(2080), - [anon_sym_pass] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_match] = ACTIONS(2080), - [anon_sym_async] = ACTIONS(2080), - [anon_sym_for] = ACTIONS(2080), - [anon_sym_while] = ACTIONS(2080), - [anon_sym_try] = ACTIONS(2080), - [anon_sym_with] = ACTIONS(2080), - [anon_sym_def] = ACTIONS(2080), - [anon_sym_global] = ACTIONS(2080), - [anon_sym_nonlocal] = ACTIONS(2080), - [anon_sym_exec] = ACTIONS(2080), - [anon_sym_type] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2082), - [anon_sym_AT] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_not] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_TILDE] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_lambda] = ACTIONS(2080), - [anon_sym_yield] = ACTIONS(2080), - [sym_ellipsis] = ACTIONS(2082), - [anon_sym_None] = ACTIONS(2080), - [sym_integer] = ACTIONS(2080), - [sym_float] = ACTIONS(2082), - [anon_sym_await] = ACTIONS(2080), - [anon_sym_api] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), + [sym_identifier] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2107), + [anon_sym_cimport] = ACTIONS(2107), + [anon_sym_from] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2109), + [anon_sym_print] = ACTIONS(2107), + [anon_sym_assert] = ACTIONS(2107), + [anon_sym_return] = ACTIONS(2107), + [anon_sym_del] = ACTIONS(2107), + [anon_sym_raise] = ACTIONS(2107), + [anon_sym_pass] = ACTIONS(2107), + [anon_sym_break] = ACTIONS(2107), + [anon_sym_continue] = ACTIONS(2107), + [anon_sym_if] = ACTIONS(2107), + [anon_sym_match] = ACTIONS(2107), + [anon_sym_async] = ACTIONS(2107), + [anon_sym_for] = ACTIONS(2107), + [anon_sym_while] = ACTIONS(2107), + [anon_sym_try] = ACTIONS(2107), + [anon_sym_with] = ACTIONS(2107), + [anon_sym_def] = ACTIONS(2107), + [anon_sym_global] = ACTIONS(2107), + [anon_sym_nonlocal] = ACTIONS(2107), + [anon_sym_exec] = ACTIONS(2107), + [anon_sym_type] = ACTIONS(2107), + [anon_sym_class] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_not] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_lambda] = ACTIONS(2107), + [anon_sym_yield] = ACTIONS(2107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2109), + [anon_sym_None] = ACTIONS(2107), + [sym_integer] = ACTIONS(2107), + [sym_float] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_api] = ACTIONS(2107), + [sym_true] = ACTIONS(2107), + [sym_false] = ACTIONS(2107), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2080), - [anon_sym_include] = ACTIONS(2080), - [anon_sym_DEF] = ACTIONS(2080), - [anon_sym_cdef] = ACTIONS(2080), - [anon_sym_cpdef] = ACTIONS(2080), - [anon_sym_int] = ACTIONS(2080), - [anon_sym_double] = ACTIONS(2080), - [anon_sym_complex] = ACTIONS(2080), - [anon_sym_new] = ACTIONS(2080), - [anon_sym_signed] = ACTIONS(2080), - [anon_sym_unsigned] = ACTIONS(2080), - [anon_sym_char] = ACTIONS(2080), - [anon_sym_short] = ACTIONS(2080), - [anon_sym_long] = ACTIONS(2080), - [anon_sym_const] = ACTIONS(2080), - [anon_sym_volatile] = ACTIONS(2080), - [anon_sym_ctypedef] = ACTIONS(2080), - [anon_sym_struct] = ACTIONS(2080), - [anon_sym_union] = ACTIONS(2080), - [anon_sym_enum] = ACTIONS(2080), - [anon_sym_cppclass] = ACTIONS(2080), - [anon_sym_fused] = ACTIONS(2080), - [anon_sym_public] = ACTIONS(2080), - [anon_sym_packed] = ACTIONS(2080), - [anon_sym_inline] = ACTIONS(2080), - [anon_sym_readonly] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2080), - [sym__dedent] = ACTIONS(2082), - [sym_string_start] = ACTIONS(2082), + [anon_sym_property] = ACTIONS(2107), + [anon_sym_include] = ACTIONS(2107), + [anon_sym_DEF] = ACTIONS(2107), + [anon_sym_cdef] = ACTIONS(2107), + [anon_sym_cpdef] = ACTIONS(2107), + [anon_sym_int] = ACTIONS(2107), + [anon_sym_double] = ACTIONS(2107), + [anon_sym_complex] = ACTIONS(2107), + [anon_sym_new] = ACTIONS(2107), + [anon_sym_signed] = ACTIONS(2107), + [anon_sym_unsigned] = ACTIONS(2107), + [anon_sym_char] = ACTIONS(2107), + [anon_sym_short] = ACTIONS(2107), + [anon_sym_long] = ACTIONS(2107), + [anon_sym_const] = ACTIONS(2107), + [anon_sym_volatile] = ACTIONS(2107), + [anon_sym_ctypedef] = ACTIONS(2107), + [anon_sym_struct] = ACTIONS(2107), + [anon_sym_union] = ACTIONS(2107), + [anon_sym_enum] = ACTIONS(2107), + [anon_sym_cppclass] = ACTIONS(2107), + [anon_sym_fused] = ACTIONS(2107), + [anon_sym_public] = ACTIONS(2107), + [anon_sym_packed] = ACTIONS(2107), + [anon_sym_inline] = ACTIONS(2107), + [anon_sym_readonly] = ACTIONS(2107), + [anon_sym_sizeof] = ACTIONS(2107), + [sym__dedent] = ACTIONS(2109), + [sym_string_start] = ACTIONS(2109), }, [620] = { - [sym_identifier] = ACTIONS(2044), - [anon_sym_SEMI] = ACTIONS(2046), - [anon_sym_import] = ACTIONS(2044), - [anon_sym_cimport] = ACTIONS(2044), - [anon_sym_from] = ACTIONS(2044), - [anon_sym_LPAREN] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2046), - [anon_sym_print] = ACTIONS(2044), - [anon_sym_assert] = ACTIONS(2044), - [anon_sym_return] = ACTIONS(2044), - [anon_sym_del] = ACTIONS(2044), - [anon_sym_raise] = ACTIONS(2044), - [anon_sym_pass] = ACTIONS(2044), - [anon_sym_break] = ACTIONS(2044), - [anon_sym_continue] = ACTIONS(2044), - [anon_sym_if] = ACTIONS(2044), - [anon_sym_match] = ACTIONS(2044), - [anon_sym_async] = ACTIONS(2044), - [anon_sym_for] = ACTIONS(2044), - [anon_sym_while] = ACTIONS(2044), - [anon_sym_try] = ACTIONS(2044), - [anon_sym_with] = ACTIONS(2044), - [anon_sym_def] = ACTIONS(2044), - [anon_sym_global] = ACTIONS(2044), - [anon_sym_nonlocal] = ACTIONS(2044), - [anon_sym_exec] = ACTIONS(2044), - [anon_sym_type] = ACTIONS(2044), - [anon_sym_class] = ACTIONS(2044), - [anon_sym_LBRACK] = ACTIONS(2046), - [anon_sym_AT] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2046), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_not] = ACTIONS(2044), - [anon_sym_AMP] = ACTIONS(2046), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_LT] = ACTIONS(2046), - [anon_sym_lambda] = ACTIONS(2044), - [anon_sym_yield] = ACTIONS(2044), - [sym_ellipsis] = ACTIONS(2046), - [anon_sym_None] = ACTIONS(2044), - [sym_integer] = ACTIONS(2044), - [sym_float] = ACTIONS(2046), - [anon_sym_await] = ACTIONS(2044), - [anon_sym_api] = ACTIONS(2044), - [sym_true] = ACTIONS(2044), - [sym_false] = ACTIONS(2044), + [sym_identifier] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2113), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_cimport] = ACTIONS(2111), + [anon_sym_from] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_STAR] = ACTIONS(2113), + [anon_sym_print] = ACTIONS(2111), + [anon_sym_assert] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_del] = ACTIONS(2111), + [anon_sym_raise] = ACTIONS(2111), + [anon_sym_pass] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_match] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_def] = ACTIONS(2111), + [anon_sym_global] = ACTIONS(2111), + [anon_sym_nonlocal] = ACTIONS(2111), + [anon_sym_exec] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_AT] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_LBRACE] = ACTIONS(2113), + [anon_sym_PLUS] = ACTIONS(2113), + [anon_sym_not] = ACTIONS(2111), + [anon_sym_AMP] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2113), + [anon_sym_lambda] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2113), + [anon_sym_None] = ACTIONS(2111), + [sym_integer] = ACTIONS(2111), + [sym_float] = ACTIONS(2113), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_api] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2044), - [anon_sym_include] = ACTIONS(2044), - [anon_sym_DEF] = ACTIONS(2044), - [anon_sym_cdef] = ACTIONS(2044), - [anon_sym_cpdef] = ACTIONS(2044), - [anon_sym_int] = ACTIONS(2044), - [anon_sym_double] = ACTIONS(2044), - [anon_sym_complex] = ACTIONS(2044), - [anon_sym_new] = ACTIONS(2044), - [anon_sym_signed] = ACTIONS(2044), - [anon_sym_unsigned] = ACTIONS(2044), - [anon_sym_char] = ACTIONS(2044), - [anon_sym_short] = ACTIONS(2044), - [anon_sym_long] = ACTIONS(2044), - [anon_sym_const] = ACTIONS(2044), - [anon_sym_volatile] = ACTIONS(2044), - [anon_sym_ctypedef] = ACTIONS(2044), - [anon_sym_struct] = ACTIONS(2044), - [anon_sym_union] = ACTIONS(2044), - [anon_sym_enum] = ACTIONS(2044), - [anon_sym_cppclass] = ACTIONS(2044), - [anon_sym_fused] = ACTIONS(2044), - [anon_sym_public] = ACTIONS(2044), - [anon_sym_packed] = ACTIONS(2044), - [anon_sym_inline] = ACTIONS(2044), - [anon_sym_readonly] = ACTIONS(2044), - [anon_sym_sizeof] = ACTIONS(2044), - [sym__dedent] = ACTIONS(2046), - [sym_string_start] = ACTIONS(2046), + [anon_sym_property] = ACTIONS(2111), + [anon_sym_include] = ACTIONS(2111), + [anon_sym_DEF] = ACTIONS(2111), + [anon_sym_cdef] = ACTIONS(2111), + [anon_sym_cpdef] = ACTIONS(2111), + [anon_sym_int] = ACTIONS(2111), + [anon_sym_double] = ACTIONS(2111), + [anon_sym_complex] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_signed] = ACTIONS(2111), + [anon_sym_unsigned] = ACTIONS(2111), + [anon_sym_char] = ACTIONS(2111), + [anon_sym_short] = ACTIONS(2111), + [anon_sym_long] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_volatile] = ACTIONS(2111), + [anon_sym_ctypedef] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(2111), + [anon_sym_union] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [anon_sym_cppclass] = ACTIONS(2111), + [anon_sym_fused] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_packed] = ACTIONS(2111), + [anon_sym_inline] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_sizeof] = ACTIONS(2111), + [sym__dedent] = ACTIONS(2113), + [sym_string_start] = ACTIONS(2113), }, [621] = { - [sym_identifier] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2086), - [anon_sym_import] = ACTIONS(2084), - [anon_sym_cimport] = ACTIONS(2084), - [anon_sym_from] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2086), - [anon_sym_STAR] = ACTIONS(2086), - [anon_sym_print] = ACTIONS(2084), - [anon_sym_assert] = ACTIONS(2084), - [anon_sym_return] = ACTIONS(2084), - [anon_sym_del] = ACTIONS(2084), - [anon_sym_raise] = ACTIONS(2084), - [anon_sym_pass] = ACTIONS(2084), - [anon_sym_break] = ACTIONS(2084), - [anon_sym_continue] = ACTIONS(2084), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_match] = ACTIONS(2084), - [anon_sym_async] = ACTIONS(2084), - [anon_sym_for] = ACTIONS(2084), - [anon_sym_while] = ACTIONS(2084), - [anon_sym_try] = ACTIONS(2084), - [anon_sym_with] = ACTIONS(2084), - [anon_sym_def] = ACTIONS(2084), - [anon_sym_global] = ACTIONS(2084), - [anon_sym_nonlocal] = ACTIONS(2084), - [anon_sym_exec] = ACTIONS(2084), - [anon_sym_type] = ACTIONS(2084), - [anon_sym_class] = ACTIONS(2084), - [anon_sym_LBRACK] = ACTIONS(2086), - [anon_sym_AT] = ACTIONS(2086), - [anon_sym_DASH] = ACTIONS(2086), - [anon_sym_LBRACE] = ACTIONS(2086), - [anon_sym_PLUS] = ACTIONS(2086), - [anon_sym_not] = ACTIONS(2084), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_TILDE] = ACTIONS(2086), - [anon_sym_LT] = ACTIONS(2086), - [anon_sym_lambda] = ACTIONS(2084), - [anon_sym_yield] = ACTIONS(2084), - [sym_ellipsis] = ACTIONS(2086), - [anon_sym_None] = ACTIONS(2084), - [sym_integer] = ACTIONS(2084), - [sym_float] = ACTIONS(2086), - [anon_sym_await] = ACTIONS(2084), - [anon_sym_api] = ACTIONS(2084), - [sym_true] = ACTIONS(2084), - [sym_false] = ACTIONS(2084), + [sym_identifier] = ACTIONS(2115), + [anon_sym_SEMI] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2115), + [anon_sym_cimport] = ACTIONS(2115), + [anon_sym_from] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2117), + [anon_sym_print] = ACTIONS(2115), + [anon_sym_assert] = ACTIONS(2115), + [anon_sym_return] = ACTIONS(2115), + [anon_sym_del] = ACTIONS(2115), + [anon_sym_raise] = ACTIONS(2115), + [anon_sym_pass] = ACTIONS(2115), + [anon_sym_break] = ACTIONS(2115), + [anon_sym_continue] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2115), + [anon_sym_match] = ACTIONS(2115), + [anon_sym_async] = ACTIONS(2115), + [anon_sym_for] = ACTIONS(2115), + [anon_sym_while] = ACTIONS(2115), + [anon_sym_try] = ACTIONS(2115), + [anon_sym_with] = ACTIONS(2115), + [anon_sym_def] = ACTIONS(2115), + [anon_sym_global] = ACTIONS(2115), + [anon_sym_nonlocal] = ACTIONS(2115), + [anon_sym_exec] = ACTIONS(2115), + [anon_sym_type] = ACTIONS(2115), + [anon_sym_class] = ACTIONS(2115), + [anon_sym_LBRACK] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_not] = ACTIONS(2115), + [anon_sym_AMP] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_lambda] = ACTIONS(2115), + [anon_sym_yield] = ACTIONS(2115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2117), + [anon_sym_None] = ACTIONS(2115), + [sym_integer] = ACTIONS(2115), + [sym_float] = ACTIONS(2117), + [anon_sym_await] = ACTIONS(2115), + [anon_sym_api] = ACTIONS(2115), + [sym_true] = ACTIONS(2115), + [sym_false] = ACTIONS(2115), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2084), - [anon_sym_include] = ACTIONS(2084), - [anon_sym_DEF] = ACTIONS(2084), - [anon_sym_cdef] = ACTIONS(2084), - [anon_sym_cpdef] = ACTIONS(2084), - [anon_sym_int] = ACTIONS(2084), - [anon_sym_double] = ACTIONS(2084), - [anon_sym_complex] = ACTIONS(2084), - [anon_sym_new] = ACTIONS(2084), - [anon_sym_signed] = ACTIONS(2084), - [anon_sym_unsigned] = ACTIONS(2084), - [anon_sym_char] = ACTIONS(2084), - [anon_sym_short] = ACTIONS(2084), - [anon_sym_long] = ACTIONS(2084), - [anon_sym_const] = ACTIONS(2084), - [anon_sym_volatile] = ACTIONS(2084), - [anon_sym_ctypedef] = ACTIONS(2084), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_union] = ACTIONS(2084), - [anon_sym_enum] = ACTIONS(2084), - [anon_sym_cppclass] = ACTIONS(2084), - [anon_sym_fused] = ACTIONS(2084), - [anon_sym_public] = ACTIONS(2084), - [anon_sym_packed] = ACTIONS(2084), - [anon_sym_inline] = ACTIONS(2084), - [anon_sym_readonly] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2084), - [sym__dedent] = ACTIONS(2086), - [sym_string_start] = ACTIONS(2086), + [anon_sym_property] = ACTIONS(2115), + [anon_sym_include] = ACTIONS(2115), + [anon_sym_DEF] = ACTIONS(2115), + [anon_sym_cdef] = ACTIONS(2115), + [anon_sym_cpdef] = ACTIONS(2115), + [anon_sym_int] = ACTIONS(2115), + [anon_sym_double] = ACTIONS(2115), + [anon_sym_complex] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(2115), + [anon_sym_signed] = ACTIONS(2115), + [anon_sym_unsigned] = ACTIONS(2115), + [anon_sym_char] = ACTIONS(2115), + [anon_sym_short] = ACTIONS(2115), + [anon_sym_long] = ACTIONS(2115), + [anon_sym_const] = ACTIONS(2115), + [anon_sym_volatile] = ACTIONS(2115), + [anon_sym_ctypedef] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(2115), + [anon_sym_union] = ACTIONS(2115), + [anon_sym_enum] = ACTIONS(2115), + [anon_sym_cppclass] = ACTIONS(2115), + [anon_sym_fused] = ACTIONS(2115), + [anon_sym_public] = ACTIONS(2115), + [anon_sym_packed] = ACTIONS(2115), + [anon_sym_inline] = ACTIONS(2115), + [anon_sym_readonly] = ACTIONS(2115), + [anon_sym_sizeof] = ACTIONS(2115), + [sym__dedent] = ACTIONS(2117), + [sym_string_start] = ACTIONS(2117), }, [622] = { - [sym_identifier] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2090), - [anon_sym_import] = ACTIONS(2088), - [anon_sym_cimport] = ACTIONS(2088), - [anon_sym_from] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(2090), - [anon_sym_STAR] = ACTIONS(2090), - [anon_sym_print] = ACTIONS(2088), - [anon_sym_assert] = ACTIONS(2088), - [anon_sym_return] = ACTIONS(2088), - [anon_sym_del] = ACTIONS(2088), - [anon_sym_raise] = ACTIONS(2088), - [anon_sym_pass] = ACTIONS(2088), - [anon_sym_break] = ACTIONS(2088), - [anon_sym_continue] = ACTIONS(2088), - [anon_sym_if] = ACTIONS(2088), - [anon_sym_match] = ACTIONS(2088), - [anon_sym_async] = ACTIONS(2088), - [anon_sym_for] = ACTIONS(2088), - [anon_sym_while] = ACTIONS(2088), - [anon_sym_try] = ACTIONS(2088), - [anon_sym_with] = ACTIONS(2088), - [anon_sym_def] = ACTIONS(2088), - [anon_sym_global] = ACTIONS(2088), - [anon_sym_nonlocal] = ACTIONS(2088), - [anon_sym_exec] = ACTIONS(2088), - [anon_sym_type] = ACTIONS(2088), - [anon_sym_class] = ACTIONS(2088), - [anon_sym_LBRACK] = ACTIONS(2090), - [anon_sym_AT] = ACTIONS(2090), - [anon_sym_DASH] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2090), - [anon_sym_PLUS] = ACTIONS(2090), - [anon_sym_not] = ACTIONS(2088), - [anon_sym_AMP] = ACTIONS(2090), - [anon_sym_TILDE] = ACTIONS(2090), - [anon_sym_LT] = ACTIONS(2090), - [anon_sym_lambda] = ACTIONS(2088), - [anon_sym_yield] = ACTIONS(2088), - [sym_ellipsis] = ACTIONS(2090), - [anon_sym_None] = ACTIONS(2088), - [sym_integer] = ACTIONS(2088), - [sym_float] = ACTIONS(2090), - [anon_sym_await] = ACTIONS(2088), - [anon_sym_api] = ACTIONS(2088), - [sym_true] = ACTIONS(2088), - [sym_false] = ACTIONS(2088), + [sym_identifier] = ACTIONS(2119), + [anon_sym_SEMI] = ACTIONS(2121), + [anon_sym_import] = ACTIONS(2119), + [anon_sym_cimport] = ACTIONS(2119), + [anon_sym_from] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(2121), + [anon_sym_STAR] = ACTIONS(2121), + [anon_sym_print] = ACTIONS(2119), + [anon_sym_assert] = ACTIONS(2119), + [anon_sym_return] = ACTIONS(2119), + [anon_sym_del] = ACTIONS(2119), + [anon_sym_raise] = ACTIONS(2119), + [anon_sym_pass] = ACTIONS(2119), + [anon_sym_break] = ACTIONS(2119), + [anon_sym_continue] = ACTIONS(2119), + [anon_sym_if] = ACTIONS(2119), + [anon_sym_match] = ACTIONS(2119), + [anon_sym_async] = ACTIONS(2119), + [anon_sym_for] = ACTIONS(2119), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_try] = ACTIONS(2119), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_def] = ACTIONS(2119), + [anon_sym_global] = ACTIONS(2119), + [anon_sym_nonlocal] = ACTIONS(2119), + [anon_sym_exec] = ACTIONS(2119), + [anon_sym_type] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2121), + [anon_sym_AT] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_PLUS] = ACTIONS(2121), + [anon_sym_not] = ACTIONS(2119), + [anon_sym_AMP] = ACTIONS(2121), + [anon_sym_TILDE] = ACTIONS(2121), + [anon_sym_LT] = ACTIONS(2121), + [anon_sym_lambda] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), + [anon_sym_None] = ACTIONS(2119), + [sym_integer] = ACTIONS(2119), + [sym_float] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(2119), + [anon_sym_api] = ACTIONS(2119), + [sym_true] = ACTIONS(2119), + [sym_false] = ACTIONS(2119), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2088), - [anon_sym_include] = ACTIONS(2088), - [anon_sym_DEF] = ACTIONS(2088), - [anon_sym_cdef] = ACTIONS(2088), - [anon_sym_cpdef] = ACTIONS(2088), - [anon_sym_int] = ACTIONS(2088), - [anon_sym_double] = ACTIONS(2088), - [anon_sym_complex] = ACTIONS(2088), - [anon_sym_new] = ACTIONS(2088), - [anon_sym_signed] = ACTIONS(2088), - [anon_sym_unsigned] = ACTIONS(2088), - [anon_sym_char] = ACTIONS(2088), - [anon_sym_short] = ACTIONS(2088), - [anon_sym_long] = ACTIONS(2088), - [anon_sym_const] = ACTIONS(2088), - [anon_sym_volatile] = ACTIONS(2088), - [anon_sym_ctypedef] = ACTIONS(2088), - [anon_sym_struct] = ACTIONS(2088), - [anon_sym_union] = ACTIONS(2088), - [anon_sym_enum] = ACTIONS(2088), - [anon_sym_cppclass] = ACTIONS(2088), - [anon_sym_fused] = ACTIONS(2088), - [anon_sym_public] = ACTIONS(2088), - [anon_sym_packed] = ACTIONS(2088), - [anon_sym_inline] = ACTIONS(2088), - [anon_sym_readonly] = ACTIONS(2088), - [anon_sym_sizeof] = ACTIONS(2088), - [sym__dedent] = ACTIONS(2090), - [sym_string_start] = ACTIONS(2090), + [anon_sym_property] = ACTIONS(2119), + [anon_sym_include] = ACTIONS(2119), + [anon_sym_DEF] = ACTIONS(2119), + [anon_sym_cdef] = ACTIONS(2119), + [anon_sym_cpdef] = ACTIONS(2119), + [anon_sym_int] = ACTIONS(2119), + [anon_sym_double] = ACTIONS(2119), + [anon_sym_complex] = ACTIONS(2119), + [anon_sym_new] = ACTIONS(2119), + [anon_sym_signed] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_char] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_const] = ACTIONS(2119), + [anon_sym_volatile] = ACTIONS(2119), + [anon_sym_ctypedef] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(2119), + [anon_sym_union] = ACTIONS(2119), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_cppclass] = ACTIONS(2119), + [anon_sym_fused] = ACTIONS(2119), + [anon_sym_public] = ACTIONS(2119), + [anon_sym_packed] = ACTIONS(2119), + [anon_sym_inline] = ACTIONS(2119), + [anon_sym_readonly] = ACTIONS(2119), + [anon_sym_sizeof] = ACTIONS(2119), + [sym__dedent] = ACTIONS(2121), + [sym_string_start] = ACTIONS(2121), }, [623] = { - [sym_identifier] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2054), - [anon_sym_import] = ACTIONS(2052), - [anon_sym_cimport] = ACTIONS(2052), - [anon_sym_from] = ACTIONS(2052), - [anon_sym_LPAREN] = ACTIONS(2054), - [anon_sym_STAR] = ACTIONS(2054), - [anon_sym_print] = ACTIONS(2052), - [anon_sym_assert] = ACTIONS(2052), - [anon_sym_return] = ACTIONS(2052), - [anon_sym_del] = ACTIONS(2052), - [anon_sym_raise] = ACTIONS(2052), - [anon_sym_pass] = ACTIONS(2052), - [anon_sym_break] = ACTIONS(2052), - [anon_sym_continue] = ACTIONS(2052), - [anon_sym_if] = ACTIONS(2052), - [anon_sym_match] = ACTIONS(2052), - [anon_sym_async] = ACTIONS(2052), - [anon_sym_for] = ACTIONS(2052), - [anon_sym_while] = ACTIONS(2052), - [anon_sym_try] = ACTIONS(2052), - [anon_sym_with] = ACTIONS(2052), - [anon_sym_def] = ACTIONS(2052), - [anon_sym_global] = ACTIONS(2052), - [anon_sym_nonlocal] = ACTIONS(2052), - [anon_sym_exec] = ACTIONS(2052), - [anon_sym_type] = ACTIONS(2052), - [anon_sym_class] = ACTIONS(2052), - [anon_sym_LBRACK] = ACTIONS(2054), - [anon_sym_AT] = ACTIONS(2054), - [anon_sym_DASH] = ACTIONS(2054), - [anon_sym_LBRACE] = ACTIONS(2054), - [anon_sym_PLUS] = ACTIONS(2054), - [anon_sym_not] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2054), - [anon_sym_TILDE] = ACTIONS(2054), - [anon_sym_LT] = ACTIONS(2054), - [anon_sym_lambda] = ACTIONS(2052), - [anon_sym_yield] = ACTIONS(2052), - [sym_ellipsis] = ACTIONS(2054), - [anon_sym_None] = ACTIONS(2052), - [sym_integer] = ACTIONS(2052), - [sym_float] = ACTIONS(2054), - [anon_sym_await] = ACTIONS(2052), - [anon_sym_api] = ACTIONS(2052), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), + [sym_identifier] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_import] = ACTIONS(2083), + [anon_sym_cimport] = ACTIONS(2083), + [anon_sym_from] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(2085), + [anon_sym_print] = ACTIONS(2083), + [anon_sym_assert] = ACTIONS(2083), + [anon_sym_return] = ACTIONS(2083), + [anon_sym_del] = ACTIONS(2083), + [anon_sym_raise] = ACTIONS(2083), + [anon_sym_pass] = ACTIONS(2083), + [anon_sym_break] = ACTIONS(2083), + [anon_sym_continue] = ACTIONS(2083), + [anon_sym_if] = ACTIONS(2083), + [anon_sym_match] = ACTIONS(2083), + [anon_sym_async] = ACTIONS(2083), + [anon_sym_for] = ACTIONS(2083), + [anon_sym_while] = ACTIONS(2083), + [anon_sym_try] = ACTIONS(2083), + [anon_sym_with] = ACTIONS(2083), + [anon_sym_def] = ACTIONS(2083), + [anon_sym_global] = ACTIONS(2083), + [anon_sym_nonlocal] = ACTIONS(2083), + [anon_sym_exec] = ACTIONS(2083), + [anon_sym_type] = ACTIONS(2083), + [anon_sym_class] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_AT] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_not] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2085), + [anon_sym_TILDE] = ACTIONS(2085), + [anon_sym_LT] = ACTIONS(2085), + [anon_sym_lambda] = ACTIONS(2083), + [anon_sym_yield] = ACTIONS(2083), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2085), + [anon_sym_None] = ACTIONS(2083), + [sym_integer] = ACTIONS(2083), + [sym_float] = ACTIONS(2085), + [anon_sym_await] = ACTIONS(2083), + [anon_sym_api] = ACTIONS(2083), + [sym_true] = ACTIONS(2083), + [sym_false] = ACTIONS(2083), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2052), - [anon_sym_include] = ACTIONS(2052), - [anon_sym_DEF] = ACTIONS(2052), - [anon_sym_cdef] = ACTIONS(2052), - [anon_sym_cpdef] = ACTIONS(2052), - [anon_sym_int] = ACTIONS(2052), - [anon_sym_double] = ACTIONS(2052), - [anon_sym_complex] = ACTIONS(2052), - [anon_sym_new] = ACTIONS(2052), - [anon_sym_signed] = ACTIONS(2052), - [anon_sym_unsigned] = ACTIONS(2052), - [anon_sym_char] = ACTIONS(2052), - [anon_sym_short] = ACTIONS(2052), - [anon_sym_long] = ACTIONS(2052), - [anon_sym_const] = ACTIONS(2052), - [anon_sym_volatile] = ACTIONS(2052), - [anon_sym_ctypedef] = ACTIONS(2052), - [anon_sym_struct] = ACTIONS(2052), - [anon_sym_union] = ACTIONS(2052), - [anon_sym_enum] = ACTIONS(2052), - [anon_sym_cppclass] = ACTIONS(2052), - [anon_sym_fused] = ACTIONS(2052), - [anon_sym_public] = ACTIONS(2052), - [anon_sym_packed] = ACTIONS(2052), - [anon_sym_inline] = ACTIONS(2052), - [anon_sym_readonly] = ACTIONS(2052), - [anon_sym_sizeof] = ACTIONS(2052), - [sym__dedent] = ACTIONS(2054), - [sym_string_start] = ACTIONS(2054), + [anon_sym_property] = ACTIONS(2083), + [anon_sym_include] = ACTIONS(2083), + [anon_sym_DEF] = ACTIONS(2083), + [anon_sym_cdef] = ACTIONS(2083), + [anon_sym_cpdef] = ACTIONS(2083), + [anon_sym_int] = ACTIONS(2083), + [anon_sym_double] = ACTIONS(2083), + [anon_sym_complex] = ACTIONS(2083), + [anon_sym_new] = ACTIONS(2083), + [anon_sym_signed] = ACTIONS(2083), + [anon_sym_unsigned] = ACTIONS(2083), + [anon_sym_char] = ACTIONS(2083), + [anon_sym_short] = ACTIONS(2083), + [anon_sym_long] = ACTIONS(2083), + [anon_sym_const] = ACTIONS(2083), + [anon_sym_volatile] = ACTIONS(2083), + [anon_sym_ctypedef] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(2083), + [anon_sym_union] = ACTIONS(2083), + [anon_sym_enum] = ACTIONS(2083), + [anon_sym_cppclass] = ACTIONS(2083), + [anon_sym_fused] = ACTIONS(2083), + [anon_sym_public] = ACTIONS(2083), + [anon_sym_packed] = ACTIONS(2083), + [anon_sym_inline] = ACTIONS(2083), + [anon_sym_readonly] = ACTIONS(2083), + [anon_sym_sizeof] = ACTIONS(2083), + [sym__dedent] = ACTIONS(2085), + [sym_string_start] = ACTIONS(2085), }, [624] = { - [sym_identifier] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2094), - [anon_sym_import] = ACTIONS(2092), - [anon_sym_cimport] = ACTIONS(2092), - [anon_sym_from] = ACTIONS(2092), - [anon_sym_LPAREN] = ACTIONS(2094), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_print] = ACTIONS(2092), - [anon_sym_assert] = ACTIONS(2092), - [anon_sym_return] = ACTIONS(2092), - [anon_sym_del] = ACTIONS(2092), - [anon_sym_raise] = ACTIONS(2092), - [anon_sym_pass] = ACTIONS(2092), - [anon_sym_break] = ACTIONS(2092), - [anon_sym_continue] = ACTIONS(2092), - [anon_sym_if] = ACTIONS(2092), - [anon_sym_match] = ACTIONS(2092), - [anon_sym_async] = ACTIONS(2092), - [anon_sym_for] = ACTIONS(2092), - [anon_sym_while] = ACTIONS(2092), - [anon_sym_try] = ACTIONS(2092), - [anon_sym_with] = ACTIONS(2092), - [anon_sym_def] = ACTIONS(2092), - [anon_sym_global] = ACTIONS(2092), - [anon_sym_nonlocal] = ACTIONS(2092), - [anon_sym_exec] = ACTIONS(2092), - [anon_sym_type] = ACTIONS(2092), - [anon_sym_class] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_AT] = ACTIONS(2094), - [anon_sym_DASH] = ACTIONS(2094), - [anon_sym_LBRACE] = ACTIONS(2094), - [anon_sym_PLUS] = ACTIONS(2094), - [anon_sym_not] = ACTIONS(2092), - [anon_sym_AMP] = ACTIONS(2094), - [anon_sym_TILDE] = ACTIONS(2094), - [anon_sym_LT] = ACTIONS(2094), - [anon_sym_lambda] = ACTIONS(2092), - [anon_sym_yield] = ACTIONS(2092), - [sym_ellipsis] = ACTIONS(2094), - [anon_sym_None] = ACTIONS(2092), - [sym_integer] = ACTIONS(2092), - [sym_float] = ACTIONS(2094), - [anon_sym_await] = ACTIONS(2092), - [anon_sym_api] = ACTIONS(2092), - [sym_true] = ACTIONS(2092), - [sym_false] = ACTIONS(2092), + [sym_identifier] = ACTIONS(2123), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_import] = ACTIONS(2123), + [anon_sym_cimport] = ACTIONS(2123), + [anon_sym_from] = ACTIONS(2123), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2125), + [anon_sym_print] = ACTIONS(2123), + [anon_sym_assert] = ACTIONS(2123), + [anon_sym_return] = ACTIONS(2123), + [anon_sym_del] = ACTIONS(2123), + [anon_sym_raise] = ACTIONS(2123), + [anon_sym_pass] = ACTIONS(2123), + [anon_sym_break] = ACTIONS(2123), + [anon_sym_continue] = ACTIONS(2123), + [anon_sym_if] = ACTIONS(2123), + [anon_sym_match] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(2123), + [anon_sym_for] = ACTIONS(2123), + [anon_sym_while] = ACTIONS(2123), + [anon_sym_try] = ACTIONS(2123), + [anon_sym_with] = ACTIONS(2123), + [anon_sym_def] = ACTIONS(2123), + [anon_sym_global] = ACTIONS(2123), + [anon_sym_nonlocal] = ACTIONS(2123), + [anon_sym_exec] = ACTIONS(2123), + [anon_sym_type] = ACTIONS(2123), + [anon_sym_class] = ACTIONS(2123), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_AT] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_not] = ACTIONS(2123), + [anon_sym_AMP] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_lambda] = ACTIONS(2123), + [anon_sym_yield] = ACTIONS(2123), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2125), + [anon_sym_None] = ACTIONS(2123), + [sym_integer] = ACTIONS(2123), + [sym_float] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2123), + [anon_sym_api] = ACTIONS(2123), + [sym_true] = ACTIONS(2123), + [sym_false] = ACTIONS(2123), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2092), - [anon_sym_include] = ACTIONS(2092), - [anon_sym_DEF] = ACTIONS(2092), - [anon_sym_cdef] = ACTIONS(2092), - [anon_sym_cpdef] = ACTIONS(2092), - [anon_sym_int] = ACTIONS(2092), - [anon_sym_double] = ACTIONS(2092), - [anon_sym_complex] = ACTIONS(2092), - [anon_sym_new] = ACTIONS(2092), - [anon_sym_signed] = ACTIONS(2092), - [anon_sym_unsigned] = ACTIONS(2092), - [anon_sym_char] = ACTIONS(2092), - [anon_sym_short] = ACTIONS(2092), - [anon_sym_long] = ACTIONS(2092), - [anon_sym_const] = ACTIONS(2092), - [anon_sym_volatile] = ACTIONS(2092), - [anon_sym_ctypedef] = ACTIONS(2092), - [anon_sym_struct] = ACTIONS(2092), - [anon_sym_union] = ACTIONS(2092), - [anon_sym_enum] = ACTIONS(2092), - [anon_sym_cppclass] = ACTIONS(2092), - [anon_sym_fused] = ACTIONS(2092), - [anon_sym_public] = ACTIONS(2092), - [anon_sym_packed] = ACTIONS(2092), - [anon_sym_inline] = ACTIONS(2092), - [anon_sym_readonly] = ACTIONS(2092), - [anon_sym_sizeof] = ACTIONS(2092), - [sym__dedent] = ACTIONS(2094), - [sym_string_start] = ACTIONS(2094), + [anon_sym_property] = ACTIONS(2123), + [anon_sym_include] = ACTIONS(2123), + [anon_sym_DEF] = ACTIONS(2123), + [anon_sym_cdef] = ACTIONS(2123), + [anon_sym_cpdef] = ACTIONS(2123), + [anon_sym_int] = ACTIONS(2123), + [anon_sym_double] = ACTIONS(2123), + [anon_sym_complex] = ACTIONS(2123), + [anon_sym_new] = ACTIONS(2123), + [anon_sym_signed] = ACTIONS(2123), + [anon_sym_unsigned] = ACTIONS(2123), + [anon_sym_char] = ACTIONS(2123), + [anon_sym_short] = ACTIONS(2123), + [anon_sym_long] = ACTIONS(2123), + [anon_sym_const] = ACTIONS(2123), + [anon_sym_volatile] = ACTIONS(2123), + [anon_sym_ctypedef] = ACTIONS(2123), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2123), + [anon_sym_enum] = ACTIONS(2123), + [anon_sym_cppclass] = ACTIONS(2123), + [anon_sym_fused] = ACTIONS(2123), + [anon_sym_public] = ACTIONS(2123), + [anon_sym_packed] = ACTIONS(2123), + [anon_sym_inline] = ACTIONS(2123), + [anon_sym_readonly] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2123), + [sym__dedent] = ACTIONS(2125), + [sym_string_start] = ACTIONS(2125), }, [625] = { - [sym_identifier] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2098), - [anon_sym_import] = ACTIONS(2096), - [anon_sym_cimport] = ACTIONS(2096), - [anon_sym_from] = ACTIONS(2096), - [anon_sym_LPAREN] = ACTIONS(2098), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_print] = ACTIONS(2096), - [anon_sym_assert] = ACTIONS(2096), - [anon_sym_return] = ACTIONS(2096), - [anon_sym_del] = ACTIONS(2096), - [anon_sym_raise] = ACTIONS(2096), - [anon_sym_pass] = ACTIONS(2096), - [anon_sym_break] = ACTIONS(2096), - [anon_sym_continue] = ACTIONS(2096), - [anon_sym_if] = ACTIONS(2096), - [anon_sym_match] = ACTIONS(2096), - [anon_sym_async] = ACTIONS(2096), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_while] = ACTIONS(2096), - [anon_sym_try] = ACTIONS(2096), - [anon_sym_with] = ACTIONS(2096), - [anon_sym_def] = ACTIONS(2096), - [anon_sym_global] = ACTIONS(2096), - [anon_sym_nonlocal] = ACTIONS(2096), - [anon_sym_exec] = ACTIONS(2096), - [anon_sym_type] = ACTIONS(2096), - [anon_sym_class] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_AT] = ACTIONS(2098), - [anon_sym_DASH] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_PLUS] = ACTIONS(2098), - [anon_sym_not] = ACTIONS(2096), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_TILDE] = ACTIONS(2098), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_lambda] = ACTIONS(2096), - [anon_sym_yield] = ACTIONS(2096), - [sym_ellipsis] = ACTIONS(2098), - [anon_sym_None] = ACTIONS(2096), - [sym_integer] = ACTIONS(2096), - [sym_float] = ACTIONS(2098), - [anon_sym_await] = ACTIONS(2096), - [anon_sym_api] = ACTIONS(2096), - [sym_true] = ACTIONS(2096), - [sym_false] = ACTIONS(2096), + [sym_identifier] = ACTIONS(2127), + [anon_sym_SEMI] = ACTIONS(2129), + [anon_sym_import] = ACTIONS(2127), + [anon_sym_cimport] = ACTIONS(2127), + [anon_sym_from] = ACTIONS(2127), + [anon_sym_LPAREN] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_print] = ACTIONS(2127), + [anon_sym_assert] = ACTIONS(2127), + [anon_sym_return] = ACTIONS(2127), + [anon_sym_del] = ACTIONS(2127), + [anon_sym_raise] = ACTIONS(2127), + [anon_sym_pass] = ACTIONS(2127), + [anon_sym_break] = ACTIONS(2127), + [anon_sym_continue] = ACTIONS(2127), + [anon_sym_if] = ACTIONS(2127), + [anon_sym_match] = ACTIONS(2127), + [anon_sym_async] = ACTIONS(2127), + [anon_sym_for] = ACTIONS(2127), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_try] = ACTIONS(2127), + [anon_sym_with] = ACTIONS(2127), + [anon_sym_def] = ACTIONS(2127), + [anon_sym_global] = ACTIONS(2127), + [anon_sym_nonlocal] = ACTIONS(2127), + [anon_sym_exec] = ACTIONS(2127), + [anon_sym_type] = ACTIONS(2127), + [anon_sym_class] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(2129), + [anon_sym_AT] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2129), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_not] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_lambda] = ACTIONS(2127), + [anon_sym_yield] = ACTIONS(2127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2129), + [anon_sym_None] = ACTIONS(2127), + [sym_integer] = ACTIONS(2127), + [sym_float] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2127), + [anon_sym_api] = ACTIONS(2127), + [sym_true] = ACTIONS(2127), + [sym_false] = ACTIONS(2127), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2096), - [anon_sym_include] = ACTIONS(2096), - [anon_sym_DEF] = ACTIONS(2096), - [anon_sym_cdef] = ACTIONS(2096), - [anon_sym_cpdef] = ACTIONS(2096), - [anon_sym_int] = ACTIONS(2096), - [anon_sym_double] = ACTIONS(2096), - [anon_sym_complex] = ACTIONS(2096), - [anon_sym_new] = ACTIONS(2096), - [anon_sym_signed] = ACTIONS(2096), - [anon_sym_unsigned] = ACTIONS(2096), - [anon_sym_char] = ACTIONS(2096), - [anon_sym_short] = ACTIONS(2096), - [anon_sym_long] = ACTIONS(2096), - [anon_sym_const] = ACTIONS(2096), - [anon_sym_volatile] = ACTIONS(2096), - [anon_sym_ctypedef] = ACTIONS(2096), - [anon_sym_struct] = ACTIONS(2096), - [anon_sym_union] = ACTIONS(2096), - [anon_sym_enum] = ACTIONS(2096), - [anon_sym_cppclass] = ACTIONS(2096), - [anon_sym_fused] = ACTIONS(2096), - [anon_sym_public] = ACTIONS(2096), - [anon_sym_packed] = ACTIONS(2096), - [anon_sym_inline] = ACTIONS(2096), - [anon_sym_readonly] = ACTIONS(2096), - [anon_sym_sizeof] = ACTIONS(2096), - [sym__dedent] = ACTIONS(2098), - [sym_string_start] = ACTIONS(2098), + [anon_sym_property] = ACTIONS(2127), + [anon_sym_include] = ACTIONS(2127), + [anon_sym_DEF] = ACTIONS(2127), + [anon_sym_cdef] = ACTIONS(2127), + [anon_sym_cpdef] = ACTIONS(2127), + [anon_sym_int] = ACTIONS(2127), + [anon_sym_double] = ACTIONS(2127), + [anon_sym_complex] = ACTIONS(2127), + [anon_sym_new] = ACTIONS(2127), + [anon_sym_signed] = ACTIONS(2127), + [anon_sym_unsigned] = ACTIONS(2127), + [anon_sym_char] = ACTIONS(2127), + [anon_sym_short] = ACTIONS(2127), + [anon_sym_long] = ACTIONS(2127), + [anon_sym_const] = ACTIONS(2127), + [anon_sym_volatile] = ACTIONS(2127), + [anon_sym_ctypedef] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(2127), + [anon_sym_union] = ACTIONS(2127), + [anon_sym_enum] = ACTIONS(2127), + [anon_sym_cppclass] = ACTIONS(2127), + [anon_sym_fused] = ACTIONS(2127), + [anon_sym_public] = ACTIONS(2127), + [anon_sym_packed] = ACTIONS(2127), + [anon_sym_inline] = ACTIONS(2127), + [anon_sym_readonly] = ACTIONS(2127), + [anon_sym_sizeof] = ACTIONS(2127), + [sym__dedent] = ACTIONS(2129), + [sym_string_start] = ACTIONS(2129), }, [626] = { - [sym_identifier] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_import] = ACTIONS(2060), - [anon_sym_cimport] = ACTIONS(2060), - [anon_sym_from] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2062), - [anon_sym_print] = ACTIONS(2060), - [anon_sym_assert] = ACTIONS(2060), - [anon_sym_return] = ACTIONS(2060), - [anon_sym_del] = ACTIONS(2060), - [anon_sym_raise] = ACTIONS(2060), - [anon_sym_pass] = ACTIONS(2060), - [anon_sym_break] = ACTIONS(2060), - [anon_sym_continue] = ACTIONS(2060), - [anon_sym_if] = ACTIONS(2060), - [anon_sym_match] = ACTIONS(2060), - [anon_sym_async] = ACTIONS(2060), - [anon_sym_for] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_try] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2060), - [anon_sym_def] = ACTIONS(2060), - [anon_sym_global] = ACTIONS(2060), - [anon_sym_nonlocal] = ACTIONS(2060), - [anon_sym_exec] = ACTIONS(2060), - [anon_sym_type] = ACTIONS(2060), - [anon_sym_class] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2062), - [anon_sym_AT] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_not] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2062), - [anon_sym_TILDE] = ACTIONS(2062), - [anon_sym_LT] = ACTIONS(2062), - [anon_sym_lambda] = ACTIONS(2060), - [anon_sym_yield] = ACTIONS(2060), - [sym_ellipsis] = ACTIONS(2062), - [anon_sym_None] = ACTIONS(2060), - [sym_integer] = ACTIONS(2060), - [sym_float] = ACTIONS(2062), - [anon_sym_await] = ACTIONS(2060), - [anon_sym_api] = ACTIONS(2060), - [sym_true] = ACTIONS(2060), - [sym_false] = ACTIONS(2060), + [sym_identifier] = ACTIONS(2091), + [anon_sym_SEMI] = ACTIONS(2093), + [anon_sym_import] = ACTIONS(2091), + [anon_sym_cimport] = ACTIONS(2091), + [anon_sym_from] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2091), + [anon_sym_assert] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2091), + [anon_sym_del] = ACTIONS(2091), + [anon_sym_raise] = ACTIONS(2091), + [anon_sym_pass] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_match] = ACTIONS(2091), + [anon_sym_async] = ACTIONS(2091), + [anon_sym_for] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2091), + [anon_sym_try] = ACTIONS(2091), + [anon_sym_with] = ACTIONS(2091), + [anon_sym_def] = ACTIONS(2091), + [anon_sym_global] = ACTIONS(2091), + [anon_sym_nonlocal] = ACTIONS(2091), + [anon_sym_exec] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2091), + [anon_sym_class] = ACTIONS(2091), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_AT] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_not] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2093), + [anon_sym_TILDE] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_lambda] = ACTIONS(2091), + [anon_sym_yield] = ACTIONS(2091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2093), + [anon_sym_None] = ACTIONS(2091), + [sym_integer] = ACTIONS(2091), + [sym_float] = ACTIONS(2093), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_api] = ACTIONS(2091), + [sym_true] = ACTIONS(2091), + [sym_false] = ACTIONS(2091), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2060), - [anon_sym_include] = ACTIONS(2060), - [anon_sym_DEF] = ACTIONS(2060), - [anon_sym_cdef] = ACTIONS(2060), - [anon_sym_cpdef] = ACTIONS(2060), - [anon_sym_int] = ACTIONS(2060), - [anon_sym_double] = ACTIONS(2060), - [anon_sym_complex] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2060), - [anon_sym_signed] = ACTIONS(2060), - [anon_sym_unsigned] = ACTIONS(2060), - [anon_sym_char] = ACTIONS(2060), - [anon_sym_short] = ACTIONS(2060), - [anon_sym_long] = ACTIONS(2060), - [anon_sym_const] = ACTIONS(2060), - [anon_sym_volatile] = ACTIONS(2060), - [anon_sym_ctypedef] = ACTIONS(2060), - [anon_sym_struct] = ACTIONS(2060), - [anon_sym_union] = ACTIONS(2060), - [anon_sym_enum] = ACTIONS(2060), - [anon_sym_cppclass] = ACTIONS(2060), - [anon_sym_fused] = ACTIONS(2060), - [anon_sym_public] = ACTIONS(2060), - [anon_sym_packed] = ACTIONS(2060), - [anon_sym_inline] = ACTIONS(2060), - [anon_sym_readonly] = ACTIONS(2060), - [anon_sym_sizeof] = ACTIONS(2060), - [sym__dedent] = ACTIONS(2062), - [sym_string_start] = ACTIONS(2062), + [anon_sym_property] = ACTIONS(2091), + [anon_sym_include] = ACTIONS(2091), + [anon_sym_DEF] = ACTIONS(2091), + [anon_sym_cdef] = ACTIONS(2091), + [anon_sym_cpdef] = ACTIONS(2091), + [anon_sym_int] = ACTIONS(2091), + [anon_sym_double] = ACTIONS(2091), + [anon_sym_complex] = ACTIONS(2091), + [anon_sym_new] = ACTIONS(2091), + [anon_sym_signed] = ACTIONS(2091), + [anon_sym_unsigned] = ACTIONS(2091), + [anon_sym_char] = ACTIONS(2091), + [anon_sym_short] = ACTIONS(2091), + [anon_sym_long] = ACTIONS(2091), + [anon_sym_const] = ACTIONS(2091), + [anon_sym_volatile] = ACTIONS(2091), + [anon_sym_ctypedef] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2091), + [anon_sym_union] = ACTIONS(2091), + [anon_sym_enum] = ACTIONS(2091), + [anon_sym_cppclass] = ACTIONS(2091), + [anon_sym_fused] = ACTIONS(2091), + [anon_sym_public] = ACTIONS(2091), + [anon_sym_packed] = ACTIONS(2091), + [anon_sym_inline] = ACTIONS(2091), + [anon_sym_readonly] = ACTIONS(2091), + [anon_sym_sizeof] = ACTIONS(2091), + [sym__dedent] = ACTIONS(2093), + [sym_string_start] = ACTIONS(2093), }, [627] = { - [sym_identifier] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(1482), - [anon_sym_cimport] = ACTIONS(1482), - [anon_sym_from] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_print] = ACTIONS(1482), - [anon_sym_assert] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_del] = ACTIONS(1482), - [anon_sym_raise] = ACTIONS(1482), - [anon_sym_pass] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_match] = ACTIONS(1482), - [anon_sym_async] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_try] = ACTIONS(1482), - [anon_sym_with] = ACTIONS(1482), - [anon_sym_def] = ACTIONS(1482), - [anon_sym_global] = ACTIONS(1482), - [anon_sym_nonlocal] = ACTIONS(1482), - [anon_sym_exec] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_class] = ACTIONS(1482), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_AT] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_not] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_TILDE] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_lambda] = ACTIONS(1482), - [anon_sym_yield] = ACTIONS(1482), - [sym_ellipsis] = ACTIONS(1484), - [anon_sym_None] = ACTIONS(1482), - [sym_integer] = ACTIONS(1482), - [sym_float] = ACTIONS(1484), - [anon_sym_await] = ACTIONS(1482), - [anon_sym_api] = ACTIONS(1482), - [sym_true] = ACTIONS(1482), - [sym_false] = ACTIONS(1482), + [sym_identifier] = ACTIONS(2131), + [anon_sym_SEMI] = ACTIONS(2133), + [anon_sym_import] = ACTIONS(2131), + [anon_sym_cimport] = ACTIONS(2131), + [anon_sym_from] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_STAR] = ACTIONS(2133), + [anon_sym_print] = ACTIONS(2131), + [anon_sym_assert] = ACTIONS(2131), + [anon_sym_return] = ACTIONS(2131), + [anon_sym_del] = ACTIONS(2131), + [anon_sym_raise] = ACTIONS(2131), + [anon_sym_pass] = ACTIONS(2131), + [anon_sym_break] = ACTIONS(2131), + [anon_sym_continue] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2131), + [anon_sym_match] = ACTIONS(2131), + [anon_sym_async] = ACTIONS(2131), + [anon_sym_for] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_try] = ACTIONS(2131), + [anon_sym_with] = ACTIONS(2131), + [anon_sym_def] = ACTIONS(2131), + [anon_sym_global] = ACTIONS(2131), + [anon_sym_nonlocal] = ACTIONS(2131), + [anon_sym_exec] = ACTIONS(2131), + [anon_sym_type] = ACTIONS(2131), + [anon_sym_class] = ACTIONS(2131), + [anon_sym_LBRACK] = ACTIONS(2133), + [anon_sym_AT] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_PLUS] = ACTIONS(2133), + [anon_sym_not] = ACTIONS(2131), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2133), + [anon_sym_LT] = ACTIONS(2133), + [anon_sym_lambda] = ACTIONS(2131), + [anon_sym_yield] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2133), + [anon_sym_None] = ACTIONS(2131), + [sym_integer] = ACTIONS(2131), + [sym_float] = ACTIONS(2133), + [anon_sym_await] = ACTIONS(2131), + [anon_sym_api] = ACTIONS(2131), + [sym_true] = ACTIONS(2131), + [sym_false] = ACTIONS(2131), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1482), - [anon_sym_include] = ACTIONS(1482), - [anon_sym_DEF] = ACTIONS(1482), - [anon_sym_cdef] = ACTIONS(1482), - [anon_sym_cpdef] = ACTIONS(1482), - [anon_sym_int] = ACTIONS(1482), - [anon_sym_double] = ACTIONS(1482), - [anon_sym_complex] = ACTIONS(1482), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1482), - [anon_sym_unsigned] = ACTIONS(1482), - [anon_sym_char] = ACTIONS(1482), - [anon_sym_short] = ACTIONS(1482), - [anon_sym_long] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_volatile] = ACTIONS(1482), - [anon_sym_ctypedef] = ACTIONS(1482), - [anon_sym_struct] = ACTIONS(1482), - [anon_sym_union] = ACTIONS(1482), - [anon_sym_enum] = ACTIONS(1482), - [anon_sym_cppclass] = ACTIONS(1482), - [anon_sym_fused] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_packed] = ACTIONS(1482), - [anon_sym_inline] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1482), - [sym__dedent] = ACTIONS(1484), - [sym_string_start] = ACTIONS(1484), + [anon_sym_property] = ACTIONS(2131), + [anon_sym_include] = ACTIONS(2131), + [anon_sym_DEF] = ACTIONS(2131), + [anon_sym_cdef] = ACTIONS(2131), + [anon_sym_cpdef] = ACTIONS(2131), + [anon_sym_int] = ACTIONS(2131), + [anon_sym_double] = ACTIONS(2131), + [anon_sym_complex] = ACTIONS(2131), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_signed] = ACTIONS(2131), + [anon_sym_unsigned] = ACTIONS(2131), + [anon_sym_char] = ACTIONS(2131), + [anon_sym_short] = ACTIONS(2131), + [anon_sym_long] = ACTIONS(2131), + [anon_sym_const] = ACTIONS(2131), + [anon_sym_volatile] = ACTIONS(2131), + [anon_sym_ctypedef] = ACTIONS(2131), + [anon_sym_struct] = ACTIONS(2131), + [anon_sym_union] = ACTIONS(2131), + [anon_sym_enum] = ACTIONS(2131), + [anon_sym_cppclass] = ACTIONS(2131), + [anon_sym_fused] = ACTIONS(2131), + [anon_sym_public] = ACTIONS(2131), + [anon_sym_packed] = ACTIONS(2131), + [anon_sym_inline] = ACTIONS(2131), + [anon_sym_readonly] = ACTIONS(2131), + [anon_sym_sizeof] = ACTIONS(2131), + [sym__dedent] = ACTIONS(2133), + [sym_string_start] = ACTIONS(2133), }, [628] = { - [sym_list_splat_pattern] = STATE(2230), - [sym_primary_expression] = STATE(2026), - [sym_binary_operator] = STATE(2179), - [sym_unary_operator] = STATE(2179), - [sym_attribute] = STATE(2179), - [sym_subscript] = STATE(2179), - [sym_call] = STATE(2179), - [sym_list] = STATE(2179), - [sym_set] = STATE(2179), - [sym_tuple] = STATE(2179), - [sym_dictionary] = STATE(2179), - [sym_list_comprehension] = STATE(2179), - [sym_dictionary_comprehension] = STATE(2179), - [sym_set_comprehension] = STATE(2179), - [sym_generator_expression] = STATE(2179), - [sym_parenthesized_expression] = STATE(2179), - [sym_concatenated_string] = STATE(2179), - [sym_string] = STATE(1968), - [sym_none] = STATE(2179), - [sym_await] = STATE(2179), - [sym_sizeof_expression] = STATE(2179), - [sym_cast_expression] = STATE(2179), - [sym_identifier] = ACTIONS(2100), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(2104), - [anon_sym_print] = ACTIONS(2106), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(836), - [anon_sym_COLON] = ACTIONS(836), - [anon_sym_match] = ACTIONS(2106), - [anon_sym_async] = ACTIONS(2106), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(834), - [anon_sym_exec] = ACTIONS(2106), - [anon_sym_EQ] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(2108), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(834), - [anon_sym_PLUS] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(834), - [anon_sym_SLASH_SLASH] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(2110), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(2110), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(2114), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [sym_ellipsis] = ACTIONS(2116), - [anon_sym_None] = ACTIONS(2118), - [sym_type_conversion] = ACTIONS(834), - [sym_integer] = ACTIONS(2100), - [sym_float] = ACTIONS(2116), - [anon_sym_await] = ACTIONS(2120), - [anon_sym_api] = ACTIONS(2106), - [sym_true] = ACTIONS(2100), - [sym_false] = ACTIONS(2100), + [sym_identifier] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2101), + [anon_sym_import] = ACTIONS(2099), + [anon_sym_cimport] = ACTIONS(2099), + [anon_sym_from] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_STAR] = ACTIONS(2101), + [anon_sym_print] = ACTIONS(2099), + [anon_sym_assert] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2099), + [anon_sym_del] = ACTIONS(2099), + [anon_sym_raise] = ACTIONS(2099), + [anon_sym_pass] = ACTIONS(2099), + [anon_sym_break] = ACTIONS(2099), + [anon_sym_continue] = ACTIONS(2099), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_match] = ACTIONS(2099), + [anon_sym_async] = ACTIONS(2099), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_while] = ACTIONS(2099), + [anon_sym_try] = ACTIONS(2099), + [anon_sym_with] = ACTIONS(2099), + [anon_sym_def] = ACTIONS(2099), + [anon_sym_global] = ACTIONS(2099), + [anon_sym_nonlocal] = ACTIONS(2099), + [anon_sym_exec] = ACTIONS(2099), + [anon_sym_type] = ACTIONS(2099), + [anon_sym_class] = ACTIONS(2099), + [anon_sym_LBRACK] = ACTIONS(2101), + [anon_sym_AT] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_not] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_lambda] = ACTIONS(2099), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2101), + [anon_sym_None] = ACTIONS(2099), + [sym_integer] = ACTIONS(2099), + [sym_float] = ACTIONS(2101), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_api] = ACTIONS(2099), + [sym_true] = ACTIONS(2099), + [sym_false] = ACTIONS(2099), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_string_start] = ACTIONS(2124), + [anon_sym_property] = ACTIONS(2099), + [anon_sym_include] = ACTIONS(2099), + [anon_sym_DEF] = ACTIONS(2099), + [anon_sym_cdef] = ACTIONS(2099), + [anon_sym_cpdef] = ACTIONS(2099), + [anon_sym_int] = ACTIONS(2099), + [anon_sym_double] = ACTIONS(2099), + [anon_sym_complex] = ACTIONS(2099), + [anon_sym_new] = ACTIONS(2099), + [anon_sym_signed] = ACTIONS(2099), + [anon_sym_unsigned] = ACTIONS(2099), + [anon_sym_char] = ACTIONS(2099), + [anon_sym_short] = ACTIONS(2099), + [anon_sym_long] = ACTIONS(2099), + [anon_sym_const] = ACTIONS(2099), + [anon_sym_volatile] = ACTIONS(2099), + [anon_sym_ctypedef] = ACTIONS(2099), + [anon_sym_struct] = ACTIONS(2099), + [anon_sym_union] = ACTIONS(2099), + [anon_sym_enum] = ACTIONS(2099), + [anon_sym_cppclass] = ACTIONS(2099), + [anon_sym_fused] = ACTIONS(2099), + [anon_sym_public] = ACTIONS(2099), + [anon_sym_packed] = ACTIONS(2099), + [anon_sym_inline] = ACTIONS(2099), + [anon_sym_readonly] = ACTIONS(2099), + [anon_sym_sizeof] = ACTIONS(2099), + [sym__dedent] = ACTIONS(2101), + [sym_string_start] = ACTIONS(2101), }, [629] = { - [sym_identifier] = ACTIONS(2126), - [anon_sym_import] = ACTIONS(2126), - [anon_sym_cimport] = ACTIONS(2126), - [anon_sym_from] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2128), - [anon_sym_STAR] = ACTIONS(2128), - [anon_sym_print] = ACTIONS(2126), - [anon_sym_assert] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_del] = ACTIONS(2126), - [anon_sym_raise] = ACTIONS(2126), - [anon_sym_pass] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_match] = ACTIONS(2126), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_with] = ACTIONS(2126), - [anon_sym_def] = ACTIONS(2126), - [anon_sym_global] = ACTIONS(2126), - [anon_sym_nonlocal] = ACTIONS(2126), - [anon_sym_exec] = ACTIONS(2126), - [anon_sym_type] = ACTIONS(2126), - [anon_sym_class] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2128), - [anon_sym_AT] = ACTIONS(2128), - [anon_sym_DASH] = ACTIONS(2128), - [anon_sym_LBRACE] = ACTIONS(2128), - [anon_sym_PLUS] = ACTIONS(2128), - [anon_sym_not] = ACTIONS(2126), - [anon_sym_AMP] = ACTIONS(2128), - [anon_sym_TILDE] = ACTIONS(2128), - [anon_sym_LT] = ACTIONS(2128), - [anon_sym_lambda] = ACTIONS(2126), - [anon_sym_yield] = ACTIONS(2126), - [sym_ellipsis] = ACTIONS(2128), - [anon_sym_None] = ACTIONS(2126), - [sym_integer] = ACTIONS(2126), - [sym_float] = ACTIONS(2128), - [anon_sym_await] = ACTIONS(2126), - [anon_sym_api] = ACTIONS(2126), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), + [sym_identifier] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2137), + [anon_sym_import] = ACTIONS(2135), + [anon_sym_cimport] = ACTIONS(2135), + [anon_sym_from] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_print] = ACTIONS(2135), + [anon_sym_assert] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(2135), + [anon_sym_del] = ACTIONS(2135), + [anon_sym_raise] = ACTIONS(2135), + [anon_sym_pass] = ACTIONS(2135), + [anon_sym_break] = ACTIONS(2135), + [anon_sym_continue] = ACTIONS(2135), + [anon_sym_if] = ACTIONS(2135), + [anon_sym_match] = ACTIONS(2135), + [anon_sym_async] = ACTIONS(2135), + [anon_sym_for] = ACTIONS(2135), + [anon_sym_while] = ACTIONS(2135), + [anon_sym_try] = ACTIONS(2135), + [anon_sym_with] = ACTIONS(2135), + [anon_sym_def] = ACTIONS(2135), + [anon_sym_global] = ACTIONS(2135), + [anon_sym_nonlocal] = ACTIONS(2135), + [anon_sym_exec] = ACTIONS(2135), + [anon_sym_type] = ACTIONS(2135), + [anon_sym_class] = ACTIONS(2135), + [anon_sym_LBRACK] = ACTIONS(2137), + [anon_sym_AT] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2137), + [anon_sym_not] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_lambda] = ACTIONS(2135), + [anon_sym_yield] = ACTIONS(2135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2137), + [anon_sym_None] = ACTIONS(2135), + [sym_integer] = ACTIONS(2135), + [sym_float] = ACTIONS(2137), + [anon_sym_await] = ACTIONS(2135), + [anon_sym_api] = ACTIONS(2135), + [sym_true] = ACTIONS(2135), + [sym_false] = ACTIONS(2135), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2126), - [anon_sym_include] = ACTIONS(2126), - [anon_sym_DEF] = ACTIONS(2126), - [anon_sym_cdef] = ACTIONS(2126), - [anon_sym_cpdef] = ACTIONS(2126), - [anon_sym_int] = ACTIONS(2126), - [anon_sym_double] = ACTIONS(2126), - [anon_sym_complex] = ACTIONS(2126), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_signed] = ACTIONS(2126), - [anon_sym_unsigned] = ACTIONS(2126), - [anon_sym_char] = ACTIONS(2126), - [anon_sym_short] = ACTIONS(2126), - [anon_sym_long] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_volatile] = ACTIONS(2126), - [anon_sym_ctypedef] = ACTIONS(2126), - [anon_sym_struct] = ACTIONS(2126), - [anon_sym_union] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [anon_sym_cppclass] = ACTIONS(2126), - [anon_sym_fused] = ACTIONS(2126), - [anon_sym_public] = ACTIONS(2126), - [anon_sym_packed] = ACTIONS(2126), - [anon_sym_inline] = ACTIONS(2126), - [anon_sym_readonly] = ACTIONS(2126), - [anon_sym_sizeof] = ACTIONS(2126), - [sym__dedent] = ACTIONS(2128), - [sym_string_start] = ACTIONS(2128), + [anon_sym_property] = ACTIONS(2135), + [anon_sym_include] = ACTIONS(2135), + [anon_sym_DEF] = ACTIONS(2135), + [anon_sym_cdef] = ACTIONS(2135), + [anon_sym_cpdef] = ACTIONS(2135), + [anon_sym_int] = ACTIONS(2135), + [anon_sym_double] = ACTIONS(2135), + [anon_sym_complex] = ACTIONS(2135), + [anon_sym_new] = ACTIONS(2135), + [anon_sym_signed] = ACTIONS(2135), + [anon_sym_unsigned] = ACTIONS(2135), + [anon_sym_char] = ACTIONS(2135), + [anon_sym_short] = ACTIONS(2135), + [anon_sym_long] = ACTIONS(2135), + [anon_sym_const] = ACTIONS(2135), + [anon_sym_volatile] = ACTIONS(2135), + [anon_sym_ctypedef] = ACTIONS(2135), + [anon_sym_struct] = ACTIONS(2135), + [anon_sym_union] = ACTIONS(2135), + [anon_sym_enum] = ACTIONS(2135), + [anon_sym_cppclass] = ACTIONS(2135), + [anon_sym_fused] = ACTIONS(2135), + [anon_sym_public] = ACTIONS(2135), + [anon_sym_packed] = ACTIONS(2135), + [anon_sym_inline] = ACTIONS(2135), + [anon_sym_readonly] = ACTIONS(2135), + [anon_sym_sizeof] = ACTIONS(2135), + [sym__dedent] = ACTIONS(2137), + [sym_string_start] = ACTIONS(2137), }, [630] = { - [sym_identifier] = ACTIONS(2130), - [anon_sym_import] = ACTIONS(2130), - [anon_sym_cimport] = ACTIONS(2130), - [anon_sym_from] = ACTIONS(2130), - [anon_sym_LPAREN] = ACTIONS(2132), - [anon_sym_STAR] = ACTIONS(2132), - [anon_sym_print] = ACTIONS(2130), - [anon_sym_assert] = ACTIONS(2130), - [anon_sym_return] = ACTIONS(2130), - [anon_sym_del] = ACTIONS(2130), - [anon_sym_raise] = ACTIONS(2130), - [anon_sym_pass] = ACTIONS(2130), - [anon_sym_break] = ACTIONS(2130), - [anon_sym_continue] = ACTIONS(2130), - [anon_sym_if] = ACTIONS(2130), - [anon_sym_match] = ACTIONS(2130), - [anon_sym_async] = ACTIONS(2130), - [anon_sym_for] = ACTIONS(2130), - [anon_sym_while] = ACTIONS(2130), - [anon_sym_try] = ACTIONS(2130), - [anon_sym_with] = ACTIONS(2130), - [anon_sym_def] = ACTIONS(2130), - [anon_sym_global] = ACTIONS(2130), - [anon_sym_nonlocal] = ACTIONS(2130), - [anon_sym_exec] = ACTIONS(2130), - [anon_sym_type] = ACTIONS(2130), - [anon_sym_class] = ACTIONS(2130), - [anon_sym_LBRACK] = ACTIONS(2132), - [anon_sym_AT] = ACTIONS(2132), - [anon_sym_DASH] = ACTIONS(2132), - [anon_sym_LBRACE] = ACTIONS(2132), - [anon_sym_PLUS] = ACTIONS(2132), - [anon_sym_not] = ACTIONS(2130), - [anon_sym_AMP] = ACTIONS(2132), - [anon_sym_TILDE] = ACTIONS(2132), - [anon_sym_LT] = ACTIONS(2132), - [anon_sym_lambda] = ACTIONS(2130), - [anon_sym_yield] = ACTIONS(2130), - [sym_ellipsis] = ACTIONS(2132), - [anon_sym_None] = ACTIONS(2130), - [sym_integer] = ACTIONS(2130), - [sym_float] = ACTIONS(2132), - [anon_sym_await] = ACTIONS(2130), - [anon_sym_api] = ACTIONS(2130), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), + [sym_identifier] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_import] = ACTIONS(1493), + [anon_sym_cimport] = ACTIONS(1493), + [anon_sym_from] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_print] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_del] = ACTIONS(1493), + [anon_sym_raise] = ACTIONS(1493), + [anon_sym_pass] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_match] = ACTIONS(1493), + [anon_sym_async] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_try] = ACTIONS(1493), + [anon_sym_with] = ACTIONS(1493), + [anon_sym_def] = ACTIONS(1493), + [anon_sym_global] = ACTIONS(1493), + [anon_sym_nonlocal] = ACTIONS(1493), + [anon_sym_exec] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_class] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1495), + [anon_sym_not] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_LT] = ACTIONS(1495), + [anon_sym_lambda] = ACTIONS(1493), + [anon_sym_yield] = ACTIONS(1493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1495), + [anon_sym_None] = ACTIONS(1493), + [sym_integer] = ACTIONS(1493), + [sym_float] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1493), + [anon_sym_api] = ACTIONS(1493), + [sym_true] = ACTIONS(1493), + [sym_false] = ACTIONS(1493), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2130), - [anon_sym_include] = ACTIONS(2130), - [anon_sym_DEF] = ACTIONS(2130), - [anon_sym_cdef] = ACTIONS(2130), - [anon_sym_cpdef] = ACTIONS(2130), - [anon_sym_int] = ACTIONS(2130), - [anon_sym_double] = ACTIONS(2130), - [anon_sym_complex] = ACTIONS(2130), - [anon_sym_new] = ACTIONS(2130), - [anon_sym_signed] = ACTIONS(2130), - [anon_sym_unsigned] = ACTIONS(2130), - [anon_sym_char] = ACTIONS(2130), - [anon_sym_short] = ACTIONS(2130), - [anon_sym_long] = ACTIONS(2130), - [anon_sym_const] = ACTIONS(2130), - [anon_sym_volatile] = ACTIONS(2130), - [anon_sym_ctypedef] = ACTIONS(2130), - [anon_sym_struct] = ACTIONS(2130), - [anon_sym_union] = ACTIONS(2130), - [anon_sym_enum] = ACTIONS(2130), - [anon_sym_cppclass] = ACTIONS(2130), - [anon_sym_fused] = ACTIONS(2130), - [anon_sym_public] = ACTIONS(2130), - [anon_sym_packed] = ACTIONS(2130), - [anon_sym_inline] = ACTIONS(2130), - [anon_sym_readonly] = ACTIONS(2130), - [anon_sym_sizeof] = ACTIONS(2130), - [sym__dedent] = ACTIONS(2132), - [sym_string_start] = ACTIONS(2132), + [anon_sym_property] = ACTIONS(1493), + [anon_sym_include] = ACTIONS(1493), + [anon_sym_DEF] = ACTIONS(1493), + [anon_sym_cdef] = ACTIONS(1493), + [anon_sym_cpdef] = ACTIONS(1493), + [anon_sym_int] = ACTIONS(1493), + [anon_sym_double] = ACTIONS(1493), + [anon_sym_complex] = ACTIONS(1493), + [anon_sym_new] = ACTIONS(1493), + [anon_sym_signed] = ACTIONS(1493), + [anon_sym_unsigned] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_volatile] = ACTIONS(1493), + [anon_sym_ctypedef] = ACTIONS(1493), + [anon_sym_struct] = ACTIONS(1493), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_enum] = ACTIONS(1493), + [anon_sym_cppclass] = ACTIONS(1493), + [anon_sym_fused] = ACTIONS(1493), + [anon_sym_public] = ACTIONS(1493), + [anon_sym_packed] = ACTIONS(1493), + [anon_sym_inline] = ACTIONS(1493), + [anon_sym_readonly] = ACTIONS(1493), + [anon_sym_sizeof] = ACTIONS(1493), + [sym__dedent] = ACTIONS(1495), + [sym_string_start] = ACTIONS(1495), }, [631] = { - [sym_list_splat_pattern] = STATE(2402), - [sym_primary_expression] = STATE(3025), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1136), - [anon_sym_DOT] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1192), - [anon_sym_as] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_print] = ACTIONS(1201), - [anon_sym_GT_GT] = ACTIONS(1391), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_COLON] = ACTIONS(1192), - [anon_sym_match] = ACTIONS(1201), - [anon_sym_async] = ACTIONS(1201), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1197), - [anon_sym_STAR_STAR] = ACTIONS(1391), - [anon_sym_exec] = ACTIONS(1201), - [anon_sym_EQ] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_AT] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_PIPE] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_not] = ACTIONS(1197), - [anon_sym_and] = ACTIONS(1197), - [anon_sym_or] = ACTIONS(1197), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_PERCENT] = ACTIONS(1391), - [anon_sym_SLASH_SLASH] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_LT_LT] = ACTIONS(1391), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_is] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(1207), - [anon_sym_LT_EQ] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_BANG_EQ] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_LT_GT] = ACTIONS(1192), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_type_conversion] = ACTIONS(1192), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1209), - [anon_sym_api] = ACTIONS(1201), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_identifier] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_cimport] = ACTIONS(2139), + [anon_sym_from] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_assert] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_del] = ACTIONS(2139), + [anon_sym_raise] = ACTIONS(2139), + [anon_sym_pass] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_def] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_nonlocal] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2141), + [anon_sym_AT] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2141), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_TILDE] = ACTIONS(2141), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2141), + [anon_sym_None] = ACTIONS(2139), + [sym_integer] = ACTIONS(2139), + [sym_float] = ACTIONS(2141), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_property] = ACTIONS(2139), + [anon_sym_include] = ACTIONS(2139), + [anon_sym_DEF] = ACTIONS(2139), + [anon_sym_cdef] = ACTIONS(2139), + [anon_sym_cpdef] = ACTIONS(2139), + [anon_sym_int] = ACTIONS(2139), + [anon_sym_double] = ACTIONS(2139), + [anon_sym_complex] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_signed] = ACTIONS(2139), + [anon_sym_unsigned] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [anon_sym_short] = ACTIONS(2139), + [anon_sym_long] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_volatile] = ACTIONS(2139), + [anon_sym_ctypedef] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_cppclass] = ACTIONS(2139), + [anon_sym_fused] = ACTIONS(2139), + [anon_sym_public] = ACTIONS(2139), + [anon_sym_packed] = ACTIONS(2139), + [anon_sym_inline] = ACTIONS(2139), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_sizeof] = ACTIONS(2139), + [sym__dedent] = ACTIONS(2141), + [sym_string_start] = ACTIONS(2141), }, [632] = { - [sym_identifier] = ACTIONS(2134), - [anon_sym_import] = ACTIONS(2134), - [anon_sym_cimport] = ACTIONS(2134), - [anon_sym_from] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_print] = ACTIONS(2134), - [anon_sym_assert] = ACTIONS(2134), - [anon_sym_return] = ACTIONS(2134), - [anon_sym_del] = ACTIONS(2134), - [anon_sym_raise] = ACTIONS(2134), - [anon_sym_pass] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_match] = ACTIONS(2134), - [anon_sym_async] = ACTIONS(2134), - [anon_sym_for] = ACTIONS(2134), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_try] = ACTIONS(2134), - [anon_sym_with] = ACTIONS(2134), - [anon_sym_def] = ACTIONS(2134), - [anon_sym_global] = ACTIONS(2134), - [anon_sym_nonlocal] = ACTIONS(2134), - [anon_sym_exec] = ACTIONS(2134), - [anon_sym_type] = ACTIONS(2134), - [anon_sym_class] = ACTIONS(2134), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_AT] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2136), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_PLUS] = ACTIONS(2136), - [anon_sym_not] = ACTIONS(2134), - [anon_sym_AMP] = ACTIONS(2136), - [anon_sym_TILDE] = ACTIONS(2136), - [anon_sym_LT] = ACTIONS(2136), - [anon_sym_lambda] = ACTIONS(2134), - [anon_sym_yield] = ACTIONS(2134), - [sym_ellipsis] = ACTIONS(2136), - [anon_sym_None] = ACTIONS(2134), - [sym_integer] = ACTIONS(2134), - [sym_float] = ACTIONS(2136), - [anon_sym_await] = ACTIONS(2134), - [anon_sym_api] = ACTIONS(2134), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), + [sym_identifier] = ACTIONS(2143), + [anon_sym_import] = ACTIONS(2143), + [anon_sym_cimport] = ACTIONS(2143), + [anon_sym_from] = ACTIONS(2143), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_print] = ACTIONS(2143), + [anon_sym_assert] = ACTIONS(2143), + [anon_sym_return] = ACTIONS(2143), + [anon_sym_del] = ACTIONS(2143), + [anon_sym_raise] = ACTIONS(2143), + [anon_sym_pass] = ACTIONS(2143), + [anon_sym_break] = ACTIONS(2143), + [anon_sym_continue] = ACTIONS(2143), + [anon_sym_if] = ACTIONS(2143), + [anon_sym_match] = ACTIONS(2143), + [anon_sym_async] = ACTIONS(2143), + [anon_sym_for] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2143), + [anon_sym_try] = ACTIONS(2143), + [anon_sym_with] = ACTIONS(2143), + [anon_sym_def] = ACTIONS(2143), + [anon_sym_global] = ACTIONS(2143), + [anon_sym_nonlocal] = ACTIONS(2143), + [anon_sym_exec] = ACTIONS(2143), + [anon_sym_type] = ACTIONS(2143), + [anon_sym_class] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_AT] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2145), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_PLUS] = ACTIONS(2145), + [anon_sym_not] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_TILDE] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2145), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_yield] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2145), + [anon_sym_None] = ACTIONS(2143), + [sym_integer] = ACTIONS(2143), + [sym_float] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_api] = ACTIONS(2143), + [sym_true] = ACTIONS(2143), + [sym_false] = ACTIONS(2143), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2134), - [anon_sym_include] = ACTIONS(2134), - [anon_sym_DEF] = ACTIONS(2134), - [anon_sym_cdef] = ACTIONS(2134), - [anon_sym_cpdef] = ACTIONS(2134), - [anon_sym_int] = ACTIONS(2134), - [anon_sym_double] = ACTIONS(2134), - [anon_sym_complex] = ACTIONS(2134), - [anon_sym_new] = ACTIONS(2134), - [anon_sym_signed] = ACTIONS(2134), - [anon_sym_unsigned] = ACTIONS(2134), - [anon_sym_char] = ACTIONS(2134), - [anon_sym_short] = ACTIONS(2134), - [anon_sym_long] = ACTIONS(2134), - [anon_sym_const] = ACTIONS(2134), - [anon_sym_volatile] = ACTIONS(2134), - [anon_sym_ctypedef] = ACTIONS(2134), - [anon_sym_struct] = ACTIONS(2134), - [anon_sym_union] = ACTIONS(2134), - [anon_sym_enum] = ACTIONS(2134), - [anon_sym_cppclass] = ACTIONS(2134), - [anon_sym_fused] = ACTIONS(2134), - [anon_sym_public] = ACTIONS(2134), - [anon_sym_packed] = ACTIONS(2134), - [anon_sym_inline] = ACTIONS(2134), - [anon_sym_readonly] = ACTIONS(2134), - [anon_sym_sizeof] = ACTIONS(2134), - [sym__dedent] = ACTIONS(2136), - [sym_string_start] = ACTIONS(2136), + [anon_sym_property] = ACTIONS(2143), + [anon_sym_include] = ACTIONS(2143), + [anon_sym_DEF] = ACTIONS(2143), + [anon_sym_cdef] = ACTIONS(2143), + [anon_sym_cpdef] = ACTIONS(2143), + [anon_sym_int] = ACTIONS(2143), + [anon_sym_double] = ACTIONS(2143), + [anon_sym_complex] = ACTIONS(2143), + [anon_sym_new] = ACTIONS(2143), + [anon_sym_signed] = ACTIONS(2143), + [anon_sym_unsigned] = ACTIONS(2143), + [anon_sym_char] = ACTIONS(2143), + [anon_sym_short] = ACTIONS(2143), + [anon_sym_long] = ACTIONS(2143), + [anon_sym_const] = ACTIONS(2143), + [anon_sym_volatile] = ACTIONS(2143), + [anon_sym_ctypedef] = ACTIONS(2143), + [anon_sym_struct] = ACTIONS(2143), + [anon_sym_union] = ACTIONS(2143), + [anon_sym_enum] = ACTIONS(2143), + [anon_sym_cppclass] = ACTIONS(2143), + [anon_sym_fused] = ACTIONS(2143), + [anon_sym_public] = ACTIONS(2143), + [anon_sym_packed] = ACTIONS(2143), + [anon_sym_inline] = ACTIONS(2143), + [anon_sym_readonly] = ACTIONS(2143), + [anon_sym_sizeof] = ACTIONS(2143), + [sym__dedent] = ACTIONS(2145), + [sym_string_start] = ACTIONS(2145), }, [633] = { - [sym_identifier] = ACTIONS(2138), - [anon_sym_import] = ACTIONS(2138), - [anon_sym_cimport] = ACTIONS(2138), - [anon_sym_from] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_print] = ACTIONS(2138), - [anon_sym_assert] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_del] = ACTIONS(2138), - [anon_sym_raise] = ACTIONS(2138), - [anon_sym_pass] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_match] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_with] = ACTIONS(2138), - [anon_sym_def] = ACTIONS(2138), - [anon_sym_global] = ACTIONS(2138), - [anon_sym_nonlocal] = ACTIONS(2138), - [anon_sym_exec] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_not] = ACTIONS(2138), - [anon_sym_AMP] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_lambda] = ACTIONS(2138), - [anon_sym_yield] = ACTIONS(2138), - [sym_ellipsis] = ACTIONS(2140), - [anon_sym_None] = ACTIONS(2138), - [sym_integer] = ACTIONS(2138), - [sym_float] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_api] = ACTIONS(2138), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), + [sym_list_splat_pattern] = STATE(2340), + [sym_primary_expression] = STATE(3038), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym_DOT] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_COMMA] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_print] = ACTIONS(1208), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_COLON] = ACTIONS(1199), + [anon_sym_match] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_STAR_STAR] = ACTIONS(1201), + [anon_sym_exec] = ACTIONS(1208), + [anon_sym_EQ] = ACTIONS(1199), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_AT] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_SLASH_SLASH] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_PLUS_EQ] = ACTIONS(1199), + [anon_sym_DASH_EQ] = ACTIONS(1199), + [anon_sym_STAR_EQ] = ACTIONS(1199), + [anon_sym_SLASH_EQ] = ACTIONS(1199), + [anon_sym_AT_EQ] = ACTIONS(1199), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1199), + [anon_sym_PERCENT_EQ] = ACTIONS(1199), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1199), + [anon_sym_GT_GT_EQ] = ACTIONS(1199), + [anon_sym_LT_LT_EQ] = ACTIONS(1199), + [anon_sym_AMP_EQ] = ACTIONS(1199), + [anon_sym_CARET_EQ] = ACTIONS(1199), + [anon_sym_PIPE_EQ] = ACTIONS(1199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1216), + [anon_sym_api] = ACTIONS(1208), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2138), - [anon_sym_include] = ACTIONS(2138), - [anon_sym_DEF] = ACTIONS(2138), - [anon_sym_cdef] = ACTIONS(2138), - [anon_sym_cpdef] = ACTIONS(2138), - [anon_sym_int] = ACTIONS(2138), - [anon_sym_double] = ACTIONS(2138), - [anon_sym_complex] = ACTIONS(2138), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_signed] = ACTIONS(2138), - [anon_sym_unsigned] = ACTIONS(2138), - [anon_sym_char] = ACTIONS(2138), - [anon_sym_short] = ACTIONS(2138), - [anon_sym_long] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_volatile] = ACTIONS(2138), - [anon_sym_ctypedef] = ACTIONS(2138), - [anon_sym_struct] = ACTIONS(2138), - [anon_sym_union] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [anon_sym_cppclass] = ACTIONS(2138), - [anon_sym_fused] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_packed] = ACTIONS(2138), - [anon_sym_inline] = ACTIONS(2138), - [anon_sym_readonly] = ACTIONS(2138), - [anon_sym_sizeof] = ACTIONS(2138), - [sym__dedent] = ACTIONS(2140), - [sym_string_start] = ACTIONS(2140), + [anon_sym_sizeof] = ACTIONS(1149), + [sym__newline] = ACTIONS(1199), + [sym_string_start] = ACTIONS(1151), }, [634] = { - [sym_list_splat_pattern] = STATE(2230), - [sym_primary_expression] = STATE(2026), - [sym_binary_operator] = STATE(2179), - [sym_unary_operator] = STATE(2179), - [sym_attribute] = STATE(2179), - [sym_subscript] = STATE(2179), - [sym_call] = STATE(2179), - [sym_list] = STATE(2179), - [sym_set] = STATE(2179), - [sym_tuple] = STATE(2179), - [sym_dictionary] = STATE(2179), - [sym_list_comprehension] = STATE(2179), - [sym_dictionary_comprehension] = STATE(2179), - [sym_set_comprehension] = STATE(2179), - [sym_generator_expression] = STATE(2179), - [sym_parenthesized_expression] = STATE(2179), - [sym_concatenated_string] = STATE(2179), - [sym_string] = STATE(1968), - [sym_none] = STATE(2179), - [sym_await] = STATE(2179), - [sym_sizeof_expression] = STATE(2179), - [sym_cast_expression] = STATE(2179), - [sym_identifier] = ACTIONS(2100), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(2104), - [anon_sym_print] = ACTIONS(2106), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(836), - [anon_sym_COLON] = ACTIONS(836), - [anon_sym_match] = ACTIONS(2106), - [anon_sym_async] = ACTIONS(2106), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(834), - [anon_sym_exec] = ACTIONS(2106), - [anon_sym_EQ] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(2108), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(834), - [anon_sym_PLUS] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(834), - [anon_sym_SLASH_SLASH] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(2110), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(2110), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(2114), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [sym_ellipsis] = ACTIONS(2116), - [anon_sym_None] = ACTIONS(2118), - [sym_type_conversion] = ACTIONS(834), - [sym_integer] = ACTIONS(2100), - [sym_float] = ACTIONS(2116), - [anon_sym_await] = ACTIONS(2120), - [anon_sym_api] = ACTIONS(2106), - [sym_true] = ACTIONS(2100), - [sym_false] = ACTIONS(2100), + [sym_identifier] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_cimport] = ACTIONS(2147), + [anon_sym_from] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(2149), + [anon_sym_print] = ACTIONS(2147), + [anon_sym_assert] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_del] = ACTIONS(2147), + [anon_sym_raise] = ACTIONS(2147), + [anon_sym_pass] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_def] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_nonlocal] = ACTIONS(2147), + [anon_sym_exec] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_AT] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_not] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2149), + [anon_sym_TILDE] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_lambda] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2149), + [anon_sym_None] = ACTIONS(2147), + [sym_integer] = ACTIONS(2147), + [sym_float] = ACTIONS(2149), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_api] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_string_start] = ACTIONS(2124), + [anon_sym_property] = ACTIONS(2147), + [anon_sym_include] = ACTIONS(2147), + [anon_sym_DEF] = ACTIONS(2147), + [anon_sym_cdef] = ACTIONS(2147), + [anon_sym_cpdef] = ACTIONS(2147), + [anon_sym_int] = ACTIONS(2147), + [anon_sym_double] = ACTIONS(2147), + [anon_sym_complex] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_signed] = ACTIONS(2147), + [anon_sym_unsigned] = ACTIONS(2147), + [anon_sym_char] = ACTIONS(2147), + [anon_sym_short] = ACTIONS(2147), + [anon_sym_long] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_volatile] = ACTIONS(2147), + [anon_sym_ctypedef] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_cppclass] = ACTIONS(2147), + [anon_sym_fused] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_packed] = ACTIONS(2147), + [anon_sym_inline] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2147), + [sym__dedent] = ACTIONS(2149), + [sym_string_start] = ACTIONS(2149), }, [635] = { - [sym_identifier] = ACTIONS(2142), - [anon_sym_import] = ACTIONS(2142), - [anon_sym_cimport] = ACTIONS(2142), - [anon_sym_from] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_print] = ACTIONS(2142), - [anon_sym_assert] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_del] = ACTIONS(2142), - [anon_sym_raise] = ACTIONS(2142), - [anon_sym_pass] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_match] = ACTIONS(2142), - [anon_sym_async] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_with] = ACTIONS(2142), - [anon_sym_def] = ACTIONS(2142), - [anon_sym_global] = ACTIONS(2142), - [anon_sym_nonlocal] = ACTIONS(2142), - [anon_sym_exec] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(2144), - [anon_sym_not] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_LT] = ACTIONS(2144), - [anon_sym_lambda] = ACTIONS(2142), - [anon_sym_yield] = ACTIONS(2142), - [sym_ellipsis] = ACTIONS(2144), - [anon_sym_None] = ACTIONS(2142), - [sym_integer] = ACTIONS(2142), - [sym_float] = ACTIONS(2144), - [anon_sym_await] = ACTIONS(2142), - [anon_sym_api] = ACTIONS(2142), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), + [sym_identifier] = ACTIONS(2151), + [anon_sym_import] = ACTIONS(2151), + [anon_sym_cimport] = ACTIONS(2151), + [anon_sym_from] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_STAR] = ACTIONS(2153), + [anon_sym_print] = ACTIONS(2151), + [anon_sym_assert] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_del] = ACTIONS(2151), + [anon_sym_raise] = ACTIONS(2151), + [anon_sym_pass] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_match] = ACTIONS(2151), + [anon_sym_async] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_try] = ACTIONS(2151), + [anon_sym_with] = ACTIONS(2151), + [anon_sym_def] = ACTIONS(2151), + [anon_sym_global] = ACTIONS(2151), + [anon_sym_nonlocal] = ACTIONS(2151), + [anon_sym_exec] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_class] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2153), + [anon_sym_AT] = ACTIONS(2153), + [anon_sym_DASH] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_PLUS] = ACTIONS(2153), + [anon_sym_not] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2153), + [anon_sym_TILDE] = ACTIONS(2153), + [anon_sym_LT] = ACTIONS(2153), + [anon_sym_lambda] = ACTIONS(2151), + [anon_sym_yield] = ACTIONS(2151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2153), + [anon_sym_None] = ACTIONS(2151), + [sym_integer] = ACTIONS(2151), + [sym_float] = ACTIONS(2153), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2151), + [sym_true] = ACTIONS(2151), + [sym_false] = ACTIONS(2151), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2142), - [anon_sym_include] = ACTIONS(2142), - [anon_sym_DEF] = ACTIONS(2142), - [anon_sym_cdef] = ACTIONS(2142), - [anon_sym_cpdef] = ACTIONS(2142), - [anon_sym_int] = ACTIONS(2142), - [anon_sym_double] = ACTIONS(2142), - [anon_sym_complex] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2142), - [anon_sym_unsigned] = ACTIONS(2142), - [anon_sym_char] = ACTIONS(2142), - [anon_sym_short] = ACTIONS(2142), - [anon_sym_long] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_volatile] = ACTIONS(2142), - [anon_sym_ctypedef] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2142), - [anon_sym_union] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_cppclass] = ACTIONS(2142), - [anon_sym_fused] = ACTIONS(2142), - [anon_sym_public] = ACTIONS(2142), - [anon_sym_packed] = ACTIONS(2142), - [anon_sym_inline] = ACTIONS(2142), - [anon_sym_readonly] = ACTIONS(2142), - [anon_sym_sizeof] = ACTIONS(2142), - [sym__dedent] = ACTIONS(2144), - [sym_string_start] = ACTIONS(2144), + [anon_sym_property] = ACTIONS(2151), + [anon_sym_include] = ACTIONS(2151), + [anon_sym_DEF] = ACTIONS(2151), + [anon_sym_cdef] = ACTIONS(2151), + [anon_sym_cpdef] = ACTIONS(2151), + [anon_sym_int] = ACTIONS(2151), + [anon_sym_double] = ACTIONS(2151), + [anon_sym_complex] = ACTIONS(2151), + [anon_sym_new] = ACTIONS(2151), + [anon_sym_signed] = ACTIONS(2151), + [anon_sym_unsigned] = ACTIONS(2151), + [anon_sym_char] = ACTIONS(2151), + [anon_sym_short] = ACTIONS(2151), + [anon_sym_long] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_volatile] = ACTIONS(2151), + [anon_sym_ctypedef] = ACTIONS(2151), + [anon_sym_struct] = ACTIONS(2151), + [anon_sym_union] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), + [anon_sym_cppclass] = ACTIONS(2151), + [anon_sym_fused] = ACTIONS(2151), + [anon_sym_public] = ACTIONS(2151), + [anon_sym_packed] = ACTIONS(2151), + [anon_sym_inline] = ACTIONS(2151), + [anon_sym_readonly] = ACTIONS(2151), + [anon_sym_sizeof] = ACTIONS(2151), + [sym__dedent] = ACTIONS(2153), + [sym_string_start] = ACTIONS(2153), }, [636] = { - [sym_identifier] = ACTIONS(2146), - [anon_sym_import] = ACTIONS(2146), - [anon_sym_cimport] = ACTIONS(2146), - [anon_sym_from] = ACTIONS(2146), - [anon_sym_LPAREN] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(2148), - [anon_sym_print] = ACTIONS(2146), - [anon_sym_assert] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2146), - [anon_sym_del] = ACTIONS(2146), - [anon_sym_raise] = ACTIONS(2146), - [anon_sym_pass] = ACTIONS(2146), - [anon_sym_break] = ACTIONS(2146), - [anon_sym_continue] = ACTIONS(2146), - [anon_sym_if] = ACTIONS(2146), - [anon_sym_match] = ACTIONS(2146), - [anon_sym_async] = ACTIONS(2146), - [anon_sym_for] = ACTIONS(2146), - [anon_sym_while] = ACTIONS(2146), - [anon_sym_try] = ACTIONS(2146), - [anon_sym_with] = ACTIONS(2146), - [anon_sym_def] = ACTIONS(2146), - [anon_sym_global] = ACTIONS(2146), - [anon_sym_nonlocal] = ACTIONS(2146), - [anon_sym_exec] = ACTIONS(2146), - [anon_sym_type] = ACTIONS(2146), - [anon_sym_class] = ACTIONS(2146), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_AT] = ACTIONS(2148), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_not] = ACTIONS(2146), - [anon_sym_AMP] = ACTIONS(2148), - [anon_sym_TILDE] = ACTIONS(2148), - [anon_sym_LT] = ACTIONS(2148), - [anon_sym_lambda] = ACTIONS(2146), - [anon_sym_yield] = ACTIONS(2146), - [sym_ellipsis] = ACTIONS(2148), - [anon_sym_None] = ACTIONS(2146), - [sym_integer] = ACTIONS(2146), - [sym_float] = ACTIONS(2148), - [anon_sym_await] = ACTIONS(2146), - [anon_sym_api] = ACTIONS(2146), - [sym_true] = ACTIONS(2146), - [sym_false] = ACTIONS(2146), + [sym_identifier] = ACTIONS(2155), + [anon_sym_import] = ACTIONS(2155), + [anon_sym_cimport] = ACTIONS(2155), + [anon_sym_from] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_print] = ACTIONS(2155), + [anon_sym_assert] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_del] = ACTIONS(2155), + [anon_sym_raise] = ACTIONS(2155), + [anon_sym_pass] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_match] = ACTIONS(2155), + [anon_sym_async] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_while] = ACTIONS(2155), + [anon_sym_try] = ACTIONS(2155), + [anon_sym_with] = ACTIONS(2155), + [anon_sym_def] = ACTIONS(2155), + [anon_sym_global] = ACTIONS(2155), + [anon_sym_nonlocal] = ACTIONS(2155), + [anon_sym_exec] = ACTIONS(2155), + [anon_sym_type] = ACTIONS(2155), + [anon_sym_class] = ACTIONS(2155), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_AT] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_PLUS] = ACTIONS(2157), + [anon_sym_not] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2157), + [anon_sym_TILDE] = ACTIONS(2157), + [anon_sym_LT] = ACTIONS(2157), + [anon_sym_lambda] = ACTIONS(2155), + [anon_sym_yield] = ACTIONS(2155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2157), + [anon_sym_None] = ACTIONS(2155), + [sym_integer] = ACTIONS(2155), + [sym_float] = ACTIONS(2157), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_api] = ACTIONS(2155), + [sym_true] = ACTIONS(2155), + [sym_false] = ACTIONS(2155), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2146), - [anon_sym_include] = ACTIONS(2146), - [anon_sym_DEF] = ACTIONS(2146), - [anon_sym_cdef] = ACTIONS(2146), - [anon_sym_cpdef] = ACTIONS(2146), - [anon_sym_int] = ACTIONS(2146), - [anon_sym_double] = ACTIONS(2146), - [anon_sym_complex] = ACTIONS(2146), - [anon_sym_new] = ACTIONS(2146), - [anon_sym_signed] = ACTIONS(2146), - [anon_sym_unsigned] = ACTIONS(2146), - [anon_sym_char] = ACTIONS(2146), - [anon_sym_short] = ACTIONS(2146), - [anon_sym_long] = ACTIONS(2146), - [anon_sym_const] = ACTIONS(2146), - [anon_sym_volatile] = ACTIONS(2146), - [anon_sym_ctypedef] = ACTIONS(2146), - [anon_sym_struct] = ACTIONS(2146), - [anon_sym_union] = ACTIONS(2146), - [anon_sym_enum] = ACTIONS(2146), - [anon_sym_cppclass] = ACTIONS(2146), - [anon_sym_fused] = ACTIONS(2146), - [anon_sym_public] = ACTIONS(2146), - [anon_sym_packed] = ACTIONS(2146), - [anon_sym_inline] = ACTIONS(2146), - [anon_sym_readonly] = ACTIONS(2146), - [anon_sym_sizeof] = ACTIONS(2146), - [sym__dedent] = ACTIONS(2148), - [sym_string_start] = ACTIONS(2148), + [anon_sym_property] = ACTIONS(2155), + [anon_sym_include] = ACTIONS(2155), + [anon_sym_DEF] = ACTIONS(2155), + [anon_sym_cdef] = ACTIONS(2155), + [anon_sym_cpdef] = ACTIONS(2155), + [anon_sym_int] = ACTIONS(2155), + [anon_sym_double] = ACTIONS(2155), + [anon_sym_complex] = ACTIONS(2155), + [anon_sym_new] = ACTIONS(2155), + [anon_sym_signed] = ACTIONS(2155), + [anon_sym_unsigned] = ACTIONS(2155), + [anon_sym_char] = ACTIONS(2155), + [anon_sym_short] = ACTIONS(2155), + [anon_sym_long] = ACTIONS(2155), + [anon_sym_const] = ACTIONS(2155), + [anon_sym_volatile] = ACTIONS(2155), + [anon_sym_ctypedef] = ACTIONS(2155), + [anon_sym_struct] = ACTIONS(2155), + [anon_sym_union] = ACTIONS(2155), + [anon_sym_enum] = ACTIONS(2155), + [anon_sym_cppclass] = ACTIONS(2155), + [anon_sym_fused] = ACTIONS(2155), + [anon_sym_public] = ACTIONS(2155), + [anon_sym_packed] = ACTIONS(2155), + [anon_sym_inline] = ACTIONS(2155), + [anon_sym_readonly] = ACTIONS(2155), + [anon_sym_sizeof] = ACTIONS(2155), + [sym__dedent] = ACTIONS(2157), + [sym_string_start] = ACTIONS(2157), }, [637] = { - [sym_identifier] = ACTIONS(2150), - [anon_sym_import] = ACTIONS(2150), - [anon_sym_cimport] = ACTIONS(2150), - [anon_sym_from] = ACTIONS(2150), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_print] = ACTIONS(2150), - [anon_sym_assert] = ACTIONS(2150), - [anon_sym_return] = ACTIONS(2150), - [anon_sym_del] = ACTIONS(2150), - [anon_sym_raise] = ACTIONS(2150), - [anon_sym_pass] = ACTIONS(2150), - [anon_sym_break] = ACTIONS(2150), - [anon_sym_continue] = ACTIONS(2150), - [anon_sym_if] = ACTIONS(2150), - [anon_sym_match] = ACTIONS(2150), - [anon_sym_async] = ACTIONS(2150), - [anon_sym_for] = ACTIONS(2150), - [anon_sym_while] = ACTIONS(2150), - [anon_sym_try] = ACTIONS(2150), - [anon_sym_with] = ACTIONS(2150), - [anon_sym_def] = ACTIONS(2150), - [anon_sym_global] = ACTIONS(2150), - [anon_sym_nonlocal] = ACTIONS(2150), - [anon_sym_exec] = ACTIONS(2150), - [anon_sym_type] = ACTIONS(2150), - [anon_sym_class] = ACTIONS(2150), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_not] = ACTIONS(2150), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_LT] = ACTIONS(2152), - [anon_sym_lambda] = ACTIONS(2150), - [anon_sym_yield] = ACTIONS(2150), - [sym_ellipsis] = ACTIONS(2152), - [anon_sym_None] = ACTIONS(2150), - [sym_integer] = ACTIONS(2150), - [sym_float] = ACTIONS(2152), - [anon_sym_await] = ACTIONS(2150), - [anon_sym_api] = ACTIONS(2150), - [sym_true] = ACTIONS(2150), - [sym_false] = ACTIONS(2150), + [sym_list_splat_pattern] = STATE(2287), + [sym_primary_expression] = STATE(2100), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(1246), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_print] = ACTIONS(2163), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(565), + [anon_sym_match] = ACTIONS(2163), + [anon_sym_async] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(565), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_exec] = ACTIONS(2163), + [anon_sym_EQ] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_SLASH_SLASH] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(2169), + [anon_sym_api] = ACTIONS(2163), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2150), - [anon_sym_include] = ACTIONS(2150), - [anon_sym_DEF] = ACTIONS(2150), - [anon_sym_cdef] = ACTIONS(2150), - [anon_sym_cpdef] = ACTIONS(2150), - [anon_sym_int] = ACTIONS(2150), - [anon_sym_double] = ACTIONS(2150), - [anon_sym_complex] = ACTIONS(2150), - [anon_sym_new] = ACTIONS(2150), - [anon_sym_signed] = ACTIONS(2150), - [anon_sym_unsigned] = ACTIONS(2150), - [anon_sym_char] = ACTIONS(2150), - [anon_sym_short] = ACTIONS(2150), - [anon_sym_long] = ACTIONS(2150), - [anon_sym_const] = ACTIONS(2150), - [anon_sym_volatile] = ACTIONS(2150), - [anon_sym_ctypedef] = ACTIONS(2150), - [anon_sym_struct] = ACTIONS(2150), - [anon_sym_union] = ACTIONS(2150), - [anon_sym_enum] = ACTIONS(2150), - [anon_sym_cppclass] = ACTIONS(2150), - [anon_sym_fused] = ACTIONS(2150), - [anon_sym_public] = ACTIONS(2150), - [anon_sym_packed] = ACTIONS(2150), - [anon_sym_inline] = ACTIONS(2150), - [anon_sym_readonly] = ACTIONS(2150), - [anon_sym_sizeof] = ACTIONS(2150), - [sym__dedent] = ACTIONS(2152), - [sym_string_start] = ACTIONS(2152), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [638] = { - [sym_identifier] = ACTIONS(2154), - [anon_sym_import] = ACTIONS(2154), - [anon_sym_cimport] = ACTIONS(2154), - [anon_sym_from] = ACTIONS(2154), - [anon_sym_LPAREN] = ACTIONS(2156), - [anon_sym_STAR] = ACTIONS(2156), - [anon_sym_print] = ACTIONS(2154), - [anon_sym_assert] = ACTIONS(2154), - [anon_sym_return] = ACTIONS(2154), - [anon_sym_del] = ACTIONS(2154), - [anon_sym_raise] = ACTIONS(2154), - [anon_sym_pass] = ACTIONS(2154), - [anon_sym_break] = ACTIONS(2154), - [anon_sym_continue] = ACTIONS(2154), - [anon_sym_if] = ACTIONS(2154), - [anon_sym_match] = ACTIONS(2154), - [anon_sym_async] = ACTIONS(2154), - [anon_sym_for] = ACTIONS(2154), - [anon_sym_while] = ACTIONS(2154), - [anon_sym_try] = ACTIONS(2154), - [anon_sym_with] = ACTIONS(2154), - [anon_sym_def] = ACTIONS(2154), - [anon_sym_global] = ACTIONS(2154), - [anon_sym_nonlocal] = ACTIONS(2154), - [anon_sym_exec] = ACTIONS(2154), - [anon_sym_type] = ACTIONS(2154), - [anon_sym_class] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_not] = ACTIONS(2154), - [anon_sym_AMP] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2156), - [anon_sym_LT] = ACTIONS(2156), - [anon_sym_lambda] = ACTIONS(2154), - [anon_sym_yield] = ACTIONS(2154), - [sym_ellipsis] = ACTIONS(2156), - [anon_sym_None] = ACTIONS(2154), - [sym_integer] = ACTIONS(2154), - [sym_float] = ACTIONS(2156), - [anon_sym_await] = ACTIONS(2154), - [anon_sym_api] = ACTIONS(2154), - [sym_true] = ACTIONS(2154), - [sym_false] = ACTIONS(2154), + [sym_list_splat_pattern] = STATE(2212), + [sym_primary_expression] = STATE(2059), + [sym_binary_operator] = STATE(2175), + [sym_unary_operator] = STATE(2175), + [sym_attribute] = STATE(2175), + [sym_subscript] = STATE(2175), + [sym_ellipsis] = STATE(2175), + [sym_call] = STATE(2175), + [sym_list] = STATE(2175), + [sym_set] = STATE(2175), + [sym_tuple] = STATE(2175), + [sym_dictionary] = STATE(2175), + [sym_list_comprehension] = STATE(2175), + [sym_dictionary_comprehension] = STATE(2175), + [sym_set_comprehension] = STATE(2175), + [sym_generator_expression] = STATE(2175), + [sym_parenthesized_expression] = STATE(2175), + [sym_concatenated_string] = STATE(2175), + [sym_string] = STATE(1976), + [sym_none] = STATE(2175), + [sym_await] = STATE(2175), + [sym_sizeof_expression] = STATE(2175), + [sym_cast_expression] = STATE(2175), + [sym_identifier] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_COMMA] = ACTIONS(1402), + [anon_sym_as] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1705), + [anon_sym_print] = ACTIONS(1707), + [anon_sym_GT_GT] = ACTIONS(1402), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_COLON] = ACTIONS(1204), + [anon_sym_match] = ACTIONS(1707), + [anon_sym_async] = ACTIONS(1707), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_in] = ACTIONS(1201), + [anon_sym_STAR_STAR] = ACTIONS(1402), + [anon_sym_exec] = ACTIONS(1707), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_AT] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_not] = ACTIONS(1201), + [anon_sym_and] = ACTIONS(1201), + [anon_sym_or] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1402), + [anon_sym_LT_LT] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1711), + [anon_sym_is] = ACTIONS(1201), + [anon_sym_LT] = ACTIONS(1715), + [anon_sym_LT_EQ] = ACTIONS(1402), + [anon_sym_EQ_EQ] = ACTIONS(1402), + [anon_sym_BANG_EQ] = ACTIONS(1402), + [anon_sym_GT_EQ] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1201), + [anon_sym_LT_GT] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1717), + [anon_sym_None] = ACTIONS(1719), + [sym_integer] = ACTIONS(1701), + [sym_float] = ACTIONS(1721), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_api] = ACTIONS(1707), + [sym_true] = ACTIONS(1701), + [sym_false] = ACTIONS(1701), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2154), - [anon_sym_include] = ACTIONS(2154), - [anon_sym_DEF] = ACTIONS(2154), - [anon_sym_cdef] = ACTIONS(2154), - [anon_sym_cpdef] = ACTIONS(2154), - [anon_sym_int] = ACTIONS(2154), - [anon_sym_double] = ACTIONS(2154), - [anon_sym_complex] = ACTIONS(2154), - [anon_sym_new] = ACTIONS(2154), - [anon_sym_signed] = ACTIONS(2154), - [anon_sym_unsigned] = ACTIONS(2154), - [anon_sym_char] = ACTIONS(2154), - [anon_sym_short] = ACTIONS(2154), - [anon_sym_long] = ACTIONS(2154), - [anon_sym_const] = ACTIONS(2154), - [anon_sym_volatile] = ACTIONS(2154), - [anon_sym_ctypedef] = ACTIONS(2154), - [anon_sym_struct] = ACTIONS(2154), - [anon_sym_union] = ACTIONS(2154), - [anon_sym_enum] = ACTIONS(2154), - [anon_sym_cppclass] = ACTIONS(2154), - [anon_sym_fused] = ACTIONS(2154), - [anon_sym_public] = ACTIONS(2154), - [anon_sym_packed] = ACTIONS(2154), - [anon_sym_inline] = ACTIONS(2154), - [anon_sym_readonly] = ACTIONS(2154), - [anon_sym_sizeof] = ACTIONS(2154), - [sym__dedent] = ACTIONS(2156), - [sym_string_start] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(1725), + [sym_string_start] = ACTIONS(1727), }, [639] = { - [sym_identifier] = ACTIONS(2158), - [anon_sym_import] = ACTIONS(2158), - [anon_sym_cimport] = ACTIONS(2158), - [anon_sym_from] = ACTIONS(2158), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_print] = ACTIONS(2158), - [anon_sym_assert] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2158), - [anon_sym_del] = ACTIONS(2158), - [anon_sym_raise] = ACTIONS(2158), - [anon_sym_pass] = ACTIONS(2158), - [anon_sym_break] = ACTIONS(2158), - [anon_sym_continue] = ACTIONS(2158), - [anon_sym_if] = ACTIONS(2158), - [anon_sym_match] = ACTIONS(2158), - [anon_sym_async] = ACTIONS(2158), - [anon_sym_for] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2158), - [anon_sym_try] = ACTIONS(2158), - [anon_sym_with] = ACTIONS(2158), - [anon_sym_def] = ACTIONS(2158), - [anon_sym_global] = ACTIONS(2158), - [anon_sym_nonlocal] = ACTIONS(2158), - [anon_sym_exec] = ACTIONS(2158), - [anon_sym_type] = ACTIONS(2158), - [anon_sym_class] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_not] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_lambda] = ACTIONS(2158), - [anon_sym_yield] = ACTIONS(2158), - [sym_ellipsis] = ACTIONS(2160), - [anon_sym_None] = ACTIONS(2158), - [sym_integer] = ACTIONS(2158), - [sym_float] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2158), - [anon_sym_api] = ACTIONS(2158), - [sym_true] = ACTIONS(2158), - [sym_false] = ACTIONS(2158), + [sym_list_splat_pattern] = STATE(2340), + [sym_primary_expression] = STATE(3038), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_COMMA] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_print] = ACTIONS(1208), + [anon_sym_GT_GT] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_match] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_STAR_STAR] = ACTIONS(565), + [anon_sym_exec] = ACTIONS(1208), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_AT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(565), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_PLUS_EQ] = ACTIONS(596), + [anon_sym_DASH_EQ] = ACTIONS(596), + [anon_sym_STAR_EQ] = ACTIONS(596), + [anon_sym_SLASH_EQ] = ACTIONS(596), + [anon_sym_AT_EQ] = ACTIONS(596), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(596), + [anon_sym_PERCENT_EQ] = ACTIONS(596), + [anon_sym_STAR_STAR_EQ] = ACTIONS(596), + [anon_sym_GT_GT_EQ] = ACTIONS(596), + [anon_sym_LT_LT_EQ] = ACTIONS(596), + [anon_sym_AMP_EQ] = ACTIONS(596), + [anon_sym_CARET_EQ] = ACTIONS(596), + [anon_sym_PIPE_EQ] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1216), + [anon_sym_api] = ACTIONS(1208), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2158), - [anon_sym_include] = ACTIONS(2158), - [anon_sym_DEF] = ACTIONS(2158), - [anon_sym_cdef] = ACTIONS(2158), - [anon_sym_cpdef] = ACTIONS(2158), - [anon_sym_int] = ACTIONS(2158), - [anon_sym_double] = ACTIONS(2158), - [anon_sym_complex] = ACTIONS(2158), - [anon_sym_new] = ACTIONS(2158), - [anon_sym_signed] = ACTIONS(2158), - [anon_sym_unsigned] = ACTIONS(2158), - [anon_sym_char] = ACTIONS(2158), - [anon_sym_short] = ACTIONS(2158), - [anon_sym_long] = ACTIONS(2158), - [anon_sym_const] = ACTIONS(2158), - [anon_sym_volatile] = ACTIONS(2158), - [anon_sym_ctypedef] = ACTIONS(2158), - [anon_sym_struct] = ACTIONS(2158), - [anon_sym_union] = ACTIONS(2158), - [anon_sym_enum] = ACTIONS(2158), - [anon_sym_cppclass] = ACTIONS(2158), - [anon_sym_fused] = ACTIONS(2158), - [anon_sym_public] = ACTIONS(2158), - [anon_sym_packed] = ACTIONS(2158), - [anon_sym_inline] = ACTIONS(2158), - [anon_sym_readonly] = ACTIONS(2158), - [anon_sym_sizeof] = ACTIONS(2158), - [sym__dedent] = ACTIONS(2160), - [sym_string_start] = ACTIONS(2160), + [anon_sym_sizeof] = ACTIONS(1149), + [sym__newline] = ACTIONS(596), + [sym_string_start] = ACTIONS(1151), }, [640] = { - [sym_list_splat_pattern] = STATE(2230), - [sym_primary_expression] = STATE(2026), - [sym_binary_operator] = STATE(2179), - [sym_unary_operator] = STATE(2179), - [sym_attribute] = STATE(2179), - [sym_subscript] = STATE(2179), - [sym_call] = STATE(2179), - [sym_list] = STATE(2179), - [sym_set] = STATE(2179), - [sym_tuple] = STATE(2179), - [sym_dictionary] = STATE(2179), - [sym_list_comprehension] = STATE(2179), - [sym_dictionary_comprehension] = STATE(2179), - [sym_set_comprehension] = STATE(2179), - [sym_generator_expression] = STATE(2179), - [sym_parenthesized_expression] = STATE(2179), - [sym_concatenated_string] = STATE(2179), - [sym_string] = STATE(1968), - [sym_none] = STATE(2179), - [sym_await] = STATE(2179), - [sym_sizeof_expression] = STATE(2179), - [sym_cast_expression] = STATE(2179), - [sym_identifier] = ACTIONS(2100), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(2104), - [anon_sym_print] = ACTIONS(2106), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_if] = ACTIONS(836), - [anon_sym_COLON] = ACTIONS(834), - [anon_sym_match] = ACTIONS(2106), - [anon_sym_async] = ACTIONS(2106), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(834), - [anon_sym_exec] = ACTIONS(2106), - [anon_sym_EQ] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(2108), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(834), - [anon_sym_PLUS] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(834), - [anon_sym_SLASH_SLASH] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(2110), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(2110), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(2114), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [sym_ellipsis] = ACTIONS(2116), - [anon_sym_None] = ACTIONS(2118), - [sym_type_conversion] = ACTIONS(834), - [sym_integer] = ACTIONS(2100), - [sym_float] = ACTIONS(2116), - [anon_sym_await] = ACTIONS(2120), - [anon_sym_api] = ACTIONS(2106), - [sym_true] = ACTIONS(2100), - [sym_false] = ACTIONS(2100), + [sym_identifier] = ACTIONS(2171), + [anon_sym_import] = ACTIONS(2171), + [anon_sym_cimport] = ACTIONS(2171), + [anon_sym_from] = ACTIONS(2171), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_STAR] = ACTIONS(2173), + [anon_sym_print] = ACTIONS(2171), + [anon_sym_assert] = ACTIONS(2171), + [anon_sym_return] = ACTIONS(2171), + [anon_sym_del] = ACTIONS(2171), + [anon_sym_raise] = ACTIONS(2171), + [anon_sym_pass] = ACTIONS(2171), + [anon_sym_break] = ACTIONS(2171), + [anon_sym_continue] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(2171), + [anon_sym_match] = ACTIONS(2171), + [anon_sym_async] = ACTIONS(2171), + [anon_sym_for] = ACTIONS(2171), + [anon_sym_while] = ACTIONS(2171), + [anon_sym_try] = ACTIONS(2171), + [anon_sym_with] = ACTIONS(2171), + [anon_sym_def] = ACTIONS(2171), + [anon_sym_global] = ACTIONS(2171), + [anon_sym_nonlocal] = ACTIONS(2171), + [anon_sym_exec] = ACTIONS(2171), + [anon_sym_type] = ACTIONS(2171), + [anon_sym_class] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_AT] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_not] = ACTIONS(2171), + [anon_sym_AMP] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_lambda] = ACTIONS(2171), + [anon_sym_yield] = ACTIONS(2171), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2173), + [anon_sym_None] = ACTIONS(2171), + [sym_integer] = ACTIONS(2171), + [sym_float] = ACTIONS(2173), + [anon_sym_await] = ACTIONS(2171), + [anon_sym_api] = ACTIONS(2171), + [sym_true] = ACTIONS(2171), + [sym_false] = ACTIONS(2171), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_string_start] = ACTIONS(2124), + [anon_sym_property] = ACTIONS(2171), + [anon_sym_include] = ACTIONS(2171), + [anon_sym_DEF] = ACTIONS(2171), + [anon_sym_cdef] = ACTIONS(2171), + [anon_sym_cpdef] = ACTIONS(2171), + [anon_sym_int] = ACTIONS(2171), + [anon_sym_double] = ACTIONS(2171), + [anon_sym_complex] = ACTIONS(2171), + [anon_sym_new] = ACTIONS(2171), + [anon_sym_signed] = ACTIONS(2171), + [anon_sym_unsigned] = ACTIONS(2171), + [anon_sym_char] = ACTIONS(2171), + [anon_sym_short] = ACTIONS(2171), + [anon_sym_long] = ACTIONS(2171), + [anon_sym_const] = ACTIONS(2171), + [anon_sym_volatile] = ACTIONS(2171), + [anon_sym_ctypedef] = ACTIONS(2171), + [anon_sym_struct] = ACTIONS(2171), + [anon_sym_union] = ACTIONS(2171), + [anon_sym_enum] = ACTIONS(2171), + [anon_sym_cppclass] = ACTIONS(2171), + [anon_sym_fused] = ACTIONS(2171), + [anon_sym_public] = ACTIONS(2171), + [anon_sym_packed] = ACTIONS(2171), + [anon_sym_inline] = ACTIONS(2171), + [anon_sym_readonly] = ACTIONS(2171), + [anon_sym_sizeof] = ACTIONS(2171), + [sym__dedent] = ACTIONS(2173), + [sym_string_start] = ACTIONS(2173), }, [641] = { - [sym_list_splat_pattern] = STATE(2402), - [sym_primary_expression] = STATE(3025), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1136), - [anon_sym_DOT] = ACTIONS(1194), - [anon_sym_from] = ACTIONS(1197), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1192), - [anon_sym_as] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_print] = ACTIONS(1201), - [anon_sym_GT_GT] = ACTIONS(1391), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_COLON] = ACTIONS(1192), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_match] = ACTIONS(1201), - [anon_sym_async] = ACTIONS(1201), - [anon_sym_in] = ACTIONS(1197), - [anon_sym_STAR_STAR] = ACTIONS(1391), - [anon_sym_exec] = ACTIONS(1201), - [anon_sym_EQ] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_AT] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_PIPE] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_not] = ACTIONS(1197), - [anon_sym_and] = ACTIONS(1197), - [anon_sym_or] = ACTIONS(1197), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_PERCENT] = ACTIONS(1391), - [anon_sym_SLASH_SLASH] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_LT_LT] = ACTIONS(1391), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_is] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(1207), - [anon_sym_LT_EQ] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_BANG_EQ] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_LT_GT] = ACTIONS(1192), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1209), - [anon_sym_api] = ACTIONS(1201), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_identifier] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_cimport] = ACTIONS(2175), + [anon_sym_from] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2177), + [anon_sym_STAR] = ACTIONS(2177), + [anon_sym_print] = ACTIONS(2175), + [anon_sym_assert] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_del] = ACTIONS(2175), + [anon_sym_raise] = ACTIONS(2175), + [anon_sym_pass] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_with] = ACTIONS(2175), + [anon_sym_def] = ACTIONS(2175), + [anon_sym_global] = ACTIONS(2175), + [anon_sym_nonlocal] = ACTIONS(2175), + [anon_sym_exec] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2177), + [anon_sym_AT] = ACTIONS(2177), + [anon_sym_DASH] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(2177), + [anon_sym_not] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2177), + [anon_sym_TILDE] = ACTIONS(2177), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_lambda] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2177), + [anon_sym_None] = ACTIONS(2175), + [sym_integer] = ACTIONS(2175), + [sym_float] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2175), + [anon_sym_api] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_property] = ACTIONS(2175), + [anon_sym_include] = ACTIONS(2175), + [anon_sym_DEF] = ACTIONS(2175), + [anon_sym_cdef] = ACTIONS(2175), + [anon_sym_cpdef] = ACTIONS(2175), + [anon_sym_int] = ACTIONS(2175), + [anon_sym_double] = ACTIONS(2175), + [anon_sym_complex] = ACTIONS(2175), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_signed] = ACTIONS(2175), + [anon_sym_unsigned] = ACTIONS(2175), + [anon_sym_char] = ACTIONS(2175), + [anon_sym_short] = ACTIONS(2175), + [anon_sym_long] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_volatile] = ACTIONS(2175), + [anon_sym_ctypedef] = ACTIONS(2175), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_union] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [anon_sym_cppclass] = ACTIONS(2175), + [anon_sym_fused] = ACTIONS(2175), + [anon_sym_public] = ACTIONS(2175), + [anon_sym_packed] = ACTIONS(2175), + [anon_sym_inline] = ACTIONS(2175), + [anon_sym_readonly] = ACTIONS(2175), + [anon_sym_sizeof] = ACTIONS(2175), + [sym__dedent] = ACTIONS(2177), + [sym_string_start] = ACTIONS(2177), }, [642] = { - [sym_list_splat_pattern] = STATE(2402), - [sym_primary_expression] = STATE(2091), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1136), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_print] = ACTIONS(1201), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(836), - [anon_sym_COLON] = ACTIONS(836), - [anon_sym_else] = ACTIONS(836), - [anon_sym_match] = ACTIONS(1201), - [anon_sym_async] = ACTIONS(1201), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(834), - [anon_sym_exec] = ACTIONS(1201), - [anon_sym_EQ] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(834), - [anon_sym_SLASH_SLASH] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(2162), - [anon_sym_api] = ACTIONS(1201), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_identifier] = ACTIONS(2179), + [anon_sym_import] = ACTIONS(2179), + [anon_sym_cimport] = ACTIONS(2179), + [anon_sym_from] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_print] = ACTIONS(2179), + [anon_sym_assert] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2179), + [anon_sym_del] = ACTIONS(2179), + [anon_sym_raise] = ACTIONS(2179), + [anon_sym_pass] = ACTIONS(2179), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_while] = ACTIONS(2179), + [anon_sym_try] = ACTIONS(2179), + [anon_sym_with] = ACTIONS(2179), + [anon_sym_def] = ACTIONS(2179), + [anon_sym_global] = ACTIONS(2179), + [anon_sym_nonlocal] = ACTIONS(2179), + [anon_sym_exec] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_class] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_AT] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_not] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2181), + [anon_sym_TILDE] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2181), + [anon_sym_lambda] = ACTIONS(2179), + [anon_sym_yield] = ACTIONS(2179), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2181), + [anon_sym_None] = ACTIONS(2179), + [sym_integer] = ACTIONS(2179), + [sym_float] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2179), + [anon_sym_api] = ACTIONS(2179), + [sym_true] = ACTIONS(2179), + [sym_false] = ACTIONS(2179), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_property] = ACTIONS(2179), + [anon_sym_include] = ACTIONS(2179), + [anon_sym_DEF] = ACTIONS(2179), + [anon_sym_cdef] = ACTIONS(2179), + [anon_sym_cpdef] = ACTIONS(2179), + [anon_sym_int] = ACTIONS(2179), + [anon_sym_double] = ACTIONS(2179), + [anon_sym_complex] = ACTIONS(2179), + [anon_sym_new] = ACTIONS(2179), + [anon_sym_signed] = ACTIONS(2179), + [anon_sym_unsigned] = ACTIONS(2179), + [anon_sym_char] = ACTIONS(2179), + [anon_sym_short] = ACTIONS(2179), + [anon_sym_long] = ACTIONS(2179), + [anon_sym_const] = ACTIONS(2179), + [anon_sym_volatile] = ACTIONS(2179), + [anon_sym_ctypedef] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2179), + [anon_sym_union] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [anon_sym_cppclass] = ACTIONS(2179), + [anon_sym_fused] = ACTIONS(2179), + [anon_sym_public] = ACTIONS(2179), + [anon_sym_packed] = ACTIONS(2179), + [anon_sym_inline] = ACTIONS(2179), + [anon_sym_readonly] = ACTIONS(2179), + [anon_sym_sizeof] = ACTIONS(2179), + [sym__dedent] = ACTIONS(2181), + [sym_string_start] = ACTIONS(2181), }, [643] = { - [sym_list_splat_pattern] = STATE(2133), - [sym_primary_expression] = STATE(2063), - [sym_binary_operator] = STATE(2246), - [sym_unary_operator] = STATE(2246), - [sym_attribute] = STATE(2246), - [sym_subscript] = STATE(2246), - [sym_call] = STATE(2246), - [sym_list] = STATE(2246), - [sym_set] = STATE(2246), - [sym_tuple] = STATE(2246), - [sym_dictionary] = STATE(2246), - [sym_list_comprehension] = STATE(2246), - [sym_dictionary_comprehension] = STATE(2246), - [sym_set_comprehension] = STATE(2246), - [sym_generator_expression] = STATE(2246), - [sym_parenthesized_expression] = STATE(2246), - [sym_concatenated_string] = STATE(2246), - [sym_string] = STATE(1984), - [sym_none] = STATE(2246), - [sym_await] = STATE(2246), - [sym_sizeof_expression] = STATE(2246), - [sym_cast_expression] = STATE(2246), - [sym_identifier] = ACTIONS(2164), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(2168), - [anon_sym_print] = ACTIONS(2170), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(836), - [anon_sym_COLON] = ACTIONS(836), - [anon_sym_match] = ACTIONS(2170), - [anon_sym_async] = ACTIONS(2170), - [anon_sym_for] = ACTIONS(836), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(834), - [anon_sym_exec] = ACTIONS(2170), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(834), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(834), - [anon_sym_SLASH_SLASH] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(2174), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [sym_ellipsis] = ACTIONS(2180), - [anon_sym_None] = ACTIONS(2182), - [sym_integer] = ACTIONS(2164), - [sym_float] = ACTIONS(2180), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_api] = ACTIONS(2170), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), + [sym_list_splat_pattern] = STATE(2212), + [sym_primary_expression] = STATE(2059), + [sym_binary_operator] = STATE(2175), + [sym_unary_operator] = STATE(2175), + [sym_attribute] = STATE(2175), + [sym_subscript] = STATE(2175), + [sym_ellipsis] = STATE(2175), + [sym_call] = STATE(2175), + [sym_list] = STATE(2175), + [sym_set] = STATE(2175), + [sym_tuple] = STATE(2175), + [sym_dictionary] = STATE(2175), + [sym_list_comprehension] = STATE(2175), + [sym_dictionary_comprehension] = STATE(2175), + [sym_set_comprehension] = STATE(2175), + [sym_generator_expression] = STATE(2175), + [sym_parenthesized_expression] = STATE(2175), + [sym_concatenated_string] = STATE(2175), + [sym_string] = STATE(1976), + [sym_none] = STATE(2175), + [sym_await] = STATE(2175), + [sym_sizeof_expression] = STATE(2175), + [sym_cast_expression] = STATE(2175), + [sym_identifier] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(1705), + [anon_sym_print] = ACTIONS(1707), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_if] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_match] = ACTIONS(1707), + [anon_sym_async] = ACTIONS(1707), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_exec] = ACTIONS(1707), + [anon_sym_EQ] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_SLASH_SLASH] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(1711), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(1715), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1717), + [anon_sym_None] = ACTIONS(1719), + [sym_type_conversion] = ACTIONS(563), + [sym_integer] = ACTIONS(1701), + [sym_float] = ACTIONS(1721), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_api] = ACTIONS(1707), + [sym_true] = ACTIONS(1701), + [sym_false] = ACTIONS(1701), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2186), - [sym_string_start] = ACTIONS(2188), + [anon_sym_sizeof] = ACTIONS(1725), + [sym_string_start] = ACTIONS(1727), }, [644] = { - [sym_list_splat_pattern] = STATE(2402), - [sym_primary_expression] = STATE(3025), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1136), - [anon_sym_SEMI] = ACTIONS(1192), - [anon_sym_DOT] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_print] = ACTIONS(1201), - [anon_sym_GT_GT] = ACTIONS(1194), - [anon_sym_COLON] = ACTIONS(1192), - [anon_sym_match] = ACTIONS(1201), - [anon_sym_async] = ACTIONS(1201), - [anon_sym_STAR_STAR] = ACTIONS(1194), - [anon_sym_exec] = ACTIONS(1201), - [anon_sym_EQ] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_AT] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_PERCENT] = ACTIONS(1194), - [anon_sym_SLASH_SLASH] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_CARET] = ACTIONS(1194), - [anon_sym_LT_LT] = ACTIONS(1194), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(1207), - [anon_sym_PLUS_EQ] = ACTIONS(1192), - [anon_sym_DASH_EQ] = ACTIONS(1192), - [anon_sym_STAR_EQ] = ACTIONS(1192), - [anon_sym_SLASH_EQ] = ACTIONS(1192), - [anon_sym_AT_EQ] = ACTIONS(1192), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1192), - [anon_sym_PERCENT_EQ] = ACTIONS(1192), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1192), - [anon_sym_GT_GT_EQ] = ACTIONS(1192), - [anon_sym_LT_LT_EQ] = ACTIONS(1192), - [anon_sym_AMP_EQ] = ACTIONS(1192), - [anon_sym_CARET_EQ] = ACTIONS(1192), - [anon_sym_PIPE_EQ] = ACTIONS(1192), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1209), - [anon_sym_api] = ACTIONS(1201), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_list_splat_pattern] = STATE(2340), + [sym_primary_expression] = STATE(3038), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1141), + [anon_sym_DOT] = ACTIONS(1201), + [anon_sym_from] = ACTIONS(1204), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_COMMA] = ACTIONS(1199), + [anon_sym_as] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_print] = ACTIONS(1208), + [anon_sym_GT_GT] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_COLON] = ACTIONS(1199), + [anon_sym_else] = ACTIONS(1204), + [anon_sym_match] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_in] = ACTIONS(1204), + [anon_sym_STAR_STAR] = ACTIONS(1402), + [anon_sym_exec] = ACTIONS(1208), + [anon_sym_EQ] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_AT] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_not] = ACTIONS(1204), + [anon_sym_and] = ACTIONS(1204), + [anon_sym_or] = ACTIONS(1204), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_CARET] = ACTIONS(1402), + [anon_sym_LT_LT] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_is] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_LT_EQ] = ACTIONS(1199), + [anon_sym_EQ_EQ] = ACTIONS(1199), + [anon_sym_BANG_EQ] = ACTIONS(1199), + [anon_sym_GT_EQ] = ACTIONS(1199), + [anon_sym_GT] = ACTIONS(1204), + [anon_sym_LT_GT] = ACTIONS(1199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1216), + [anon_sym_api] = ACTIONS(1208), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1142), - [sym__newline] = ACTIONS(1192), - [sym_string_start] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [645] = { - [sym_list_splat_pattern] = STATE(2402), - [sym_primary_expression] = STATE(3025), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1136), - [anon_sym_SEMI] = ACTIONS(867), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(867), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_print] = ACTIONS(1201), - [anon_sym_GT_GT] = ACTIONS(836), - [anon_sym_COLON] = ACTIONS(867), - [anon_sym_match] = ACTIONS(1201), - [anon_sym_async] = ACTIONS(1201), - [anon_sym_STAR_STAR] = ACTIONS(836), - [anon_sym_exec] = ACTIONS(1201), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_AT] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_SLASH_SLASH] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_CARET] = ACTIONS(836), - [anon_sym_LT_LT] = ACTIONS(836), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(1207), - [anon_sym_PLUS_EQ] = ACTIONS(867), - [anon_sym_DASH_EQ] = ACTIONS(867), - [anon_sym_STAR_EQ] = ACTIONS(867), - [anon_sym_SLASH_EQ] = ACTIONS(867), - [anon_sym_AT_EQ] = ACTIONS(867), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(867), - [anon_sym_PERCENT_EQ] = ACTIONS(867), - [anon_sym_STAR_STAR_EQ] = ACTIONS(867), - [anon_sym_GT_GT_EQ] = ACTIONS(867), - [anon_sym_LT_LT_EQ] = ACTIONS(867), - [anon_sym_AMP_EQ] = ACTIONS(867), - [anon_sym_CARET_EQ] = ACTIONS(867), - [anon_sym_PIPE_EQ] = ACTIONS(867), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1209), - [anon_sym_api] = ACTIONS(1201), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_list_splat_pattern] = STATE(2340), + [sym_primary_expression] = STATE(2073), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1141), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1208), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_else] = ACTIONS(565), + [anon_sym_match] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_exec] = ACTIONS(1208), + [anon_sym_EQ] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_SLASH_SLASH] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(1133), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_api] = ACTIONS(1208), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1142), - [sym__newline] = ACTIONS(867), - [sym_string_start] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [646] = { - [sym_list_splat_pattern] = STATE(2230), - [sym_primary_expression] = STATE(2026), - [sym_binary_operator] = STATE(2179), - [sym_unary_operator] = STATE(2179), - [sym_attribute] = STATE(2179), - [sym_subscript] = STATE(2179), - [sym_call] = STATE(2179), - [sym_list] = STATE(2179), - [sym_set] = STATE(2179), - [sym_tuple] = STATE(2179), - [sym_dictionary] = STATE(2179), - [sym_list_comprehension] = STATE(2179), - [sym_dictionary_comprehension] = STATE(2179), - [sym_set_comprehension] = STATE(2179), - [sym_generator_expression] = STATE(2179), - [sym_parenthesized_expression] = STATE(2179), - [sym_concatenated_string] = STATE(2179), - [sym_string] = STATE(1968), - [sym_none] = STATE(2179), - [sym_await] = STATE(2179), - [sym_sizeof_expression] = STATE(2179), - [sym_cast_expression] = STATE(2179), - [sym_identifier] = ACTIONS(2100), - [anon_sym_DOT] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(1391), - [anon_sym_as] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(2104), - [anon_sym_print] = ACTIONS(2106), - [anon_sym_GT_GT] = ACTIONS(1391), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_COLON] = ACTIONS(1197), - [anon_sym_match] = ACTIONS(2106), - [anon_sym_async] = ACTIONS(2106), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1194), - [anon_sym_STAR_STAR] = ACTIONS(1391), - [anon_sym_exec] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2108), - [anon_sym_AT] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(1194), - [anon_sym_and] = ACTIONS(1194), - [anon_sym_or] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_PERCENT] = ACTIONS(1391), - [anon_sym_SLASH_SLASH] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(2110), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_LT_LT] = ACTIONS(1391), - [anon_sym_TILDE] = ACTIONS(2110), - [anon_sym_is] = ACTIONS(1194), - [anon_sym_LT] = ACTIONS(2114), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1194), - [anon_sym_LT_GT] = ACTIONS(1391), - [sym_ellipsis] = ACTIONS(2116), - [anon_sym_None] = ACTIONS(2118), - [sym_integer] = ACTIONS(2100), - [sym_float] = ACTIONS(2116), - [anon_sym_await] = ACTIONS(2120), - [anon_sym_api] = ACTIONS(2106), - [sym_true] = ACTIONS(2100), - [sym_false] = ACTIONS(2100), + [sym_list_splat_pattern] = STATE(2272), + [sym_primary_expression] = STATE(2054), + [sym_binary_operator] = STATE(2168), + [sym_unary_operator] = STATE(2168), + [sym_attribute] = STATE(2168), + [sym_subscript] = STATE(2168), + [sym_ellipsis] = STATE(2168), + [sym_call] = STATE(2168), + [sym_list] = STATE(2168), + [sym_set] = STATE(2168), + [sym_tuple] = STATE(2168), + [sym_dictionary] = STATE(2168), + [sym_list_comprehension] = STATE(2168), + [sym_dictionary_comprehension] = STATE(2168), + [sym_set_comprehension] = STATE(2168), + [sym_generator_expression] = STATE(2168), + [sym_parenthesized_expression] = STATE(2168), + [sym_concatenated_string] = STATE(2168), + [sym_string] = STATE(2004), + [sym_none] = STATE(2168), + [sym_await] = STATE(2168), + [sym_sizeof_expression] = STATE(2168), + [sym_cast_expression] = STATE(2168), + [sym_identifier] = ACTIONS(2185), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_print] = ACTIONS(2191), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_match] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(565), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_exec] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_SLASH_SLASH] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2201), + [anon_sym_None] = ACTIONS(2203), + [sym_integer] = ACTIONS(2185), + [sym_float] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_api] = ACTIONS(2191), + [sym_true] = ACTIONS(2185), + [sym_false] = ACTIONS(2185), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_string_start] = ACTIONS(2124), + [anon_sym_sizeof] = ACTIONS(2209), + [sym_string_start] = ACTIONS(2211), }, [647] = { - [sym_list_splat_pattern] = STATE(2426), - [sym_primary_expression] = STATE(2067), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(1239), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_RPAREN] = ACTIONS(834), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_print] = ACTIONS(2194), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(2194), - [anon_sym_async] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(836), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(834), - [anon_sym_exec] = ACTIONS(2194), - [anon_sym_EQ] = ACTIONS(2196), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(834), - [anon_sym_SLASH_SLASH] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(2198), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(2200), - [anon_sym_api] = ACTIONS(2194), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_identifier] = ACTIONS(2213), + [anon_sym_import] = ACTIONS(2213), + [anon_sym_cimport] = ACTIONS(2213), + [anon_sym_from] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_print] = ACTIONS(2213), + [anon_sym_assert] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_del] = ACTIONS(2213), + [anon_sym_raise] = ACTIONS(2213), + [anon_sym_pass] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_match] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(2213), + [anon_sym_def] = ACTIONS(2213), + [anon_sym_global] = ACTIONS(2213), + [anon_sym_nonlocal] = ACTIONS(2213), + [anon_sym_exec] = ACTIONS(2213), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_class] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_not] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_lambda] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2215), + [anon_sym_None] = ACTIONS(2213), + [sym_integer] = ACTIONS(2213), + [sym_float] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_api] = ACTIONS(2213), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_property] = ACTIONS(2213), + [anon_sym_include] = ACTIONS(2213), + [anon_sym_DEF] = ACTIONS(2213), + [anon_sym_cdef] = ACTIONS(2213), + [anon_sym_cpdef] = ACTIONS(2213), + [anon_sym_int] = ACTIONS(2213), + [anon_sym_double] = ACTIONS(2213), + [anon_sym_complex] = ACTIONS(2213), + [anon_sym_new] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2213), + [anon_sym_unsigned] = ACTIONS(2213), + [anon_sym_char] = ACTIONS(2213), + [anon_sym_short] = ACTIONS(2213), + [anon_sym_long] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_volatile] = ACTIONS(2213), + [anon_sym_ctypedef] = ACTIONS(2213), + [anon_sym_struct] = ACTIONS(2213), + [anon_sym_union] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [anon_sym_cppclass] = ACTIONS(2213), + [anon_sym_fused] = ACTIONS(2213), + [anon_sym_public] = ACTIONS(2213), + [anon_sym_packed] = ACTIONS(2213), + [anon_sym_inline] = ACTIONS(2213), + [anon_sym_readonly] = ACTIONS(2213), + [anon_sym_sizeof] = ACTIONS(2213), + [sym__dedent] = ACTIONS(2215), + [sym_string_start] = ACTIONS(2215), }, [648] = { - [sym_list_splat_pattern] = STATE(2133), - [sym_primary_expression] = STATE(2063), - [sym_binary_operator] = STATE(2246), - [sym_unary_operator] = STATE(2246), - [sym_attribute] = STATE(2246), - [sym_subscript] = STATE(2246), - [sym_call] = STATE(2246), - [sym_list] = STATE(2246), - [sym_set] = STATE(2246), - [sym_tuple] = STATE(2246), - [sym_dictionary] = STATE(2246), - [sym_list_comprehension] = STATE(2246), - [sym_dictionary_comprehension] = STATE(2246), - [sym_set_comprehension] = STATE(2246), - [sym_generator_expression] = STATE(2246), - [sym_parenthesized_expression] = STATE(2246), - [sym_concatenated_string] = STATE(2246), - [sym_string] = STATE(1984), - [sym_none] = STATE(2246), - [sym_await] = STATE(2246), - [sym_sizeof_expression] = STATE(2246), - [sym_cast_expression] = STATE(2246), - [sym_identifier] = ACTIONS(2164), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(2168), - [anon_sym_print] = ACTIONS(2170), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_if] = ACTIONS(836), - [anon_sym_COLON] = ACTIONS(834), - [anon_sym_match] = ACTIONS(2170), - [anon_sym_async] = ACTIONS(2170), - [anon_sym_for] = ACTIONS(836), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(834), - [anon_sym_exec] = ACTIONS(2170), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(834), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(834), - [anon_sym_SLASH_SLASH] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(2174), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(2178), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [sym_ellipsis] = ACTIONS(2180), - [anon_sym_None] = ACTIONS(2182), - [sym_integer] = ACTIONS(2164), - [sym_float] = ACTIONS(2180), - [anon_sym_await] = ACTIONS(2184), - [anon_sym_api] = ACTIONS(2170), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), + [sym_list_splat_pattern] = STATE(2614), + [sym_primary_expression] = STATE(2360), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1302), + [anon_sym_DOT] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_RPAREN] = ACTIONS(1402), + [anon_sym_COMMA] = ACTIONS(1402), + [anon_sym_as] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_print] = ACTIONS(2221), + [anon_sym_GT_GT] = ACTIONS(1402), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_match] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_in] = ACTIONS(1201), + [anon_sym_STAR_STAR] = ACTIONS(1402), + [anon_sym_exec] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_AT] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1201), + [anon_sym_and] = ACTIONS(1201), + [anon_sym_or] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_CARET] = ACTIONS(1402), + [anon_sym_LT_LT] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_is] = ACTIONS(1201), + [anon_sym_LT] = ACTIONS(2223), + [anon_sym_LT_EQ] = ACTIONS(1402), + [anon_sym_EQ_EQ] = ACTIONS(1402), + [anon_sym_BANG_EQ] = ACTIONS(1402), + [anon_sym_GT_EQ] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1201), + [anon_sym_LT_GT] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_api] = ACTIONS(2221), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2186), - [sym_string_start] = ACTIONS(2188), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [649] = { - [sym_list_splat_pattern] = STATE(2426), - [sym_primary_expression] = STATE(2067), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(1239), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_RPAREN] = ACTIONS(834), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_print] = ACTIONS(2194), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(2194), - [anon_sym_async] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(836), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(834), - [anon_sym_exec] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(834), - [anon_sym_SLASH_SLASH] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(2198), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(2200), - [anon_sym_api] = ACTIONS(2194), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_list_splat_pattern] = STATE(2477), + [sym_primary_expression] = STATE(2217), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2227), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(2231), + [anon_sym_print] = ACTIONS(2233), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_match] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_exec] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_SLASH_SLASH] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2249), + [anon_sym_api] = ACTIONS(2233), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [650] = { - [sym_list_splat_pattern] = STATE(2490), - [sym_primary_expression] = STATE(2237), - [sym_binary_operator] = STATE(2509), - [sym_unary_operator] = STATE(2509), - [sym_attribute] = STATE(2509), - [sym_subscript] = STATE(2509), - [sym_call] = STATE(2509), - [sym_list] = STATE(2509), - [sym_set] = STATE(2509), - [sym_tuple] = STATE(2509), - [sym_dictionary] = STATE(2509), - [sym_list_comprehension] = STATE(2509), - [sym_dictionary_comprehension] = STATE(2509), - [sym_set_comprehension] = STATE(2509), - [sym_generator_expression] = STATE(2509), - [sym_parenthesized_expression] = STATE(2509), - [sym_concatenated_string] = STATE(2509), - [sym_string] = STATE(2110), - [sym_none] = STATE(2509), - [sym_await] = STATE(2509), - [sym_sizeof_expression] = STATE(2509), - [sym_cast_expression] = STATE(2509), - [sym_identifier] = ACTIONS(2202), - [anon_sym_DOT] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(1391), - [anon_sym_as] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(2206), - [anon_sym_print] = ACTIONS(2208), - [anon_sym_GT_GT] = ACTIONS(1391), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1194), - [anon_sym_STAR_STAR] = ACTIONS(1391), - [anon_sym_exec] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_RBRACK] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_PIPE] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_not] = ACTIONS(1194), - [anon_sym_and] = ACTIONS(1194), - [anon_sym_or] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_PERCENT] = ACTIONS(1391), - [anon_sym_SLASH_SLASH] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(2212), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_LT_LT] = ACTIONS(1391), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_is] = ACTIONS(1194), - [anon_sym_LT] = ACTIONS(2216), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1194), - [anon_sym_LT_GT] = ACTIONS(1391), - [sym_ellipsis] = ACTIONS(2218), - [anon_sym_None] = ACTIONS(2220), - [sym_integer] = ACTIONS(2202), - [sym_float] = ACTIONS(2218), - [anon_sym_await] = ACTIONS(2222), - [anon_sym_api] = ACTIONS(2208), - [sym_true] = ACTIONS(2202), - [sym_false] = ACTIONS(2202), + [sym_list_splat_pattern] = STATE(2287), + [sym_primary_expression] = STATE(2100), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(1246), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_print] = ACTIONS(2163), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(565), + [anon_sym_match] = ACTIONS(2163), + [anon_sym_async] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(565), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_exec] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_SLASH_SLASH] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(2169), + [anon_sym_api] = ACTIONS(2163), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2224), - [sym_string_start] = ACTIONS(2226), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [651] = { - [sym_list_splat_pattern] = STATE(2402), - [sym_primary_expression] = STATE(2091), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1136), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_print] = ACTIONS(1201), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_if] = ACTIONS(836), - [anon_sym_COLON] = ACTIONS(834), - [anon_sym_else] = ACTIONS(836), - [anon_sym_match] = ACTIONS(1201), - [anon_sym_async] = ACTIONS(1201), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(834), - [anon_sym_exec] = ACTIONS(1201), - [anon_sym_EQ] = ACTIONS(836), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(834), - [anon_sym_SLASH_SLASH] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(2162), - [anon_sym_api] = ACTIONS(1201), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_list_splat_pattern] = STATE(2287), + [sym_primary_expression] = STATE(2100), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(1246), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_RPAREN] = ACTIONS(570), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_print] = ACTIONS(2163), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(565), + [anon_sym_match] = ACTIONS(2163), + [anon_sym_async] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(565), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_exec] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_SLASH_SLASH] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(2169), + [anon_sym_api] = ACTIONS(2163), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [652] = { - [sym_list_splat_pattern] = STATE(2307), - [sym_primary_expression] = STATE(2095), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_attribute] = STATE(2310), - [sym_subscript] = STATE(2310), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2228), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_print] = ACTIONS(2234), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(2234), - [anon_sym_async] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(836), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(834), - [anon_sym_exec] = ACTIONS(2234), - [anon_sym_LBRACK] = ACTIONS(2236), - [anon_sym_RBRACK] = ACTIONS(841), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(834), - [anon_sym_SLASH_SLASH] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2248), - [anon_sym_api] = ACTIONS(2234), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_list_splat_pattern] = STATE(2477), + [sym_primary_expression] = STATE(2217), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2227), + [anon_sym_DOT] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_COMMA] = ACTIONS(1402), + [anon_sym_as] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(2231), + [anon_sym_print] = ACTIONS(2233), + [anon_sym_GT_GT] = ACTIONS(1402), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_match] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_in] = ACTIONS(1201), + [anon_sym_STAR_STAR] = ACTIONS(1402), + [anon_sym_exec] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(1402), + [anon_sym_AT] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_PIPE] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(1201), + [anon_sym_and] = ACTIONS(1201), + [anon_sym_or] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_CARET] = ACTIONS(1402), + [anon_sym_LT_LT] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_is] = ACTIONS(1201), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_LT_EQ] = ACTIONS(1402), + [anon_sym_EQ_EQ] = ACTIONS(1402), + [anon_sym_BANG_EQ] = ACTIONS(1402), + [anon_sym_GT_EQ] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1201), + [anon_sym_LT_GT] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2249), + [anon_sym_api] = ACTIONS(2233), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [653] = { - [sym_list_splat_pattern] = STATE(2490), - [sym_primary_expression] = STATE(2237), - [sym_binary_operator] = STATE(2509), - [sym_unary_operator] = STATE(2509), - [sym_attribute] = STATE(2509), - [sym_subscript] = STATE(2509), - [sym_call] = STATE(2509), - [sym_list] = STATE(2509), - [sym_set] = STATE(2509), - [sym_tuple] = STATE(2509), - [sym_dictionary] = STATE(2509), - [sym_list_comprehension] = STATE(2509), - [sym_dictionary_comprehension] = STATE(2509), - [sym_set_comprehension] = STATE(2509), - [sym_generator_expression] = STATE(2509), - [sym_parenthesized_expression] = STATE(2509), - [sym_concatenated_string] = STATE(2509), - [sym_string] = STATE(2110), - [sym_none] = STATE(2509), - [sym_await] = STATE(2509), - [sym_sizeof_expression] = STATE(2509), - [sym_cast_expression] = STATE(2509), - [sym_identifier] = ACTIONS(2202), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(2206), - [anon_sym_print] = ACTIONS(2208), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(836), - [anon_sym_COLON] = ACTIONS(836), - [anon_sym_match] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(834), - [anon_sym_exec] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_RBRACK] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(834), - [anon_sym_SLASH_SLASH] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(2212), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(2216), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [sym_ellipsis] = ACTIONS(2218), - [anon_sym_None] = ACTIONS(2220), - [sym_integer] = ACTIONS(2202), - [sym_float] = ACTIONS(2218), - [anon_sym_await] = ACTIONS(2222), - [anon_sym_api] = ACTIONS(2208), - [sym_true] = ACTIONS(2202), - [sym_false] = ACTIONS(2202), + [sym_list_splat_pattern] = STATE(2326), + [sym_primary_expression] = STATE(2112), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_attribute] = STATE(2374), + [sym_subscript] = STATE(2374), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2255), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_print] = ACTIONS(2261), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(565), + [anon_sym_match] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(565), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_exec] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_RBRACK] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_SLASH_SLASH] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2277), + [anon_sym_api] = ACTIONS(2261), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2224), - [sym_string_start] = ACTIONS(2226), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [654] = { - [sym_list_splat_pattern] = STATE(2556), - [sym_primary_expression] = STATE(2294), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1293), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(834), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(2256), - [anon_sym_print] = ACTIONS(2258), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2258), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(834), - [anon_sym_exec] = ACTIONS(2258), - [anon_sym_EQ] = ACTIONS(2196), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(834), - [anon_sym_SLASH_SLASH] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(2260), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(2262), - [anon_sym_api] = ACTIONS(2258), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_list_splat_pattern] = STATE(2614), + [sym_primary_expression] = STATE(2360), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1302), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_print] = ACTIONS(2221), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(565), + [anon_sym_match] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_exec] = ACTIONS(2221), + [anon_sym_EQ] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_SLASH_SLASH] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(2223), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_api] = ACTIONS(2221), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [655] = { - [sym_list_splat_pattern] = STATE(2556), - [sym_primary_expression] = STATE(2294), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1293), - [anon_sym_DOT] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(1391), - [anon_sym_COMMA] = ACTIONS(1391), - [anon_sym_as] = ACTIONS(1194), - [anon_sym_STAR] = ACTIONS(2256), - [anon_sym_print] = ACTIONS(2258), - [anon_sym_GT_GT] = ACTIONS(1391), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2258), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1194), - [anon_sym_STAR_STAR] = ACTIONS(1391), - [anon_sym_exec] = ACTIONS(2258), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_AT] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1194), - [anon_sym_and] = ACTIONS(1194), - [anon_sym_or] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_PERCENT] = ACTIONS(1391), - [anon_sym_SLASH_SLASH] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_LT_LT] = ACTIONS(1391), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_is] = ACTIONS(1194), - [anon_sym_LT] = ACTIONS(2260), - [anon_sym_LT_EQ] = ACTIONS(1391), - [anon_sym_EQ_EQ] = ACTIONS(1391), - [anon_sym_BANG_EQ] = ACTIONS(1391), - [anon_sym_GT_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1194), - [anon_sym_LT_GT] = ACTIONS(1391), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(2262), - [anon_sym_api] = ACTIONS(2258), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_list_splat_pattern] = STATE(2340), + [sym_primary_expression] = STATE(2073), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1141), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1208), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_if] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_else] = ACTIONS(565), + [anon_sym_match] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_exec] = ACTIONS(1208), + [anon_sym_EQ] = ACTIONS(565), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_SLASH_SLASH] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(1133), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_api] = ACTIONS(1208), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [656] = { - [sym_list_splat_pattern] = STATE(2402), - [sym_primary_expression] = STATE(3025), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1136), - [anon_sym_DOT] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1192), - [anon_sym_as] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_print] = ACTIONS(1201), - [anon_sym_GT_GT] = ACTIONS(1391), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_COLON] = ACTIONS(1192), - [anon_sym_match] = ACTIONS(1201), - [anon_sym_async] = ACTIONS(1201), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1197), - [anon_sym_STAR_STAR] = ACTIONS(1391), - [anon_sym_exec] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_RBRACK] = ACTIONS(1192), - [anon_sym_AT] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_PIPE] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_not] = ACTIONS(1197), - [anon_sym_and] = ACTIONS(1197), - [anon_sym_or] = ACTIONS(1197), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_PERCENT] = ACTIONS(1391), - [anon_sym_SLASH_SLASH] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_LT_LT] = ACTIONS(1391), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_is] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(1207), - [anon_sym_LT_EQ] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_BANG_EQ] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_LT_GT] = ACTIONS(1192), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1209), - [anon_sym_api] = ACTIONS(1201), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_list_splat_pattern] = STATE(2326), + [sym_primary_expression] = STATE(2112), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_attribute] = STATE(2374), + [sym_subscript] = STATE(2374), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2255), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_print] = ACTIONS(2261), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(565), + [anon_sym_match] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(565), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_exec] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_RBRACK] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_SLASH_SLASH] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2277), + [anon_sym_api] = ACTIONS(2261), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [657] = { - [sym_list_splat_pattern] = STATE(2402), - [sym_primary_expression] = STATE(2091), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1136), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_from] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_print] = ACTIONS(1201), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(836), - [anon_sym_COLON] = ACTIONS(836), - [anon_sym_match] = ACTIONS(1201), - [anon_sym_async] = ACTIONS(1201), - [anon_sym_in] = ACTIONS(1011), - [anon_sym_STAR_STAR] = ACTIONS(834), - [anon_sym_exec] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(834), - [anon_sym_SLASH_SLASH] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(2162), - [anon_sym_api] = ACTIONS(1201), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_list_splat_pattern] = STATE(2272), + [sym_primary_expression] = STATE(2054), + [sym_binary_operator] = STATE(2168), + [sym_unary_operator] = STATE(2168), + [sym_attribute] = STATE(2168), + [sym_subscript] = STATE(2168), + [sym_ellipsis] = STATE(2168), + [sym_call] = STATE(2168), + [sym_list] = STATE(2168), + [sym_set] = STATE(2168), + [sym_tuple] = STATE(2168), + [sym_dictionary] = STATE(2168), + [sym_list_comprehension] = STATE(2168), + [sym_dictionary_comprehension] = STATE(2168), + [sym_set_comprehension] = STATE(2168), + [sym_generator_expression] = STATE(2168), + [sym_parenthesized_expression] = STATE(2168), + [sym_concatenated_string] = STATE(2168), + [sym_string] = STATE(2004), + [sym_none] = STATE(2168), + [sym_await] = STATE(2168), + [sym_sizeof_expression] = STATE(2168), + [sym_cast_expression] = STATE(2168), + [sym_identifier] = ACTIONS(2185), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_print] = ACTIONS(2191), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_if] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_match] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(565), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_exec] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_SLASH_SLASH] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2201), + [anon_sym_None] = ACTIONS(2203), + [sym_integer] = ACTIONS(2185), + [sym_float] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_api] = ACTIONS(2191), + [sym_true] = ACTIONS(2185), + [sym_false] = ACTIONS(2185), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(2209), + [sym_string_start] = ACTIONS(2211), }, [658] = { - [sym_list_splat_pattern] = STATE(2307), - [sym_primary_expression] = STATE(2095), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_attribute] = STATE(2310), - [sym_subscript] = STATE(2310), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2228), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_print] = ACTIONS(2234), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(2234), - [anon_sym_async] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(836), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(834), - [anon_sym_exec] = ACTIONS(2234), - [anon_sym_LBRACK] = ACTIONS(2236), - [anon_sym_RBRACK] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(834), - [anon_sym_SLASH_SLASH] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2248), - [anon_sym_api] = ACTIONS(2234), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_list_splat_pattern] = STATE(2340), + [sym_primary_expression] = STATE(2073), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1141), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_from] = ACTIONS(582), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1208), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_match] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_in] = ACTIONS(1016), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_exec] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_SLASH_SLASH] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(1133), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_api] = ACTIONS(1208), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [659] = { - [sym_list_splat_pattern] = STATE(2426), - [sym_primary_expression] = STATE(2067), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym_concatenated_string] = STATE(2403), + [sym_list_splat_pattern] = STATE(2340), + [sym_primary_expression] = STATE(3038), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_concatenated_string] = STATE(2295), [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(1239), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_RPAREN] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_print] = ACTIONS(2194), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(2194), - [anon_sym_async] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(836), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(834), - [anon_sym_exec] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(834), - [anon_sym_SLASH_SLASH] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(2198), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(2200), - [anon_sym_api] = ACTIONS(2194), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1141), + [anon_sym_DOT] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_COMMA] = ACTIONS(1199), + [anon_sym_as] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_print] = ACTIONS(1208), + [anon_sym_GT_GT] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_COLON] = ACTIONS(1199), + [anon_sym_match] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_in] = ACTIONS(1204), + [anon_sym_STAR_STAR] = ACTIONS(1402), + [anon_sym_exec] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_RBRACK] = ACTIONS(1199), + [anon_sym_AT] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_not] = ACTIONS(1204), + [anon_sym_and] = ACTIONS(1204), + [anon_sym_or] = ACTIONS(1204), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_CARET] = ACTIONS(1402), + [anon_sym_LT_LT] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_is] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_LT_EQ] = ACTIONS(1199), + [anon_sym_EQ_EQ] = ACTIONS(1199), + [anon_sym_BANG_EQ] = ACTIONS(1199), + [anon_sym_GT_EQ] = ACTIONS(1199), + [anon_sym_GT] = ACTIONS(1204), + [anon_sym_LT_GT] = ACTIONS(1199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1216), + [anon_sym_api] = ACTIONS(1208), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [660] = { - [sym_list_splat_pattern] = STATE(2426), - [sym_primary_expression] = STATE(2067), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym_concatenated_string] = STATE(2403), + [sym_list_splat_pattern] = STATE(2340), + [sym_primary_expression] = STATE(3038), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_concatenated_string] = STATE(2295), [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(1239), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_RPAREN] = ACTIONS(834), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_print] = ACTIONS(2194), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(2194), - [anon_sym_async] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(836), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(834), - [anon_sym_exec] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(834), - [anon_sym_SLASH_SLASH] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(2198), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(2200), - [anon_sym_api] = ACTIONS(2194), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1141), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_COMMA] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_print] = ACTIONS(1208), + [anon_sym_GT_GT] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(596), + [anon_sym_match] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_STAR_STAR] = ACTIONS(565), + [anon_sym_exec] = ACTIONS(1208), + [anon_sym_EQ] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_AT] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(565), + [anon_sym_SLASH_SLASH] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(565), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_PLUS_EQ] = ACTIONS(596), + [anon_sym_DASH_EQ] = ACTIONS(596), + [anon_sym_STAR_EQ] = ACTIONS(596), + [anon_sym_SLASH_EQ] = ACTIONS(596), + [anon_sym_AT_EQ] = ACTIONS(596), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(596), + [anon_sym_PERCENT_EQ] = ACTIONS(596), + [anon_sym_STAR_STAR_EQ] = ACTIONS(596), + [anon_sym_GT_GT_EQ] = ACTIONS(596), + [anon_sym_LT_LT_EQ] = ACTIONS(596), + [anon_sym_AMP_EQ] = ACTIONS(596), + [anon_sym_CARET_EQ] = ACTIONS(596), + [anon_sym_PIPE_EQ] = ACTIONS(596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1216), + [anon_sym_api] = ACTIONS(1208), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [661] = { - [sym_list_splat_pattern] = STATE(2402), - [sym_primary_expression] = STATE(3025), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1136), - [anon_sym_DOT] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_print] = ACTIONS(1201), - [anon_sym_GT_GT] = ACTIONS(1194), - [anon_sym_COLON] = ACTIONS(1192), - [anon_sym_match] = ACTIONS(1201), - [anon_sym_async] = ACTIONS(1201), - [anon_sym_STAR_STAR] = ACTIONS(1194), - [anon_sym_exec] = ACTIONS(1201), - [anon_sym_EQ] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_AT] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_PIPE] = ACTIONS(1194), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_PERCENT] = ACTIONS(1194), - [anon_sym_SLASH_SLASH] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_CARET] = ACTIONS(1194), - [anon_sym_LT_LT] = ACTIONS(1194), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(1207), - [anon_sym_PLUS_EQ] = ACTIONS(1192), - [anon_sym_DASH_EQ] = ACTIONS(1192), - [anon_sym_STAR_EQ] = ACTIONS(1192), - [anon_sym_SLASH_EQ] = ACTIONS(1192), - [anon_sym_AT_EQ] = ACTIONS(1192), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1192), - [anon_sym_PERCENT_EQ] = ACTIONS(1192), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1192), - [anon_sym_GT_GT_EQ] = ACTIONS(1192), - [anon_sym_LT_LT_EQ] = ACTIONS(1192), - [anon_sym_AMP_EQ] = ACTIONS(1192), - [anon_sym_CARET_EQ] = ACTIONS(1192), - [anon_sym_PIPE_EQ] = ACTIONS(1192), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1209), - [anon_sym_api] = ACTIONS(1201), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_list_splat_pattern] = STATE(2477), + [sym_primary_expression] = STATE(2217), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2227), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(2231), + [anon_sym_print] = ACTIONS(2233), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_if] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_match] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_exec] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_SLASH_SLASH] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2249), + [anon_sym_api] = ACTIONS(2233), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [662] = { - [sym_list_splat_pattern] = STATE(2307), - [sym_primary_expression] = STATE(2095), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_attribute] = STATE(2310), - [sym_subscript] = STATE(2310), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2228), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_print] = ACTIONS(2234), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(2234), - [anon_sym_async] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(836), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(834), - [anon_sym_exec] = ACTIONS(2234), - [anon_sym_LBRACK] = ACTIONS(2236), - [anon_sym_RBRACK] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(834), - [anon_sym_SLASH_SLASH] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2248), - [anon_sym_api] = ACTIONS(2234), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_list_splat_pattern] = STATE(2340), + [sym_primary_expression] = STATE(3038), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1141), + [anon_sym_DOT] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_RPAREN] = ACTIONS(1199), + [anon_sym_COMMA] = ACTIONS(1199), + [anon_sym_as] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_print] = ACTIONS(1208), + [anon_sym_GT_GT] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_match] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_in] = ACTIONS(1204), + [anon_sym_STAR_STAR] = ACTIONS(1402), + [anon_sym_exec] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_AT] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PIPE] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_not] = ACTIONS(1204), + [anon_sym_and] = ACTIONS(1204), + [anon_sym_or] = ACTIONS(1204), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_CARET] = ACTIONS(1402), + [anon_sym_LT_LT] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_is] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_LT_EQ] = ACTIONS(1199), + [anon_sym_EQ_EQ] = ACTIONS(1199), + [anon_sym_BANG_EQ] = ACTIONS(1199), + [anon_sym_GT_EQ] = ACTIONS(1199), + [anon_sym_GT] = ACTIONS(1204), + [anon_sym_LT_GT] = ACTIONS(1199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1216), + [anon_sym_api] = ACTIONS(1208), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [663] = { - [sym_list_splat_pattern] = STATE(2402), - [sym_primary_expression] = STATE(3025), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1136), - [anon_sym_DOT] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1192), - [anon_sym_COMMA] = ACTIONS(1192), - [anon_sym_as] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_print] = ACTIONS(1201), - [anon_sym_GT_GT] = ACTIONS(1391), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_match] = ACTIONS(1201), - [anon_sym_async] = ACTIONS(1201), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1197), - [anon_sym_STAR_STAR] = ACTIONS(1391), - [anon_sym_exec] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_AT] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_PIPE] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_not] = ACTIONS(1197), - [anon_sym_and] = ACTIONS(1197), - [anon_sym_or] = ACTIONS(1197), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_PERCENT] = ACTIONS(1391), - [anon_sym_SLASH_SLASH] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_LT_LT] = ACTIONS(1391), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_is] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(1207), - [anon_sym_LT_EQ] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_BANG_EQ] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_LT_GT] = ACTIONS(1192), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1209), - [anon_sym_api] = ACTIONS(1201), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_list_splat_pattern] = STATE(2326), + [sym_primary_expression] = STATE(2112), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_attribute] = STATE(2374), + [sym_subscript] = STATE(2374), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2255), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_print] = ACTIONS(2261), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_if] = ACTIONS(565), + [anon_sym_match] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(565), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_exec] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_RBRACK] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_SLASH_SLASH] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2277), + [anon_sym_api] = ACTIONS(2261), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [664] = { - [sym_list_splat_pattern] = STATE(2556), - [sym_primary_expression] = STATE(2294), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1293), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(834), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(2256), - [anon_sym_print] = ACTIONS(2258), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_COLON_EQ] = ACTIONS(851), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2258), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(834), - [anon_sym_exec] = ACTIONS(2258), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(834), - [anon_sym_SLASH_SLASH] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(2260), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(2262), - [anon_sym_api] = ACTIONS(2258), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_list_splat_pattern] = STATE(2287), + [sym_primary_expression] = STATE(2100), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(1246), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_print] = ACTIONS(2163), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_if] = ACTIONS(565), + [anon_sym_match] = ACTIONS(2163), + [anon_sym_async] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(565), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_exec] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_SLASH_SLASH] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(2169), + [anon_sym_api] = ACTIONS(2163), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [665] = { - [sym_list_splat_pattern] = STATE(2490), - [sym_primary_expression] = STATE(2237), - [sym_binary_operator] = STATE(2509), - [sym_unary_operator] = STATE(2509), - [sym_attribute] = STATE(2509), - [sym_subscript] = STATE(2509), - [sym_call] = STATE(2509), - [sym_list] = STATE(2509), - [sym_set] = STATE(2509), - [sym_tuple] = STATE(2509), - [sym_dictionary] = STATE(2509), - [sym_list_comprehension] = STATE(2509), - [sym_dictionary_comprehension] = STATE(2509), - [sym_set_comprehension] = STATE(2509), - [sym_generator_expression] = STATE(2509), - [sym_parenthesized_expression] = STATE(2509), - [sym_concatenated_string] = STATE(2509), - [sym_string] = STATE(2110), - [sym_none] = STATE(2509), - [sym_await] = STATE(2509), - [sym_sizeof_expression] = STATE(2509), - [sym_cast_expression] = STATE(2509), - [sym_identifier] = ACTIONS(2202), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(2206), - [anon_sym_print] = ACTIONS(2208), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_if] = ACTIONS(836), - [anon_sym_COLON] = ACTIONS(834), - [anon_sym_match] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(834), - [anon_sym_exec] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_RBRACK] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(834), - [anon_sym_SLASH_SLASH] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(2212), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(2216), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [sym_ellipsis] = ACTIONS(2218), - [anon_sym_None] = ACTIONS(2220), - [sym_integer] = ACTIONS(2202), - [sym_float] = ACTIONS(2218), - [anon_sym_await] = ACTIONS(2222), - [anon_sym_api] = ACTIONS(2208), - [sym_true] = ACTIONS(2202), - [sym_false] = ACTIONS(2202), + [sym_list_splat_pattern] = STATE(2614), + [sym_primary_expression] = STATE(2360), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1302), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_print] = ACTIONS(2221), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(580), + [anon_sym_if] = ACTIONS(565), + [anon_sym_match] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_exec] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_SLASH_SLASH] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(2223), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_api] = ACTIONS(2221), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2224), - [sym_string_start] = ACTIONS(2226), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [666] = { - [sym_list_splat_pattern] = STATE(2402), - [sym_primary_expression] = STATE(3025), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1136), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(867), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_print] = ACTIONS(1201), - [anon_sym_GT_GT] = ACTIONS(836), - [anon_sym_COLON] = ACTIONS(867), - [anon_sym_match] = ACTIONS(1201), - [anon_sym_async] = ACTIONS(1201), - [anon_sym_STAR_STAR] = ACTIONS(836), - [anon_sym_exec] = ACTIONS(1201), - [anon_sym_EQ] = ACTIONS(867), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_AT] = ACTIONS(836), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_PIPE] = ACTIONS(836), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(836), - [anon_sym_SLASH_SLASH] = ACTIONS(836), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_CARET] = ACTIONS(836), - [anon_sym_LT_LT] = ACTIONS(836), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(1207), - [anon_sym_PLUS_EQ] = ACTIONS(867), - [anon_sym_DASH_EQ] = ACTIONS(867), - [anon_sym_STAR_EQ] = ACTIONS(867), - [anon_sym_SLASH_EQ] = ACTIONS(867), - [anon_sym_AT_EQ] = ACTIONS(867), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(867), - [anon_sym_PERCENT_EQ] = ACTIONS(867), - [anon_sym_STAR_STAR_EQ] = ACTIONS(867), - [anon_sym_GT_GT_EQ] = ACTIONS(867), - [anon_sym_LT_LT_EQ] = ACTIONS(867), - [anon_sym_AMP_EQ] = ACTIONS(867), - [anon_sym_CARET_EQ] = ACTIONS(867), - [anon_sym_PIPE_EQ] = ACTIONS(867), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1209), - [anon_sym_api] = ACTIONS(1201), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_list_splat_pattern] = STATE(2340), + [sym_primary_expression] = STATE(3038), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1141), + [anon_sym_DOT] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_COMMA] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_print] = ACTIONS(1208), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_COLON] = ACTIONS(1199), + [anon_sym_match] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_STAR_STAR] = ACTIONS(1201), + [anon_sym_exec] = ACTIONS(1208), + [anon_sym_EQ] = ACTIONS(1199), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_AT] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_SLASH_SLASH] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_PLUS_EQ] = ACTIONS(1199), + [anon_sym_DASH_EQ] = ACTIONS(1199), + [anon_sym_STAR_EQ] = ACTIONS(1199), + [anon_sym_SLASH_EQ] = ACTIONS(1199), + [anon_sym_AT_EQ] = ACTIONS(1199), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1199), + [anon_sym_PERCENT_EQ] = ACTIONS(1199), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1199), + [anon_sym_GT_GT_EQ] = ACTIONS(1199), + [anon_sym_LT_LT_EQ] = ACTIONS(1199), + [anon_sym_AMP_EQ] = ACTIONS(1199), + [anon_sym_CARET_EQ] = ACTIONS(1199), + [anon_sym_PIPE_EQ] = ACTIONS(1199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1216), + [anon_sym_api] = ACTIONS(1208), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [667] = { - [sym_list_splat_pattern] = STATE(2556), - [sym_primary_expression] = STATE(2294), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(1293), - [anon_sym_DOT] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(834), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_as] = ACTIONS(836), - [anon_sym_STAR] = ACTIONS(2256), - [anon_sym_print] = ACTIONS(2258), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_if] = ACTIONS(836), - [anon_sym_match] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2258), - [anon_sym_in] = ACTIONS(836), - [anon_sym_STAR_STAR] = ACTIONS(834), - [anon_sym_exec] = ACTIONS(2258), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_AT] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(836), - [anon_sym_and] = ACTIONS(836), - [anon_sym_or] = ACTIONS(836), - [anon_sym_SLASH] = ACTIONS(836), - [anon_sym_PERCENT] = ACTIONS(834), - [anon_sym_SLASH_SLASH] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_is] = ACTIONS(836), - [anon_sym_LT] = ACTIONS(2260), - [anon_sym_LT_EQ] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_BANG_EQ] = ACTIONS(834), - [anon_sym_GT_EQ] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(836), - [anon_sym_LT_GT] = ACTIONS(834), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(2262), - [anon_sym_api] = ACTIONS(2258), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_list_splat_pattern] = STATE(2614), + [sym_primary_expression] = STATE(2360), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(1302), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_as] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_print] = ACTIONS(2221), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_if] = ACTIONS(565), + [anon_sym_match] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_in] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(563), + [anon_sym_exec] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(565), + [anon_sym_and] = ACTIONS(565), + [anon_sym_or] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_SLASH_SLASH] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_is] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(2223), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_LT_GT] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_api] = ACTIONS(2221), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [668] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4723), - [sym_parenthesized_list_splat] = STATE(4723), - [sym__patterns] = STATE(5363), - [sym_pattern] = STATE(4859), - [sym_tuple_pattern] = STATE(5181), - [sym_list_pattern] = STATE(5181), - [sym_list_splat_pattern] = STATE(2407), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3550), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4887), + [sym__patterns] = STATE(5374), + [sym_pattern] = STATE(4940), + [sym_tuple_pattern] = STATE(5009), + [sym_list_pattern] = STATE(5009), + [sym_list_splat_pattern] = STATE(2304), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3561), [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4645), - [sym_attribute] = STATE(2408), - [sym_subscript] = STATE(2408), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5235), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_RPAREN] = ACTIONS(1261), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1219), - [anon_sym_match] = ACTIONS(1219), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_exec] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_api] = ACTIONS(1219), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4501), + [sym_attribute] = STATE(2305), + [sym_subscript] = STATE(2305), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5249), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_RPAREN] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1226), + [anon_sym_match] = ACTIONS(1226), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_exec] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1250), + [anon_sym_api] = ACTIONS(1226), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [669] = { - [sym_named_expression] = STATE(2255), - [sym__named_expression_lhs] = STATE(5551), - [sym_list_splat] = STATE(4718), - [sym_dictionary_splat] = STATE(4925), - [sym_parenthesized_list_splat] = STATE(4718), - [sym_list_splat_pattern] = STATE(2133), - [sym_as_pattern] = STATE(2255), - [sym_expression] = STATE(3426), - [sym_primary_expression] = STATE(1944), - [sym_not_operator] = STATE(2255), - [sym_boolean_operator] = STATE(2255), - [sym_binary_operator] = STATE(2246), - [sym_unary_operator] = STATE(2246), - [sym_comparison_operator] = STATE(2255), - [sym_lambda] = STATE(2255), - [sym_yield] = STATE(4718), - [sym_attribute] = STATE(2246), - [sym_subscript] = STATE(2246), - [sym_call] = STATE(2246), - [sym_list] = STATE(2246), - [sym_set] = STATE(2246), - [sym_tuple] = STATE(2246), - [sym_dictionary] = STATE(2246), - [sym_pair] = STATE(3939), - [sym_list_comprehension] = STATE(2246), - [sym_dictionary_comprehension] = STATE(2246), - [sym_set_comprehension] = STATE(2246), - [sym_generator_expression] = STATE(2246), - [sym_parenthesized_expression] = STATE(2246), - [sym__collection_elements] = STATE(5498), - [sym_conditional_expression] = STATE(2255), - [sym_concatenated_string] = STATE(2246), - [sym_string] = STATE(1984), - [sym_none] = STATE(2246), - [sym_await] = STATE(2246), - [sym_new_expression] = STATE(2255), - [sym_sizeof_expression] = STATE(2246), - [sym_cast_expression] = STATE(2246), - [sym_identifier] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_print] = ACTIONS(2276), - [anon_sym_match] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_not] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_TILDE] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_lambda] = ACTIONS(2286), - [anon_sym_yield] = ACTIONS(2288), - [sym_ellipsis] = ACTIONS(2180), - [anon_sym_None] = ACTIONS(2182), - [sym_integer] = ACTIONS(2164), - [sym_float] = ACTIONS(2180), - [anon_sym_await] = ACTIONS(2290), - [anon_sym_api] = ACTIONS(2276), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat] = STATE(4684), + [sym_parenthesized_list_splat] = STATE(4684), + [sym__patterns] = STATE(5384), + [sym_pattern] = STATE(4690), + [sym_tuple_pattern] = STATE(5118), + [sym_list_pattern] = STATE(5118), + [sym_list_splat_pattern] = STATE(2378), + [sym_as_pattern] = STATE(2375), + [sym_expression] = STATE(3515), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_yield] = STATE(4684), + [sym_attribute] = STATE(2380), + [sym_subscript] = STATE(2380), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym__collection_elements] = STATE(5439), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_print] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_exec] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_RBRACK] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_api] = ACTIONS(2293), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_sizeof] = ACTIONS(2186), - [sym_string_start] = ACTIONS(2188), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [670] = { - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_expression_list] = STATE(5145), - [sym_pattern] = STATE(3090), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3773), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5145), - [sym_augmented_assignment] = STATE(5145), - [sym_pattern_list] = STATE(3107), - [sym__right_hand_side] = STATE(5145), - [sym_yield] = STATE(5145), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_expression_list] = STATE(5034), + [sym_pattern] = STATE(3109), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3774), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(5034), + [sym_augmented_assignment] = STATE(5034), + [sym_pattern_list] = STATE(3147), + [sym__right_hand_side] = STATE(5034), + [sym_yield] = STATE(5034), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), [sym_identifier] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(358), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), - [anon_sym_exec] = ACTIONS(358), + [anon_sym_print] = ACTIONS(363), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), + [anon_sym_exec] = ACTIONS(363), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), @@ -88989,5920 +89483,5924 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym_string_start] = ACTIONS(105), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym_string_start] = ACTIONS(107), }, [671] = { - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_expression_list] = STATE(5149), - [sym_pattern] = STATE(3090), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3773), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5149), - [sym_augmented_assignment] = STATE(5149), - [sym_pattern_list] = STATE(3107), - [sym__right_hand_side] = STATE(5149), - [sym_yield] = STATE(5149), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(358), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), - [anon_sym_exec] = ACTIONS(358), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(73), - [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), - [anon_sym_None] = ACTIONS(79), - [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4819), + [sym_parenthesized_list_splat] = STATE(4822), + [sym__patterns] = STATE(5243), + [sym_pattern] = STATE(4940), + [sym_tuple_pattern] = STATE(5009), + [sym_list_pattern] = STATE(5009), + [sym_list_splat_pattern] = STATE(2304), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3504), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4922), + [sym_attribute] = STATE(2305), + [sym_subscript] = STATE(2305), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5475), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_RPAREN] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1226), + [anon_sym_match] = ACTIONS(1226), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_exec] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1250), + [anon_sym_api] = ACTIONS(1226), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym_string_start] = ACTIONS(105), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [672] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4723), - [sym_parenthesized_list_splat] = STATE(4723), - [sym__patterns] = STATE(5363), - [sym_pattern] = STATE(4859), - [sym_tuple_pattern] = STATE(5181), - [sym_list_pattern] = STATE(5181), - [sym_list_splat_pattern] = STATE(2407), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3556), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4887), + [sym__patterns] = STATE(5374), + [sym_pattern] = STATE(4940), + [sym_tuple_pattern] = STATE(5009), + [sym_list_pattern] = STATE(5009), + [sym_list_splat_pattern] = STATE(2304), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3530), [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4578), - [sym_attribute] = STATE(2408), - [sym_subscript] = STATE(2408), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5484), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_RPAREN] = ACTIONS(2294), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1219), - [anon_sym_match] = ACTIONS(1219), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_exec] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_api] = ACTIONS(1219), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4785), + [sym_attribute] = STATE(2305), + [sym_subscript] = STATE(2305), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5212), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_RPAREN] = ACTIONS(2311), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1226), + [anon_sym_match] = ACTIONS(1226), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_exec] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1250), + [anon_sym_api] = ACTIONS(1226), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [673] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4518), - [sym_parenthesized_list_splat] = STATE(4518), - [sym__patterns] = STATE(5315), - [sym_pattern] = STATE(4522), - [sym_tuple_pattern] = STATE(5131), - [sym_list_pattern] = STATE(5131), - [sym_list_splat_pattern] = STATE(2315), - [sym_as_pattern] = STATE(2314), - [sym_expression] = STATE(3536), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_yield] = STATE(4518), - [sym_attribute] = STATE(2317), - [sym_subscript] = STATE(2317), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym__collection_elements] = STATE(5340), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_print] = ACTIONS(2302), - [anon_sym_match] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_exec] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_RBRACK] = ACTIONS(2306), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2316), - [anon_sym_api] = ACTIONS(2302), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat] = STATE(4684), + [sym_parenthesized_list_splat] = STATE(4684), + [sym__patterns] = STATE(5235), + [sym_pattern] = STATE(4690), + [sym_tuple_pattern] = STATE(5118), + [sym_list_pattern] = STATE(5118), + [sym_list_splat_pattern] = STATE(2378), + [sym_as_pattern] = STATE(2375), + [sym_expression] = STATE(3539), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_yield] = STATE(4684), + [sym_attribute] = STATE(2380), + [sym_subscript] = STATE(2380), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym__collection_elements] = STATE(5259), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_print] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_exec] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_RBRACK] = ACTIONS(2313), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_api] = ACTIONS(2293), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [674] = { - [sym_named_expression] = STATE(2255), + [sym_named_expression] = STATE(2171), [sym__named_expression_lhs] = STATE(5551), - [sym_list_splat] = STATE(4718), - [sym_dictionary_splat] = STATE(4666), - [sym_parenthesized_list_splat] = STATE(4718), - [sym_list_splat_pattern] = STATE(2133), - [sym_as_pattern] = STATE(2255), - [sym_expression] = STATE(3375), - [sym_primary_expression] = STATE(1944), - [sym_not_operator] = STATE(2255), - [sym_boolean_operator] = STATE(2255), - [sym_binary_operator] = STATE(2246), - [sym_unary_operator] = STATE(2246), - [sym_comparison_operator] = STATE(2255), - [sym_lambda] = STATE(2255), - [sym_yield] = STATE(4718), - [sym_attribute] = STATE(2246), - [sym_subscript] = STATE(2246), - [sym_call] = STATE(2246), - [sym_list] = STATE(2246), - [sym_set] = STATE(2246), - [sym_tuple] = STATE(2246), - [sym_dictionary] = STATE(2246), - [sym_pair] = STATE(3918), - [sym_list_comprehension] = STATE(2246), - [sym_dictionary_comprehension] = STATE(2246), - [sym_set_comprehension] = STATE(2246), - [sym_generator_expression] = STATE(2246), - [sym_parenthesized_expression] = STATE(2246), - [sym__collection_elements] = STATE(5418), - [sym_conditional_expression] = STATE(2255), - [sym_concatenated_string] = STATE(2246), - [sym_string] = STATE(1984), - [sym_none] = STATE(2246), - [sym_await] = STATE(2246), - [sym_new_expression] = STATE(2255), - [sym_sizeof_expression] = STATE(2246), - [sym_cast_expression] = STATE(2246), - [sym_identifier] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_COMMA] = ACTIONS(2320), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_print] = ACTIONS(2276), - [anon_sym_match] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2322), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_not] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_TILDE] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_lambda] = ACTIONS(2286), - [anon_sym_yield] = ACTIONS(2288), - [sym_ellipsis] = ACTIONS(2180), - [anon_sym_None] = ACTIONS(2182), - [sym_integer] = ACTIONS(2164), - [sym_float] = ACTIONS(2180), - [anon_sym_await] = ACTIONS(2290), - [anon_sym_api] = ACTIONS(2276), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), + [sym_list_splat] = STATE(4519), + [sym_dictionary_splat] = STATE(4636), + [sym_parenthesized_list_splat] = STATE(4519), + [sym_list_splat_pattern] = STATE(2272), + [sym_as_pattern] = STATE(2171), + [sym_expression] = STATE(3446), + [sym_primary_expression] = STATE(1945), + [sym_not_operator] = STATE(2171), + [sym_boolean_operator] = STATE(2171), + [sym_binary_operator] = STATE(2168), + [sym_unary_operator] = STATE(2168), + [sym_comparison_operator] = STATE(2171), + [sym_lambda] = STATE(2171), + [sym_yield] = STATE(4519), + [sym_attribute] = STATE(2168), + [sym_subscript] = STATE(2168), + [sym_ellipsis] = STATE(2168), + [sym_call] = STATE(2168), + [sym_list] = STATE(2168), + [sym_set] = STATE(2168), + [sym_tuple] = STATE(2168), + [sym_dictionary] = STATE(2168), + [sym_pair] = STATE(3866), + [sym_list_comprehension] = STATE(2168), + [sym_dictionary_comprehension] = STATE(2168), + [sym_set_comprehension] = STATE(2168), + [sym_generator_expression] = STATE(2168), + [sym_parenthesized_expression] = STATE(2168), + [sym__collection_elements] = STATE(5332), + [sym_conditional_expression] = STATE(2171), + [sym_concatenated_string] = STATE(2168), + [sym_string] = STATE(2004), + [sym_none] = STATE(2168), + [sym_await] = STATE(2168), + [sym_new_expression] = STATE(2171), + [sym_sizeof_expression] = STATE(2168), + [sym_cast_expression] = STATE(2168), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_COMMA] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_print] = ACTIONS(2323), + [anon_sym_match] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(2323), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2327), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_LT] = ACTIONS(2331), + [anon_sym_lambda] = ACTIONS(2333), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2201), + [anon_sym_None] = ACTIONS(2203), + [sym_integer] = ACTIONS(2185), + [sym_float] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2337), + [anon_sym_api] = ACTIONS(2323), + [sym_true] = ACTIONS(2185), + [sym_false] = ACTIONS(2185), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_sizeof] = ACTIONS(2186), - [sym_string_start] = ACTIONS(2188), + [anon_sym_new] = ACTIONS(2339), + [anon_sym_sizeof] = ACTIONS(2209), + [sym_string_start] = ACTIONS(2211), }, [675] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4704), - [sym_parenthesized_list_splat] = STATE(4705), - [sym__patterns] = STATE(5433), - [sym_pattern] = STATE(4859), - [sym_tuple_pattern] = STATE(5181), - [sym_list_pattern] = STATE(5181), - [sym_list_splat_pattern] = STATE(2407), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3498), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4897), + [sym_parenthesized_list_splat] = STATE(4898), + [sym__patterns] = STATE(5206), + [sym_pattern] = STATE(4940), + [sym_tuple_pattern] = STATE(5009), + [sym_list_pattern] = STATE(5009), + [sym_list_splat_pattern] = STATE(2304), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3482), [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4582), - [sym_attribute] = STATE(2408), - [sym_subscript] = STATE(2408), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5241), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_RPAREN] = ACTIONS(2324), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1219), - [anon_sym_match] = ACTIONS(1219), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_exec] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_api] = ACTIONS(1219), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4592), + [sym_attribute] = STATE(2305), + [sym_subscript] = STATE(2305), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5550), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_RPAREN] = ACTIONS(2341), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1226), + [anon_sym_match] = ACTIONS(1226), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_exec] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1250), + [anon_sym_api] = ACTIONS(1226), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [676] = { - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_expression_list] = STATE(5126), - [sym_pattern] = STATE(3090), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(1764), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3773), - [sym_primary_expression] = STATE(1960), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_assignment] = STATE(5126), - [sym_augmented_assignment] = STATE(5126), - [sym_pattern_list] = STATE(3107), - [sym__right_hand_side] = STATE(5126), - [sym_yield] = STATE(5126), - [sym_attribute] = STATE(1765), - [sym_subscript] = STATE(1765), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(358), - [anon_sym_match] = ACTIONS(358), - [anon_sym_async] = ACTIONS(358), - [anon_sym_exec] = ACTIONS(358), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(73), - [anon_sym_yield] = ACTIONS(75), - [sym_ellipsis] = ACTIONS(77), - [anon_sym_None] = ACTIONS(79), - [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(83), - [anon_sym_api] = ACTIONS(358), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4887), + [sym__patterns] = STATE(5374), + [sym_pattern] = STATE(4940), + [sym_tuple_pattern] = STATE(5009), + [sym_list_pattern] = STATE(5009), + [sym_list_splat_pattern] = STATE(2304), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3496), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4675), + [sym_attribute] = STATE(2305), + [sym_subscript] = STATE(2305), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5398), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_RPAREN] = ACTIONS(2343), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1226), + [anon_sym_match] = ACTIONS(1226), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_exec] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1250), + [anon_sym_api] = ACTIONS(1226), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym_string_start] = ACTIONS(105), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [677] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4513), - [sym_parenthesized_list_splat] = STATE(4521), - [sym__patterns] = STATE(5215), - [sym_pattern] = STATE(4859), - [sym_tuple_pattern] = STATE(5181), - [sym_list_pattern] = STATE(5181), - [sym_list_splat_pattern] = STATE(2407), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3552), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4650), - [sym_attribute] = STATE(2408), - [sym_subscript] = STATE(2408), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5225), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_RPAREN] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1219), - [anon_sym_match] = ACTIONS(1219), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_exec] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_api] = ACTIONS(1219), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat] = STATE(4684), + [sym_parenthesized_list_splat] = STATE(4684), + [sym__patterns] = STATE(5384), + [sym_pattern] = STATE(4690), + [sym_tuple_pattern] = STATE(5118), + [sym_list_pattern] = STATE(5118), + [sym_list_splat_pattern] = STATE(2378), + [sym_as_pattern] = STATE(2375), + [sym_expression] = STATE(3544), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_yield] = STATE(4684), + [sym_attribute] = STATE(2380), + [sym_subscript] = STATE(2380), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym__collection_elements] = STATE(5252), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_print] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_exec] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_RBRACK] = ACTIONS(2345), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_api] = ACTIONS(2293), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [678] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4723), - [sym_parenthesized_list_splat] = STATE(4723), - [sym__patterns] = STATE(5363), - [sym_pattern] = STATE(4859), - [sym_tuple_pattern] = STATE(5181), - [sym_list_pattern] = STATE(5181), - [sym_list_splat_pattern] = STATE(2407), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3516), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4665), - [sym_attribute] = STATE(2408), - [sym_subscript] = STATE(2408), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5362), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_RPAREN] = ACTIONS(2326), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1219), - [anon_sym_match] = ACTIONS(1219), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_exec] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_api] = ACTIONS(1219), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_named_expression] = STATE(2171), + [sym__named_expression_lhs] = STATE(5551), + [sym_list_splat] = STATE(4519), + [sym_dictionary_splat] = STATE(4796), + [sym_parenthesized_list_splat] = STATE(4519), + [sym_list_splat_pattern] = STATE(2272), + [sym_as_pattern] = STATE(2171), + [sym_expression] = STATE(3451), + [sym_primary_expression] = STATE(1945), + [sym_not_operator] = STATE(2171), + [sym_boolean_operator] = STATE(2171), + [sym_binary_operator] = STATE(2168), + [sym_unary_operator] = STATE(2168), + [sym_comparison_operator] = STATE(2171), + [sym_lambda] = STATE(2171), + [sym_yield] = STATE(4519), + [sym_attribute] = STATE(2168), + [sym_subscript] = STATE(2168), + [sym_ellipsis] = STATE(2168), + [sym_call] = STATE(2168), + [sym_list] = STATE(2168), + [sym_set] = STATE(2168), + [sym_tuple] = STATE(2168), + [sym_dictionary] = STATE(2168), + [sym_pair] = STATE(3873), + [sym_list_comprehension] = STATE(2168), + [sym_dictionary_comprehension] = STATE(2168), + [sym_set_comprehension] = STATE(2168), + [sym_generator_expression] = STATE(2168), + [sym_parenthesized_expression] = STATE(2168), + [sym__collection_elements] = STATE(5276), + [sym_conditional_expression] = STATE(2171), + [sym_concatenated_string] = STATE(2168), + [sym_string] = STATE(2004), + [sym_none] = STATE(2168), + [sym_await] = STATE(2168), + [sym_new_expression] = STATE(2171), + [sym_sizeof_expression] = STATE(2168), + [sym_cast_expression] = STATE(2168), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_COMMA] = ACTIONS(2347), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_print] = ACTIONS(2323), + [anon_sym_match] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(2323), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_LT] = ACTIONS(2331), + [anon_sym_lambda] = ACTIONS(2333), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2201), + [anon_sym_None] = ACTIONS(2203), + [sym_integer] = ACTIONS(2185), + [sym_float] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2337), + [anon_sym_api] = ACTIONS(2323), + [sym_true] = ACTIONS(2185), + [sym_false] = ACTIONS(2185), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(2339), + [anon_sym_sizeof] = ACTIONS(2209), + [sym_string_start] = ACTIONS(2211), }, [679] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4518), - [sym_parenthesized_list_splat] = STATE(4518), - [sym__patterns] = STATE(5525), - [sym_pattern] = STATE(4522), - [sym_tuple_pattern] = STATE(5131), - [sym_list_pattern] = STATE(5131), - [sym_list_splat_pattern] = STATE(2315), - [sym_as_pattern] = STATE(2314), - [sym_expression] = STATE(3538), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_yield] = STATE(4518), - [sym_attribute] = STATE(2317), - [sym_subscript] = STATE(2317), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym__collection_elements] = STATE(5282), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_print] = ACTIONS(2302), - [anon_sym_match] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_exec] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_RBRACK] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2316), - [anon_sym_api] = ACTIONS(2302), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat] = STATE(4684), + [sym_parenthesized_list_splat] = STATE(4684), + [sym__patterns] = STATE(5384), + [sym_pattern] = STATE(4690), + [sym_tuple_pattern] = STATE(5118), + [sym_list_pattern] = STATE(5118), + [sym_list_splat_pattern] = STATE(2378), + [sym_as_pattern] = STATE(2375), + [sym_expression] = STATE(3515), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_yield] = STATE(4684), + [sym_attribute] = STATE(2380), + [sym_subscript] = STATE(2380), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym__collection_elements] = STATE(5439), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_print] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_exec] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_RBRACK] = ACTIONS(2351), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_api] = ACTIONS(2293), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [680] = { - [sym_named_expression] = STATE(2255), + [sym_named_expression] = STATE(2171), [sym__named_expression_lhs] = STATE(5551), - [sym_list_splat] = STATE(4718), - [sym_dictionary_splat] = STATE(4588), - [sym_parenthesized_list_splat] = STATE(4718), - [sym_list_splat_pattern] = STATE(2133), - [sym_as_pattern] = STATE(2255), - [sym_expression] = STATE(3391), - [sym_primary_expression] = STATE(1944), - [sym_not_operator] = STATE(2255), - [sym_boolean_operator] = STATE(2255), - [sym_binary_operator] = STATE(2246), - [sym_unary_operator] = STATE(2246), - [sym_comparison_operator] = STATE(2255), - [sym_lambda] = STATE(2255), - [sym_yield] = STATE(4718), - [sym_attribute] = STATE(2246), - [sym_subscript] = STATE(2246), - [sym_call] = STATE(2246), - [sym_list] = STATE(2246), - [sym_set] = STATE(2246), - [sym_tuple] = STATE(2246), - [sym_dictionary] = STATE(2246), - [sym_pair] = STATE(3966), - [sym_list_comprehension] = STATE(2246), - [sym_dictionary_comprehension] = STATE(2246), - [sym_set_comprehension] = STATE(2246), - [sym_generator_expression] = STATE(2246), - [sym_parenthesized_expression] = STATE(2246), - [sym__collection_elements] = STATE(5325), - [sym_conditional_expression] = STATE(2255), - [sym_concatenated_string] = STATE(2246), - [sym_string] = STATE(1984), - [sym_none] = STATE(2246), - [sym_await] = STATE(2246), - [sym_new_expression] = STATE(2255), - [sym_sizeof_expression] = STATE(2246), - [sym_cast_expression] = STATE(2246), - [sym_identifier] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_COMMA] = ACTIONS(2330), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_print] = ACTIONS(2276), - [anon_sym_match] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_not] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_TILDE] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_lambda] = ACTIONS(2286), - [anon_sym_yield] = ACTIONS(2288), - [sym_ellipsis] = ACTIONS(2180), - [anon_sym_None] = ACTIONS(2182), - [sym_integer] = ACTIONS(2164), - [sym_float] = ACTIONS(2180), - [anon_sym_await] = ACTIONS(2290), - [anon_sym_api] = ACTIONS(2276), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), + [sym_list_splat] = STATE(4519), + [sym_dictionary_splat] = STATE(4833), + [sym_parenthesized_list_splat] = STATE(4519), + [sym_list_splat_pattern] = STATE(2272), + [sym_as_pattern] = STATE(2171), + [sym_expression] = STATE(3441), + [sym_primary_expression] = STATE(1945), + [sym_not_operator] = STATE(2171), + [sym_boolean_operator] = STATE(2171), + [sym_binary_operator] = STATE(2168), + [sym_unary_operator] = STATE(2168), + [sym_comparison_operator] = STATE(2171), + [sym_lambda] = STATE(2171), + [sym_yield] = STATE(4519), + [sym_attribute] = STATE(2168), + [sym_subscript] = STATE(2168), + [sym_ellipsis] = STATE(2168), + [sym_call] = STATE(2168), + [sym_list] = STATE(2168), + [sym_set] = STATE(2168), + [sym_tuple] = STATE(2168), + [sym_dictionary] = STATE(2168), + [sym_pair] = STATE(3955), + [sym_list_comprehension] = STATE(2168), + [sym_dictionary_comprehension] = STATE(2168), + [sym_set_comprehension] = STATE(2168), + [sym_generator_expression] = STATE(2168), + [sym_parenthesized_expression] = STATE(2168), + [sym__collection_elements] = STATE(5360), + [sym_conditional_expression] = STATE(2171), + [sym_concatenated_string] = STATE(2168), + [sym_string] = STATE(2004), + [sym_none] = STATE(2168), + [sym_await] = STATE(2168), + [sym_new_expression] = STATE(2171), + [sym_sizeof_expression] = STATE(2168), + [sym_cast_expression] = STATE(2168), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_COMMA] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_print] = ACTIONS(2323), + [anon_sym_match] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(2323), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_LT] = ACTIONS(2331), + [anon_sym_lambda] = ACTIONS(2333), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2201), + [anon_sym_None] = ACTIONS(2203), + [sym_integer] = ACTIONS(2185), + [sym_float] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2337), + [anon_sym_api] = ACTIONS(2323), + [sym_true] = ACTIONS(2185), + [sym_false] = ACTIONS(2185), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_sizeof] = ACTIONS(2186), - [sym_string_start] = ACTIONS(2188), + [anon_sym_new] = ACTIONS(2339), + [anon_sym_sizeof] = ACTIONS(2209), + [sym_string_start] = ACTIONS(2211), }, [681] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4723), - [sym_parenthesized_list_splat] = STATE(4723), - [sym__patterns] = STATE(5363), - [sym_pattern] = STATE(4859), - [sym_tuple_pattern] = STATE(5181), - [sym_list_pattern] = STATE(5181), - [sym_list_splat_pattern] = STATE(2407), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3556), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4887), + [sym__patterns] = STATE(5374), + [sym_pattern] = STATE(4940), + [sym_tuple_pattern] = STATE(5009), + [sym_list_pattern] = STATE(5009), + [sym_list_splat_pattern] = STATE(2304), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3530), [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4578), - [sym_attribute] = STATE(2408), - [sym_subscript] = STATE(2408), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5484), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_RPAREN] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1219), - [anon_sym_match] = ACTIONS(1219), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_exec] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_api] = ACTIONS(1219), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4785), + [sym_attribute] = STATE(2305), + [sym_subscript] = STATE(2305), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5212), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_RPAREN] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1226), + [anon_sym_match] = ACTIONS(1226), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_exec] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1250), + [anon_sym_api] = ACTIONS(1226), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [682] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4518), - [sym_parenthesized_list_splat] = STATE(4518), - [sym__patterns] = STATE(5499), - [sym_pattern] = STATE(4522), - [sym_tuple_pattern] = STATE(5131), - [sym_list_pattern] = STATE(5131), - [sym_list_splat_pattern] = STATE(2315), - [sym_as_pattern] = STATE(2314), - [sym_expression] = STATE(3540), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_yield] = STATE(4518), - [sym_attribute] = STATE(2317), - [sym_subscript] = STATE(2317), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym__collection_elements] = STATE(5243), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_print] = ACTIONS(2302), - [anon_sym_match] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_exec] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_RBRACK] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2316), - [anon_sym_api] = ACTIONS(2302), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_named_expression] = STATE(2171), + [sym__named_expression_lhs] = STATE(5551), + [sym_list_splat] = STATE(4519), + [sym_dictionary_splat] = STATE(4594), + [sym_parenthesized_list_splat] = STATE(4519), + [sym_list_splat_pattern] = STATE(2272), + [sym_as_pattern] = STATE(2171), + [sym_expression] = STATE(3456), + [sym_primary_expression] = STATE(1945), + [sym_not_operator] = STATE(2171), + [sym_boolean_operator] = STATE(2171), + [sym_binary_operator] = STATE(2168), + [sym_unary_operator] = STATE(2168), + [sym_comparison_operator] = STATE(2171), + [sym_lambda] = STATE(2171), + [sym_yield] = STATE(4519), + [sym_attribute] = STATE(2168), + [sym_subscript] = STATE(2168), + [sym_ellipsis] = STATE(2168), + [sym_call] = STATE(2168), + [sym_list] = STATE(2168), + [sym_set] = STATE(2168), + [sym_tuple] = STATE(2168), + [sym_dictionary] = STATE(2168), + [sym_pair] = STATE(3926), + [sym_list_comprehension] = STATE(2168), + [sym_dictionary_comprehension] = STATE(2168), + [sym_set_comprehension] = STATE(2168), + [sym_generator_expression] = STATE(2168), + [sym_parenthesized_expression] = STATE(2168), + [sym__collection_elements] = STATE(5465), + [sym_conditional_expression] = STATE(2171), + [sym_concatenated_string] = STATE(2168), + [sym_string] = STATE(2004), + [sym_none] = STATE(2168), + [sym_await] = STATE(2168), + [sym_new_expression] = STATE(2171), + [sym_sizeof_expression] = STATE(2168), + [sym_cast_expression] = STATE(2168), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_COMMA] = ACTIONS(2359), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_print] = ACTIONS(2323), + [anon_sym_match] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(2323), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_LT] = ACTIONS(2331), + [anon_sym_lambda] = ACTIONS(2333), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2201), + [anon_sym_None] = ACTIONS(2203), + [sym_integer] = ACTIONS(2185), + [sym_float] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2337), + [anon_sym_api] = ACTIONS(2323), + [sym_true] = ACTIONS(2185), + [sym_false] = ACTIONS(2185), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(2339), + [anon_sym_sizeof] = ACTIONS(2209), + [sym_string_start] = ACTIONS(2211), }, [683] = { - [sym_named_expression] = STATE(2255), - [sym__named_expression_lhs] = STATE(5551), - [sym_list_splat] = STATE(4718), - [sym_dictionary_splat] = STATE(4584), - [sym_parenthesized_list_splat] = STATE(4718), - [sym_list_splat_pattern] = STATE(2133), - [sym_as_pattern] = STATE(2255), - [sym_expression] = STATE(3407), - [sym_primary_expression] = STATE(1944), - [sym_not_operator] = STATE(2255), - [sym_boolean_operator] = STATE(2255), - [sym_binary_operator] = STATE(2246), - [sym_unary_operator] = STATE(2246), - [sym_comparison_operator] = STATE(2255), - [sym_lambda] = STATE(2255), - [sym_yield] = STATE(4718), - [sym_attribute] = STATE(2246), - [sym_subscript] = STATE(2246), - [sym_call] = STATE(2246), - [sym_list] = STATE(2246), - [sym_set] = STATE(2246), - [sym_tuple] = STATE(2246), - [sym_dictionary] = STATE(2246), - [sym_pair] = STATE(3967), - [sym_list_comprehension] = STATE(2246), - [sym_dictionary_comprehension] = STATE(2246), - [sym_set_comprehension] = STATE(2246), - [sym_generator_expression] = STATE(2246), - [sym_parenthesized_expression] = STATE(2246), - [sym__collection_elements] = STATE(5536), - [sym_conditional_expression] = STATE(2255), - [sym_concatenated_string] = STATE(2246), - [sym_string] = STATE(1984), - [sym_none] = STATE(2246), - [sym_await] = STATE(2246), - [sym_new_expression] = STATE(2255), - [sym_sizeof_expression] = STATE(2246), - [sym_cast_expression] = STATE(2246), - [sym_identifier] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_COMMA] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_print] = ACTIONS(2276), - [anon_sym_match] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2340), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_not] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_TILDE] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_lambda] = ACTIONS(2286), - [anon_sym_yield] = ACTIONS(2288), - [sym_ellipsis] = ACTIONS(2180), - [anon_sym_None] = ACTIONS(2182), - [sym_integer] = ACTIONS(2164), - [sym_float] = ACTIONS(2180), - [anon_sym_await] = ACTIONS(2290), - [anon_sym_api] = ACTIONS(2276), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4887), + [sym__patterns] = STATE(5243), + [sym_pattern] = STATE(4940), + [sym_tuple_pattern] = STATE(5009), + [sym_list_pattern] = STATE(5009), + [sym_list_splat_pattern] = STATE(2304), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3530), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4785), + [sym_attribute] = STATE(2305), + [sym_subscript] = STATE(2305), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5212), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_RPAREN] = ACTIONS(1222), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1226), + [anon_sym_match] = ACTIONS(1226), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_exec] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1250), + [anon_sym_api] = ACTIONS(1226), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_sizeof] = ACTIONS(2186), - [sym_string_start] = ACTIONS(2188), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [684] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4518), - [sym_parenthesized_list_splat] = STATE(4518), - [sym__patterns] = STATE(5525), - [sym_pattern] = STATE(4522), - [sym_tuple_pattern] = STATE(5131), - [sym_list_pattern] = STATE(5131), - [sym_list_splat_pattern] = STATE(2315), - [sym_as_pattern] = STATE(2314), - [sym_expression] = STATE(3472), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_yield] = STATE(4518), - [sym_attribute] = STATE(2317), - [sym_subscript] = STATE(2317), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym__collection_elements] = STATE(5547), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_print] = ACTIONS(2302), - [anon_sym_match] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_exec] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_RBRACK] = ACTIONS(2342), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2316), - [anon_sym_api] = ACTIONS(2302), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat] = STATE(4684), + [sym_parenthesized_list_splat] = STATE(4684), + [sym__patterns] = STATE(5384), + [sym_pattern] = STATE(4690), + [sym_tuple_pattern] = STATE(5118), + [sym_list_pattern] = STATE(5118), + [sym_list_splat_pattern] = STATE(2378), + [sym_as_pattern] = STATE(2375), + [sym_expression] = STATE(3554), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_yield] = STATE(4684), + [sym_attribute] = STATE(2380), + [sym_subscript] = STATE(2380), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym__collection_elements] = STATE(5416), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_print] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_exec] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_RBRACK] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_api] = ACTIONS(2293), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [685] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4518), - [sym_parenthesized_list_splat] = STATE(4518), - [sym__patterns] = STATE(5525), - [sym_pattern] = STATE(4522), - [sym_tuple_pattern] = STATE(5131), - [sym_list_pattern] = STATE(5131), - [sym_list_splat_pattern] = STATE(2315), - [sym_as_pattern] = STATE(2314), - [sym_expression] = STATE(3545), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_yield] = STATE(4518), - [sym_attribute] = STATE(2317), - [sym_subscript] = STATE(2317), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym__collection_elements] = STATE(5375), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_print] = ACTIONS(2302), - [anon_sym_match] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_exec] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_RBRACK] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2316), - [anon_sym_api] = ACTIONS(2302), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_named_expression] = STATE(2171), + [sym__named_expression_lhs] = STATE(5551), + [sym_list_splat] = STATE(4519), + [sym_dictionary_splat] = STATE(4648), + [sym_parenthesized_list_splat] = STATE(4519), + [sym_list_splat_pattern] = STATE(2272), + [sym_as_pattern] = STATE(2171), + [sym_expression] = STATE(3458), + [sym_primary_expression] = STATE(1945), + [sym_not_operator] = STATE(2171), + [sym_boolean_operator] = STATE(2171), + [sym_binary_operator] = STATE(2168), + [sym_unary_operator] = STATE(2168), + [sym_comparison_operator] = STATE(2171), + [sym_lambda] = STATE(2171), + [sym_yield] = STATE(4519), + [sym_attribute] = STATE(2168), + [sym_subscript] = STATE(2168), + [sym_ellipsis] = STATE(2168), + [sym_call] = STATE(2168), + [sym_list] = STATE(2168), + [sym_set] = STATE(2168), + [sym_tuple] = STATE(2168), + [sym_dictionary] = STATE(2168), + [sym_pair] = STATE(3936), + [sym_list_comprehension] = STATE(2168), + [sym_dictionary_comprehension] = STATE(2168), + [sym_set_comprehension] = STATE(2168), + [sym_generator_expression] = STATE(2168), + [sym_parenthesized_expression] = STATE(2168), + [sym__collection_elements] = STATE(5220), + [sym_conditional_expression] = STATE(2171), + [sym_concatenated_string] = STATE(2168), + [sym_string] = STATE(2004), + [sym_none] = STATE(2168), + [sym_await] = STATE(2168), + [sym_new_expression] = STATE(2171), + [sym_sizeof_expression] = STATE(2168), + [sym_cast_expression] = STATE(2168), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_COMMA] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_print] = ACTIONS(2323), + [anon_sym_match] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(2323), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2367), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_LT] = ACTIONS(2331), + [anon_sym_lambda] = ACTIONS(2333), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2201), + [anon_sym_None] = ACTIONS(2203), + [sym_integer] = ACTIONS(2185), + [sym_float] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2337), + [anon_sym_api] = ACTIONS(2323), + [sym_true] = ACTIONS(2185), + [sym_false] = ACTIONS(2185), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(2339), + [anon_sym_sizeof] = ACTIONS(2209), + [sym_string_start] = ACTIONS(2211), }, [686] = { - [sym_named_expression] = STATE(2255), - [sym__named_expression_lhs] = STATE(5551), - [sym_list_splat] = STATE(4718), - [sym_dictionary_splat] = STATE(4639), - [sym_parenthesized_list_splat] = STATE(4718), - [sym_list_splat_pattern] = STATE(2133), - [sym_as_pattern] = STATE(2255), - [sym_expression] = STATE(3415), - [sym_primary_expression] = STATE(1944), - [sym_not_operator] = STATE(2255), - [sym_boolean_operator] = STATE(2255), - [sym_binary_operator] = STATE(2246), - [sym_unary_operator] = STATE(2246), - [sym_comparison_operator] = STATE(2255), - [sym_lambda] = STATE(2255), - [sym_yield] = STATE(4718), - [sym_attribute] = STATE(2246), - [sym_subscript] = STATE(2246), - [sym_call] = STATE(2246), - [sym_list] = STATE(2246), - [sym_set] = STATE(2246), - [sym_tuple] = STATE(2246), - [sym_dictionary] = STATE(2246), - [sym_pair] = STATE(3896), - [sym_list_comprehension] = STATE(2246), - [sym_dictionary_comprehension] = STATE(2246), - [sym_set_comprehension] = STATE(2246), - [sym_generator_expression] = STATE(2246), - [sym_parenthesized_expression] = STATE(2246), - [sym__collection_elements] = STATE(5242), - [sym_conditional_expression] = STATE(2255), - [sym_concatenated_string] = STATE(2246), - [sym_string] = STATE(1984), - [sym_none] = STATE(2246), - [sym_await] = STATE(2246), - [sym_new_expression] = STATE(2255), - [sym_sizeof_expression] = STATE(2246), - [sym_cast_expression] = STATE(2246), - [sym_identifier] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_COMMA] = ACTIONS(2346), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_print] = ACTIONS(2276), - [anon_sym_match] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2348), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_not] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_TILDE] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_lambda] = ACTIONS(2286), - [anon_sym_yield] = ACTIONS(2288), - [sym_ellipsis] = ACTIONS(2180), - [anon_sym_None] = ACTIONS(2182), - [sym_integer] = ACTIONS(2164), - [sym_float] = ACTIONS(2180), - [anon_sym_await] = ACTIONS(2290), - [anon_sym_api] = ACTIONS(2276), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_expression_list] = STATE(4992), + [sym_pattern] = STATE(3109), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3774), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4992), + [sym_augmented_assignment] = STATE(4992), + [sym_pattern_list] = STATE(3147), + [sym__right_hand_side] = STATE(4992), + [sym_yield] = STATE(4992), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(363), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), + [anon_sym_exec] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_sizeof] = ACTIONS(2186), - [sym_string_start] = ACTIONS(2188), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym_string_start] = ACTIONS(107), }, [687] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4723), - [sym_parenthesized_list_splat] = STATE(4723), - [sym__patterns] = STATE(5363), - [sym_pattern] = STATE(4859), - [sym_tuple_pattern] = STATE(5181), - [sym_list_pattern] = STATE(5181), - [sym_list_splat_pattern] = STATE(2407), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3556), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4887), + [sym__patterns] = STATE(5374), + [sym_pattern] = STATE(4940), + [sym_tuple_pattern] = STATE(5009), + [sym_list_pattern] = STATE(5009), + [sym_list_splat_pattern] = STATE(2304), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3530), [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4578), - [sym_attribute] = STATE(2408), - [sym_subscript] = STATE(2408), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5484), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_RPAREN] = ACTIONS(2350), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1219), - [anon_sym_match] = ACTIONS(1219), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_exec] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_api] = ACTIONS(1219), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4785), + [sym_attribute] = STATE(2305), + [sym_subscript] = STATE(2305), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5212), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_RPAREN] = ACTIONS(2369), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1226), + [anon_sym_match] = ACTIONS(1226), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_exec] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1250), + [anon_sym_api] = ACTIONS(1226), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [688] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4518), - [sym_parenthesized_list_splat] = STATE(4518), - [sym__patterns] = STATE(5315), - [sym_pattern] = STATE(4522), - [sym_tuple_pattern] = STATE(5131), - [sym_list_pattern] = STATE(5131), - [sym_list_splat_pattern] = STATE(2315), - [sym_as_pattern] = STATE(2314), - [sym_expression] = STATE(3538), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_yield] = STATE(4518), - [sym_attribute] = STATE(2317), - [sym_subscript] = STATE(2317), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym__collection_elements] = STATE(5282), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_print] = ACTIONS(2302), - [anon_sym_match] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_exec] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_RBRACK] = ACTIONS(2352), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2316), - [anon_sym_api] = ACTIONS(2302), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat] = STATE(4684), + [sym_parenthesized_list_splat] = STATE(4684), + [sym__patterns] = STATE(5235), + [sym_pattern] = STATE(4690), + [sym_tuple_pattern] = STATE(5118), + [sym_list_pattern] = STATE(5118), + [sym_list_splat_pattern] = STATE(2378), + [sym_as_pattern] = STATE(2375), + [sym_expression] = STATE(3544), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_yield] = STATE(4684), + [sym_attribute] = STATE(2380), + [sym_subscript] = STATE(2380), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym__collection_elements] = STATE(5252), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_print] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_exec] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_RBRACK] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_api] = ACTIONS(2293), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [689] = { - [sym_named_expression] = STATE(2255), + [sym_named_expression] = STATE(2171), [sym__named_expression_lhs] = STATE(5551), - [sym_list_splat] = STATE(4718), - [sym_dictionary_splat] = STATE(4668), - [sym_parenthesized_list_splat] = STATE(4718), - [sym_list_splat_pattern] = STATE(2133), - [sym_as_pattern] = STATE(2255), - [sym_expression] = STATE(3421), - [sym_primary_expression] = STATE(1944), - [sym_not_operator] = STATE(2255), - [sym_boolean_operator] = STATE(2255), - [sym_binary_operator] = STATE(2246), - [sym_unary_operator] = STATE(2246), - [sym_comparison_operator] = STATE(2255), - [sym_lambda] = STATE(2255), - [sym_yield] = STATE(4718), - [sym_attribute] = STATE(2246), - [sym_subscript] = STATE(2246), - [sym_call] = STATE(2246), - [sym_list] = STATE(2246), - [sym_set] = STATE(2246), - [sym_tuple] = STATE(2246), - [sym_dictionary] = STATE(2246), - [sym_pair] = STATE(3932), - [sym_list_comprehension] = STATE(2246), - [sym_dictionary_comprehension] = STATE(2246), - [sym_set_comprehension] = STATE(2246), - [sym_generator_expression] = STATE(2246), - [sym_parenthesized_expression] = STATE(2246), - [sym__collection_elements] = STATE(5428), - [sym_conditional_expression] = STATE(2255), - [sym_concatenated_string] = STATE(2246), - [sym_string] = STATE(1984), - [sym_none] = STATE(2246), - [sym_await] = STATE(2246), - [sym_new_expression] = STATE(2255), - [sym_sizeof_expression] = STATE(2246), - [sym_cast_expression] = STATE(2246), - [sym_identifier] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_COMMA] = ACTIONS(2354), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_print] = ACTIONS(2276), - [anon_sym_match] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2356), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_not] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_TILDE] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_lambda] = ACTIONS(2286), - [anon_sym_yield] = ACTIONS(2288), - [sym_ellipsis] = ACTIONS(2180), - [anon_sym_None] = ACTIONS(2182), - [sym_integer] = ACTIONS(2164), - [sym_float] = ACTIONS(2180), - [anon_sym_await] = ACTIONS(2290), - [anon_sym_api] = ACTIONS(2276), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), + [sym_list_splat] = STATE(4519), + [sym_dictionary_splat] = STATE(4677), + [sym_parenthesized_list_splat] = STATE(4519), + [sym_list_splat_pattern] = STATE(2272), + [sym_as_pattern] = STATE(2171), + [sym_expression] = STATE(3459), + [sym_primary_expression] = STATE(1945), + [sym_not_operator] = STATE(2171), + [sym_boolean_operator] = STATE(2171), + [sym_binary_operator] = STATE(2168), + [sym_unary_operator] = STATE(2168), + [sym_comparison_operator] = STATE(2171), + [sym_lambda] = STATE(2171), + [sym_yield] = STATE(4519), + [sym_attribute] = STATE(2168), + [sym_subscript] = STATE(2168), + [sym_ellipsis] = STATE(2168), + [sym_call] = STATE(2168), + [sym_list] = STATE(2168), + [sym_set] = STATE(2168), + [sym_tuple] = STATE(2168), + [sym_dictionary] = STATE(2168), + [sym_pair] = STATE(3943), + [sym_list_comprehension] = STATE(2168), + [sym_dictionary_comprehension] = STATE(2168), + [sym_set_comprehension] = STATE(2168), + [sym_generator_expression] = STATE(2168), + [sym_parenthesized_expression] = STATE(2168), + [sym__collection_elements] = STATE(5445), + [sym_conditional_expression] = STATE(2171), + [sym_concatenated_string] = STATE(2168), + [sym_string] = STATE(2004), + [sym_none] = STATE(2168), + [sym_await] = STATE(2168), + [sym_new_expression] = STATE(2171), + [sym_sizeof_expression] = STATE(2168), + [sym_cast_expression] = STATE(2168), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_COMMA] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_print] = ACTIONS(2323), + [anon_sym_match] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(2323), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_LT] = ACTIONS(2331), + [anon_sym_lambda] = ACTIONS(2333), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2201), + [anon_sym_None] = ACTIONS(2203), + [sym_integer] = ACTIONS(2185), + [sym_float] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2337), + [anon_sym_api] = ACTIONS(2323), + [sym_true] = ACTIONS(2185), + [sym_false] = ACTIONS(2185), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_sizeof] = ACTIONS(2186), - [sym_string_start] = ACTIONS(2188), + [anon_sym_new] = ACTIONS(2339), + [anon_sym_sizeof] = ACTIONS(2209), + [sym_string_start] = ACTIONS(2211), }, [690] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4723), - [sym_parenthesized_list_splat] = STATE(4723), - [sym__patterns] = STATE(5433), - [sym_pattern] = STATE(4859), - [sym_tuple_pattern] = STATE(5181), - [sym_list_pattern] = STATE(5181), - [sym_list_splat_pattern] = STATE(2407), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3556), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4578), - [sym_attribute] = STATE(2408), - [sym_subscript] = STATE(2408), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5484), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_RPAREN] = ACTIONS(2358), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1219), - [anon_sym_match] = ACTIONS(1219), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_exec] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_api] = ACTIONS(1219), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_expression_list] = STATE(4993), + [sym_pattern] = STATE(3109), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(1785), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3774), + [sym_primary_expression] = STATE(1962), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_assignment] = STATE(4993), + [sym_augmented_assignment] = STATE(4993), + [sym_pattern_list] = STATE(3147), + [sym__right_hand_side] = STATE(4993), + [sym_yield] = STATE(4993), + [sym_attribute] = STATE(1784), + [sym_subscript] = STATE(1784), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(363), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), + [anon_sym_exec] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_yield] = ACTIONS(75), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym_string_start] = ACTIONS(107), }, [691] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4518), - [sym_parenthesized_list_splat] = STATE(4518), - [sym__patterns] = STATE(5525), - [sym_pattern] = STATE(4522), - [sym_tuple_pattern] = STATE(5131), - [sym_list_pattern] = STATE(5131), - [sym_list_splat_pattern] = STATE(2315), - [sym_as_pattern] = STATE(2314), - [sym_expression] = STATE(3538), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_yield] = STATE(4518), - [sym_attribute] = STATE(2317), - [sym_subscript] = STATE(2317), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym__collection_elements] = STATE(5282), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_print] = ACTIONS(2302), - [anon_sym_match] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_exec] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_RBRACK] = ACTIONS(2360), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2316), - [anon_sym_api] = ACTIONS(2302), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4887), + [sym__patterns] = STATE(5206), + [sym_pattern] = STATE(4940), + [sym_tuple_pattern] = STATE(5009), + [sym_list_pattern] = STATE(5009), + [sym_list_splat_pattern] = STATE(2304), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3530), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4785), + [sym_attribute] = STATE(2305), + [sym_subscript] = STATE(2305), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5212), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_RPAREN] = ACTIONS(2377), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1226), + [anon_sym_match] = ACTIONS(1226), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_exec] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1250), + [anon_sym_api] = ACTIONS(1226), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [692] = { - [sym_named_expression] = STATE(2255), - [sym__named_expression_lhs] = STATE(5551), - [sym_list_splat] = STATE(4718), - [sym_dictionary_splat] = STATE(4697), - [sym_parenthesized_list_splat] = STATE(4718), - [sym_list_splat_pattern] = STATE(2133), - [sym_as_pattern] = STATE(2255), - [sym_expression] = STATE(3425), - [sym_primary_expression] = STATE(1944), - [sym_not_operator] = STATE(2255), - [sym_boolean_operator] = STATE(2255), - [sym_binary_operator] = STATE(2246), - [sym_unary_operator] = STATE(2246), - [sym_comparison_operator] = STATE(2255), - [sym_lambda] = STATE(2255), - [sym_yield] = STATE(4718), - [sym_attribute] = STATE(2246), - [sym_subscript] = STATE(2246), - [sym_call] = STATE(2246), - [sym_list] = STATE(2246), - [sym_set] = STATE(2246), - [sym_tuple] = STATE(2246), - [sym_dictionary] = STATE(2246), - [sym_pair] = STATE(3979), - [sym_list_comprehension] = STATE(2246), - [sym_dictionary_comprehension] = STATE(2246), - [sym_set_comprehension] = STATE(2246), - [sym_generator_expression] = STATE(2246), - [sym_parenthesized_expression] = STATE(2246), - [sym__collection_elements] = STATE(5330), - [sym_conditional_expression] = STATE(2255), - [sym_concatenated_string] = STATE(2246), - [sym_string] = STATE(1984), - [sym_none] = STATE(2246), - [sym_await] = STATE(2246), - [sym_new_expression] = STATE(2255), - [sym_sizeof_expression] = STATE(2246), - [sym_cast_expression] = STATE(2246), - [sym_identifier] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_COMMA] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_print] = ACTIONS(2276), - [anon_sym_match] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2364), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_not] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_TILDE] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_lambda] = ACTIONS(2286), - [anon_sym_yield] = ACTIONS(2288), - [sym_ellipsis] = ACTIONS(2180), - [anon_sym_None] = ACTIONS(2182), - [sym_integer] = ACTIONS(2164), - [sym_float] = ACTIONS(2180), - [anon_sym_await] = ACTIONS(2290), - [anon_sym_api] = ACTIONS(2276), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat] = STATE(4684), + [sym_parenthesized_list_splat] = STATE(4684), + [sym__patterns] = STATE(5384), + [sym_pattern] = STATE(4690), + [sym_tuple_pattern] = STATE(5118), + [sym_list_pattern] = STATE(5118), + [sym_list_splat_pattern] = STATE(2378), + [sym_as_pattern] = STATE(2375), + [sym_expression] = STATE(3544), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_yield] = STATE(4684), + [sym_attribute] = STATE(2380), + [sym_subscript] = STATE(2380), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym__collection_elements] = STATE(5252), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_print] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_exec] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_RBRACK] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_api] = ACTIONS(2293), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_sizeof] = ACTIONS(2186), - [sym_string_start] = ACTIONS(2188), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [693] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4723), - [sym_parenthesized_list_splat] = STATE(4723), - [sym__patterns] = STATE(5533), - [sym_pattern] = STATE(4859), - [sym_tuple_pattern] = STATE(5181), - [sym_list_pattern] = STATE(5181), - [sym_list_splat_pattern] = STATE(2407), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3556), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4578), - [sym_attribute] = STATE(2408), - [sym_subscript] = STATE(2408), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5484), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_RPAREN] = ACTIONS(2366), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1219), - [anon_sym_match] = ACTIONS(1219), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_exec] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_api] = ACTIONS(1219), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_named_expression] = STATE(2171), + [sym__named_expression_lhs] = STATE(5551), + [sym_list_splat] = STATE(4519), + [sym_dictionary_splat] = STATE(4707), + [sym_parenthesized_list_splat] = STATE(4519), + [sym_list_splat_pattern] = STATE(2272), + [sym_as_pattern] = STATE(2171), + [sym_expression] = STATE(3370), + [sym_primary_expression] = STATE(1945), + [sym_not_operator] = STATE(2171), + [sym_boolean_operator] = STATE(2171), + [sym_binary_operator] = STATE(2168), + [sym_unary_operator] = STATE(2168), + [sym_comparison_operator] = STATE(2171), + [sym_lambda] = STATE(2171), + [sym_yield] = STATE(4519), + [sym_attribute] = STATE(2168), + [sym_subscript] = STATE(2168), + [sym_ellipsis] = STATE(2168), + [sym_call] = STATE(2168), + [sym_list] = STATE(2168), + [sym_set] = STATE(2168), + [sym_tuple] = STATE(2168), + [sym_dictionary] = STATE(2168), + [sym_pair] = STATE(3950), + [sym_list_comprehension] = STATE(2168), + [sym_dictionary_comprehension] = STATE(2168), + [sym_set_comprehension] = STATE(2168), + [sym_generator_expression] = STATE(2168), + [sym_parenthesized_expression] = STATE(2168), + [sym__collection_elements] = STATE(5346), + [sym_conditional_expression] = STATE(2171), + [sym_concatenated_string] = STATE(2168), + [sym_string] = STATE(2004), + [sym_none] = STATE(2168), + [sym_await] = STATE(2168), + [sym_new_expression] = STATE(2171), + [sym_sizeof_expression] = STATE(2168), + [sym_cast_expression] = STATE(2168), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_COMMA] = ACTIONS(2381), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_print] = ACTIONS(2323), + [anon_sym_match] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(2323), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_LT] = ACTIONS(2331), + [anon_sym_lambda] = ACTIONS(2333), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2201), + [anon_sym_None] = ACTIONS(2203), + [sym_integer] = ACTIONS(2185), + [sym_float] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2337), + [anon_sym_api] = ACTIONS(2323), + [sym_true] = ACTIONS(2185), + [sym_false] = ACTIONS(2185), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(2339), + [anon_sym_sizeof] = ACTIONS(2209), + [sym_string_start] = ACTIONS(2211), }, [694] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4518), - [sym_parenthesized_list_splat] = STATE(4518), - [sym__patterns] = STATE(5525), - [sym_pattern] = STATE(4522), - [sym_tuple_pattern] = STATE(5131), - [sym_list_pattern] = STATE(5131), - [sym_list_splat_pattern] = STATE(2315), - [sym_as_pattern] = STATE(2314), - [sym_expression] = STATE(3538), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_yield] = STATE(4518), - [sym_attribute] = STATE(2317), - [sym_subscript] = STATE(2317), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym__collection_elements] = STATE(5282), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_print] = ACTIONS(2302), - [anon_sym_match] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_exec] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_RBRACK] = ACTIONS(2368), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2316), - [anon_sym_api] = ACTIONS(2302), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4887), + [sym__patterns] = STATE(5527), + [sym_pattern] = STATE(4940), + [sym_tuple_pattern] = STATE(5009), + [sym_list_pattern] = STATE(5009), + [sym_list_splat_pattern] = STATE(2304), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3530), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4785), + [sym_attribute] = STATE(2305), + [sym_subscript] = STATE(2305), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5212), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_RPAREN] = ACTIONS(2385), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1226), + [anon_sym_match] = ACTIONS(1226), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_exec] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1250), + [anon_sym_api] = ACTIONS(1226), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [695] = { - [sym_named_expression] = STATE(2255), - [sym__named_expression_lhs] = STATE(5551), - [sym_list_splat] = STATE(4718), - [sym_dictionary_splat] = STATE(4721), - [sym_parenthesized_list_splat] = STATE(4718), - [sym_list_splat_pattern] = STATE(2133), - [sym_as_pattern] = STATE(2255), - [sym_expression] = STATE(3430), - [sym_primary_expression] = STATE(1944), - [sym_not_operator] = STATE(2255), - [sym_boolean_operator] = STATE(2255), - [sym_binary_operator] = STATE(2246), - [sym_unary_operator] = STATE(2246), - [sym_comparison_operator] = STATE(2255), - [sym_lambda] = STATE(2255), - [sym_yield] = STATE(4718), - [sym_attribute] = STATE(2246), - [sym_subscript] = STATE(2246), - [sym_call] = STATE(2246), - [sym_list] = STATE(2246), - [sym_set] = STATE(2246), - [sym_tuple] = STATE(2246), - [sym_dictionary] = STATE(2246), - [sym_pair] = STATE(3935), - [sym_list_comprehension] = STATE(2246), - [sym_dictionary_comprehension] = STATE(2246), - [sym_set_comprehension] = STATE(2246), - [sym_generator_expression] = STATE(2246), - [sym_parenthesized_expression] = STATE(2246), - [sym__collection_elements] = STATE(5465), - [sym_conditional_expression] = STATE(2255), - [sym_concatenated_string] = STATE(2246), - [sym_string] = STATE(1984), - [sym_none] = STATE(2246), - [sym_await] = STATE(2246), - [sym_new_expression] = STATE(2255), - [sym_sizeof_expression] = STATE(2246), - [sym_cast_expression] = STATE(2246), - [sym_identifier] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_COMMA] = ACTIONS(2370), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_print] = ACTIONS(2276), - [anon_sym_match] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2372), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_not] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_TILDE] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_lambda] = ACTIONS(2286), - [anon_sym_yield] = ACTIONS(2288), - [sym_ellipsis] = ACTIONS(2180), - [anon_sym_None] = ACTIONS(2182), - [sym_integer] = ACTIONS(2164), - [sym_float] = ACTIONS(2180), - [anon_sym_await] = ACTIONS(2290), - [anon_sym_api] = ACTIONS(2276), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat] = STATE(4684), + [sym_parenthesized_list_splat] = STATE(4684), + [sym__patterns] = STATE(5384), + [sym_pattern] = STATE(4690), + [sym_tuple_pattern] = STATE(5118), + [sym_list_pattern] = STATE(5118), + [sym_list_splat_pattern] = STATE(2378), + [sym_as_pattern] = STATE(2375), + [sym_expression] = STATE(3544), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_yield] = STATE(4684), + [sym_attribute] = STATE(2380), + [sym_subscript] = STATE(2380), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym__collection_elements] = STATE(5252), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_print] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_exec] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_RBRACK] = ACTIONS(2387), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_api] = ACTIONS(2293), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_sizeof] = ACTIONS(2186), - [sym_string_start] = ACTIONS(2188), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [696] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4723), - [sym_parenthesized_list_splat] = STATE(4723), - [sym__patterns] = STATE(5253), - [sym_pattern] = STATE(4859), - [sym_tuple_pattern] = STATE(5181), - [sym_list_pattern] = STATE(5181), - [sym_list_splat_pattern] = STATE(2407), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3556), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4578), - [sym_attribute] = STATE(2408), - [sym_subscript] = STATE(2408), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5484), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_RPAREN] = ACTIONS(2374), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1219), - [anon_sym_match] = ACTIONS(1219), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_exec] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_api] = ACTIONS(1219), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_named_expression] = STATE(2171), + [sym__named_expression_lhs] = STATE(5551), + [sym_list_splat] = STATE(4519), + [sym_dictionary_splat] = STATE(4731), + [sym_parenthesized_list_splat] = STATE(4519), + [sym_list_splat_pattern] = STATE(2272), + [sym_as_pattern] = STATE(2171), + [sym_expression] = STATE(3461), + [sym_primary_expression] = STATE(1945), + [sym_not_operator] = STATE(2171), + [sym_boolean_operator] = STATE(2171), + [sym_binary_operator] = STATE(2168), + [sym_unary_operator] = STATE(2168), + [sym_comparison_operator] = STATE(2171), + [sym_lambda] = STATE(2171), + [sym_yield] = STATE(4519), + [sym_attribute] = STATE(2168), + [sym_subscript] = STATE(2168), + [sym_ellipsis] = STATE(2168), + [sym_call] = STATE(2168), + [sym_list] = STATE(2168), + [sym_set] = STATE(2168), + [sym_tuple] = STATE(2168), + [sym_dictionary] = STATE(2168), + [sym_pair] = STATE(3954), + [sym_list_comprehension] = STATE(2168), + [sym_dictionary_comprehension] = STATE(2168), + [sym_set_comprehension] = STATE(2168), + [sym_generator_expression] = STATE(2168), + [sym_parenthesized_expression] = STATE(2168), + [sym__collection_elements] = STATE(5476), + [sym_conditional_expression] = STATE(2171), + [sym_concatenated_string] = STATE(2168), + [sym_string] = STATE(2004), + [sym_none] = STATE(2168), + [sym_await] = STATE(2168), + [sym_new_expression] = STATE(2171), + [sym_sizeof_expression] = STATE(2168), + [sym_cast_expression] = STATE(2168), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_COMMA] = ACTIONS(2389), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_print] = ACTIONS(2323), + [anon_sym_match] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(2323), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2391), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_LT] = ACTIONS(2331), + [anon_sym_lambda] = ACTIONS(2333), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2201), + [anon_sym_None] = ACTIONS(2203), + [sym_integer] = ACTIONS(2185), + [sym_float] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2337), + [anon_sym_api] = ACTIONS(2323), + [sym_true] = ACTIONS(2185), + [sym_false] = ACTIONS(2185), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(2339), + [anon_sym_sizeof] = ACTIONS(2209), + [sym_string_start] = ACTIONS(2211), }, [697] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4518), - [sym_parenthesized_list_splat] = STATE(4518), - [sym__patterns] = STATE(5499), - [sym_pattern] = STATE(4522), - [sym_tuple_pattern] = STATE(5131), - [sym_list_pattern] = STATE(5131), - [sym_list_splat_pattern] = STATE(2315), - [sym_as_pattern] = STATE(2314), - [sym_expression] = STATE(3538), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_yield] = STATE(4518), - [sym_attribute] = STATE(2317), - [sym_subscript] = STATE(2317), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym__collection_elements] = STATE(5282), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_print] = ACTIONS(2302), - [anon_sym_match] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_exec] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_RBRACK] = ACTIONS(2376), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2316), - [anon_sym_api] = ACTIONS(2302), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4887), + [sym__patterns] = STATE(5558), + [sym_pattern] = STATE(4940), + [sym_tuple_pattern] = STATE(5009), + [sym_list_pattern] = STATE(5009), + [sym_list_splat_pattern] = STATE(2304), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3530), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4785), + [sym_attribute] = STATE(2305), + [sym_subscript] = STATE(2305), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5212), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_RPAREN] = ACTIONS(2393), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1226), + [anon_sym_match] = ACTIONS(1226), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_exec] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1250), + [anon_sym_api] = ACTIONS(1226), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [698] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4723), - [sym_parenthesized_list_splat] = STATE(4723), - [sym__patterns] = STATE(5363), - [sym_pattern] = STATE(4859), - [sym_tuple_pattern] = STATE(5181), - [sym_list_pattern] = STATE(5181), - [sym_list_splat_pattern] = STATE(2407), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3550), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4645), - [sym_attribute] = STATE(2408), - [sym_subscript] = STATE(2408), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5235), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_RPAREN] = ACTIONS(2378), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1219), - [anon_sym_match] = ACTIONS(1219), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_exec] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_api] = ACTIONS(1219), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat] = STATE(4684), + [sym_parenthesized_list_splat] = STATE(4684), + [sym__patterns] = STATE(5250), + [sym_pattern] = STATE(4690), + [sym_tuple_pattern] = STATE(5118), + [sym_list_pattern] = STATE(5118), + [sym_list_splat_pattern] = STATE(2378), + [sym_as_pattern] = STATE(2375), + [sym_expression] = STATE(3544), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_yield] = STATE(4684), + [sym_attribute] = STATE(2380), + [sym_subscript] = STATE(2380), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym__collection_elements] = STATE(5252), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_print] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_exec] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_RBRACK] = ACTIONS(2395), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_api] = ACTIONS(2293), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [699] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4518), - [sym_parenthesized_list_splat] = STATE(4518), - [sym__patterns] = STATE(5236), - [sym_pattern] = STATE(4522), - [sym_tuple_pattern] = STATE(5131), - [sym_list_pattern] = STATE(5131), - [sym_list_splat_pattern] = STATE(2315), - [sym_as_pattern] = STATE(2314), - [sym_expression] = STATE(3538), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_yield] = STATE(4518), - [sym_attribute] = STATE(2317), - [sym_subscript] = STATE(2317), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym__collection_elements] = STATE(5282), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_print] = ACTIONS(2302), - [anon_sym_match] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_exec] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_RBRACK] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2316), - [anon_sym_api] = ACTIONS(2302), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4887), + [sym__patterns] = STATE(5374), + [sym_pattern] = STATE(4940), + [sym_tuple_pattern] = STATE(5009), + [sym_list_pattern] = STATE(5009), + [sym_list_splat_pattern] = STATE(2304), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3561), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4501), + [sym_attribute] = STATE(2305), + [sym_subscript] = STATE(2305), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5249), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_RPAREN] = ACTIONS(2397), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1226), + [anon_sym_match] = ACTIONS(1226), + [anon_sym_async] = ACTIONS(1226), + [anon_sym_exec] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1250), + [anon_sym_api] = ACTIONS(1226), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [700] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4518), - [sym_parenthesized_list_splat] = STATE(4518), - [sym__patterns] = STATE(5200), - [sym_pattern] = STATE(4522), - [sym_tuple_pattern] = STATE(5131), - [sym_list_pattern] = STATE(5131), - [sym_list_splat_pattern] = STATE(2315), - [sym_as_pattern] = STATE(2314), - [sym_expression] = STATE(3538), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_yield] = STATE(4518), - [sym_attribute] = STATE(2317), - [sym_subscript] = STATE(2317), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym__collection_elements] = STATE(5282), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_print] = ACTIONS(2302), - [anon_sym_match] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_exec] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_RBRACK] = ACTIONS(2382), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2316), - [anon_sym_api] = ACTIONS(2302), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat] = STATE(4684), + [sym_parenthesized_list_splat] = STATE(4684), + [sym__patterns] = STATE(5254), + [sym_pattern] = STATE(4690), + [sym_tuple_pattern] = STATE(5118), + [sym_list_pattern] = STATE(5118), + [sym_list_splat_pattern] = STATE(2378), + [sym_as_pattern] = STATE(2375), + [sym_expression] = STATE(3544), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_yield] = STATE(4684), + [sym_attribute] = STATE(2380), + [sym_subscript] = STATE(2380), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym__collection_elements] = STATE(5252), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_print] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_exec] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_RBRACK] = ACTIONS(2399), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_api] = ACTIONS(2293), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [701] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4518), - [sym_parenthesized_list_splat] = STATE(4518), - [sym__patterns] = STATE(5525), - [sym_pattern] = STATE(4522), - [sym_tuple_pattern] = STATE(5131), - [sym_list_pattern] = STATE(5131), - [sym_list_splat_pattern] = STATE(2315), - [sym_as_pattern] = STATE(2314), - [sym_expression] = STATE(3472), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_yield] = STATE(4518), - [sym_attribute] = STATE(2317), - [sym_subscript] = STATE(2317), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym__collection_elements] = STATE(5547), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_print] = ACTIONS(2302), - [anon_sym_match] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_exec] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_RBRACK] = ACTIONS(2384), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2316), - [anon_sym_api] = ACTIONS(2302), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat] = STATE(4684), + [sym_parenthesized_list_splat] = STATE(4684), + [sym__patterns] = STATE(5301), + [sym_pattern] = STATE(4690), + [sym_tuple_pattern] = STATE(5118), + [sym_list_pattern] = STATE(5118), + [sym_list_splat_pattern] = STATE(2378), + [sym_as_pattern] = STATE(2375), + [sym_expression] = STATE(3544), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_yield] = STATE(4684), + [sym_attribute] = STATE(2380), + [sym_subscript] = STATE(2380), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym__collection_elements] = STATE(5252), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_print] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_exec] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_RBRACK] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_api] = ACTIONS(2293), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [702] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4723), - [sym_parenthesized_list_splat] = STATE(4723), - [sym__patterns] = STATE(5215), - [sym_pattern] = STATE(4859), - [sym_tuple_pattern] = STATE(5181), - [sym_list_pattern] = STATE(5181), - [sym_list_splat_pattern] = STATE(2407), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3556), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4578), - [sym_attribute] = STATE(2408), - [sym_subscript] = STATE(2408), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5484), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1219), - [anon_sym_match] = ACTIONS(1219), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_exec] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1241), - [anon_sym_api] = ACTIONS(1219), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat] = STATE(4684), + [sym_parenthesized_list_splat] = STATE(4684), + [sym__patterns] = STATE(5250), + [sym_pattern] = STATE(4690), + [sym_tuple_pattern] = STATE(5118), + [sym_list_pattern] = STATE(5118), + [sym_list_splat_pattern] = STATE(2378), + [sym_as_pattern] = STATE(2375), + [sym_expression] = STATE(3549), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_yield] = STATE(4684), + [sym_attribute] = STATE(2380), + [sym_subscript] = STATE(2380), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym__collection_elements] = STATE(5214), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_print] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_exec] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_RBRACK] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_api] = ACTIONS(2293), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [703] = { - [sym_named_expression] = STATE(2512), - [sym__named_expression_lhs] = STATE(5443), - [sym_list_splat_pattern] = STATE(2490), - [sym_as_pattern] = STATE(2512), - [sym_expression] = STATE(3646), - [sym_primary_expression] = STATE(1967), - [sym_not_operator] = STATE(2512), - [sym_boolean_operator] = STATE(2512), - [sym_binary_operator] = STATE(2509), - [sym_unary_operator] = STATE(2509), - [sym_comparison_operator] = STATE(2512), - [sym_lambda] = STATE(2512), - [sym_attribute] = STATE(2509), - [sym_subscript] = STATE(2509), - [sym_call] = STATE(2509), - [sym_type] = STATE(4149), - [sym_splat_type] = STATE(4185), - [sym_generic_type] = STATE(4185), - [sym_union_type] = STATE(4185), - [sym_constrained_type] = STATE(4185), - [sym_member_type] = STATE(4185), - [sym_list] = STATE(2509), - [sym_set] = STATE(2509), - [sym_tuple] = STATE(2509), - [sym_dictionary] = STATE(2509), - [sym_list_comprehension] = STATE(2509), - [sym_dictionary_comprehension] = STATE(2509), - [sym_set_comprehension] = STATE(2509), - [sym_generator_expression] = STATE(2509), - [sym_parenthesized_expression] = STATE(2509), - [sym_conditional_expression] = STATE(2512), - [sym_concatenated_string] = STATE(2509), - [sym_string] = STATE(2110), - [sym_none] = STATE(2509), - [sym_await] = STATE(2509), - [sym_new_expression] = STATE(2512), - [sym_sizeof_expression] = STATE(2509), - [sym_cast_expression] = STATE(2509), - [sym_identifier] = ACTIONS(2386), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2388), - [anon_sym_print] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_STAR_STAR] = ACTIONS(2392), - [anon_sym_exec] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_RBRACK] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_not] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_lambda] = ACTIONS(2400), - [sym_ellipsis] = ACTIONS(2218), - [anon_sym_None] = ACTIONS(2220), - [sym_integer] = ACTIONS(2202), - [sym_float] = ACTIONS(2218), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_api] = ACTIONS(2390), - [sym_true] = ACTIONS(2202), - [sym_false] = ACTIONS(2202), + [sym_named_expression] = STATE(3724), + [sym__named_expression_lhs] = STATE(5368), + [sym_expression_list] = STATE(4205), + [sym_pattern] = STATE(5161), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(2172), + [sym_as_pattern] = STATE(3724), + [sym_expression] = STATE(3645), + [sym_primary_expression] = STATE(1942), + [sym_not_operator] = STATE(3724), + [sym_boolean_operator] = STATE(3724), + [sym_binary_operator] = STATE(2175), + [sym_unary_operator] = STATE(2175), + [sym_comparison_operator] = STATE(3724), + [sym_lambda] = STATE(3724), + [sym_pattern_list] = STATE(4205), + [sym_yield] = STATE(4205), + [sym_attribute] = STATE(2174), + [sym_subscript] = STATE(2174), + [sym_ellipsis] = STATE(2175), + [sym_call] = STATE(2175), + [sym_list] = STATE(2175), + [sym_set] = STATE(2175), + [sym_tuple] = STATE(2175), + [sym_dictionary] = STATE(2175), + [sym_list_comprehension] = STATE(2175), + [sym_dictionary_comprehension] = STATE(2175), + [sym_set_comprehension] = STATE(2175), + [sym_generator_expression] = STATE(2175), + [sym_parenthesized_expression] = STATE(2175), + [sym_conditional_expression] = STATE(3724), + [sym_concatenated_string] = STATE(2175), + [sym_string] = STATE(1976), + [sym__f_expression] = STATE(4205), + [sym_none] = STATE(2175), + [sym_await] = STATE(2175), + [sym_new_expression] = STATE(3724), + [sym_sizeof_expression] = STATE(2175), + [sym_cast_expression] = STATE(2175), + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(2409), + [anon_sym_print] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_async] = ACTIONS(2411), + [anon_sym_exec] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_TILDE] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(2417), + [anon_sym_lambda] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1717), + [anon_sym_None] = ACTIONS(1719), + [sym_integer] = ACTIONS(1701), + [sym_float] = ACTIONS(1721), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2411), + [sym_true] = ACTIONS(1701), + [sym_false] = ACTIONS(1701), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2224), - [sym_string_start] = ACTIONS(2226), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_sizeof] = ACTIONS(1725), + [sym_string_start] = ACTIONS(1727), }, [704] = { - [sym_named_expression] = STATE(2512), - [sym__named_expression_lhs] = STATE(5443), - [sym_list_splat_pattern] = STATE(2490), - [sym_as_pattern] = STATE(2512), - [sym_expression] = STATE(3646), - [sym_primary_expression] = STATE(1967), - [sym_not_operator] = STATE(2512), - [sym_boolean_operator] = STATE(2512), - [sym_binary_operator] = STATE(2509), - [sym_unary_operator] = STATE(2509), - [sym_comparison_operator] = STATE(2512), - [sym_lambda] = STATE(2512), - [sym_attribute] = STATE(2509), - [sym_subscript] = STATE(2509), - [sym_call] = STATE(2509), - [sym_type] = STATE(4149), - [sym_splat_type] = STATE(4185), - [sym_generic_type] = STATE(4185), - [sym_union_type] = STATE(4185), - [sym_constrained_type] = STATE(4185), - [sym_member_type] = STATE(4185), - [sym_list] = STATE(2509), - [sym_set] = STATE(2509), - [sym_tuple] = STATE(2509), - [sym_dictionary] = STATE(2509), - [sym_list_comprehension] = STATE(2509), - [sym_dictionary_comprehension] = STATE(2509), - [sym_set_comprehension] = STATE(2509), - [sym_generator_expression] = STATE(2509), - [sym_parenthesized_expression] = STATE(2509), - [sym_conditional_expression] = STATE(2512), - [sym_concatenated_string] = STATE(2509), - [sym_string] = STATE(2110), - [sym_none] = STATE(2509), - [sym_await] = STATE(2509), - [sym_new_expression] = STATE(2512), - [sym_sizeof_expression] = STATE(2509), - [sym_cast_expression] = STATE(2509), - [sym_identifier] = ACTIONS(2386), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2388), - [anon_sym_print] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_STAR_STAR] = ACTIONS(2392), - [anon_sym_exec] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_RBRACK] = ACTIONS(2406), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_not] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_lambda] = ACTIONS(2400), - [sym_ellipsis] = ACTIONS(2218), - [anon_sym_None] = ACTIONS(2220), - [sym_integer] = ACTIONS(2202), - [sym_float] = ACTIONS(2218), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_api] = ACTIONS(2390), - [sym_true] = ACTIONS(2202), - [sym_false] = ACTIONS(2202), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3662), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_type] = STATE(4298), + [sym_splat_type] = STATE(4146), + [sym_generic_type] = STATE(4146), + [sym_union_type] = STATE(4146), + [sym_constrained_type] = STATE(4146), + [sym_member_type] = STATE(4146), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2429), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_STAR_STAR] = ACTIONS(2433), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2224), - [sym_string_start] = ACTIONS(2226), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [705] = { - [sym_else_clause] = STATE(1007), - [sym_except_clause] = STATE(767), - [sym_finally_clause] = STATE(1395), - [aux_sym_try_statement_repeat1] = STATE(767), - [ts_builtin_sym_end] = ACTIONS(2408), - [sym_identifier] = ACTIONS(2410), - [anon_sym_import] = ACTIONS(2410), - [anon_sym_cimport] = ACTIONS(2410), - [anon_sym_from] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_STAR] = ACTIONS(2408), - [anon_sym_print] = ACTIONS(2410), - [anon_sym_assert] = ACTIONS(2410), - [anon_sym_return] = ACTIONS(2410), - [anon_sym_del] = ACTIONS(2410), - [anon_sym_raise] = ACTIONS(2410), - [anon_sym_pass] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2410), - [anon_sym_continue] = ACTIONS(2410), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_else] = ACTIONS(2412), - [anon_sym_match] = ACTIONS(2410), - [anon_sym_async] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2410), - [anon_sym_while] = ACTIONS(2410), - [anon_sym_try] = ACTIONS(2410), - [anon_sym_except] = ACTIONS(2414), - [anon_sym_finally] = ACTIONS(2416), - [anon_sym_with] = ACTIONS(2410), - [anon_sym_def] = ACTIONS(2410), - [anon_sym_global] = ACTIONS(2410), - [anon_sym_nonlocal] = ACTIONS(2410), - [anon_sym_exec] = ACTIONS(2410), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_class] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2408), - [anon_sym_AT] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_LBRACE] = ACTIONS(2408), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_not] = ACTIONS(2410), - [anon_sym_AMP] = ACTIONS(2408), - [anon_sym_TILDE] = ACTIONS(2408), - [anon_sym_LT] = ACTIONS(2408), - [anon_sym_lambda] = ACTIONS(2410), - [anon_sym_yield] = ACTIONS(2410), - [sym_ellipsis] = ACTIONS(2408), - [anon_sym_None] = ACTIONS(2410), - [sym_integer] = ACTIONS(2410), - [sym_float] = ACTIONS(2408), - [anon_sym_await] = ACTIONS(2410), - [anon_sym_api] = ACTIONS(2410), - [sym_true] = ACTIONS(2410), - [sym_false] = ACTIONS(2410), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3662), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_type] = STATE(4298), + [sym_splat_type] = STATE(4146), + [sym_generic_type] = STATE(4146), + [sym_union_type] = STATE(4146), + [sym_constrained_type] = STATE(4146), + [sym_member_type] = STATE(4146), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2429), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_STAR_STAR] = ACTIONS(2433), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2410), - [anon_sym_include] = ACTIONS(2410), - [anon_sym_DEF] = ACTIONS(2410), - [anon_sym_cdef] = ACTIONS(2410), - [anon_sym_cpdef] = ACTIONS(2410), - [anon_sym_new] = ACTIONS(2410), - [anon_sym_ctypedef] = ACTIONS(2410), - [anon_sym_public] = ACTIONS(2410), - [anon_sym_packed] = ACTIONS(2410), - [anon_sym_inline] = ACTIONS(2410), - [anon_sym_readonly] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2410), - [sym_string_start] = ACTIONS(2408), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [706] = { - [sym_else_clause] = STATE(1007), - [sym_except_group_clause] = STATE(768), - [sym_finally_clause] = STATE(1395), - [aux_sym_try_statement_repeat2] = STATE(768), - [ts_builtin_sym_end] = ACTIONS(2408), - [sym_identifier] = ACTIONS(2410), - [anon_sym_import] = ACTIONS(2410), - [anon_sym_cimport] = ACTIONS(2410), - [anon_sym_from] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_STAR] = ACTIONS(2408), - [anon_sym_print] = ACTIONS(2410), - [anon_sym_assert] = ACTIONS(2410), - [anon_sym_return] = ACTIONS(2410), - [anon_sym_del] = ACTIONS(2410), - [anon_sym_raise] = ACTIONS(2410), - [anon_sym_pass] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2410), - [anon_sym_continue] = ACTIONS(2410), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_else] = ACTIONS(2412), - [anon_sym_match] = ACTIONS(2410), - [anon_sym_async] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2410), - [anon_sym_while] = ACTIONS(2410), - [anon_sym_try] = ACTIONS(2410), - [anon_sym_except_STAR] = ACTIONS(2418), - [anon_sym_finally] = ACTIONS(2416), - [anon_sym_with] = ACTIONS(2410), - [anon_sym_def] = ACTIONS(2410), - [anon_sym_global] = ACTIONS(2410), - [anon_sym_nonlocal] = ACTIONS(2410), - [anon_sym_exec] = ACTIONS(2410), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_class] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2408), - [anon_sym_AT] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_LBRACE] = ACTIONS(2408), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_not] = ACTIONS(2410), - [anon_sym_AMP] = ACTIONS(2408), - [anon_sym_TILDE] = ACTIONS(2408), - [anon_sym_LT] = ACTIONS(2408), - [anon_sym_lambda] = ACTIONS(2410), - [anon_sym_yield] = ACTIONS(2410), - [sym_ellipsis] = ACTIONS(2408), - [anon_sym_None] = ACTIONS(2410), - [sym_integer] = ACTIONS(2410), - [sym_float] = ACTIONS(2408), - [anon_sym_await] = ACTIONS(2410), - [anon_sym_api] = ACTIONS(2410), - [sym_true] = ACTIONS(2410), - [sym_false] = ACTIONS(2410), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3662), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_type] = STATE(4298), + [sym_splat_type] = STATE(4146), + [sym_generic_type] = STATE(4146), + [sym_union_type] = STATE(4146), + [sym_constrained_type] = STATE(4146), + [sym_member_type] = STATE(4146), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2429), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_STAR_STAR] = ACTIONS(2433), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2410), - [anon_sym_include] = ACTIONS(2410), - [anon_sym_DEF] = ACTIONS(2410), - [anon_sym_cdef] = ACTIONS(2410), - [anon_sym_cpdef] = ACTIONS(2410), - [anon_sym_new] = ACTIONS(2410), - [anon_sym_ctypedef] = ACTIONS(2410), - [anon_sym_public] = ACTIONS(2410), - [anon_sym_packed] = ACTIONS(2410), - [anon_sym_inline] = ACTIONS(2410), - [anon_sym_readonly] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2410), - [sym_string_start] = ACTIONS(2408), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [707] = { - [sym_named_expression] = STATE(2512), - [sym__named_expression_lhs] = STATE(5443), - [sym_list_splat_pattern] = STATE(2490), - [sym_as_pattern] = STATE(2512), - [sym_expression] = STATE(3646), - [sym_primary_expression] = STATE(1967), - [sym_not_operator] = STATE(2512), - [sym_boolean_operator] = STATE(2512), - [sym_binary_operator] = STATE(2509), - [sym_unary_operator] = STATE(2509), - [sym_comparison_operator] = STATE(2512), - [sym_lambda] = STATE(2512), - [sym_attribute] = STATE(2509), - [sym_subscript] = STATE(2509), - [sym_call] = STATE(2509), - [sym_type] = STATE(4149), - [sym_splat_type] = STATE(4185), - [sym_generic_type] = STATE(4185), - [sym_union_type] = STATE(4185), - [sym_constrained_type] = STATE(4185), - [sym_member_type] = STATE(4185), - [sym_list] = STATE(2509), - [sym_set] = STATE(2509), - [sym_tuple] = STATE(2509), - [sym_dictionary] = STATE(2509), - [sym_list_comprehension] = STATE(2509), - [sym_dictionary_comprehension] = STATE(2509), - [sym_set_comprehension] = STATE(2509), - [sym_generator_expression] = STATE(2509), - [sym_parenthesized_expression] = STATE(2509), - [sym_conditional_expression] = STATE(2512), - [sym_concatenated_string] = STATE(2509), - [sym_string] = STATE(2110), - [sym_none] = STATE(2509), - [sym_await] = STATE(2509), - [sym_new_expression] = STATE(2512), - [sym_sizeof_expression] = STATE(2509), - [sym_cast_expression] = STATE(2509), - [sym_identifier] = ACTIONS(2386), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2388), - [anon_sym_print] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_STAR_STAR] = ACTIONS(2392), - [anon_sym_exec] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_RBRACK] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_not] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_lambda] = ACTIONS(2400), - [sym_ellipsis] = ACTIONS(2218), - [anon_sym_None] = ACTIONS(2220), - [sym_integer] = ACTIONS(2202), - [sym_float] = ACTIONS(2218), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_api] = ACTIONS(2390), - [sym_true] = ACTIONS(2202), - [sym_false] = ACTIONS(2202), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3662), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_type] = STATE(4298), + [sym_splat_type] = STATE(4146), + [sym_generic_type] = STATE(4146), + [sym_union_type] = STATE(4146), + [sym_constrained_type] = STATE(4146), + [sym_member_type] = STATE(4146), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2429), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_STAR_STAR] = ACTIONS(2433), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2451), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2224), - [sym_string_start] = ACTIONS(2226), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [708] = { - [sym_named_expression] = STATE(3682), - [sym__named_expression_lhs] = STATE(5332), - [sym_expression_list] = STATE(4181), - [sym_pattern] = STATE(5117), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(2257), - [sym_as_pattern] = STATE(3682), - [sym_expression] = STATE(3591), - [sym_primary_expression] = STATE(1950), - [sym_not_operator] = STATE(3682), - [sym_boolean_operator] = STATE(3682), - [sym_binary_operator] = STATE(2179), - [sym_unary_operator] = STATE(2179), - [sym_comparison_operator] = STATE(3682), - [sym_lambda] = STATE(3682), - [sym_pattern_list] = STATE(4181), - [sym_yield] = STATE(4181), - [sym_attribute] = STATE(2260), - [sym_subscript] = STATE(2260), - [sym_call] = STATE(2179), - [sym_list] = STATE(2179), - [sym_set] = STATE(2179), - [sym_tuple] = STATE(2179), - [sym_dictionary] = STATE(2179), - [sym_list_comprehension] = STATE(2179), - [sym_dictionary_comprehension] = STATE(2179), - [sym_set_comprehension] = STATE(2179), - [sym_generator_expression] = STATE(2179), - [sym_parenthesized_expression] = STATE(2179), - [sym_conditional_expression] = STATE(3682), - [sym_concatenated_string] = STATE(2179), - [sym_string] = STATE(1968), - [sym__f_expression] = STATE(4181), - [sym_none] = STATE(2179), - [sym_await] = STATE(2179), - [sym_new_expression] = STATE(3682), - [sym_sizeof_expression] = STATE(2179), - [sym_cast_expression] = STATE(2179), - [sym_identifier] = ACTIONS(2422), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(2426), - [anon_sym_print] = ACTIONS(2428), - [anon_sym_match] = ACTIONS(2428), - [anon_sym_async] = ACTIONS(2428), - [anon_sym_exec] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_PLUS] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2110), - [anon_sym_TILDE] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2434), - [anon_sym_lambda] = ACTIONS(2436), - [anon_sym_yield] = ACTIONS(2438), - [sym_ellipsis] = ACTIONS(2116), - [anon_sym_None] = ACTIONS(2118), - [sym_integer] = ACTIONS(2100), - [sym_float] = ACTIONS(2116), - [anon_sym_await] = ACTIONS(2440), - [anon_sym_api] = ACTIONS(2428), - [sym_true] = ACTIONS(2100), - [sym_false] = ACTIONS(2100), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3662), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_type] = STATE(4298), + [sym_splat_type] = STATE(4146), + [sym_generic_type] = STATE(4146), + [sym_union_type] = STATE(4146), + [sym_constrained_type] = STATE(4146), + [sym_member_type] = STATE(4146), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2429), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_STAR_STAR] = ACTIONS(2433), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2453), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2442), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_string_start] = ACTIONS(2124), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [709] = { - [sym_else_clause] = STATE(1004), - [sym_except_clause] = STATE(777), - [sym_finally_clause] = STATE(1323), - [aux_sym_try_statement_repeat1] = STATE(777), - [sym_identifier] = ACTIONS(2444), - [anon_sym_import] = ACTIONS(2444), - [anon_sym_cimport] = ACTIONS(2444), - [anon_sym_from] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2446), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_print] = ACTIONS(2444), - [anon_sym_assert] = ACTIONS(2444), - [anon_sym_return] = ACTIONS(2444), - [anon_sym_del] = ACTIONS(2444), - [anon_sym_raise] = ACTIONS(2444), - [anon_sym_pass] = ACTIONS(2444), - [anon_sym_break] = ACTIONS(2444), - [anon_sym_continue] = ACTIONS(2444), - [anon_sym_if] = ACTIONS(2444), - [anon_sym_else] = ACTIONS(2448), - [anon_sym_match] = ACTIONS(2444), - [anon_sym_async] = ACTIONS(2444), - [anon_sym_for] = ACTIONS(2444), - [anon_sym_while] = ACTIONS(2444), - [anon_sym_try] = ACTIONS(2444), - [anon_sym_except] = ACTIONS(2450), - [anon_sym_finally] = ACTIONS(2452), - [anon_sym_with] = ACTIONS(2444), - [anon_sym_def] = ACTIONS(2444), - [anon_sym_global] = ACTIONS(2444), - [anon_sym_nonlocal] = ACTIONS(2444), - [anon_sym_exec] = ACTIONS(2444), - [anon_sym_type] = ACTIONS(2444), - [anon_sym_class] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2446), - [anon_sym_AT] = ACTIONS(2446), - [anon_sym_DASH] = ACTIONS(2446), - [anon_sym_LBRACE] = ACTIONS(2446), - [anon_sym_PLUS] = ACTIONS(2446), - [anon_sym_not] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2446), - [anon_sym_TILDE] = ACTIONS(2446), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_lambda] = ACTIONS(2444), - [anon_sym_yield] = ACTIONS(2444), - [sym_ellipsis] = ACTIONS(2446), - [anon_sym_None] = ACTIONS(2444), - [sym_integer] = ACTIONS(2444), - [sym_float] = ACTIONS(2446), - [anon_sym_await] = ACTIONS(2444), - [anon_sym_api] = ACTIONS(2444), - [sym_true] = ACTIONS(2444), - [sym_false] = ACTIONS(2444), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3662), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_type] = STATE(4298), + [sym_splat_type] = STATE(4146), + [sym_generic_type] = STATE(4146), + [sym_union_type] = STATE(4146), + [sym_constrained_type] = STATE(4146), + [sym_member_type] = STATE(4146), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2429), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_STAR_STAR] = ACTIONS(2433), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2455), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2444), - [anon_sym_include] = ACTIONS(2444), - [anon_sym_DEF] = ACTIONS(2444), - [anon_sym_cdef] = ACTIONS(2444), - [anon_sym_cpdef] = ACTIONS(2444), - [anon_sym_new] = ACTIONS(2444), - [anon_sym_ctypedef] = ACTIONS(2444), - [anon_sym_public] = ACTIONS(2444), - [anon_sym_packed] = ACTIONS(2444), - [anon_sym_inline] = ACTIONS(2444), - [anon_sym_readonly] = ACTIONS(2444), - [anon_sym_sizeof] = ACTIONS(2444), - [sym__dedent] = ACTIONS(2446), - [sym_string_start] = ACTIONS(2446), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [710] = { - [sym_else_clause] = STATE(1004), - [sym_except_group_clause] = STATE(778), - [sym_finally_clause] = STATE(1323), - [aux_sym_try_statement_repeat2] = STATE(778), - [sym_identifier] = ACTIONS(2444), - [anon_sym_import] = ACTIONS(2444), - [anon_sym_cimport] = ACTIONS(2444), - [anon_sym_from] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2446), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_print] = ACTIONS(2444), - [anon_sym_assert] = ACTIONS(2444), - [anon_sym_return] = ACTIONS(2444), - [anon_sym_del] = ACTIONS(2444), - [anon_sym_raise] = ACTIONS(2444), - [anon_sym_pass] = ACTIONS(2444), - [anon_sym_break] = ACTIONS(2444), - [anon_sym_continue] = ACTIONS(2444), - [anon_sym_if] = ACTIONS(2444), - [anon_sym_else] = ACTIONS(2448), - [anon_sym_match] = ACTIONS(2444), - [anon_sym_async] = ACTIONS(2444), - [anon_sym_for] = ACTIONS(2444), - [anon_sym_while] = ACTIONS(2444), - [anon_sym_try] = ACTIONS(2444), - [anon_sym_except_STAR] = ACTIONS(2454), - [anon_sym_finally] = ACTIONS(2452), - [anon_sym_with] = ACTIONS(2444), - [anon_sym_def] = ACTIONS(2444), - [anon_sym_global] = ACTIONS(2444), - [anon_sym_nonlocal] = ACTIONS(2444), - [anon_sym_exec] = ACTIONS(2444), - [anon_sym_type] = ACTIONS(2444), - [anon_sym_class] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2446), - [anon_sym_AT] = ACTIONS(2446), - [anon_sym_DASH] = ACTIONS(2446), - [anon_sym_LBRACE] = ACTIONS(2446), - [anon_sym_PLUS] = ACTIONS(2446), - [anon_sym_not] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2446), - [anon_sym_TILDE] = ACTIONS(2446), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_lambda] = ACTIONS(2444), - [anon_sym_yield] = ACTIONS(2444), - [sym_ellipsis] = ACTIONS(2446), - [anon_sym_None] = ACTIONS(2444), - [sym_integer] = ACTIONS(2444), - [sym_float] = ACTIONS(2446), - [anon_sym_await] = ACTIONS(2444), - [anon_sym_api] = ACTIONS(2444), - [sym_true] = ACTIONS(2444), - [sym_false] = ACTIONS(2444), + [sym_named_expression] = STATE(3724), + [sym__named_expression_lhs] = STATE(5368), + [sym_expression_list] = STATE(4160), + [sym_pattern] = STATE(5161), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(2172), + [sym_as_pattern] = STATE(3724), + [sym_expression] = STATE(3645), + [sym_primary_expression] = STATE(1942), + [sym_not_operator] = STATE(3724), + [sym_boolean_operator] = STATE(3724), + [sym_binary_operator] = STATE(2175), + [sym_unary_operator] = STATE(2175), + [sym_comparison_operator] = STATE(3724), + [sym_lambda] = STATE(3724), + [sym_pattern_list] = STATE(4160), + [sym_yield] = STATE(4160), + [sym_attribute] = STATE(2174), + [sym_subscript] = STATE(2174), + [sym_ellipsis] = STATE(2175), + [sym_call] = STATE(2175), + [sym_list] = STATE(2175), + [sym_set] = STATE(2175), + [sym_tuple] = STATE(2175), + [sym_dictionary] = STATE(2175), + [sym_list_comprehension] = STATE(2175), + [sym_dictionary_comprehension] = STATE(2175), + [sym_set_comprehension] = STATE(2175), + [sym_generator_expression] = STATE(2175), + [sym_parenthesized_expression] = STATE(2175), + [sym_conditional_expression] = STATE(3724), + [sym_concatenated_string] = STATE(2175), + [sym_string] = STATE(1976), + [sym__f_expression] = STATE(4160), + [sym_none] = STATE(2175), + [sym_await] = STATE(2175), + [sym_new_expression] = STATE(3724), + [sym_sizeof_expression] = STATE(2175), + [sym_cast_expression] = STATE(2175), + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_STAR] = ACTIONS(2409), + [anon_sym_print] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_async] = ACTIONS(2411), + [anon_sym_exec] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_TILDE] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(2417), + [anon_sym_lambda] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1717), + [anon_sym_None] = ACTIONS(1719), + [sym_integer] = ACTIONS(1701), + [sym_float] = ACTIONS(1721), + [anon_sym_await] = ACTIONS(2423), + [anon_sym_api] = ACTIONS(2411), + [sym_true] = ACTIONS(1701), + [sym_false] = ACTIONS(1701), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2444), - [anon_sym_include] = ACTIONS(2444), - [anon_sym_DEF] = ACTIONS(2444), - [anon_sym_cdef] = ACTIONS(2444), - [anon_sym_cpdef] = ACTIONS(2444), - [anon_sym_new] = ACTIONS(2444), - [anon_sym_ctypedef] = ACTIONS(2444), - [anon_sym_public] = ACTIONS(2444), - [anon_sym_packed] = ACTIONS(2444), - [anon_sym_inline] = ACTIONS(2444), - [anon_sym_readonly] = ACTIONS(2444), - [anon_sym_sizeof] = ACTIONS(2444), - [sym__dedent] = ACTIONS(2446), - [sym_string_start] = ACTIONS(2446), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_sizeof] = ACTIONS(1725), + [sym_string_start] = ACTIONS(1727), }, [711] = { - [sym_else_clause] = STATE(952), - [sym_except_clause] = STATE(777), - [sym_finally_clause] = STATE(1304), - [aux_sym_try_statement_repeat1] = STATE(777), - [sym_identifier] = ACTIONS(2410), - [anon_sym_import] = ACTIONS(2410), - [anon_sym_cimport] = ACTIONS(2410), - [anon_sym_from] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_STAR] = ACTIONS(2408), - [anon_sym_print] = ACTIONS(2410), - [anon_sym_assert] = ACTIONS(2410), - [anon_sym_return] = ACTIONS(2410), - [anon_sym_del] = ACTIONS(2410), - [anon_sym_raise] = ACTIONS(2410), - [anon_sym_pass] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2410), - [anon_sym_continue] = ACTIONS(2410), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_else] = ACTIONS(2448), - [anon_sym_match] = ACTIONS(2410), - [anon_sym_async] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2410), - [anon_sym_while] = ACTIONS(2410), - [anon_sym_try] = ACTIONS(2410), - [anon_sym_except] = ACTIONS(2450), - [anon_sym_finally] = ACTIONS(2452), - [anon_sym_with] = ACTIONS(2410), - [anon_sym_def] = ACTIONS(2410), - [anon_sym_global] = ACTIONS(2410), - [anon_sym_nonlocal] = ACTIONS(2410), - [anon_sym_exec] = ACTIONS(2410), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_class] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2408), - [anon_sym_AT] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_LBRACE] = ACTIONS(2408), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_not] = ACTIONS(2410), - [anon_sym_AMP] = ACTIONS(2408), - [anon_sym_TILDE] = ACTIONS(2408), - [anon_sym_LT] = ACTIONS(2408), - [anon_sym_lambda] = ACTIONS(2410), - [anon_sym_yield] = ACTIONS(2410), - [sym_ellipsis] = ACTIONS(2408), - [anon_sym_None] = ACTIONS(2410), - [sym_integer] = ACTIONS(2410), - [sym_float] = ACTIONS(2408), - [anon_sym_await] = ACTIONS(2410), - [anon_sym_api] = ACTIONS(2410), - [sym_true] = ACTIONS(2410), - [sym_false] = ACTIONS(2410), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(3922), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_type] = STATE(4474), + [sym_splat_type] = STATE(4369), + [sym_generic_type] = STATE(4369), + [sym_union_type] = STATE(4369), + [sym_constrained_type] = STATE(4369), + [sym_member_type] = STATE(4369), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2410), - [anon_sym_include] = ACTIONS(2410), - [anon_sym_DEF] = ACTIONS(2410), - [anon_sym_cdef] = ACTIONS(2410), - [anon_sym_cpdef] = ACTIONS(2410), - [anon_sym_new] = ACTIONS(2410), - [anon_sym_ctypedef] = ACTIONS(2410), - [anon_sym_public] = ACTIONS(2410), - [anon_sym_packed] = ACTIONS(2410), - [anon_sym_inline] = ACTIONS(2410), - [anon_sym_readonly] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2410), - [sym__dedent] = ACTIONS(2408), - [sym_string_start] = ACTIONS(2408), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [712] = { - [sym_else_clause] = STATE(952), - [sym_except_group_clause] = STATE(778), - [sym_finally_clause] = STATE(1304), - [aux_sym_try_statement_repeat2] = STATE(778), - [sym_identifier] = ACTIONS(2410), - [anon_sym_import] = ACTIONS(2410), - [anon_sym_cimport] = ACTIONS(2410), - [anon_sym_from] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_STAR] = ACTIONS(2408), - [anon_sym_print] = ACTIONS(2410), - [anon_sym_assert] = ACTIONS(2410), - [anon_sym_return] = ACTIONS(2410), - [anon_sym_del] = ACTIONS(2410), - [anon_sym_raise] = ACTIONS(2410), - [anon_sym_pass] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2410), - [anon_sym_continue] = ACTIONS(2410), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_else] = ACTIONS(2448), - [anon_sym_match] = ACTIONS(2410), - [anon_sym_async] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2410), - [anon_sym_while] = ACTIONS(2410), - [anon_sym_try] = ACTIONS(2410), - [anon_sym_except_STAR] = ACTIONS(2454), - [anon_sym_finally] = ACTIONS(2452), - [anon_sym_with] = ACTIONS(2410), - [anon_sym_def] = ACTIONS(2410), - [anon_sym_global] = ACTIONS(2410), - [anon_sym_nonlocal] = ACTIONS(2410), - [anon_sym_exec] = ACTIONS(2410), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_class] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2408), - [anon_sym_AT] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_LBRACE] = ACTIONS(2408), - [anon_sym_PLUS] = ACTIONS(2408), - [anon_sym_not] = ACTIONS(2410), - [anon_sym_AMP] = ACTIONS(2408), - [anon_sym_TILDE] = ACTIONS(2408), - [anon_sym_LT] = ACTIONS(2408), - [anon_sym_lambda] = ACTIONS(2410), - [anon_sym_yield] = ACTIONS(2410), - [sym_ellipsis] = ACTIONS(2408), - [anon_sym_None] = ACTIONS(2410), - [sym_integer] = ACTIONS(2410), - [sym_float] = ACTIONS(2408), - [anon_sym_await] = ACTIONS(2410), - [anon_sym_api] = ACTIONS(2410), - [sym_true] = ACTIONS(2410), - [sym_false] = ACTIONS(2410), + [sym_else_clause] = STATE(1013), + [sym_except_clause] = STATE(848), + [sym_finally_clause] = STATE(1509), + [aux_sym_try_statement_repeat1] = STATE(848), + [ts_builtin_sym_end] = ACTIONS(2463), + [sym_identifier] = ACTIONS(2465), + [anon_sym_import] = ACTIONS(2465), + [anon_sym_cimport] = ACTIONS(2465), + [anon_sym_from] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(2463), + [anon_sym_print] = ACTIONS(2465), + [anon_sym_assert] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_del] = ACTIONS(2465), + [anon_sym_raise] = ACTIONS(2465), + [anon_sym_pass] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_else] = ACTIONS(2467), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_try] = ACTIONS(2465), + [anon_sym_except] = ACTIONS(2469), + [anon_sym_finally] = ACTIONS(2471), + [anon_sym_with] = ACTIONS(2465), + [anon_sym_def] = ACTIONS(2465), + [anon_sym_global] = ACTIONS(2465), + [anon_sym_nonlocal] = ACTIONS(2465), + [anon_sym_exec] = ACTIONS(2465), + [anon_sym_type] = ACTIONS(2465), + [anon_sym_class] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_AT] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_not] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2463), + [anon_sym_TILDE] = ACTIONS(2463), + [anon_sym_LT] = ACTIONS(2463), + [anon_sym_lambda] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2463), + [anon_sym_None] = ACTIONS(2465), + [sym_integer] = ACTIONS(2465), + [sym_float] = ACTIONS(2463), + [anon_sym_await] = ACTIONS(2465), + [anon_sym_api] = ACTIONS(2465), + [sym_true] = ACTIONS(2465), + [sym_false] = ACTIONS(2465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2410), - [anon_sym_include] = ACTIONS(2410), - [anon_sym_DEF] = ACTIONS(2410), - [anon_sym_cdef] = ACTIONS(2410), - [anon_sym_cpdef] = ACTIONS(2410), - [anon_sym_new] = ACTIONS(2410), - [anon_sym_ctypedef] = ACTIONS(2410), - [anon_sym_public] = ACTIONS(2410), - [anon_sym_packed] = ACTIONS(2410), - [anon_sym_inline] = ACTIONS(2410), - [anon_sym_readonly] = ACTIONS(2410), - [anon_sym_sizeof] = ACTIONS(2410), - [sym__dedent] = ACTIONS(2408), - [sym_string_start] = ACTIONS(2408), + [anon_sym_property] = ACTIONS(2465), + [anon_sym_include] = ACTIONS(2465), + [anon_sym_DEF] = ACTIONS(2465), + [anon_sym_cdef] = ACTIONS(2465), + [anon_sym_cpdef] = ACTIONS(2465), + [anon_sym_new] = ACTIONS(2465), + [anon_sym_ctypedef] = ACTIONS(2465), + [anon_sym_public] = ACTIONS(2465), + [anon_sym_packed] = ACTIONS(2465), + [anon_sym_inline] = ACTIONS(2465), + [anon_sym_readonly] = ACTIONS(2465), + [anon_sym_sizeof] = ACTIONS(2465), + [sym_string_start] = ACTIONS(2463), }, [713] = { - [sym_named_expression] = STATE(2512), - [sym__named_expression_lhs] = STATE(5443), - [sym_list_splat_pattern] = STATE(2490), - [sym_as_pattern] = STATE(2512), - [sym_expression] = STATE(3646), - [sym_primary_expression] = STATE(1967), - [sym_not_operator] = STATE(2512), - [sym_boolean_operator] = STATE(2512), - [sym_binary_operator] = STATE(2509), - [sym_unary_operator] = STATE(2509), - [sym_comparison_operator] = STATE(2512), - [sym_lambda] = STATE(2512), - [sym_attribute] = STATE(2509), - [sym_subscript] = STATE(2509), - [sym_call] = STATE(2509), - [sym_type] = STATE(4149), - [sym_splat_type] = STATE(4185), - [sym_generic_type] = STATE(4185), - [sym_union_type] = STATE(4185), - [sym_constrained_type] = STATE(4185), - [sym_member_type] = STATE(4185), - [sym_list] = STATE(2509), - [sym_set] = STATE(2509), - [sym_tuple] = STATE(2509), - [sym_dictionary] = STATE(2509), - [sym_list_comprehension] = STATE(2509), - [sym_dictionary_comprehension] = STATE(2509), - [sym_set_comprehension] = STATE(2509), - [sym_generator_expression] = STATE(2509), - [sym_parenthesized_expression] = STATE(2509), - [sym_conditional_expression] = STATE(2512), - [sym_concatenated_string] = STATE(2509), - [sym_string] = STATE(2110), - [sym_none] = STATE(2509), - [sym_await] = STATE(2509), - [sym_new_expression] = STATE(2512), - [sym_sizeof_expression] = STATE(2509), - [sym_cast_expression] = STATE(2509), - [sym_identifier] = ACTIONS(2386), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2388), - [anon_sym_print] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_STAR_STAR] = ACTIONS(2392), - [anon_sym_exec] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_RBRACK] = ACTIONS(2456), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_not] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_lambda] = ACTIONS(2400), - [sym_ellipsis] = ACTIONS(2218), - [anon_sym_None] = ACTIONS(2220), - [sym_integer] = ACTIONS(2202), - [sym_float] = ACTIONS(2218), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_api] = ACTIONS(2390), - [sym_true] = ACTIONS(2202), - [sym_false] = ACTIONS(2202), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5556), + [sym_list_splat_pattern] = STATE(1975), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3577), + [sym_primary_expression] = STATE(1927), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_attribute] = STATE(2021), + [sym_subscript] = STATE(2021), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_type] = STATE(4068), + [sym_splat_type] = STATE(4053), + [sym_generic_type] = STATE(4053), + [sym_union_type] = STATE(4053), + [sym_constrained_type] = STATE(4053), + [sym_member_type] = STATE(4053), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_print] = ACTIONS(576), + [anon_sym_match] = ACTIONS(576), + [anon_sym_async] = ACTIONS(576), + [anon_sym_STAR_STAR] = ACTIONS(2477), + [anon_sym_exec] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(598), + [anon_sym_api] = ACTIONS(576), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2224), - [sym_string_start] = ACTIONS(2226), + [anon_sym_new] = ACTIONS(2483), + [anon_sym_sizeof] = ACTIONS(105), + [sym_string_start] = ACTIONS(107), }, [714] = { - [sym_named_expression] = STATE(3682), - [sym__named_expression_lhs] = STATE(5332), - [sym_expression_list] = STATE(4263), - [sym_pattern] = STATE(5117), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(2257), - [sym_as_pattern] = STATE(3682), - [sym_expression] = STATE(3591), - [sym_primary_expression] = STATE(1950), - [sym_not_operator] = STATE(3682), - [sym_boolean_operator] = STATE(3682), - [sym_binary_operator] = STATE(2179), - [sym_unary_operator] = STATE(2179), - [sym_comparison_operator] = STATE(3682), - [sym_lambda] = STATE(3682), - [sym_pattern_list] = STATE(4263), - [sym_yield] = STATE(4263), - [sym_attribute] = STATE(2260), - [sym_subscript] = STATE(2260), - [sym_call] = STATE(2179), - [sym_list] = STATE(2179), - [sym_set] = STATE(2179), - [sym_tuple] = STATE(2179), - [sym_dictionary] = STATE(2179), - [sym_list_comprehension] = STATE(2179), - [sym_dictionary_comprehension] = STATE(2179), - [sym_set_comprehension] = STATE(2179), - [sym_generator_expression] = STATE(2179), - [sym_parenthesized_expression] = STATE(2179), - [sym_conditional_expression] = STATE(3682), - [sym_concatenated_string] = STATE(2179), - [sym_string] = STATE(1968), - [sym__f_expression] = STATE(4263), - [sym_none] = STATE(2179), - [sym_await] = STATE(2179), - [sym_new_expression] = STATE(3682), - [sym_sizeof_expression] = STATE(2179), - [sym_cast_expression] = STATE(2179), - [sym_identifier] = ACTIONS(2422), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(2426), - [anon_sym_print] = ACTIONS(2428), - [anon_sym_match] = ACTIONS(2428), - [anon_sym_async] = ACTIONS(2428), - [anon_sym_exec] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_PLUS] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2110), - [anon_sym_TILDE] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2434), - [anon_sym_lambda] = ACTIONS(2436), - [anon_sym_yield] = ACTIONS(2438), - [sym_ellipsis] = ACTIONS(2116), - [anon_sym_None] = ACTIONS(2118), - [sym_integer] = ACTIONS(2100), - [sym_float] = ACTIONS(2116), - [anon_sym_await] = ACTIONS(2440), - [anon_sym_api] = ACTIONS(2428), - [sym_true] = ACTIONS(2100), - [sym_false] = ACTIONS(2100), + [sym_else_clause] = STATE(1009), + [sym_except_clause] = STATE(848), + [sym_finally_clause] = STATE(1328), + [aux_sym_try_statement_repeat1] = STATE(848), + [ts_builtin_sym_end] = ACTIONS(2485), + [sym_identifier] = ACTIONS(2487), + [anon_sym_import] = ACTIONS(2487), + [anon_sym_cimport] = ACTIONS(2487), + [anon_sym_from] = ACTIONS(2487), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2487), + [anon_sym_assert] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2487), + [anon_sym_del] = ACTIONS(2487), + [anon_sym_raise] = ACTIONS(2487), + [anon_sym_pass] = ACTIONS(2487), + [anon_sym_break] = ACTIONS(2487), + [anon_sym_continue] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(2487), + [anon_sym_else] = ACTIONS(2467), + [anon_sym_match] = ACTIONS(2487), + [anon_sym_async] = ACTIONS(2487), + [anon_sym_for] = ACTIONS(2487), + [anon_sym_while] = ACTIONS(2487), + [anon_sym_try] = ACTIONS(2487), + [anon_sym_except] = ACTIONS(2469), + [anon_sym_finally] = ACTIONS(2471), + [anon_sym_with] = ACTIONS(2487), + [anon_sym_def] = ACTIONS(2487), + [anon_sym_global] = ACTIONS(2487), + [anon_sym_nonlocal] = ACTIONS(2487), + [anon_sym_exec] = ACTIONS(2487), + [anon_sym_type] = ACTIONS(2487), + [anon_sym_class] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_AT] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2485), + [anon_sym_lambda] = ACTIONS(2487), + [anon_sym_yield] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2485), + [anon_sym_None] = ACTIONS(2487), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2485), + [anon_sym_await] = ACTIONS(2487), + [anon_sym_api] = ACTIONS(2487), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2442), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_string_start] = ACTIONS(2124), + [anon_sym_property] = ACTIONS(2487), + [anon_sym_include] = ACTIONS(2487), + [anon_sym_DEF] = ACTIONS(2487), + [anon_sym_cdef] = ACTIONS(2487), + [anon_sym_cpdef] = ACTIONS(2487), + [anon_sym_new] = ACTIONS(2487), + [anon_sym_ctypedef] = ACTIONS(2487), + [anon_sym_public] = ACTIONS(2487), + [anon_sym_packed] = ACTIONS(2487), + [anon_sym_inline] = ACTIONS(2487), + [anon_sym_readonly] = ACTIONS(2487), + [anon_sym_sizeof] = ACTIONS(2487), + [sym_string_start] = ACTIONS(2485), }, [715] = { - [sym_else_clause] = STATE(950), - [sym_except_group_clause] = STATE(768), - [sym_finally_clause] = STATE(1363), - [aux_sym_try_statement_repeat2] = STATE(768), - [ts_builtin_sym_end] = ACTIONS(2446), - [sym_identifier] = ACTIONS(2444), - [anon_sym_import] = ACTIONS(2444), - [anon_sym_cimport] = ACTIONS(2444), - [anon_sym_from] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2446), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_print] = ACTIONS(2444), - [anon_sym_assert] = ACTIONS(2444), - [anon_sym_return] = ACTIONS(2444), - [anon_sym_del] = ACTIONS(2444), - [anon_sym_raise] = ACTIONS(2444), - [anon_sym_pass] = ACTIONS(2444), - [anon_sym_break] = ACTIONS(2444), - [anon_sym_continue] = ACTIONS(2444), - [anon_sym_if] = ACTIONS(2444), - [anon_sym_else] = ACTIONS(2412), - [anon_sym_match] = ACTIONS(2444), - [anon_sym_async] = ACTIONS(2444), - [anon_sym_for] = ACTIONS(2444), - [anon_sym_while] = ACTIONS(2444), - [anon_sym_try] = ACTIONS(2444), - [anon_sym_except_STAR] = ACTIONS(2418), - [anon_sym_finally] = ACTIONS(2416), - [anon_sym_with] = ACTIONS(2444), - [anon_sym_def] = ACTIONS(2444), - [anon_sym_global] = ACTIONS(2444), - [anon_sym_nonlocal] = ACTIONS(2444), - [anon_sym_exec] = ACTIONS(2444), - [anon_sym_type] = ACTIONS(2444), - [anon_sym_class] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2446), - [anon_sym_AT] = ACTIONS(2446), - [anon_sym_DASH] = ACTIONS(2446), - [anon_sym_LBRACE] = ACTIONS(2446), - [anon_sym_PLUS] = ACTIONS(2446), - [anon_sym_not] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2446), - [anon_sym_TILDE] = ACTIONS(2446), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_lambda] = ACTIONS(2444), - [anon_sym_yield] = ACTIONS(2444), - [sym_ellipsis] = ACTIONS(2446), - [anon_sym_None] = ACTIONS(2444), - [sym_integer] = ACTIONS(2444), - [sym_float] = ACTIONS(2446), - [anon_sym_await] = ACTIONS(2444), - [anon_sym_api] = ACTIONS(2444), - [sym_true] = ACTIONS(2444), - [sym_false] = ACTIONS(2444), + [sym_else_clause] = STATE(1013), + [sym_except_group_clause] = STATE(856), + [sym_finally_clause] = STATE(1509), + [aux_sym_try_statement_repeat2] = STATE(856), + [ts_builtin_sym_end] = ACTIONS(2463), + [sym_identifier] = ACTIONS(2465), + [anon_sym_import] = ACTIONS(2465), + [anon_sym_cimport] = ACTIONS(2465), + [anon_sym_from] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(2463), + [anon_sym_print] = ACTIONS(2465), + [anon_sym_assert] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_del] = ACTIONS(2465), + [anon_sym_raise] = ACTIONS(2465), + [anon_sym_pass] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_else] = ACTIONS(2467), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_try] = ACTIONS(2465), + [anon_sym_except_STAR] = ACTIONS(2489), + [anon_sym_finally] = ACTIONS(2471), + [anon_sym_with] = ACTIONS(2465), + [anon_sym_def] = ACTIONS(2465), + [anon_sym_global] = ACTIONS(2465), + [anon_sym_nonlocal] = ACTIONS(2465), + [anon_sym_exec] = ACTIONS(2465), + [anon_sym_type] = ACTIONS(2465), + [anon_sym_class] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_AT] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_not] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2463), + [anon_sym_TILDE] = ACTIONS(2463), + [anon_sym_LT] = ACTIONS(2463), + [anon_sym_lambda] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2463), + [anon_sym_None] = ACTIONS(2465), + [sym_integer] = ACTIONS(2465), + [sym_float] = ACTIONS(2463), + [anon_sym_await] = ACTIONS(2465), + [anon_sym_api] = ACTIONS(2465), + [sym_true] = ACTIONS(2465), + [sym_false] = ACTIONS(2465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2444), - [anon_sym_include] = ACTIONS(2444), - [anon_sym_DEF] = ACTIONS(2444), - [anon_sym_cdef] = ACTIONS(2444), - [anon_sym_cpdef] = ACTIONS(2444), - [anon_sym_new] = ACTIONS(2444), - [anon_sym_ctypedef] = ACTIONS(2444), - [anon_sym_public] = ACTIONS(2444), - [anon_sym_packed] = ACTIONS(2444), - [anon_sym_inline] = ACTIONS(2444), - [anon_sym_readonly] = ACTIONS(2444), - [anon_sym_sizeof] = ACTIONS(2444), - [sym_string_start] = ACTIONS(2446), + [anon_sym_property] = ACTIONS(2465), + [anon_sym_include] = ACTIONS(2465), + [anon_sym_DEF] = ACTIONS(2465), + [anon_sym_cdef] = ACTIONS(2465), + [anon_sym_cpdef] = ACTIONS(2465), + [anon_sym_new] = ACTIONS(2465), + [anon_sym_ctypedef] = ACTIONS(2465), + [anon_sym_public] = ACTIONS(2465), + [anon_sym_packed] = ACTIONS(2465), + [anon_sym_inline] = ACTIONS(2465), + [anon_sym_readonly] = ACTIONS(2465), + [anon_sym_sizeof] = ACTIONS(2465), + [sym_string_start] = ACTIONS(2463), }, [716] = { - [sym_named_expression] = STATE(2512), - [sym__named_expression_lhs] = STATE(5443), - [sym_list_splat_pattern] = STATE(2490), - [sym_as_pattern] = STATE(2512), - [sym_expression] = STATE(3646), - [sym_primary_expression] = STATE(1967), - [sym_not_operator] = STATE(2512), - [sym_boolean_operator] = STATE(2512), - [sym_binary_operator] = STATE(2509), - [sym_unary_operator] = STATE(2509), - [sym_comparison_operator] = STATE(2512), - [sym_lambda] = STATE(2512), - [sym_attribute] = STATE(2509), - [sym_subscript] = STATE(2509), - [sym_call] = STATE(2509), - [sym_type] = STATE(4149), - [sym_splat_type] = STATE(4185), - [sym_generic_type] = STATE(4185), - [sym_union_type] = STATE(4185), - [sym_constrained_type] = STATE(4185), - [sym_member_type] = STATE(4185), - [sym_list] = STATE(2509), - [sym_set] = STATE(2509), - [sym_tuple] = STATE(2509), - [sym_dictionary] = STATE(2509), - [sym_list_comprehension] = STATE(2509), - [sym_dictionary_comprehension] = STATE(2509), - [sym_set_comprehension] = STATE(2509), - [sym_generator_expression] = STATE(2509), - [sym_parenthesized_expression] = STATE(2509), - [sym_conditional_expression] = STATE(2512), - [sym_concatenated_string] = STATE(2509), - [sym_string] = STATE(2110), - [sym_none] = STATE(2509), - [sym_await] = STATE(2509), - [sym_new_expression] = STATE(2512), - [sym_sizeof_expression] = STATE(2509), - [sym_cast_expression] = STATE(2509), - [sym_identifier] = ACTIONS(2386), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2388), - [anon_sym_print] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_STAR_STAR] = ACTIONS(2392), - [anon_sym_exec] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_RBRACK] = ACTIONS(2458), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_not] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_lambda] = ACTIONS(2400), - [sym_ellipsis] = ACTIONS(2218), - [anon_sym_None] = ACTIONS(2220), - [sym_integer] = ACTIONS(2202), - [sym_float] = ACTIONS(2218), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_api] = ACTIONS(2390), - [sym_true] = ACTIONS(2202), - [sym_false] = ACTIONS(2202), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(3922), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_type] = STATE(4963), + [sym_splat_type] = STATE(4369), + [sym_generic_type] = STATE(4369), + [sym_union_type] = STATE(4369), + [sym_constrained_type] = STATE(4369), + [sym_member_type] = STATE(4369), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2224), - [sym_string_start] = ACTIONS(2226), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [717] = { - [sym_named_expression] = STATE(2512), - [sym__named_expression_lhs] = STATE(5443), - [sym_list_splat_pattern] = STATE(2490), - [sym_as_pattern] = STATE(2512), - [sym_expression] = STATE(3646), - [sym_primary_expression] = STATE(1967), - [sym_not_operator] = STATE(2512), - [sym_boolean_operator] = STATE(2512), - [sym_binary_operator] = STATE(2509), - [sym_unary_operator] = STATE(2509), - [sym_comparison_operator] = STATE(2512), - [sym_lambda] = STATE(2512), - [sym_attribute] = STATE(2509), - [sym_subscript] = STATE(2509), - [sym_call] = STATE(2509), - [sym_type] = STATE(4149), - [sym_splat_type] = STATE(4185), - [sym_generic_type] = STATE(4185), - [sym_union_type] = STATE(4185), - [sym_constrained_type] = STATE(4185), - [sym_member_type] = STATE(4185), - [sym_list] = STATE(2509), - [sym_set] = STATE(2509), - [sym_tuple] = STATE(2509), - [sym_dictionary] = STATE(2509), - [sym_list_comprehension] = STATE(2509), - [sym_dictionary_comprehension] = STATE(2509), - [sym_set_comprehension] = STATE(2509), - [sym_generator_expression] = STATE(2509), - [sym_parenthesized_expression] = STATE(2509), - [sym_conditional_expression] = STATE(2512), - [sym_concatenated_string] = STATE(2509), - [sym_string] = STATE(2110), - [sym_none] = STATE(2509), - [sym_await] = STATE(2509), - [sym_new_expression] = STATE(2512), - [sym_sizeof_expression] = STATE(2509), - [sym_cast_expression] = STATE(2509), - [sym_identifier] = ACTIONS(2386), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2388), - [anon_sym_print] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_STAR_STAR] = ACTIONS(2392), - [anon_sym_exec] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_RBRACK] = ACTIONS(2460), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_not] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_lambda] = ACTIONS(2400), - [sym_ellipsis] = ACTIONS(2218), - [anon_sym_None] = ACTIONS(2220), - [sym_integer] = ACTIONS(2202), - [sym_float] = ACTIONS(2218), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_api] = ACTIONS(2390), - [sym_true] = ACTIONS(2202), - [sym_false] = ACTIONS(2202), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5487), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(3738), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_type] = STATE(4410), + [sym_splat_type] = STATE(4369), + [sym_generic_type] = STATE(4369), + [sym_union_type] = STATE(4369), + [sym_constrained_type] = STATE(4369), + [sym_member_type] = STATE(4369), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(2491), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(2493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2224), - [sym_string_start] = ACTIONS(2226), + [anon_sym_new] = ACTIONS(2495), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [718] = { - [sym_else_clause] = STATE(950), - [sym_except_clause] = STATE(767), - [sym_finally_clause] = STATE(1363), - [aux_sym_try_statement_repeat1] = STATE(767), - [ts_builtin_sym_end] = ACTIONS(2446), - [sym_identifier] = ACTIONS(2444), - [anon_sym_import] = ACTIONS(2444), - [anon_sym_cimport] = ACTIONS(2444), - [anon_sym_from] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2446), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_print] = ACTIONS(2444), - [anon_sym_assert] = ACTIONS(2444), - [anon_sym_return] = ACTIONS(2444), - [anon_sym_del] = ACTIONS(2444), - [anon_sym_raise] = ACTIONS(2444), - [anon_sym_pass] = ACTIONS(2444), - [anon_sym_break] = ACTIONS(2444), - [anon_sym_continue] = ACTIONS(2444), - [anon_sym_if] = ACTIONS(2444), - [anon_sym_else] = ACTIONS(2412), - [anon_sym_match] = ACTIONS(2444), - [anon_sym_async] = ACTIONS(2444), - [anon_sym_for] = ACTIONS(2444), - [anon_sym_while] = ACTIONS(2444), - [anon_sym_try] = ACTIONS(2444), - [anon_sym_except] = ACTIONS(2414), - [anon_sym_finally] = ACTIONS(2416), - [anon_sym_with] = ACTIONS(2444), - [anon_sym_def] = ACTIONS(2444), - [anon_sym_global] = ACTIONS(2444), - [anon_sym_nonlocal] = ACTIONS(2444), - [anon_sym_exec] = ACTIONS(2444), - [anon_sym_type] = ACTIONS(2444), - [anon_sym_class] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2446), - [anon_sym_AT] = ACTIONS(2446), - [anon_sym_DASH] = ACTIONS(2446), - [anon_sym_LBRACE] = ACTIONS(2446), - [anon_sym_PLUS] = ACTIONS(2446), - [anon_sym_not] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2446), - [anon_sym_TILDE] = ACTIONS(2446), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_lambda] = ACTIONS(2444), - [anon_sym_yield] = ACTIONS(2444), - [sym_ellipsis] = ACTIONS(2446), - [anon_sym_None] = ACTIONS(2444), - [sym_integer] = ACTIONS(2444), - [sym_float] = ACTIONS(2446), - [anon_sym_await] = ACTIONS(2444), - [anon_sym_api] = ACTIONS(2444), - [sym_true] = ACTIONS(2444), - [sym_false] = ACTIONS(2444), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4606), + [sym_dictionary_splat] = STATE(4606), + [sym_parenthesized_list_splat] = STATE(4607), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3483), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_keyword_argument] = STATE(4606), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2501), + [anon_sym_COMMA] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(2503), + [anon_sym_print] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_async] = ACTIONS(2505), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(2507), + [anon_sym_api] = ACTIONS(2505), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2444), - [anon_sym_include] = ACTIONS(2444), - [anon_sym_DEF] = ACTIONS(2444), - [anon_sym_cdef] = ACTIONS(2444), - [anon_sym_cpdef] = ACTIONS(2444), - [anon_sym_new] = ACTIONS(2444), - [anon_sym_ctypedef] = ACTIONS(2444), - [anon_sym_public] = ACTIONS(2444), - [anon_sym_packed] = ACTIONS(2444), - [anon_sym_inline] = ACTIONS(2444), - [anon_sym_readonly] = ACTIONS(2444), - [anon_sym_sizeof] = ACTIONS(2444), - [sym_string_start] = ACTIONS(2446), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [719] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(3973), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_type] = STATE(4343), - [sym_splat_type] = STATE(4465), - [sym_generic_type] = STATE(4465), - [sym_union_type] = STATE(4465), - [sym_constrained_type] = STATE(4465), - [sym_member_type] = STATE(4465), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(2464), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(452), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_list_splat_pattern] = STATE(1975), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3726), + [sym_primary_expression] = STATE(1927), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_attribute] = STATE(2021), + [sym_subscript] = STATE(2021), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_type] = STATE(4137), + [sym_splat_type] = STATE(4053), + [sym_generic_type] = STATE(4053), + [sym_union_type] = STATE(4053), + [sym_constrained_type] = STATE(4053), + [sym_member_type] = STATE(4053), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_print] = ACTIONS(576), + [anon_sym_match] = ACTIONS(576), + [anon_sym_async] = ACTIONS(576), + [anon_sym_STAR_STAR] = ACTIONS(2477), + [anon_sym_exec] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(598), + [anon_sym_api] = ACTIONS(576), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym_string_start] = ACTIONS(107), }, [720] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(3973), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_type] = STATE(4842), - [sym_splat_type] = STATE(4465), - [sym_generic_type] = STATE(4465), - [sym_union_type] = STATE(4465), - [sym_constrained_type] = STATE(4465), - [sym_member_type] = STATE(4465), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(2464), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(452), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(3922), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_type] = STATE(4555), + [sym_splat_type] = STATE(4369), + [sym_generic_type] = STATE(4369), + [sym_union_type] = STATE(4369), + [sym_constrained_type] = STATE(4369), + [sym_member_type] = STATE(4369), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [721] = { - [sym_named_expression] = STATE(2512), - [sym__named_expression_lhs] = STATE(5443), - [sym_list_splat_pattern] = STATE(2490), - [sym_as_pattern] = STATE(2512), - [sym_expression] = STATE(3646), - [sym_primary_expression] = STATE(1967), - [sym_not_operator] = STATE(2512), - [sym_boolean_operator] = STATE(2512), - [sym_binary_operator] = STATE(2509), - [sym_unary_operator] = STATE(2509), - [sym_comparison_operator] = STATE(2512), - [sym_lambda] = STATE(2512), - [sym_attribute] = STATE(2509), - [sym_subscript] = STATE(2509), - [sym_call] = STATE(2509), - [sym_type] = STATE(4149), - [sym_splat_type] = STATE(4185), - [sym_generic_type] = STATE(4185), - [sym_union_type] = STATE(4185), - [sym_constrained_type] = STATE(4185), - [sym_member_type] = STATE(4185), - [sym_list] = STATE(2509), - [sym_set] = STATE(2509), - [sym_tuple] = STATE(2509), - [sym_dictionary] = STATE(2509), - [sym_list_comprehension] = STATE(2509), - [sym_dictionary_comprehension] = STATE(2509), - [sym_set_comprehension] = STATE(2509), - [sym_generator_expression] = STATE(2509), - [sym_parenthesized_expression] = STATE(2509), - [sym_conditional_expression] = STATE(2512), - [sym_concatenated_string] = STATE(2509), - [sym_string] = STATE(2110), - [sym_none] = STATE(2509), - [sym_await] = STATE(2509), - [sym_new_expression] = STATE(2512), - [sym_sizeof_expression] = STATE(2509), - [sym_cast_expression] = STATE(2509), - [sym_identifier] = ACTIONS(2386), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2388), - [anon_sym_print] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_STAR_STAR] = ACTIONS(2392), - [anon_sym_exec] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_not] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_lambda] = ACTIONS(2400), - [sym_ellipsis] = ACTIONS(2218), - [anon_sym_None] = ACTIONS(2220), - [sym_integer] = ACTIONS(2202), - [sym_float] = ACTIONS(2218), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_api] = ACTIONS(2390), - [sym_true] = ACTIONS(2202), - [sym_false] = ACTIONS(2202), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3662), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_type] = STATE(4224), + [sym_splat_type] = STATE(4146), + [sym_generic_type] = STATE(4146), + [sym_union_type] = STATE(4146), + [sym_constrained_type] = STATE(4146), + [sym_member_type] = STATE(4146), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2429), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_STAR_STAR] = ACTIONS(2433), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2224), - [sym_string_start] = ACTIONS(2226), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [722] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(3973), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_type] = STATE(4878), - [sym_splat_type] = STATE(4465), - [sym_generic_type] = STATE(4465), - [sym_union_type] = STATE(4465), - [sym_constrained_type] = STATE(4465), - [sym_member_type] = STATE(4465), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(2464), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(452), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), - }, - [723] = { - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5548), - [sym_list_splat_pattern] = STATE(1985), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3590), - [sym_primary_expression] = STATE(1918), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_attribute] = STATE(1981), - [sym_subscript] = STATE(1981), - [sym_call] = STATE(1981), - [sym_type] = STATE(4087), - [sym_splat_type] = STATE(4031), - [sym_generic_type] = STATE(4031), - [sym_union_type] = STATE(4031), - [sym_constrained_type] = STATE(4031), - [sym_member_type] = STATE(4031), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(2470), - [anon_sym_print] = ACTIONS(847), - [anon_sym_match] = ACTIONS(847), - [anon_sym_async] = ACTIONS(847), - [anon_sym_STAR_STAR] = ACTIONS(2472), - [anon_sym_exec] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(1184), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5556), + [sym_list_splat_pattern] = STATE(1975), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3577), + [sym_primary_expression] = STATE(1927), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_attribute] = STATE(2021), + [sym_subscript] = STATE(2021), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_type] = STATE(4136), + [sym_splat_type] = STATE(4053), + [sym_generic_type] = STATE(4053), + [sym_union_type] = STATE(4053), + [sym_constrained_type] = STATE(4053), + [sym_member_type] = STATE(4053), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_print] = ACTIONS(576), + [anon_sym_match] = ACTIONS(576), + [anon_sym_async] = ACTIONS(576), + [anon_sym_STAR_STAR] = ACTIONS(2477), + [anon_sym_exec] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(1191), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(2474), + [anon_sym_not] = ACTIONS(2479), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(2476), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_lambda] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(869), - [anon_sym_api] = ACTIONS(847), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(598), + [anon_sym_api] = ACTIONS(576), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_sizeof] = ACTIONS(103), - [sym_string_start] = ACTIONS(105), + [anon_sym_new] = ACTIONS(2483), + [anon_sym_sizeof] = ACTIONS(105), + [sym_string_start] = ACTIONS(107), + }, + [723] = { + [sym_else_clause] = STATE(1009), + [sym_except_group_clause] = STATE(856), + [sym_finally_clause] = STATE(1328), + [aux_sym_try_statement_repeat2] = STATE(856), + [ts_builtin_sym_end] = ACTIONS(2485), + [sym_identifier] = ACTIONS(2487), + [anon_sym_import] = ACTIONS(2487), + [anon_sym_cimport] = ACTIONS(2487), + [anon_sym_from] = ACTIONS(2487), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2487), + [anon_sym_assert] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2487), + [anon_sym_del] = ACTIONS(2487), + [anon_sym_raise] = ACTIONS(2487), + [anon_sym_pass] = ACTIONS(2487), + [anon_sym_break] = ACTIONS(2487), + [anon_sym_continue] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(2487), + [anon_sym_else] = ACTIONS(2467), + [anon_sym_match] = ACTIONS(2487), + [anon_sym_async] = ACTIONS(2487), + [anon_sym_for] = ACTIONS(2487), + [anon_sym_while] = ACTIONS(2487), + [anon_sym_try] = ACTIONS(2487), + [anon_sym_except_STAR] = ACTIONS(2489), + [anon_sym_finally] = ACTIONS(2471), + [anon_sym_with] = ACTIONS(2487), + [anon_sym_def] = ACTIONS(2487), + [anon_sym_global] = ACTIONS(2487), + [anon_sym_nonlocal] = ACTIONS(2487), + [anon_sym_exec] = ACTIONS(2487), + [anon_sym_type] = ACTIONS(2487), + [anon_sym_class] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_AT] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2485), + [anon_sym_lambda] = ACTIONS(2487), + [anon_sym_yield] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2485), + [anon_sym_None] = ACTIONS(2487), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2485), + [anon_sym_await] = ACTIONS(2487), + [anon_sym_api] = ACTIONS(2487), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2487), + [anon_sym_include] = ACTIONS(2487), + [anon_sym_DEF] = ACTIONS(2487), + [anon_sym_cdef] = ACTIONS(2487), + [anon_sym_cpdef] = ACTIONS(2487), + [anon_sym_new] = ACTIONS(2487), + [anon_sym_ctypedef] = ACTIONS(2487), + [anon_sym_public] = ACTIONS(2487), + [anon_sym_packed] = ACTIONS(2487), + [anon_sym_inline] = ACTIONS(2487), + [anon_sym_readonly] = ACTIONS(2487), + [anon_sym_sizeof] = ACTIONS(2487), + [sym_string_start] = ACTIONS(2485), }, [724] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4783), - [sym_dictionary_splat] = STATE(4783), - [sym_parenthesized_list_splat] = STATE(4798), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3535), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4655), + [sym_dictionary_splat] = STATE(4655), + [sym_parenthesized_list_splat] = STATE(4656), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3492), [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_keyword_argument] = STATE(4783), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2484), - [anon_sym_COMMA] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_print] = ACTIONS(2488), - [anon_sym_match] = ACTIONS(2488), - [anon_sym_async] = ACTIONS(2488), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(2488), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(2490), - [anon_sym_api] = ACTIONS(2488), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_keyword_argument] = STATE(4655), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_COMMA] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(2503), + [anon_sym_print] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_async] = ACTIONS(2505), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(2507), + [anon_sym_api] = ACTIONS(2505), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [725] = { - [sym_pattern] = STATE(3073), - [sym_tuple_pattern] = STATE(3071), - [sym_list_pattern] = STATE(3071), - [sym_list_splat_pattern] = STATE(2409), - [sym_primary_expression] = STATE(3065), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_attribute] = STATE(2415), - [sym_subscript] = STATE(2415), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_STAR] = ACTIONS(2498), - [anon_sym_print] = ACTIONS(2500), - [anon_sym_COLON] = ACTIONS(2494), - [anon_sym_match] = ACTIONS(2500), - [anon_sym_async] = ACTIONS(2500), - [anon_sym_exec] = ACTIONS(2500), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_LBRACK] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(1207), - [anon_sym_PLUS_EQ] = ACTIONS(2494), - [anon_sym_DASH_EQ] = ACTIONS(2494), - [anon_sym_STAR_EQ] = ACTIONS(2494), - [anon_sym_SLASH_EQ] = ACTIONS(2494), - [anon_sym_AT_EQ] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2494), - [anon_sym_PERCENT_EQ] = ACTIONS(2494), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2494), - [anon_sym_GT_GT_EQ] = ACTIONS(2494), - [anon_sym_LT_LT_EQ] = ACTIONS(2494), - [anon_sym_AMP_EQ] = ACTIONS(2494), - [anon_sym_CARET_EQ] = ACTIONS(2494), - [anon_sym_PIPE_EQ] = ACTIONS(2494), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(2504), - [anon_sym_api] = ACTIONS(2500), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5556), + [sym_list_splat_pattern] = STATE(1975), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3577), + [sym_primary_expression] = STATE(1927), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_attribute] = STATE(2021), + [sym_subscript] = STATE(2021), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_type] = STATE(4137), + [sym_splat_type] = STATE(4053), + [sym_generic_type] = STATE(4053), + [sym_union_type] = STATE(4053), + [sym_constrained_type] = STATE(4053), + [sym_member_type] = STATE(4053), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_print] = ACTIONS(576), + [anon_sym_match] = ACTIONS(576), + [anon_sym_async] = ACTIONS(576), + [anon_sym_STAR_STAR] = ACTIONS(2477), + [anon_sym_exec] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(598), + [anon_sym_api] = ACTIONS(576), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1142), - [sym__newline] = ACTIONS(2494), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(2483), + [anon_sym_sizeof] = ACTIONS(105), + [sym_string_start] = ACTIONS(107), }, [726] = { - [sym_pattern] = STATE(3073), - [sym_tuple_pattern] = STATE(3071), - [sym_list_pattern] = STATE(3071), - [sym_list_splat_pattern] = STATE(2409), - [sym_primary_expression] = STATE(3065), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_attribute] = STATE(2415), - [sym_subscript] = STATE(2415), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_STAR] = ACTIONS(2498), - [anon_sym_print] = ACTIONS(2500), - [anon_sym_COLON] = ACTIONS(2506), - [anon_sym_match] = ACTIONS(2500), - [anon_sym_async] = ACTIONS(2500), - [anon_sym_exec] = ACTIONS(2500), - [anon_sym_EQ] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(1207), - [anon_sym_PLUS_EQ] = ACTIONS(2506), - [anon_sym_DASH_EQ] = ACTIONS(2506), - [anon_sym_STAR_EQ] = ACTIONS(2506), - [anon_sym_SLASH_EQ] = ACTIONS(2506), - [anon_sym_AT_EQ] = ACTIONS(2506), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2506), - [anon_sym_PERCENT_EQ] = ACTIONS(2506), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2506), - [anon_sym_GT_GT_EQ] = ACTIONS(2506), - [anon_sym_LT_LT_EQ] = ACTIONS(2506), - [anon_sym_AMP_EQ] = ACTIONS(2506), - [anon_sym_CARET_EQ] = ACTIONS(2506), - [anon_sym_PIPE_EQ] = ACTIONS(2506), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(2504), - [anon_sym_api] = ACTIONS(2500), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5487), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(3738), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_type] = STATE(4379), + [sym_splat_type] = STATE(4369), + [sym_generic_type] = STATE(4369), + [sym_union_type] = STATE(4369), + [sym_constrained_type] = STATE(4369), + [sym_member_type] = STATE(4369), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(2491), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(2493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1142), - [sym__newline] = ACTIONS(2506), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(2495), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [727] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5479), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(3787), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_type] = STATE(4449), - [sym_splat_type] = STATE(4465), - [sym_generic_type] = STATE(4465), - [sym_union_type] = STATE(4465), - [sym_constrained_type] = STATE(4465), - [sym_member_type] = STATE(4465), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(2464), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(452), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(2508), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(2510), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_else_clause] = STATE(996), + [sym_except_clause] = STATE(828), + [sym_finally_clause] = STATE(1530), + [aux_sym_try_statement_repeat1] = STATE(828), + [sym_identifier] = ACTIONS(2487), + [anon_sym_import] = ACTIONS(2487), + [anon_sym_cimport] = ACTIONS(2487), + [anon_sym_from] = ACTIONS(2487), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2487), + [anon_sym_assert] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2487), + [anon_sym_del] = ACTIONS(2487), + [anon_sym_raise] = ACTIONS(2487), + [anon_sym_pass] = ACTIONS(2487), + [anon_sym_break] = ACTIONS(2487), + [anon_sym_continue] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(2487), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2487), + [anon_sym_async] = ACTIONS(2487), + [anon_sym_for] = ACTIONS(2487), + [anon_sym_while] = ACTIONS(2487), + [anon_sym_try] = ACTIONS(2487), + [anon_sym_except] = ACTIONS(2513), + [anon_sym_finally] = ACTIONS(2515), + [anon_sym_with] = ACTIONS(2487), + [anon_sym_def] = ACTIONS(2487), + [anon_sym_global] = ACTIONS(2487), + [anon_sym_nonlocal] = ACTIONS(2487), + [anon_sym_exec] = ACTIONS(2487), + [anon_sym_type] = ACTIONS(2487), + [anon_sym_class] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_AT] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2485), + [anon_sym_lambda] = ACTIONS(2487), + [anon_sym_yield] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2485), + [anon_sym_None] = ACTIONS(2487), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2485), + [anon_sym_await] = ACTIONS(2487), + [anon_sym_api] = ACTIONS(2487), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2512), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_property] = ACTIONS(2487), + [anon_sym_include] = ACTIONS(2487), + [anon_sym_DEF] = ACTIONS(2487), + [anon_sym_cdef] = ACTIONS(2487), + [anon_sym_cpdef] = ACTIONS(2487), + [anon_sym_new] = ACTIONS(2487), + [anon_sym_ctypedef] = ACTIONS(2487), + [anon_sym_public] = ACTIONS(2487), + [anon_sym_packed] = ACTIONS(2487), + [anon_sym_inline] = ACTIONS(2487), + [anon_sym_readonly] = ACTIONS(2487), + [anon_sym_sizeof] = ACTIONS(2487), + [sym__dedent] = ACTIONS(2485), + [sym_string_start] = ACTIONS(2485), }, [728] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_with_item] = STATE(4823), - [sym_list_splat] = STATE(4723), - [sym_parenthesized_list_splat] = STATE(4723), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3551), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4578), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5484), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1363), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(1363), - [anon_sym_exec] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_api] = ACTIONS(1363), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_else_clause] = STATE(996), + [sym_except_group_clause] = STATE(833), + [sym_finally_clause] = STATE(1530), + [aux_sym_try_statement_repeat2] = STATE(833), + [sym_identifier] = ACTIONS(2487), + [anon_sym_import] = ACTIONS(2487), + [anon_sym_cimport] = ACTIONS(2487), + [anon_sym_from] = ACTIONS(2487), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2487), + [anon_sym_assert] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2487), + [anon_sym_del] = ACTIONS(2487), + [anon_sym_raise] = ACTIONS(2487), + [anon_sym_pass] = ACTIONS(2487), + [anon_sym_break] = ACTIONS(2487), + [anon_sym_continue] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(2487), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2487), + [anon_sym_async] = ACTIONS(2487), + [anon_sym_for] = ACTIONS(2487), + [anon_sym_while] = ACTIONS(2487), + [anon_sym_try] = ACTIONS(2487), + [anon_sym_except_STAR] = ACTIONS(2517), + [anon_sym_finally] = ACTIONS(2515), + [anon_sym_with] = ACTIONS(2487), + [anon_sym_def] = ACTIONS(2487), + [anon_sym_global] = ACTIONS(2487), + [anon_sym_nonlocal] = ACTIONS(2487), + [anon_sym_exec] = ACTIONS(2487), + [anon_sym_type] = ACTIONS(2487), + [anon_sym_class] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_AT] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2485), + [anon_sym_lambda] = ACTIONS(2487), + [anon_sym_yield] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2485), + [anon_sym_None] = ACTIONS(2487), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2485), + [anon_sym_await] = ACTIONS(2487), + [anon_sym_api] = ACTIONS(2487), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_property] = ACTIONS(2487), + [anon_sym_include] = ACTIONS(2487), + [anon_sym_DEF] = ACTIONS(2487), + [anon_sym_cdef] = ACTIONS(2487), + [anon_sym_cpdef] = ACTIONS(2487), + [anon_sym_new] = ACTIONS(2487), + [anon_sym_ctypedef] = ACTIONS(2487), + [anon_sym_public] = ACTIONS(2487), + [anon_sym_packed] = ACTIONS(2487), + [anon_sym_inline] = ACTIONS(2487), + [anon_sym_readonly] = ACTIONS(2487), + [anon_sym_sizeof] = ACTIONS(2487), + [sym__dedent] = ACTIONS(2485), + [sym_string_start] = ACTIONS(2485), }, [729] = { - [sym__patterns] = STATE(5215), - [sym_pattern] = STATE(4859), - [sym_tuple_pattern] = STATE(5181), - [sym_list_pattern] = STATE(5181), - [sym_list_splat_pattern] = STATE(3023), - [sym_primary_expression] = STATE(3053), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_attribute] = STATE(3031), - [sym_subscript] = STATE(3031), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(5027), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_RPAREN] = ACTIONS(2522), - [anon_sym_STAR] = ACTIONS(2524), - [anon_sym_print] = ACTIONS(2526), - [anon_sym_match] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(2526), - [anon_sym_exec] = ACTIONS(2526), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(2530), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(2532), - [anon_sym_api] = ACTIONS(2526), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4686), + [sym_dictionary_splat] = STATE(4686), + [sym_parenthesized_list_splat] = STATE(4687), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3498), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_keyword_argument] = STATE(4686), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2519), + [anon_sym_COMMA] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(2503), + [anon_sym_print] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_async] = ACTIONS(2505), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(2507), + [anon_sym_api] = ACTIONS(2505), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [730] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4773), - [sym_dictionary_splat] = STATE(4773), - [sym_parenthesized_list_splat] = STATE(4774), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3514), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_keyword_argument] = STATE(4773), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2534), - [anon_sym_COMMA] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_print] = ACTIONS(2488), - [anon_sym_match] = ACTIONS(2488), - [anon_sym_async] = ACTIONS(2488), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(2488), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(2490), - [anon_sym_api] = ACTIONS(2488), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_else_clause] = STATE(1029), + [sym_except_clause] = STATE(828), + [sym_finally_clause] = STATE(1567), + [aux_sym_try_statement_repeat1] = STATE(828), + [sym_identifier] = ACTIONS(2465), + [anon_sym_import] = ACTIONS(2465), + [anon_sym_cimport] = ACTIONS(2465), + [anon_sym_from] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(2463), + [anon_sym_print] = ACTIONS(2465), + [anon_sym_assert] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_del] = ACTIONS(2465), + [anon_sym_raise] = ACTIONS(2465), + [anon_sym_pass] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_try] = ACTIONS(2465), + [anon_sym_except] = ACTIONS(2513), + [anon_sym_finally] = ACTIONS(2515), + [anon_sym_with] = ACTIONS(2465), + [anon_sym_def] = ACTIONS(2465), + [anon_sym_global] = ACTIONS(2465), + [anon_sym_nonlocal] = ACTIONS(2465), + [anon_sym_exec] = ACTIONS(2465), + [anon_sym_type] = ACTIONS(2465), + [anon_sym_class] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_AT] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_not] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2463), + [anon_sym_TILDE] = ACTIONS(2463), + [anon_sym_LT] = ACTIONS(2463), + [anon_sym_lambda] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2463), + [anon_sym_None] = ACTIONS(2465), + [sym_integer] = ACTIONS(2465), + [sym_float] = ACTIONS(2463), + [anon_sym_await] = ACTIONS(2465), + [anon_sym_api] = ACTIONS(2465), + [sym_true] = ACTIONS(2465), + [sym_false] = ACTIONS(2465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_property] = ACTIONS(2465), + [anon_sym_include] = ACTIONS(2465), + [anon_sym_DEF] = ACTIONS(2465), + [anon_sym_cdef] = ACTIONS(2465), + [anon_sym_cpdef] = ACTIONS(2465), + [anon_sym_new] = ACTIONS(2465), + [anon_sym_ctypedef] = ACTIONS(2465), + [anon_sym_public] = ACTIONS(2465), + [anon_sym_packed] = ACTIONS(2465), + [anon_sym_inline] = ACTIONS(2465), + [anon_sym_readonly] = ACTIONS(2465), + [anon_sym_sizeof] = ACTIONS(2465), + [sym__dedent] = ACTIONS(2463), + [sym_string_start] = ACTIONS(2463), }, [731] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(3973), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_type] = STATE(4558), - [sym_splat_type] = STATE(4465), - [sym_generic_type] = STATE(4465), - [sym_union_type] = STATE(4465), - [sym_constrained_type] = STATE(4465), - [sym_member_type] = STATE(4465), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(2464), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(452), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3662), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_type] = STATE(4221), + [sym_splat_type] = STATE(4146), + [sym_generic_type] = STATE(4146), + [sym_union_type] = STATE(4146), + [sym_constrained_type] = STATE(4146), + [sym_member_type] = STATE(4146), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2429), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_STAR_STAR] = ACTIONS(2433), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [732] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4725), - [sym_dictionary_splat] = STATE(4725), - [sym_parenthesized_list_splat] = STATE(4729), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3474), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_with_item] = STATE(4509), + [sym_list_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4887), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3542), [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_keyword_argument] = STATE(4725), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_COMMA] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_print] = ACTIONS(2488), - [anon_sym_match] = ACTIONS(2488), - [anon_sym_async] = ACTIONS(2488), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(2488), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(2490), - [anon_sym_api] = ACTIONS(2488), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4785), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5212), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2523), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_exec] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1374), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [733] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(3973), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_type] = STATE(4844), - [sym_splat_type] = STATE(4465), - [sym_generic_type] = STATE(4465), - [sym_union_type] = STATE(4465), - [sym_constrained_type] = STATE(4465), - [sym_member_type] = STATE(4465), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(2464), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(452), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_pattern] = STATE(3033), + [sym_tuple_pattern] = STATE(3093), + [sym_list_pattern] = STATE(3093), + [sym_list_splat_pattern] = STATE(2428), + [sym_primary_expression] = STATE(3062), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_attribute] = STATE(2429), + [sym_subscript] = STATE(2429), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_LPAREN] = ACTIONS(2529), + [anon_sym_STAR] = ACTIONS(2531), + [anon_sym_print] = ACTIONS(2533), + [anon_sym_COLON] = ACTIONS(2527), + [anon_sym_match] = ACTIONS(2533), + [anon_sym_async] = ACTIONS(2533), + [anon_sym_exec] = ACTIONS(2533), + [anon_sym_EQ] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_PLUS_EQ] = ACTIONS(2527), + [anon_sym_DASH_EQ] = ACTIONS(2527), + [anon_sym_STAR_EQ] = ACTIONS(2527), + [anon_sym_SLASH_EQ] = ACTIONS(2527), + [anon_sym_AT_EQ] = ACTIONS(2527), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2527), + [anon_sym_PERCENT_EQ] = ACTIONS(2527), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2527), + [anon_sym_GT_GT_EQ] = ACTIONS(2527), + [anon_sym_LT_LT_EQ] = ACTIONS(2527), + [anon_sym_AMP_EQ] = ACTIONS(2527), + [anon_sym_CARET_EQ] = ACTIONS(2527), + [anon_sym_PIPE_EQ] = ACTIONS(2527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(2537), + [anon_sym_api] = ACTIONS(2533), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1149), + [sym__newline] = ACTIONS(2527), + [sym_string_start] = ACTIONS(1151), }, [734] = { - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5548), - [sym_list_splat_pattern] = STATE(1985), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3590), - [sym_primary_expression] = STATE(1918), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_attribute] = STATE(1981), - [sym_subscript] = STATE(1981), - [sym_call] = STATE(1981), - [sym_type] = STATE(4093), - [sym_splat_type] = STATE(4031), - [sym_generic_type] = STATE(4031), - [sym_union_type] = STATE(4031), - [sym_constrained_type] = STATE(4031), - [sym_member_type] = STATE(4031), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(2470), - [anon_sym_print] = ACTIONS(847), - [anon_sym_match] = ACTIONS(847), - [anon_sym_async] = ACTIONS(847), - [anon_sym_STAR_STAR] = ACTIONS(2472), - [anon_sym_exec] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(2476), - [sym_ellipsis] = ACTIONS(77), - [anon_sym_None] = ACTIONS(79), - [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(869), - [anon_sym_api] = ACTIONS(847), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4712), + [sym_dictionary_splat] = STATE(4712), + [sym_parenthesized_list_splat] = STATE(4713), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3505), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_keyword_argument] = STATE(4712), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2539), + [anon_sym_COMMA] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(2503), + [anon_sym_print] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_async] = ACTIONS(2505), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(2507), + [anon_sym_api] = ACTIONS(2505), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_sizeof] = ACTIONS(103), - [sym_string_start] = ACTIONS(105), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [735] = { - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5548), - [sym_list_splat_pattern] = STATE(1985), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3590), - [sym_primary_expression] = STATE(1918), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_attribute] = STATE(1981), - [sym_subscript] = STATE(1981), - [sym_call] = STATE(1981), - [sym_type] = STATE(4094), - [sym_splat_type] = STATE(4031), - [sym_generic_type] = STATE(4031), - [sym_union_type] = STATE(4031), - [sym_constrained_type] = STATE(4031), - [sym_member_type] = STATE(4031), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(2470), - [anon_sym_print] = ACTIONS(847), - [anon_sym_match] = ACTIONS(847), - [anon_sym_async] = ACTIONS(847), - [anon_sym_STAR_STAR] = ACTIONS(2472), - [anon_sym_exec] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(2476), - [sym_ellipsis] = ACTIONS(77), - [anon_sym_None] = ACTIONS(79), - [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(869), - [anon_sym_api] = ACTIONS(847), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(3922), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_type] = STATE(4939), + [sym_splat_type] = STATE(4369), + [sym_generic_type] = STATE(4369), + [sym_union_type] = STATE(4369), + [sym_constrained_type] = STATE(4369), + [sym_member_type] = STATE(4369), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_sizeof] = ACTIONS(103), - [sym_string_start] = ACTIONS(105), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [736] = { - [sym_named_expression] = STATE(2512), - [sym__named_expression_lhs] = STATE(5443), - [sym_list_splat_pattern] = STATE(2490), - [sym_as_pattern] = STATE(2512), - [sym_expression] = STATE(3646), - [sym_primary_expression] = STATE(1967), - [sym_not_operator] = STATE(2512), - [sym_boolean_operator] = STATE(2512), - [sym_binary_operator] = STATE(2509), - [sym_unary_operator] = STATE(2509), - [sym_comparison_operator] = STATE(2512), - [sym_lambda] = STATE(2512), - [sym_attribute] = STATE(2509), - [sym_subscript] = STATE(2509), - [sym_call] = STATE(2509), - [sym_type] = STATE(4097), - [sym_splat_type] = STATE(4185), - [sym_generic_type] = STATE(4185), - [sym_union_type] = STATE(4185), - [sym_constrained_type] = STATE(4185), - [sym_member_type] = STATE(4185), - [sym_list] = STATE(2509), - [sym_set] = STATE(2509), - [sym_tuple] = STATE(2509), - [sym_dictionary] = STATE(2509), - [sym_list_comprehension] = STATE(2509), - [sym_dictionary_comprehension] = STATE(2509), - [sym_set_comprehension] = STATE(2509), - [sym_generator_expression] = STATE(2509), - [sym_parenthesized_expression] = STATE(2509), - [sym_conditional_expression] = STATE(2512), - [sym_concatenated_string] = STATE(2509), - [sym_string] = STATE(2110), - [sym_none] = STATE(2509), - [sym_await] = STATE(2509), - [sym_new_expression] = STATE(2512), - [sym_sizeof_expression] = STATE(2509), - [sym_cast_expression] = STATE(2509), - [sym_identifier] = ACTIONS(2386), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2388), - [anon_sym_print] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_STAR_STAR] = ACTIONS(2392), - [anon_sym_exec] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_not] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_lambda] = ACTIONS(2400), - [sym_ellipsis] = ACTIONS(2218), - [anon_sym_None] = ACTIONS(2220), - [sym_integer] = ACTIONS(2202), - [sym_float] = ACTIONS(2218), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_api] = ACTIONS(2390), - [sym_true] = ACTIONS(2202), - [sym_false] = ACTIONS(2202), + [sym_pattern] = STATE(3033), + [sym_tuple_pattern] = STATE(3093), + [sym_list_pattern] = STATE(3093), + [sym_list_splat_pattern] = STATE(2428), + [sym_primary_expression] = STATE(3062), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_attribute] = STATE(2429), + [sym_subscript] = STATE(2429), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_LPAREN] = ACTIONS(2529), + [anon_sym_STAR] = ACTIONS(2531), + [anon_sym_print] = ACTIONS(2533), + [anon_sym_COLON] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2533), + [anon_sym_async] = ACTIONS(2533), + [anon_sym_exec] = ACTIONS(2533), + [anon_sym_EQ] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_PLUS_EQ] = ACTIONS(2541), + [anon_sym_DASH_EQ] = ACTIONS(2541), + [anon_sym_STAR_EQ] = ACTIONS(2541), + [anon_sym_SLASH_EQ] = ACTIONS(2541), + [anon_sym_AT_EQ] = ACTIONS(2541), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2541), + [anon_sym_PERCENT_EQ] = ACTIONS(2541), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2541), + [anon_sym_GT_GT_EQ] = ACTIONS(2541), + [anon_sym_LT_LT_EQ] = ACTIONS(2541), + [anon_sym_AMP_EQ] = ACTIONS(2541), + [anon_sym_CARET_EQ] = ACTIONS(2541), + [anon_sym_PIPE_EQ] = ACTIONS(2541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(2537), + [anon_sym_api] = ACTIONS(2533), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2224), - [sym_string_start] = ACTIONS(2226), + [anon_sym_sizeof] = ACTIONS(1149), + [sym__newline] = ACTIONS(2541), + [sym_string_start] = ACTIONS(1151), }, [737] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5479), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(3787), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_type] = STATE(4322), - [sym_splat_type] = STATE(4465), - [sym_generic_type] = STATE(4465), - [sym_union_type] = STATE(4465), - [sym_constrained_type] = STATE(4465), - [sym_member_type] = STATE(4465), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(2464), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(452), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(2508), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(2510), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3662), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_type] = STATE(4013), + [sym_splat_type] = STATE(4146), + [sym_generic_type] = STATE(4146), + [sym_union_type] = STATE(4146), + [sym_constrained_type] = STATE(4146), + [sym_member_type] = STATE(4146), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2429), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_STAR_STAR] = ACTIONS(2433), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2512), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [738] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(3973), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_type] = STATE(4603), - [sym_splat_type] = STATE(4465), - [sym_generic_type] = STATE(4465), - [sym_union_type] = STATE(4465), - [sym_constrained_type] = STATE(4465), - [sym_member_type] = STATE(4465), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(2464), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(452), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4843), + [sym_dictionary_splat] = STATE(4843), + [sym_parenthesized_list_splat] = STATE(4844), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3543), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_keyword_argument] = STATE(4843), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(1320), + [anon_sym_COMMA] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(2503), + [anon_sym_print] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_async] = ACTIONS(2505), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(2507), + [anon_sym_api] = ACTIONS(2505), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [739] = { - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_list_splat_pattern] = STATE(1985), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3715), - [sym_primary_expression] = STATE(1918), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_attribute] = STATE(1981), - [sym_subscript] = STATE(1981), - [sym_call] = STATE(1981), - [sym_type] = STATE(4268), - [sym_splat_type] = STATE(4031), - [sym_generic_type] = STATE(4031), - [sym_union_type] = STATE(4031), - [sym_constrained_type] = STATE(4031), - [sym_member_type] = STATE(4031), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(2470), - [anon_sym_print] = ACTIONS(847), - [anon_sym_match] = ACTIONS(847), - [anon_sym_async] = ACTIONS(847), - [anon_sym_STAR_STAR] = ACTIONS(2472), - [anon_sym_exec] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(77), - [anon_sym_None] = ACTIONS(79), - [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(869), - [anon_sym_api] = ACTIONS(847), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4889), + [sym_dictionary_splat] = STATE(4889), + [sym_parenthesized_list_splat] = STATE(4890), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3553), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_keyword_argument] = STATE(4889), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2543), + [anon_sym_COMMA] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(2503), + [anon_sym_print] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_async] = ACTIONS(2505), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(2507), + [anon_sym_api] = ACTIONS(2505), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym_string_start] = ACTIONS(105), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [740] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5479), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(3787), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_type] = STATE(4343), - [sym_splat_type] = STATE(4465), - [sym_generic_type] = STATE(4465), - [sym_union_type] = STATE(4465), - [sym_constrained_type] = STATE(4465), - [sym_member_type] = STATE(4465), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(2464), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(452), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(2508), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(2510), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4760), + [sym_dictionary_splat] = STATE(4760), + [sym_parenthesized_list_splat] = STATE(4761), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3517), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_keyword_argument] = STATE(4760), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2545), + [anon_sym_COMMA] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(2503), + [anon_sym_print] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_async] = ACTIONS(2505), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(2507), + [anon_sym_api] = ACTIONS(2505), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2512), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [741] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4593), - [sym_dictionary_splat] = STATE(4593), - [sym_parenthesized_list_splat] = STATE(4594), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3500), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_keyword_argument] = STATE(4593), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), + [sym__patterns] = STATE(5243), + [sym_pattern] = STATE(4940), + [sym_tuple_pattern] = STATE(5009), + [sym_list_pattern] = STATE(5009), + [sym_list_splat_pattern] = STATE(3030), + [sym_primary_expression] = STATE(3044), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_attribute] = STATE(3074), + [sym_subscript] = STATE(3074), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_concatenated_string] = STATE(2295), [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2536), - [anon_sym_COMMA] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_print] = ACTIONS(2488), - [anon_sym_match] = ACTIONS(2488), - [anon_sym_async] = ACTIONS(2488), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(2488), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(2490), - [anon_sym_api] = ACTIONS(2488), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(5032), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_RPAREN] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_print] = ACTIONS(2555), + [anon_sym_match] = ACTIONS(2555), + [anon_sym_async] = ACTIONS(2555), + [anon_sym_exec] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(2559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(2561), + [anon_sym_api] = ACTIONS(2555), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [742] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4646), - [sym_dictionary_splat] = STATE(4646), - [sym_parenthesized_list_splat] = STATE(4647), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3512), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4755), + [sym_dictionary_splat] = STATE(4755), + [sym_parenthesized_list_splat] = STATE(4757), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3557), [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_keyword_argument] = STATE(4646), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2538), - [anon_sym_COMMA] = ACTIONS(1269), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_print] = ACTIONS(2488), - [anon_sym_match] = ACTIONS(2488), - [anon_sym_async] = ACTIONS(2488), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(2488), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(2490), - [anon_sym_api] = ACTIONS(2488), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_keyword_argument] = STATE(4755), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2563), + [anon_sym_COMMA] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(2503), + [anon_sym_print] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_async] = ACTIONS(2505), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(2507), + [anon_sym_api] = ACTIONS(2505), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [743] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4725), - [sym_dictionary_splat] = STATE(4725), - [sym_parenthesized_list_splat] = STATE(4729), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3995), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4725), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_COMMA] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym__patterns] = STATE(5374), + [sym_pattern] = STATE(4940), + [sym_tuple_pattern] = STATE(5009), + [sym_list_pattern] = STATE(5009), + [sym_list_splat_pattern] = STATE(3030), + [sym_primary_expression] = STATE(3044), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_attribute] = STATE(3074), + [sym_subscript] = STATE(3074), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_int_type] = STATE(3345), + [sym__signedness] = STATE(2995), + [sym__longness] = STATE(3209), + [sym_function_pointer_type] = STATE(3345), + [sym_c_type] = STATE(5032), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_RPAREN] = ACTIONS(2565), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_print] = ACTIONS(2555), + [anon_sym_match] = ACTIONS(2555), + [anon_sym_async] = ACTIONS(2555), + [anon_sym_exec] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(2559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(2561), + [anon_sym_api] = ACTIONS(2555), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_int] = ACTIONS(1252), + [anon_sym_double] = ACTIONS(1252), + [anon_sym_complex] = ACTIONS(1252), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_short] = ACTIONS(1258), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_volatile] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [744] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4677), - [sym_dictionary_splat] = STATE(4677), - [sym_parenthesized_list_splat] = STATE(4678), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3517), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_keyword_argument] = STATE(4677), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(3922), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_type] = STATE(4883), + [sym_splat_type] = STATE(4369), + [sym_generic_type] = STATE(4369), + [sym_union_type] = STATE(4369), + [sym_constrained_type] = STATE(4369), + [sym_member_type] = STATE(4369), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2544), - [anon_sym_COMMA] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_print] = ACTIONS(2488), - [anon_sym_match] = ACTIONS(2488), - [anon_sym_async] = ACTIONS(2488), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(2488), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(2490), - [anon_sym_api] = ACTIONS(2488), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [745] = { - [sym__patterns] = STATE(5363), - [sym_pattern] = STATE(4859), - [sym_tuple_pattern] = STATE(5181), - [sym_list_pattern] = STATE(5181), - [sym_list_splat_pattern] = STATE(3023), - [sym_primary_expression] = STATE(3053), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_attribute] = STATE(3031), - [sym_subscript] = STATE(3031), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_int_type] = STATE(3333), - [sym__signedness] = STATE(2979), - [sym__longness] = STATE(3169), - [sym_function_pointer_type] = STATE(3333), - [sym_c_type] = STATE(5027), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_RPAREN] = ACTIONS(2546), - [anon_sym_STAR] = ACTIONS(2524), - [anon_sym_print] = ACTIONS(2526), - [anon_sym_match] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(2526), - [anon_sym_exec] = ACTIONS(2526), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(2530), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(2532), - [anon_sym_api] = ACTIONS(2526), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_list_splat_pattern] = STATE(1975), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3726), + [sym_primary_expression] = STATE(1927), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_attribute] = STATE(2021), + [sym_subscript] = STATE(2021), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_type] = STATE(4313), + [sym_splat_type] = STATE(4053), + [sym_generic_type] = STATE(4053), + [sym_union_type] = STATE(4053), + [sym_constrained_type] = STATE(4053), + [sym_member_type] = STATE(4053), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_print] = ACTIONS(576), + [anon_sym_match] = ACTIONS(576), + [anon_sym_async] = ACTIONS(576), + [anon_sym_STAR_STAR] = ACTIONS(2477), + [anon_sym_exec] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(598), + [anon_sym_api] = ACTIONS(576), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1243), - [anon_sym_double] = ACTIONS(1243), - [anon_sym_complex] = ACTIONS(1243), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1249), - [anon_sym_short] = ACTIONS(1249), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_volatile] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym_string_start] = ACTIONS(107), }, [746] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4702), - [sym_dictionary_splat] = STATE(4702), - [sym_parenthesized_list_splat] = STATE(4703), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3523), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_keyword_argument] = STATE(4702), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5487), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(3738), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_type] = STATE(4474), + [sym_splat_type] = STATE(4369), + [sym_generic_type] = STATE(4369), + [sym_union_type] = STATE(4369), + [sym_constrained_type] = STATE(4369), + [sym_member_type] = STATE(4369), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2548), - [anon_sym_COMMA] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_print] = ACTIONS(2488), - [anon_sym_match] = ACTIONS(2488), - [anon_sym_async] = ACTIONS(2488), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(2488), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(2490), - [anon_sym_api] = ACTIONS(2488), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(2491), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(2493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(2495), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [747] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4745), - [sym_dictionary_splat] = STATE(4745), - [sym_parenthesized_list_splat] = STATE(4746), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3527), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_keyword_argument] = STATE(4745), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2550), - [anon_sym_COMMA] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(2486), - [anon_sym_print] = ACTIONS(2488), - [anon_sym_match] = ACTIONS(2488), - [anon_sym_async] = ACTIONS(2488), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(2488), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(2490), - [anon_sym_api] = ACTIONS(2488), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3662), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_type] = STATE(4298), + [sym_splat_type] = STATE(4146), + [sym_generic_type] = STATE(4146), + [sym_union_type] = STATE(4146), + [sym_constrained_type] = STATE(4146), + [sym_member_type] = STATE(4146), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2429), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_STAR_STAR] = ACTIONS(2433), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [748] = { - [sym_named_expression] = STATE(2512), - [sym__named_expression_lhs] = STATE(5443), - [sym_list_splat_pattern] = STATE(2490), - [sym_as_pattern] = STATE(2512), - [sym_expression] = STATE(3646), - [sym_primary_expression] = STATE(1967), - [sym_not_operator] = STATE(2512), - [sym_boolean_operator] = STATE(2512), - [sym_binary_operator] = STATE(2509), - [sym_unary_operator] = STATE(2509), - [sym_comparison_operator] = STATE(2512), - [sym_lambda] = STATE(2512), - [sym_attribute] = STATE(2509), - [sym_subscript] = STATE(2509), - [sym_call] = STATE(2509), - [sym_type] = STATE(4248), - [sym_splat_type] = STATE(4185), - [sym_generic_type] = STATE(4185), - [sym_union_type] = STATE(4185), - [sym_constrained_type] = STATE(4185), - [sym_member_type] = STATE(4185), - [sym_list] = STATE(2509), - [sym_set] = STATE(2509), - [sym_tuple] = STATE(2509), - [sym_dictionary] = STATE(2509), - [sym_list_comprehension] = STATE(2509), - [sym_dictionary_comprehension] = STATE(2509), - [sym_set_comprehension] = STATE(2509), - [sym_generator_expression] = STATE(2509), - [sym_parenthesized_expression] = STATE(2509), - [sym_conditional_expression] = STATE(2512), - [sym_concatenated_string] = STATE(2509), - [sym_string] = STATE(2110), - [sym_none] = STATE(2509), - [sym_await] = STATE(2509), - [sym_new_expression] = STATE(2512), - [sym_sizeof_expression] = STATE(2509), - [sym_cast_expression] = STATE(2509), - [sym_identifier] = ACTIONS(2386), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2388), - [anon_sym_print] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_STAR_STAR] = ACTIONS(2392), - [anon_sym_exec] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_not] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_lambda] = ACTIONS(2400), - [sym_ellipsis] = ACTIONS(2218), - [anon_sym_None] = ACTIONS(2220), - [sym_integer] = ACTIONS(2202), - [sym_float] = ACTIONS(2218), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_api] = ACTIONS(2390), - [sym_true] = ACTIONS(2202), - [sym_false] = ACTIONS(2202), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(4843), + [sym_dictionary_splat] = STATE(4843), + [sym_parenthesized_list_splat] = STATE(4844), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3931), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(4843), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(1320), + [anon_sym_COMMA] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2224), - [sym_string_start] = ACTIONS(2226), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [749] = { - [sym_named_expression] = STATE(2512), - [sym__named_expression_lhs] = STATE(5443), - [sym_list_splat_pattern] = STATE(2490), - [sym_as_pattern] = STATE(2512), - [sym_expression] = STATE(3646), - [sym_primary_expression] = STATE(1967), - [sym_not_operator] = STATE(2512), - [sym_boolean_operator] = STATE(2512), - [sym_binary_operator] = STATE(2509), - [sym_unary_operator] = STATE(2509), - [sym_comparison_operator] = STATE(2512), - [sym_lambda] = STATE(2512), - [sym_attribute] = STATE(2509), - [sym_subscript] = STATE(2509), - [sym_call] = STATE(2509), - [sym_type] = STATE(4249), - [sym_splat_type] = STATE(4185), - [sym_generic_type] = STATE(4185), - [sym_union_type] = STATE(4185), - [sym_constrained_type] = STATE(4185), - [sym_member_type] = STATE(4185), - [sym_list] = STATE(2509), - [sym_set] = STATE(2509), - [sym_tuple] = STATE(2509), - [sym_dictionary] = STATE(2509), - [sym_list_comprehension] = STATE(2509), - [sym_dictionary_comprehension] = STATE(2509), - [sym_set_comprehension] = STATE(2509), - [sym_generator_expression] = STATE(2509), - [sym_parenthesized_expression] = STATE(2509), - [sym_conditional_expression] = STATE(2512), - [sym_concatenated_string] = STATE(2509), - [sym_string] = STATE(2110), - [sym_none] = STATE(2509), - [sym_await] = STATE(2509), - [sym_new_expression] = STATE(2512), - [sym_sizeof_expression] = STATE(2509), - [sym_cast_expression] = STATE(2509), - [sym_identifier] = ACTIONS(2386), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2388), - [anon_sym_print] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_STAR_STAR] = ACTIONS(2392), - [anon_sym_exec] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_not] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_lambda] = ACTIONS(2400), - [sym_ellipsis] = ACTIONS(2218), - [anon_sym_None] = ACTIONS(2220), - [sym_integer] = ACTIONS(2202), - [sym_float] = ACTIONS(2218), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_api] = ACTIONS(2390), - [sym_true] = ACTIONS(2202), - [sym_false] = ACTIONS(2202), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3662), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_type] = STATE(4059), + [sym_splat_type] = STATE(4146), + [sym_generic_type] = STATE(4146), + [sym_union_type] = STATE(4146), + [sym_constrained_type] = STATE(4146), + [sym_member_type] = STATE(4146), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2429), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_STAR_STAR] = ACTIONS(2433), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2224), - [sym_string_start] = ACTIONS(2226), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [750] = { - [sym_named_expression] = STATE(2512), - [sym__named_expression_lhs] = STATE(5443), - [sym_list_splat_pattern] = STATE(2490), - [sym_as_pattern] = STATE(2512), - [sym_expression] = STATE(3646), - [sym_primary_expression] = STATE(1967), - [sym_not_operator] = STATE(2512), - [sym_boolean_operator] = STATE(2512), - [sym_binary_operator] = STATE(2509), - [sym_unary_operator] = STATE(2509), - [sym_comparison_operator] = STATE(2512), - [sym_lambda] = STATE(2512), - [sym_attribute] = STATE(2509), - [sym_subscript] = STATE(2509), - [sym_call] = STATE(2509), - [sym_type] = STATE(4095), - [sym_splat_type] = STATE(4185), - [sym_generic_type] = STATE(4185), - [sym_union_type] = STATE(4185), - [sym_constrained_type] = STATE(4185), - [sym_member_type] = STATE(4185), - [sym_list] = STATE(2509), - [sym_set] = STATE(2509), - [sym_tuple] = STATE(2509), - [sym_dictionary] = STATE(2509), - [sym_list_comprehension] = STATE(2509), - [sym_dictionary_comprehension] = STATE(2509), - [sym_set_comprehension] = STATE(2509), - [sym_generator_expression] = STATE(2509), - [sym_parenthesized_expression] = STATE(2509), - [sym_conditional_expression] = STATE(2512), - [sym_concatenated_string] = STATE(2509), - [sym_string] = STATE(2110), - [sym_none] = STATE(2509), - [sym_await] = STATE(2509), - [sym_new_expression] = STATE(2512), - [sym_sizeof_expression] = STATE(2509), - [sym_cast_expression] = STATE(2509), - [sym_identifier] = ACTIONS(2386), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2388), - [anon_sym_print] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_STAR_STAR] = ACTIONS(2392), - [anon_sym_exec] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_not] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_lambda] = ACTIONS(2400), - [sym_ellipsis] = ACTIONS(2218), - [anon_sym_None] = ACTIONS(2220), - [sym_integer] = ACTIONS(2202), - [sym_float] = ACTIONS(2218), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_api] = ACTIONS(2390), - [sym_true] = ACTIONS(2202), - [sym_false] = ACTIONS(2202), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3662), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_type] = STATE(4078), + [sym_splat_type] = STATE(4146), + [sym_generic_type] = STATE(4146), + [sym_union_type] = STATE(4146), + [sym_constrained_type] = STATE(4146), + [sym_member_type] = STATE(4146), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2429), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_STAR_STAR] = ACTIONS(2433), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2224), - [sym_string_start] = ACTIONS(2226), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [751] = { - [sym_named_expression] = STATE(2512), - [sym__named_expression_lhs] = STATE(5443), - [sym_list_splat_pattern] = STATE(2490), - [sym_as_pattern] = STATE(2512), - [sym_expression] = STATE(3646), - [sym_primary_expression] = STATE(1967), - [sym_not_operator] = STATE(2512), - [sym_boolean_operator] = STATE(2512), - [sym_binary_operator] = STATE(2509), - [sym_unary_operator] = STATE(2509), - [sym_comparison_operator] = STATE(2512), - [sym_lambda] = STATE(2512), - [sym_attribute] = STATE(2509), - [sym_subscript] = STATE(2509), - [sym_call] = STATE(2509), - [sym_type] = STATE(4037), - [sym_splat_type] = STATE(4185), - [sym_generic_type] = STATE(4185), - [sym_union_type] = STATE(4185), - [sym_constrained_type] = STATE(4185), - [sym_member_type] = STATE(4185), - [sym_list] = STATE(2509), - [sym_set] = STATE(2509), - [sym_tuple] = STATE(2509), - [sym_dictionary] = STATE(2509), - [sym_list_comprehension] = STATE(2509), - [sym_dictionary_comprehension] = STATE(2509), - [sym_set_comprehension] = STATE(2509), - [sym_generator_expression] = STATE(2509), - [sym_parenthesized_expression] = STATE(2509), - [sym_conditional_expression] = STATE(2512), - [sym_concatenated_string] = STATE(2509), - [sym_string] = STATE(2110), - [sym_none] = STATE(2509), - [sym_await] = STATE(2509), - [sym_new_expression] = STATE(2512), - [sym_sizeof_expression] = STATE(2509), - [sym_cast_expression] = STATE(2509), - [sym_identifier] = ACTIONS(2386), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2388), - [anon_sym_print] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_STAR_STAR] = ACTIONS(2392), - [anon_sym_exec] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_not] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_lambda] = ACTIONS(2400), - [sym_ellipsis] = ACTIONS(2218), - [anon_sym_None] = ACTIONS(2220), - [sym_integer] = ACTIONS(2202), - [sym_float] = ACTIONS(2218), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_api] = ACTIONS(2390), - [sym_true] = ACTIONS(2202), - [sym_false] = ACTIONS(2202), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(3922), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_type] = STATE(4926), + [sym_splat_type] = STATE(4369), + [sym_generic_type] = STATE(4369), + [sym_union_type] = STATE(4369), + [sym_constrained_type] = STATE(4369), + [sym_member_type] = STATE(4369), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2224), - [sym_string_start] = ACTIONS(2226), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [752] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(3973), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_type] = STATE(4919), - [sym_splat_type] = STATE(4465), - [sym_generic_type] = STATE(4465), - [sym_union_type] = STATE(4465), - [sym_constrained_type] = STATE(4465), - [sym_member_type] = STATE(4465), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(2464), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(452), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), - }, - [753] = { - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_list_splat_pattern] = STATE(1985), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3715), - [sym_primary_expression] = STATE(1918), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_attribute] = STATE(1981), - [sym_subscript] = STATE(1981), - [sym_call] = STATE(1981), - [sym_type] = STATE(4094), - [sym_splat_type] = STATE(4031), - [sym_generic_type] = STATE(4031), - [sym_union_type] = STATE(4031), - [sym_constrained_type] = STATE(4031), - [sym_member_type] = STATE(4031), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(2470), - [anon_sym_print] = ACTIONS(847), - [anon_sym_match] = ACTIONS(847), - [anon_sym_async] = ACTIONS(847), - [anon_sym_STAR_STAR] = ACTIONS(2472), - [anon_sym_exec] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(1184), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_list_splat_pattern] = STATE(1975), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3726), + [sym_primary_expression] = STATE(1927), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_attribute] = STATE(2021), + [sym_subscript] = STATE(2021), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_type] = STATE(4322), + [sym_splat_type] = STATE(4053), + [sym_generic_type] = STATE(4053), + [sym_union_type] = STATE(4053), + [sym_constrained_type] = STATE(4053), + [sym_member_type] = STATE(4053), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_print] = ACTIONS(576), + [anon_sym_match] = ACTIONS(576), + [anon_sym_async] = ACTIONS(576), + [anon_sym_STAR_STAR] = ACTIONS(2477), + [anon_sym_exec] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(1191), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -94911,8373 +95409,8343 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(869), - [anon_sym_api] = ACTIONS(847), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(598), + [anon_sym_api] = ACTIONS(576), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym_string_start] = ACTIONS(105), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym_string_start] = ACTIONS(107), + }, + [753] = { + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(3922), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_type] = STATE(4846), + [sym_splat_type] = STATE(4369), + [sym_generic_type] = STATE(4369), + [sym_union_type] = STATE(4369), + [sym_constrained_type] = STATE(4369), + [sym_member_type] = STATE(4369), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [754] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(3973), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_type] = STATE(4835), - [sym_splat_type] = STATE(4465), - [sym_generic_type] = STATE(4465), - [sym_union_type] = STATE(4465), - [sym_constrained_type] = STATE(4465), - [sym_member_type] = STATE(4465), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(2464), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(452), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(3922), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_type] = STATE(4851), + [sym_splat_type] = STATE(4369), + [sym_generic_type] = STATE(4369), + [sym_union_type] = STATE(4369), + [sym_constrained_type] = STATE(4369), + [sym_member_type] = STATE(4369), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [755] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(3973), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_type] = STATE(4840), - [sym_splat_type] = STATE(4465), - [sym_generic_type] = STATE(4465), - [sym_union_type] = STATE(4465), - [sym_constrained_type] = STATE(4465), - [sym_member_type] = STATE(4465), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(2464), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(452), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(3922), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_type] = STATE(4852), + [sym_splat_type] = STATE(4369), + [sym_generic_type] = STATE(4369), + [sym_union_type] = STATE(4369), + [sym_constrained_type] = STATE(4369), + [sym_member_type] = STATE(4369), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [756] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(3973), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_type] = STATE(4841), - [sym_splat_type] = STATE(4465), - [sym_generic_type] = STATE(4465), - [sym_union_type] = STATE(4465), - [sym_constrained_type] = STATE(4465), - [sym_member_type] = STATE(4465), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(2464), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(452), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(3922), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_type] = STATE(4854), + [sym_splat_type] = STATE(4369), + [sym_generic_type] = STATE(4369), + [sym_union_type] = STATE(4369), + [sym_constrained_type] = STATE(4369), + [sym_member_type] = STATE(4369), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [757] = { - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_list_splat_pattern] = STATE(1985), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3715), - [sym_primary_expression] = STATE(1918), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_attribute] = STATE(1981), - [sym_subscript] = STATE(1981), - [sym_call] = STATE(1981), - [sym_type] = STATE(4312), - [sym_splat_type] = STATE(4031), - [sym_generic_type] = STATE(4031), - [sym_union_type] = STATE(4031), - [sym_constrained_type] = STATE(4031), - [sym_member_type] = STATE(4031), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(2470), - [anon_sym_print] = ACTIONS(847), - [anon_sym_match] = ACTIONS(847), - [anon_sym_async] = ACTIONS(847), - [anon_sym_STAR_STAR] = ACTIONS(2472), - [anon_sym_exec] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(77), - [anon_sym_None] = ACTIONS(79), - [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(869), - [anon_sym_api] = ACTIONS(847), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), + [sym_else_clause] = STATE(1029), + [sym_except_group_clause] = STATE(833), + [sym_finally_clause] = STATE(1567), + [aux_sym_try_statement_repeat2] = STATE(833), + [sym_identifier] = ACTIONS(2465), + [anon_sym_import] = ACTIONS(2465), + [anon_sym_cimport] = ACTIONS(2465), + [anon_sym_from] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(2463), + [anon_sym_print] = ACTIONS(2465), + [anon_sym_assert] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_del] = ACTIONS(2465), + [anon_sym_raise] = ACTIONS(2465), + [anon_sym_pass] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_try] = ACTIONS(2465), + [anon_sym_except_STAR] = ACTIONS(2517), + [anon_sym_finally] = ACTIONS(2515), + [anon_sym_with] = ACTIONS(2465), + [anon_sym_def] = ACTIONS(2465), + [anon_sym_global] = ACTIONS(2465), + [anon_sym_nonlocal] = ACTIONS(2465), + [anon_sym_exec] = ACTIONS(2465), + [anon_sym_type] = ACTIONS(2465), + [anon_sym_class] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2463), + [anon_sym_AT] = ACTIONS(2463), + [anon_sym_DASH] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_not] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2463), + [anon_sym_TILDE] = ACTIONS(2463), + [anon_sym_LT] = ACTIONS(2463), + [anon_sym_lambda] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2463), + [anon_sym_None] = ACTIONS(2465), + [sym_integer] = ACTIONS(2465), + [sym_float] = ACTIONS(2463), + [anon_sym_await] = ACTIONS(2465), + [anon_sym_api] = ACTIONS(2465), + [sym_true] = ACTIONS(2465), + [sym_false] = ACTIONS(2465), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym_string_start] = ACTIONS(105), + [anon_sym_property] = ACTIONS(2465), + [anon_sym_include] = ACTIONS(2465), + [anon_sym_DEF] = ACTIONS(2465), + [anon_sym_cdef] = ACTIONS(2465), + [anon_sym_cpdef] = ACTIONS(2465), + [anon_sym_new] = ACTIONS(2465), + [anon_sym_ctypedef] = ACTIONS(2465), + [anon_sym_public] = ACTIONS(2465), + [anon_sym_packed] = ACTIONS(2465), + [anon_sym_inline] = ACTIONS(2465), + [anon_sym_readonly] = ACTIONS(2465), + [anon_sym_sizeof] = ACTIONS(2465), + [sym__dedent] = ACTIONS(2463), + [sym_string_start] = ACTIONS(2463), }, [758] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2552), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [759] = { - [sym_named_expression] = STATE(3682), - [sym__named_expression_lhs] = STATE(5332), - [sym_expression_list] = STATE(4150), - [sym_list_splat_pattern] = STATE(2230), - [sym_as_pattern] = STATE(3682), - [sym_expression] = STATE(3625), - [sym_primary_expression] = STATE(1950), - [sym_not_operator] = STATE(3682), - [sym_boolean_operator] = STATE(3682), - [sym_binary_operator] = STATE(2179), - [sym_unary_operator] = STATE(2179), - [sym_comparison_operator] = STATE(3682), - [sym_lambda] = STATE(3682), - [sym_attribute] = STATE(2179), - [sym_subscript] = STATE(2179), - [sym_call] = STATE(2179), - [sym_list] = STATE(2179), - [sym_set] = STATE(2179), - [sym_tuple] = STATE(2179), - [sym_dictionary] = STATE(2179), - [sym_list_comprehension] = STATE(2179), - [sym_dictionary_comprehension] = STATE(2179), - [sym_set_comprehension] = STATE(2179), - [sym_generator_expression] = STATE(2179), - [sym_parenthesized_expression] = STATE(2179), - [sym_conditional_expression] = STATE(3682), - [sym_concatenated_string] = STATE(2179), - [sym_string] = STATE(1968), - [sym_none] = STATE(2179), - [sym_await] = STATE(2179), - [sym_new_expression] = STATE(3682), - [sym_sizeof_expression] = STATE(2179), - [sym_cast_expression] = STATE(2179), - [sym_identifier] = ACTIONS(2554), - [anon_sym_from] = ACTIONS(2556), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_STAR] = ACTIONS(2426), - [anon_sym_print] = ACTIONS(2558), - [anon_sym_COLON] = ACTIONS(2560), - [anon_sym_match] = ACTIONS(2558), - [anon_sym_async] = ACTIONS(2558), - [anon_sym_exec] = ACTIONS(2558), - [anon_sym_EQ] = ACTIONS(2560), - [anon_sym_LBRACK] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(2560), - [anon_sym_PLUS] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2110), - [anon_sym_TILDE] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2434), - [anon_sym_lambda] = ACTIONS(2436), - [sym_ellipsis] = ACTIONS(2116), - [anon_sym_None] = ACTIONS(2118), - [sym_type_conversion] = ACTIONS(2560), - [sym_integer] = ACTIONS(2100), - [sym_float] = ACTIONS(2116), - [anon_sym_await] = ACTIONS(2562), - [anon_sym_api] = ACTIONS(2558), - [sym_true] = ACTIONS(2100), - [sym_false] = ACTIONS(2100), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4808), + [sym_parenthesized_list_splat] = STATE(4809), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3491), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4646), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5219), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2573), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_exec] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1374), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2442), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_string_start] = ACTIONS(2124), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [760] = { - [sym_elif_clause] = STATE(999), - [sym_else_clause] = STATE(1268), - [aux_sym_if_statement_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(2564), - [sym_identifier] = ACTIONS(2566), - [anon_sym_import] = ACTIONS(2566), - [anon_sym_cimport] = ACTIONS(2566), - [anon_sym_from] = ACTIONS(2566), - [anon_sym_LPAREN] = ACTIONS(2564), - [anon_sym_STAR] = ACTIONS(2564), - [anon_sym_print] = ACTIONS(2566), - [anon_sym_assert] = ACTIONS(2566), - [anon_sym_return] = ACTIONS(2566), - [anon_sym_del] = ACTIONS(2566), - [anon_sym_raise] = ACTIONS(2566), - [anon_sym_pass] = ACTIONS(2566), - [anon_sym_break] = ACTIONS(2566), - [anon_sym_continue] = ACTIONS(2566), - [anon_sym_if] = ACTIONS(2566), - [anon_sym_elif] = ACTIONS(2568), - [anon_sym_else] = ACTIONS(2412), - [anon_sym_match] = ACTIONS(2566), - [anon_sym_async] = ACTIONS(2566), - [anon_sym_for] = ACTIONS(2566), - [anon_sym_while] = ACTIONS(2566), - [anon_sym_try] = ACTIONS(2566), - [anon_sym_with] = ACTIONS(2566), - [anon_sym_def] = ACTIONS(2566), - [anon_sym_global] = ACTIONS(2566), - [anon_sym_nonlocal] = ACTIONS(2566), - [anon_sym_exec] = ACTIONS(2566), - [anon_sym_type] = ACTIONS(2566), - [anon_sym_class] = ACTIONS(2566), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_AT] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_LBRACE] = ACTIONS(2564), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_not] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2564), - [anon_sym_TILDE] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2564), - [anon_sym_lambda] = ACTIONS(2566), - [anon_sym_yield] = ACTIONS(2566), - [sym_ellipsis] = ACTIONS(2564), - [anon_sym_None] = ACTIONS(2566), - [sym_integer] = ACTIONS(2566), - [sym_float] = ACTIONS(2564), - [anon_sym_await] = ACTIONS(2566), - [anon_sym_api] = ACTIONS(2566), - [sym_true] = ACTIONS(2566), - [sym_false] = ACTIONS(2566), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2575), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2566), - [anon_sym_include] = ACTIONS(2566), - [anon_sym_DEF] = ACTIONS(2566), - [anon_sym_cdef] = ACTIONS(2566), - [anon_sym_cpdef] = ACTIONS(2566), - [anon_sym_new] = ACTIONS(2566), - [anon_sym_ctypedef] = ACTIONS(2566), - [anon_sym_public] = ACTIONS(2566), - [anon_sym_packed] = ACTIONS(2566), - [anon_sym_inline] = ACTIONS(2566), - [anon_sym_readonly] = ACTIONS(2566), - [anon_sym_sizeof] = ACTIONS(2566), - [sym_string_start] = ACTIONS(2564), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [761] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4723), - [sym_parenthesized_list_splat] = STATE(4723), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3522), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4695), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5314), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1363), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(1363), - [anon_sym_exec] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_api] = ACTIONS(1363), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [762] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4518), - [sym_parenthesized_list_splat] = STATE(4518), - [sym_list_splat_pattern] = STATE(2307), - [sym_as_pattern] = STATE(2314), - [sym_expression] = STATE(3544), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_yield] = STATE(4518), - [sym_attribute] = STATE(2310), - [sym_subscript] = STATE(2310), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym__collection_elements] = STATE(5202), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2570), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_print] = ACTIONS(2574), - [anon_sym_match] = ACTIONS(2574), - [anon_sym_async] = ACTIONS(2574), - [anon_sym_exec] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2236), - [anon_sym_RBRACK] = ACTIONS(2576), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2578), - [anon_sym_api] = ACTIONS(2574), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [763] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4704), - [sym_parenthesized_list_splat] = STATE(4705), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3498), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4582), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5241), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2580), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1363), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(1363), - [anon_sym_exec] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_api] = ACTIONS(1363), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2581), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [764] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4518), - [sym_parenthesized_list_splat] = STATE(4518), - [sym_list_splat_pattern] = STATE(2307), - [sym_as_pattern] = STATE(2314), - [sym_expression] = STATE(3538), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_yield] = STATE(4518), - [sym_attribute] = STATE(2310), - [sym_subscript] = STATE(2310), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym__collection_elements] = STATE(5282), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2570), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_print] = ACTIONS(2574), - [anon_sym_match] = ACTIONS(2574), - [anon_sym_async] = ACTIONS(2574), - [anon_sym_exec] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2236), - [anon_sym_RBRACK] = ACTIONS(2582), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2578), - [anon_sym_api] = ACTIONS(2574), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4887), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3530), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4785), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5212), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2523), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_exec] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1374), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [765] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2584), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [766] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2586), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [767] = { - [sym_except_clause] = STATE(767), - [aux_sym_try_statement_repeat1] = STATE(767), - [ts_builtin_sym_end] = ACTIONS(2588), - [sym_identifier] = ACTIONS(2590), - [anon_sym_import] = ACTIONS(2590), - [anon_sym_cimport] = ACTIONS(2590), - [anon_sym_from] = ACTIONS(2590), - [anon_sym_LPAREN] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_print] = ACTIONS(2590), - [anon_sym_assert] = ACTIONS(2590), - [anon_sym_return] = ACTIONS(2590), - [anon_sym_del] = ACTIONS(2590), - [anon_sym_raise] = ACTIONS(2590), - [anon_sym_pass] = ACTIONS(2590), - [anon_sym_break] = ACTIONS(2590), - [anon_sym_continue] = ACTIONS(2590), - [anon_sym_if] = ACTIONS(2590), - [anon_sym_else] = ACTIONS(2590), - [anon_sym_match] = ACTIONS(2590), - [anon_sym_async] = ACTIONS(2590), - [anon_sym_for] = ACTIONS(2590), - [anon_sym_while] = ACTIONS(2590), - [anon_sym_try] = ACTIONS(2590), - [anon_sym_except] = ACTIONS(2592), - [anon_sym_finally] = ACTIONS(2590), - [anon_sym_with] = ACTIONS(2590), - [anon_sym_def] = ACTIONS(2590), - [anon_sym_global] = ACTIONS(2590), - [anon_sym_nonlocal] = ACTIONS(2590), - [anon_sym_exec] = ACTIONS(2590), - [anon_sym_type] = ACTIONS(2590), - [anon_sym_class] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_AT] = ACTIONS(2588), - [anon_sym_DASH] = ACTIONS(2588), - [anon_sym_LBRACE] = ACTIONS(2588), - [anon_sym_PLUS] = ACTIONS(2588), - [anon_sym_not] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2588), - [anon_sym_TILDE] = ACTIONS(2588), - [anon_sym_LT] = ACTIONS(2588), - [anon_sym_lambda] = ACTIONS(2590), - [anon_sym_yield] = ACTIONS(2590), - [sym_ellipsis] = ACTIONS(2588), - [anon_sym_None] = ACTIONS(2590), - [sym_integer] = ACTIONS(2590), - [sym_float] = ACTIONS(2588), - [anon_sym_await] = ACTIONS(2590), - [anon_sym_api] = ACTIONS(2590), - [sym_true] = ACTIONS(2590), - [sym_false] = ACTIONS(2590), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4887), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3504), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4922), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5475), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_exec] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1374), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2590), - [anon_sym_include] = ACTIONS(2590), - [anon_sym_DEF] = ACTIONS(2590), - [anon_sym_cdef] = ACTIONS(2590), - [anon_sym_cpdef] = ACTIONS(2590), - [anon_sym_new] = ACTIONS(2590), - [anon_sym_ctypedef] = ACTIONS(2590), - [anon_sym_public] = ACTIONS(2590), - [anon_sym_packed] = ACTIONS(2590), - [anon_sym_inline] = ACTIONS(2590), - [anon_sym_readonly] = ACTIONS(2590), - [anon_sym_sizeof] = ACTIONS(2590), - [sym_string_start] = ACTIONS(2588), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [768] = { - [sym_except_group_clause] = STATE(768), - [aux_sym_try_statement_repeat2] = STATE(768), - [ts_builtin_sym_end] = ACTIONS(2595), - [sym_identifier] = ACTIONS(2597), - [anon_sym_import] = ACTIONS(2597), - [anon_sym_cimport] = ACTIONS(2597), - [anon_sym_from] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2595), - [anon_sym_STAR] = ACTIONS(2595), - [anon_sym_print] = ACTIONS(2597), - [anon_sym_assert] = ACTIONS(2597), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_del] = ACTIONS(2597), - [anon_sym_raise] = ACTIONS(2597), - [anon_sym_pass] = ACTIONS(2597), - [anon_sym_break] = ACTIONS(2597), - [anon_sym_continue] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_else] = ACTIONS(2597), - [anon_sym_match] = ACTIONS(2597), - [anon_sym_async] = ACTIONS(2597), - [anon_sym_for] = ACTIONS(2597), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_except_STAR] = ACTIONS(2599), - [anon_sym_finally] = ACTIONS(2597), - [anon_sym_with] = ACTIONS(2597), - [anon_sym_def] = ACTIONS(2597), - [anon_sym_global] = ACTIONS(2597), - [anon_sym_nonlocal] = ACTIONS(2597), - [anon_sym_exec] = ACTIONS(2597), - [anon_sym_type] = ACTIONS(2597), - [anon_sym_class] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_AT] = ACTIONS(2595), - [anon_sym_DASH] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(2595), - [anon_sym_PLUS] = ACTIONS(2595), - [anon_sym_not] = ACTIONS(2597), - [anon_sym_AMP] = ACTIONS(2595), - [anon_sym_TILDE] = ACTIONS(2595), - [anon_sym_LT] = ACTIONS(2595), - [anon_sym_lambda] = ACTIONS(2597), - [anon_sym_yield] = ACTIONS(2597), - [sym_ellipsis] = ACTIONS(2595), - [anon_sym_None] = ACTIONS(2597), - [sym_integer] = ACTIONS(2597), - [sym_float] = ACTIONS(2595), - [anon_sym_await] = ACTIONS(2597), - [anon_sym_api] = ACTIONS(2597), - [sym_true] = ACTIONS(2597), - [sym_false] = ACTIONS(2597), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat] = STATE(4684), + [sym_parenthesized_list_splat] = STATE(4684), + [sym_list_splat_pattern] = STATE(2326), + [sym_as_pattern] = STATE(2375), + [sym_expression] = STATE(3556), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_yield] = STATE(4684), + [sym_attribute] = STATE(2374), + [sym_subscript] = STATE(2374), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym__collection_elements] = STATE(5336), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_print] = ACTIONS(2591), + [anon_sym_match] = ACTIONS(2591), + [anon_sym_async] = ACTIONS(2591), + [anon_sym_exec] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_RBRACK] = ACTIONS(2593), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2591), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2597), - [anon_sym_include] = ACTIONS(2597), - [anon_sym_DEF] = ACTIONS(2597), - [anon_sym_cdef] = ACTIONS(2597), - [anon_sym_cpdef] = ACTIONS(2597), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_ctypedef] = ACTIONS(2597), - [anon_sym_public] = ACTIONS(2597), - [anon_sym_packed] = ACTIONS(2597), - [anon_sym_inline] = ACTIONS(2597), - [anon_sym_readonly] = ACTIONS(2597), - [anon_sym_sizeof] = ACTIONS(2597), - [sym_string_start] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [769] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2602), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4819), + [sym_parenthesized_list_splat] = STATE(4822), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3503), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4706), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5326), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_exec] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1374), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [770] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2604), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2597), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [771] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [772] = { - [sym_elif_clause] = STATE(997), - [sym_else_clause] = STATE(1301), - [aux_sym_if_statement_repeat1] = STATE(775), - [sym_identifier] = ACTIONS(2608), - [anon_sym_import] = ACTIONS(2608), - [anon_sym_cimport] = ACTIONS(2608), - [anon_sym_from] = ACTIONS(2608), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(2610), - [anon_sym_print] = ACTIONS(2608), - [anon_sym_assert] = ACTIONS(2608), - [anon_sym_return] = ACTIONS(2608), - [anon_sym_del] = ACTIONS(2608), - [anon_sym_raise] = ACTIONS(2608), - [anon_sym_pass] = ACTIONS(2608), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2608), - [anon_sym_if] = ACTIONS(2608), - [anon_sym_elif] = ACTIONS(2612), - [anon_sym_else] = ACTIONS(2448), - [anon_sym_match] = ACTIONS(2608), - [anon_sym_async] = ACTIONS(2608), - [anon_sym_for] = ACTIONS(2608), - [anon_sym_while] = ACTIONS(2608), - [anon_sym_try] = ACTIONS(2608), - [anon_sym_with] = ACTIONS(2608), - [anon_sym_def] = ACTIONS(2608), - [anon_sym_global] = ACTIONS(2608), - [anon_sym_nonlocal] = ACTIONS(2608), - [anon_sym_exec] = ACTIONS(2608), - [anon_sym_type] = ACTIONS(2608), - [anon_sym_class] = ACTIONS(2608), - [anon_sym_LBRACK] = ACTIONS(2610), - [anon_sym_AT] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_LBRACE] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2610), - [anon_sym_TILDE] = ACTIONS(2610), - [anon_sym_LT] = ACTIONS(2610), - [anon_sym_lambda] = ACTIONS(2608), - [anon_sym_yield] = ACTIONS(2608), - [sym_ellipsis] = ACTIONS(2610), - [anon_sym_None] = ACTIONS(2608), - [sym_integer] = ACTIONS(2608), - [sym_float] = ACTIONS(2610), - [anon_sym_await] = ACTIONS(2608), - [anon_sym_api] = ACTIONS(2608), - [sym_true] = ACTIONS(2608), - [sym_false] = ACTIONS(2608), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2601), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2608), - [anon_sym_include] = ACTIONS(2608), - [anon_sym_DEF] = ACTIONS(2608), - [anon_sym_cdef] = ACTIONS(2608), - [anon_sym_cpdef] = ACTIONS(2608), - [anon_sym_new] = ACTIONS(2608), - [anon_sym_ctypedef] = ACTIONS(2608), - [anon_sym_public] = ACTIONS(2608), - [anon_sym_packed] = ACTIONS(2608), - [anon_sym_inline] = ACTIONS(2608), - [anon_sym_readonly] = ACTIONS(2608), - [anon_sym_sizeof] = ACTIONS(2608), - [sym__dedent] = ACTIONS(2610), - [sym_string_start] = ACTIONS(2610), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [773] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4617), - [sym_parenthesized_list_splat] = STATE(4621), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3509), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4887), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3513), [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4638), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5526), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1363), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(1363), - [anon_sym_exec] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_api] = ACTIONS(1363), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4730), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5464), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_exec] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1374), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [774] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2616), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat] = STATE(4684), + [sym_parenthesized_list_splat] = STATE(4684), + [sym_list_splat_pattern] = STATE(2326), + [sym_as_pattern] = STATE(2375), + [sym_expression] = STATE(3539), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_yield] = STATE(4684), + [sym_attribute] = STATE(2374), + [sym_subscript] = STATE(2374), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym__collection_elements] = STATE(5259), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_print] = ACTIONS(2591), + [anon_sym_match] = ACTIONS(2591), + [anon_sym_async] = ACTIONS(2591), + [anon_sym_exec] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_RBRACK] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2591), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [775] = { - [sym_elif_clause] = STATE(997), - [sym_else_clause] = STATE(1366), - [aux_sym_if_statement_repeat1] = STATE(839), - [sym_identifier] = ACTIONS(2618), - [anon_sym_import] = ACTIONS(2618), - [anon_sym_cimport] = ACTIONS(2618), - [anon_sym_from] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_print] = ACTIONS(2618), - [anon_sym_assert] = ACTIONS(2618), - [anon_sym_return] = ACTIONS(2618), - [anon_sym_del] = ACTIONS(2618), - [anon_sym_raise] = ACTIONS(2618), - [anon_sym_pass] = ACTIONS(2618), - [anon_sym_break] = ACTIONS(2618), - [anon_sym_continue] = ACTIONS(2618), - [anon_sym_if] = ACTIONS(2618), - [anon_sym_elif] = ACTIONS(2612), - [anon_sym_else] = ACTIONS(2448), - [anon_sym_match] = ACTIONS(2618), - [anon_sym_async] = ACTIONS(2618), - [anon_sym_for] = ACTIONS(2618), - [anon_sym_while] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2618), - [anon_sym_with] = ACTIONS(2618), - [anon_sym_def] = ACTIONS(2618), - [anon_sym_global] = ACTIONS(2618), - [anon_sym_nonlocal] = ACTIONS(2618), - [anon_sym_exec] = ACTIONS(2618), - [anon_sym_type] = ACTIONS(2618), - [anon_sym_class] = ACTIONS(2618), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_AT] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_not] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_TILDE] = ACTIONS(2620), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_lambda] = ACTIONS(2618), - [anon_sym_yield] = ACTIONS(2618), - [sym_ellipsis] = ACTIONS(2620), - [anon_sym_None] = ACTIONS(2618), - [sym_integer] = ACTIONS(2618), - [sym_float] = ACTIONS(2620), - [anon_sym_await] = ACTIONS(2618), - [anon_sym_api] = ACTIONS(2618), - [sym_true] = ACTIONS(2618), - [sym_false] = ACTIONS(2618), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4897), + [sym_parenthesized_list_splat] = STATE(4898), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3513), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4730), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5464), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_exec] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1374), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2618), - [anon_sym_include] = ACTIONS(2618), - [anon_sym_DEF] = ACTIONS(2618), - [anon_sym_cdef] = ACTIONS(2618), - [anon_sym_cpdef] = ACTIONS(2618), - [anon_sym_new] = ACTIONS(2618), - [anon_sym_ctypedef] = ACTIONS(2618), - [anon_sym_public] = ACTIONS(2618), - [anon_sym_packed] = ACTIONS(2618), - [anon_sym_inline] = ACTIONS(2618), - [anon_sym_readonly] = ACTIONS(2618), - [anon_sym_sizeof] = ACTIONS(2618), - [sym__dedent] = ACTIONS(2620), - [sym_string_start] = ACTIONS(2620), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [776] = { - [sym_elif_clause] = STATE(997), - [sym_else_clause] = STATE(1384), - [aux_sym_if_statement_repeat1] = STATE(792), - [sym_identifier] = ACTIONS(2622), - [anon_sym_import] = ACTIONS(2622), - [anon_sym_cimport] = ACTIONS(2622), - [anon_sym_from] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2624), - [anon_sym_STAR] = ACTIONS(2624), - [anon_sym_print] = ACTIONS(2622), - [anon_sym_assert] = ACTIONS(2622), - [anon_sym_return] = ACTIONS(2622), - [anon_sym_del] = ACTIONS(2622), - [anon_sym_raise] = ACTIONS(2622), - [anon_sym_pass] = ACTIONS(2622), - [anon_sym_break] = ACTIONS(2622), - [anon_sym_continue] = ACTIONS(2622), - [anon_sym_if] = ACTIONS(2622), - [anon_sym_elif] = ACTIONS(2612), - [anon_sym_else] = ACTIONS(2448), - [anon_sym_match] = ACTIONS(2622), - [anon_sym_async] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2622), - [anon_sym_while] = ACTIONS(2622), - [anon_sym_try] = ACTIONS(2622), - [anon_sym_with] = ACTIONS(2622), - [anon_sym_def] = ACTIONS(2622), - [anon_sym_global] = ACTIONS(2622), - [anon_sym_nonlocal] = ACTIONS(2622), - [anon_sym_exec] = ACTIONS(2622), - [anon_sym_type] = ACTIONS(2622), - [anon_sym_class] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2624), - [anon_sym_AT] = ACTIONS(2624), - [anon_sym_DASH] = ACTIONS(2624), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_PLUS] = ACTIONS(2624), - [anon_sym_not] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_TILDE] = ACTIONS(2624), - [anon_sym_LT] = ACTIONS(2624), - [anon_sym_lambda] = ACTIONS(2622), - [anon_sym_yield] = ACTIONS(2622), - [sym_ellipsis] = ACTIONS(2624), - [anon_sym_None] = ACTIONS(2622), - [sym_integer] = ACTIONS(2622), - [sym_float] = ACTIONS(2624), - [anon_sym_await] = ACTIONS(2622), - [anon_sym_api] = ACTIONS(2622), - [sym_true] = ACTIONS(2622), - [sym_false] = ACTIONS(2622), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2607), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2622), - [anon_sym_include] = ACTIONS(2622), - [anon_sym_DEF] = ACTIONS(2622), - [anon_sym_cdef] = ACTIONS(2622), - [anon_sym_cpdef] = ACTIONS(2622), - [anon_sym_new] = ACTIONS(2622), - [anon_sym_ctypedef] = ACTIONS(2622), - [anon_sym_public] = ACTIONS(2622), - [anon_sym_packed] = ACTIONS(2622), - [anon_sym_inline] = ACTIONS(2622), - [anon_sym_readonly] = ACTIONS(2622), - [anon_sym_sizeof] = ACTIONS(2622), - [sym__dedent] = ACTIONS(2624), - [sym_string_start] = ACTIONS(2624), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [777] = { - [sym_except_clause] = STATE(777), - [aux_sym_try_statement_repeat1] = STATE(777), - [sym_identifier] = ACTIONS(2590), - [anon_sym_import] = ACTIONS(2590), - [anon_sym_cimport] = ACTIONS(2590), - [anon_sym_from] = ACTIONS(2590), - [anon_sym_LPAREN] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_print] = ACTIONS(2590), - [anon_sym_assert] = ACTIONS(2590), - [anon_sym_return] = ACTIONS(2590), - [anon_sym_del] = ACTIONS(2590), - [anon_sym_raise] = ACTIONS(2590), - [anon_sym_pass] = ACTIONS(2590), - [anon_sym_break] = ACTIONS(2590), - [anon_sym_continue] = ACTIONS(2590), - [anon_sym_if] = ACTIONS(2590), - [anon_sym_else] = ACTIONS(2590), - [anon_sym_match] = ACTIONS(2590), - [anon_sym_async] = ACTIONS(2590), - [anon_sym_for] = ACTIONS(2590), - [anon_sym_while] = ACTIONS(2590), - [anon_sym_try] = ACTIONS(2590), - [anon_sym_except] = ACTIONS(2626), - [anon_sym_finally] = ACTIONS(2590), - [anon_sym_with] = ACTIONS(2590), - [anon_sym_def] = ACTIONS(2590), - [anon_sym_global] = ACTIONS(2590), - [anon_sym_nonlocal] = ACTIONS(2590), - [anon_sym_exec] = ACTIONS(2590), - [anon_sym_type] = ACTIONS(2590), - [anon_sym_class] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_AT] = ACTIONS(2588), - [anon_sym_DASH] = ACTIONS(2588), - [anon_sym_LBRACE] = ACTIONS(2588), - [anon_sym_PLUS] = ACTIONS(2588), - [anon_sym_not] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2588), - [anon_sym_TILDE] = ACTIONS(2588), - [anon_sym_LT] = ACTIONS(2588), - [anon_sym_lambda] = ACTIONS(2590), - [anon_sym_yield] = ACTIONS(2590), - [sym_ellipsis] = ACTIONS(2588), - [anon_sym_None] = ACTIONS(2590), - [sym_integer] = ACTIONS(2590), - [sym_float] = ACTIONS(2588), - [anon_sym_await] = ACTIONS(2590), - [anon_sym_api] = ACTIONS(2590), - [sym_true] = ACTIONS(2590), - [sym_false] = ACTIONS(2590), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2609), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2590), - [anon_sym_include] = ACTIONS(2590), - [anon_sym_DEF] = ACTIONS(2590), - [anon_sym_cdef] = ACTIONS(2590), - [anon_sym_cpdef] = ACTIONS(2590), - [anon_sym_new] = ACTIONS(2590), - [anon_sym_ctypedef] = ACTIONS(2590), - [anon_sym_public] = ACTIONS(2590), - [anon_sym_packed] = ACTIONS(2590), - [anon_sym_inline] = ACTIONS(2590), - [anon_sym_readonly] = ACTIONS(2590), - [anon_sym_sizeof] = ACTIONS(2590), - [sym__dedent] = ACTIONS(2588), - [sym_string_start] = ACTIONS(2588), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [778] = { - [sym_except_group_clause] = STATE(778), - [aux_sym_try_statement_repeat2] = STATE(778), - [sym_identifier] = ACTIONS(2597), - [anon_sym_import] = ACTIONS(2597), - [anon_sym_cimport] = ACTIONS(2597), - [anon_sym_from] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2595), - [anon_sym_STAR] = ACTIONS(2595), - [anon_sym_print] = ACTIONS(2597), - [anon_sym_assert] = ACTIONS(2597), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_del] = ACTIONS(2597), - [anon_sym_raise] = ACTIONS(2597), - [anon_sym_pass] = ACTIONS(2597), - [anon_sym_break] = ACTIONS(2597), - [anon_sym_continue] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_else] = ACTIONS(2597), - [anon_sym_match] = ACTIONS(2597), - [anon_sym_async] = ACTIONS(2597), - [anon_sym_for] = ACTIONS(2597), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_except_STAR] = ACTIONS(2629), - [anon_sym_finally] = ACTIONS(2597), - [anon_sym_with] = ACTIONS(2597), - [anon_sym_def] = ACTIONS(2597), - [anon_sym_global] = ACTIONS(2597), - [anon_sym_nonlocal] = ACTIONS(2597), - [anon_sym_exec] = ACTIONS(2597), - [anon_sym_type] = ACTIONS(2597), - [anon_sym_class] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2595), - [anon_sym_AT] = ACTIONS(2595), - [anon_sym_DASH] = ACTIONS(2595), - [anon_sym_LBRACE] = ACTIONS(2595), - [anon_sym_PLUS] = ACTIONS(2595), - [anon_sym_not] = ACTIONS(2597), - [anon_sym_AMP] = ACTIONS(2595), - [anon_sym_TILDE] = ACTIONS(2595), - [anon_sym_LT] = ACTIONS(2595), - [anon_sym_lambda] = ACTIONS(2597), - [anon_sym_yield] = ACTIONS(2597), - [sym_ellipsis] = ACTIONS(2595), - [anon_sym_None] = ACTIONS(2597), - [sym_integer] = ACTIONS(2597), - [sym_float] = ACTIONS(2595), - [anon_sym_await] = ACTIONS(2597), - [anon_sym_api] = ACTIONS(2597), - [sym_true] = ACTIONS(2597), - [sym_false] = ACTIONS(2597), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2597), - [anon_sym_include] = ACTIONS(2597), - [anon_sym_DEF] = ACTIONS(2597), - [anon_sym_cdef] = ACTIONS(2597), - [anon_sym_cpdef] = ACTIONS(2597), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_ctypedef] = ACTIONS(2597), - [anon_sym_public] = ACTIONS(2597), - [anon_sym_packed] = ACTIONS(2597), - [anon_sym_inline] = ACTIONS(2597), - [anon_sym_readonly] = ACTIONS(2597), - [anon_sym_sizeof] = ACTIONS(2597), - [sym__dedent] = ACTIONS(2595), - [sym_string_start] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [779] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4723), - [sym_parenthesized_list_splat] = STATE(4723), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3550), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4645), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5235), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2632), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1363), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(1363), - [anon_sym_exec] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_api] = ACTIONS(1363), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2613), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [780] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4723), - [sym_parenthesized_list_splat] = STATE(4723), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3552), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4650), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5225), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(1361), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1363), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(1363), - [anon_sym_exec] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_api] = ACTIONS(1363), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [781] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4518), - [sym_parenthesized_list_splat] = STATE(4518), - [sym_list_splat_pattern] = STATE(2307), - [sym_as_pattern] = STATE(2314), - [sym_expression] = STATE(3546), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_yield] = STATE(4518), - [sym_attribute] = STATE(2310), - [sym_subscript] = STATE(2310), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym__collection_elements] = STATE(5324), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2570), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_print] = ACTIONS(2574), - [anon_sym_match] = ACTIONS(2574), - [anon_sym_async] = ACTIONS(2574), - [anon_sym_exec] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2236), - [anon_sym_RBRACK] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2578), - [anon_sym_api] = ACTIONS(2574), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [782] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4513), - [sym_parenthesized_list_splat] = STATE(4521), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3522), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4887), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3482), [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4695), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5314), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1363), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(1363), - [anon_sym_exec] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_api] = ACTIONS(1363), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4592), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5550), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2619), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_exec] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1374), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [783] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4518), - [sym_parenthesized_list_splat] = STATE(4518), - [sym_list_splat_pattern] = STATE(2307), - [sym_as_pattern] = STATE(2314), - [sym_expression] = STATE(3472), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_yield] = STATE(4518), - [sym_attribute] = STATE(2310), - [sym_subscript] = STATE(2310), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym__collection_elements] = STATE(5547), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2570), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_print] = ACTIONS(2574), - [anon_sym_match] = ACTIONS(2574), - [anon_sym_async] = ACTIONS(2574), - [anon_sym_exec] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2236), - [anon_sym_RBRACK] = ACTIONS(2636), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2578), - [anon_sym_api] = ACTIONS(2574), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat] = STATE(4684), + [sym_parenthesized_list_splat] = STATE(4684), + [sym_list_splat_pattern] = STATE(2326), + [sym_as_pattern] = STATE(2375), + [sym_expression] = STATE(3549), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_yield] = STATE(4684), + [sym_attribute] = STATE(2374), + [sym_subscript] = STATE(2374), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym__collection_elements] = STATE(5214), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_print] = ACTIONS(2591), + [anon_sym_match] = ACTIONS(2591), + [anon_sym_async] = ACTIONS(2591), + [anon_sym_exec] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_RBRACK] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2591), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [784] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2638), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4808), + [sym_parenthesized_list_splat] = STATE(4809), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3496), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4675), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5398), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_exec] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1374), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [785] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2640), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [786] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2642), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [787] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2644), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [788] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4723), - [sym_parenthesized_list_splat] = STATE(4723), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3526), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4720), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5452), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1363), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(1363), - [anon_sym_exec] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_api] = ACTIONS(1363), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [789] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4518), - [sym_parenthesized_list_splat] = STATE(4518), - [sym_list_splat_pattern] = STATE(2307), - [sym_as_pattern] = STATE(2314), - [sym_expression] = STATE(3536), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_yield] = STATE(4518), - [sym_attribute] = STATE(2310), - [sym_subscript] = STATE(2310), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym__collection_elements] = STATE(5340), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2570), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_print] = ACTIONS(2574), - [anon_sym_match] = ACTIONS(2574), - [anon_sym_async] = ACTIONS(2574), - [anon_sym_exec] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2236), - [anon_sym_RBRACK] = ACTIONS(2648), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2578), - [anon_sym_api] = ACTIONS(2574), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat] = STATE(4684), + [sym_parenthesized_list_splat] = STATE(4684), + [sym_list_splat_pattern] = STATE(2326), + [sym_as_pattern] = STATE(2375), + [sym_expression] = STATE(3544), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_yield] = STATE(4684), + [sym_attribute] = STATE(2374), + [sym_subscript] = STATE(2374), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym__collection_elements] = STATE(5252), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_print] = ACTIONS(2591), + [anon_sym_match] = ACTIONS(2591), + [anon_sym_async] = ACTIONS(2591), + [anon_sym_exec] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_RBRACK] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2591), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [790] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4704), - [sym_parenthesized_list_splat] = STATE(4705), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3526), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4887), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3496), [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4720), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5452), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1363), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(1363), - [anon_sym_exec] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_api] = ACTIONS(1363), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4675), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5398), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_exec] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1374), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [791] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4513), - [sym_parenthesized_list_splat] = STATE(4521), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3552), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4650), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5225), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(1361), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1363), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(1363), - [anon_sym_exec] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_api] = ACTIONS(1363), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat] = STATE(4684), + [sym_parenthesized_list_splat] = STATE(4684), + [sym_list_splat_pattern] = STATE(2326), + [sym_as_pattern] = STATE(2375), + [sym_expression] = STATE(3559), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_yield] = STATE(4684), + [sym_attribute] = STATE(2374), + [sym_subscript] = STATE(2374), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym__collection_elements] = STATE(5468), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_print] = ACTIONS(2591), + [anon_sym_match] = ACTIONS(2591), + [anon_sym_async] = ACTIONS(2591), + [anon_sym_exec] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_RBRACK] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2591), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [792] = { - [sym_elif_clause] = STATE(997), - [sym_else_clause] = STATE(1292), - [aux_sym_if_statement_repeat1] = STATE(839), - [sym_identifier] = ACTIONS(2566), - [anon_sym_import] = ACTIONS(2566), - [anon_sym_cimport] = ACTIONS(2566), - [anon_sym_from] = ACTIONS(2566), - [anon_sym_LPAREN] = ACTIONS(2564), - [anon_sym_STAR] = ACTIONS(2564), - [anon_sym_print] = ACTIONS(2566), - [anon_sym_assert] = ACTIONS(2566), - [anon_sym_return] = ACTIONS(2566), - [anon_sym_del] = ACTIONS(2566), - [anon_sym_raise] = ACTIONS(2566), - [anon_sym_pass] = ACTIONS(2566), - [anon_sym_break] = ACTIONS(2566), - [anon_sym_continue] = ACTIONS(2566), - [anon_sym_if] = ACTIONS(2566), - [anon_sym_elif] = ACTIONS(2612), - [anon_sym_else] = ACTIONS(2448), - [anon_sym_match] = ACTIONS(2566), - [anon_sym_async] = ACTIONS(2566), - [anon_sym_for] = ACTIONS(2566), - [anon_sym_while] = ACTIONS(2566), - [anon_sym_try] = ACTIONS(2566), - [anon_sym_with] = ACTIONS(2566), - [anon_sym_def] = ACTIONS(2566), - [anon_sym_global] = ACTIONS(2566), - [anon_sym_nonlocal] = ACTIONS(2566), - [anon_sym_exec] = ACTIONS(2566), - [anon_sym_type] = ACTIONS(2566), - [anon_sym_class] = ACTIONS(2566), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_AT] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_LBRACE] = ACTIONS(2564), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_not] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2564), - [anon_sym_TILDE] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2564), - [anon_sym_lambda] = ACTIONS(2566), - [anon_sym_yield] = ACTIONS(2566), - [sym_ellipsis] = ACTIONS(2564), - [anon_sym_None] = ACTIONS(2566), - [sym_integer] = ACTIONS(2566), - [sym_float] = ACTIONS(2564), - [anon_sym_await] = ACTIONS(2566), - [anon_sym_api] = ACTIONS(2566), - [sym_true] = ACTIONS(2566), - [sym_false] = ACTIONS(2566), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2566), - [anon_sym_include] = ACTIONS(2566), - [anon_sym_DEF] = ACTIONS(2566), - [anon_sym_cdef] = ACTIONS(2566), - [anon_sym_cpdef] = ACTIONS(2566), - [anon_sym_new] = ACTIONS(2566), - [anon_sym_ctypedef] = ACTIONS(2566), - [anon_sym_public] = ACTIONS(2566), - [anon_sym_packed] = ACTIONS(2566), - [anon_sym_inline] = ACTIONS(2566), - [anon_sym_readonly] = ACTIONS(2566), - [anon_sym_sizeof] = ACTIONS(2566), - [sym__dedent] = ACTIONS(2564), - [sym_string_start] = ACTIONS(2564), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [793] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [794] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2652), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2641), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [795] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [796] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4723), - [sym_parenthesized_list_splat] = STATE(4723), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3556), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4887), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3491), [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4578), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5484), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1363), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(1363), - [anon_sym_exec] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_api] = ACTIONS(1363), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4646), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5219), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2573), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_exec] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1374), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [797] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4723), - [sym_parenthesized_list_splat] = STATE(4723), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3498), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4582), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5241), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2580), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1363), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(1363), - [anon_sym_exec] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_api] = ACTIONS(1363), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat] = STATE(4684), + [sym_parenthesized_list_splat] = STATE(4684), + [sym_list_splat_pattern] = STATE(2326), + [sym_as_pattern] = STATE(2375), + [sym_expression] = STATE(3554), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_yield] = STATE(4684), + [sym_attribute] = STATE(2374), + [sym_subscript] = STATE(2374), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym__collection_elements] = STATE(5416), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_print] = ACTIONS(2591), + [anon_sym_match] = ACTIONS(2591), + [anon_sym_async] = ACTIONS(2591), + [anon_sym_exec] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_RBRACK] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2591), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [798] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4518), - [sym_parenthesized_list_splat] = STATE(4518), - [sym_list_splat_pattern] = STATE(2307), - [sym_as_pattern] = STATE(2314), - [sym_expression] = STATE(3540), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_yield] = STATE(4518), - [sym_attribute] = STATE(2310), - [sym_subscript] = STATE(2310), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym__collection_elements] = STATE(5243), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2570), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_print] = ACTIONS(2574), - [anon_sym_match] = ACTIONS(2574), - [anon_sym_async] = ACTIONS(2574), - [anon_sym_exec] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2236), - [anon_sym_RBRACK] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2578), - [anon_sym_api] = ACTIONS(2574), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [799] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4617), - [sym_parenthesized_list_splat] = STATE(4621), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3516), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4665), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5362), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2658), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1363), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(1363), - [anon_sym_exec] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_api] = ACTIONS(1363), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [800] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2660), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [801] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2662), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [802] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2664), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2655), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [803] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [804] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4723), - [sym_parenthesized_list_splat] = STATE(4723), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3516), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4665), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5362), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2658), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1363), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(1363), - [anon_sym_exec] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_api] = ACTIONS(1363), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [805] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4518), - [sym_parenthesized_list_splat] = STATE(4518), - [sym_list_splat_pattern] = STATE(2307), - [sym_as_pattern] = STATE(2314), - [sym_expression] = STATE(3548), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_yield] = STATE(4518), - [sym_attribute] = STATE(2310), - [sym_subscript] = STATE(2310), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym__collection_elements] = STATE(5460), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2570), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_print] = ACTIONS(2574), - [anon_sym_match] = ACTIONS(2574), - [anon_sym_async] = ACTIONS(2574), - [anon_sym_exec] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2236), - [anon_sym_RBRACK] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2578), - [anon_sym_api] = ACTIONS(2574), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [806] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [807] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2672), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [808] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2674), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [809] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [810] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2678), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2671), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [811] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat] = STATE(4723), - [sym_parenthesized_list_splat] = STATE(4723), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_yield] = STATE(4638), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym__collection_elements] = STATE(5526), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_print] = ACTIONS(1363), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(1363), - [anon_sym_exec] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_api] = ACTIONS(1363), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2673), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [812] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat] = STATE(4518), - [sym_parenthesized_list_splat] = STATE(4518), - [sym_list_splat_pattern] = STATE(2307), - [sym_as_pattern] = STATE(2314), - [sym_expression] = STATE(3545), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_yield] = STATE(4518), - [sym_attribute] = STATE(2310), - [sym_subscript] = STATE(2310), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym__collection_elements] = STATE(5375), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2570), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_print] = ACTIONS(2574), - [anon_sym_match] = ACTIONS(2574), - [anon_sym_async] = ACTIONS(2574), - [anon_sym_exec] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2236), - [anon_sym_RBRACK] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2578), - [anon_sym_api] = ACTIONS(2574), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [813] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2682), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [814] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [815] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2686), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [816] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [817] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2690), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [818] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4887), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3561), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4501), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5249), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_exec] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1374), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [819] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4887), + [sym_parenthesized_list_splat] = STATE(4887), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3503), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4706), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5326), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_exec] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1374), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [820] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat] = STATE(4684), + [sym_parenthesized_list_splat] = STATE(4684), + [sym_list_splat_pattern] = STATE(2326), + [sym_as_pattern] = STATE(2375), + [sym_expression] = STATE(3552), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_yield] = STATE(4684), + [sym_attribute] = STATE(2374), + [sym_subscript] = STATE(2374), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym__collection_elements] = STATE(5329), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_print] = ACTIONS(2591), + [anon_sym_match] = ACTIONS(2591), + [anon_sym_async] = ACTIONS(2591), + [anon_sym_exec] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_RBRACK] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2591), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [821] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4897), + [sym_parenthesized_list_splat] = STATE(4898), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3482), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4592), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5550), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2619), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_exec] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1374), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [822] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat] = STATE(4684), + [sym_parenthesized_list_splat] = STATE(4684), + [sym_list_splat_pattern] = STATE(2326), + [sym_as_pattern] = STATE(2375), + [sym_expression] = STATE(3515), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_yield] = STATE(4684), + [sym_attribute] = STATE(2374), + [sym_subscript] = STATE(2374), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym__collection_elements] = STATE(5439), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_print] = ACTIONS(2591), + [anon_sym_match] = ACTIONS(2591), + [anon_sym_async] = ACTIONS(2591), + [anon_sym_exec] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_RBRACK] = ACTIONS(2691), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2591), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [823] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(3724), + [sym__named_expression_lhs] = STATE(5368), + [sym_expression_list] = STATE(4164), + [sym_list_splat_pattern] = STATE(2212), + [sym_as_pattern] = STATE(3724), + [sym_expression] = STATE(3635), + [sym_primary_expression] = STATE(1942), + [sym_not_operator] = STATE(3724), + [sym_boolean_operator] = STATE(3724), + [sym_binary_operator] = STATE(2175), + [sym_unary_operator] = STATE(2175), + [sym_comparison_operator] = STATE(3724), + [sym_lambda] = STATE(3724), + [sym_attribute] = STATE(2175), + [sym_subscript] = STATE(2175), + [sym_ellipsis] = STATE(2175), + [sym_call] = STATE(2175), + [sym_list] = STATE(2175), + [sym_set] = STATE(2175), + [sym_tuple] = STATE(2175), + [sym_dictionary] = STATE(2175), + [sym_list_comprehension] = STATE(2175), + [sym_dictionary_comprehension] = STATE(2175), + [sym_set_comprehension] = STATE(2175), + [sym_generator_expression] = STATE(2175), + [sym_parenthesized_expression] = STATE(2175), + [sym_conditional_expression] = STATE(3724), + [sym_concatenated_string] = STATE(2175), + [sym_string] = STATE(1976), + [sym_none] = STATE(2175), + [sym_await] = STATE(2175), + [sym_new_expression] = STATE(3724), + [sym_sizeof_expression] = STATE(2175), + [sym_cast_expression] = STATE(2175), + [sym_identifier] = ACTIONS(2693), + [anon_sym_from] = ACTIONS(2695), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(2409), + [anon_sym_print] = ACTIONS(2697), + [anon_sym_COLON] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2697), + [anon_sym_async] = ACTIONS(2697), + [anon_sym_exec] = ACTIONS(2697), + [anon_sym_EQ] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_TILDE] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(2417), + [anon_sym_lambda] = ACTIONS(2419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1717), + [anon_sym_None] = ACTIONS(1719), + [sym_type_conversion] = ACTIONS(2699), + [sym_integer] = ACTIONS(1701), + [sym_float] = ACTIONS(1721), + [anon_sym_await] = ACTIONS(2701), + [anon_sym_api] = ACTIONS(2697), + [sym_true] = ACTIONS(1701), + [sym_false] = ACTIONS(1701), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_sizeof] = ACTIONS(1725), + [sym_string_start] = ACTIONS(1727), }, [824] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat] = STATE(4819), + [sym_parenthesized_list_splat] = STATE(4822), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym_expression] = STATE(3504), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_yield] = STATE(4922), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym__collection_elements] = STATE(5475), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1224), + [anon_sym_print] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_exec] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1374), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [825] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2171), + [sym__named_expression_lhs] = STATE(5551), + [sym_list_splat_pattern] = STATE(2272), + [sym_as_pattern] = STATE(2171), + [sym__expression_within_for_in_clause] = STATE(4209), + [sym_expression] = STATE(3765), + [sym_primary_expression] = STATE(1945), + [sym_not_operator] = STATE(2171), + [sym_boolean_operator] = STATE(2171), + [sym_binary_operator] = STATE(2168), + [sym_unary_operator] = STATE(2168), + [sym_comparison_operator] = STATE(2171), + [sym_lambda] = STATE(2171), + [sym_lambda_within_for_in_clause] = STATE(4209), + [sym_attribute] = STATE(2168), + [sym_subscript] = STATE(2168), + [sym_ellipsis] = STATE(2168), + [sym_call] = STATE(2168), + [sym_list] = STATE(2168), + [sym_set] = STATE(2168), + [sym_tuple] = STATE(2168), + [sym_dictionary] = STATE(2168), + [sym_list_comprehension] = STATE(2168), + [sym_dictionary_comprehension] = STATE(2168), + [sym_set_comprehension] = STATE(2168), + [sym_generator_expression] = STATE(2168), + [sym_parenthesized_expression] = STATE(2168), + [sym_conditional_expression] = STATE(2171), + [sym_concatenated_string] = STATE(2168), + [sym_string] = STATE(2004), + [sym_none] = STATE(2168), + [sym_await] = STATE(2168), + [sym_new_expression] = STATE(2171), + [sym_sizeof_expression] = STATE(2168), + [sym_cast_expression] = STATE(2168), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_print] = ACTIONS(2323), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_match] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_exec] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2707), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_LT] = ACTIONS(2331), + [anon_sym_lambda] = ACTIONS(2709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2201), + [anon_sym_None] = ACTIONS(2203), + [sym_integer] = ACTIONS(2185), + [sym_float] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2337), + [anon_sym_api] = ACTIONS(2323), + [sym_true] = ACTIONS(2185), + [sym_false] = ACTIONS(2185), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(2339), + [anon_sym_sizeof] = ACTIONS(2209), + [sym_string_start] = ACTIONS(2211), }, [826] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2708), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2171), + [sym__named_expression_lhs] = STATE(5551), + [sym_list_splat_pattern] = STATE(2272), + [sym_as_pattern] = STATE(2171), + [sym__expression_within_for_in_clause] = STATE(4209), + [sym_expression] = STATE(3765), + [sym_primary_expression] = STATE(1945), + [sym_not_operator] = STATE(2171), + [sym_boolean_operator] = STATE(2171), + [sym_binary_operator] = STATE(2168), + [sym_unary_operator] = STATE(2168), + [sym_comparison_operator] = STATE(2171), + [sym_lambda] = STATE(2171), + [sym_lambda_within_for_in_clause] = STATE(4209), + [sym_attribute] = STATE(2168), + [sym_subscript] = STATE(2168), + [sym_ellipsis] = STATE(2168), + [sym_call] = STATE(2168), + [sym_list] = STATE(2168), + [sym_set] = STATE(2168), + [sym_tuple] = STATE(2168), + [sym_dictionary] = STATE(2168), + [sym_list_comprehension] = STATE(2168), + [sym_dictionary_comprehension] = STATE(2168), + [sym_set_comprehension] = STATE(2168), + [sym_generator_expression] = STATE(2168), + [sym_parenthesized_expression] = STATE(2168), + [sym_conditional_expression] = STATE(2171), + [sym_concatenated_string] = STATE(2168), + [sym_string] = STATE(2004), + [sym_none] = STATE(2168), + [sym_await] = STATE(2168), + [sym_new_expression] = STATE(2171), + [sym_sizeof_expression] = STATE(2168), + [sym_cast_expression] = STATE(2168), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_print] = ACTIONS(2323), + [anon_sym_if] = ACTIONS(2711), + [anon_sym_match] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(2711), + [anon_sym_for] = ACTIONS(2711), + [anon_sym_exec] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_LT] = ACTIONS(2331), + [anon_sym_lambda] = ACTIONS(2709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2201), + [anon_sym_None] = ACTIONS(2203), + [sym_integer] = ACTIONS(2185), + [sym_float] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2337), + [anon_sym_api] = ACTIONS(2323), + [sym_true] = ACTIONS(2185), + [sym_false] = ACTIONS(2185), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(2339), + [anon_sym_sizeof] = ACTIONS(2209), + [sym_string_start] = ACTIONS(2211), }, [827] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_elif_clause] = STATE(984), + [sym_else_clause] = STATE(1553), + [aux_sym_if_statement_repeat1] = STATE(850), + [sym_identifier] = ACTIONS(2715), + [anon_sym_import] = ACTIONS(2715), + [anon_sym_cimport] = ACTIONS(2715), + [anon_sym_from] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2717), + [anon_sym_print] = ACTIONS(2715), + [anon_sym_assert] = ACTIONS(2715), + [anon_sym_return] = ACTIONS(2715), + [anon_sym_del] = ACTIONS(2715), + [anon_sym_raise] = ACTIONS(2715), + [anon_sym_pass] = ACTIONS(2715), + [anon_sym_break] = ACTIONS(2715), + [anon_sym_continue] = ACTIONS(2715), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_elif] = ACTIONS(2719), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2715), + [anon_sym_async] = ACTIONS(2715), + [anon_sym_for] = ACTIONS(2715), + [anon_sym_while] = ACTIONS(2715), + [anon_sym_try] = ACTIONS(2715), + [anon_sym_with] = ACTIONS(2715), + [anon_sym_def] = ACTIONS(2715), + [anon_sym_global] = ACTIONS(2715), + [anon_sym_nonlocal] = ACTIONS(2715), + [anon_sym_exec] = ACTIONS(2715), + [anon_sym_type] = ACTIONS(2715), + [anon_sym_class] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_AT] = ACTIONS(2717), + [anon_sym_DASH] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2717), + [anon_sym_PLUS] = ACTIONS(2717), + [anon_sym_not] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_TILDE] = ACTIONS(2717), + [anon_sym_LT] = ACTIONS(2717), + [anon_sym_lambda] = ACTIONS(2715), + [anon_sym_yield] = ACTIONS(2715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2717), + [anon_sym_None] = ACTIONS(2715), + [sym_integer] = ACTIONS(2715), + [sym_float] = ACTIONS(2717), + [anon_sym_await] = ACTIONS(2715), + [anon_sym_api] = ACTIONS(2715), + [sym_true] = ACTIONS(2715), + [sym_false] = ACTIONS(2715), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(2715), + [anon_sym_include] = ACTIONS(2715), + [anon_sym_DEF] = ACTIONS(2715), + [anon_sym_cdef] = ACTIONS(2715), + [anon_sym_cpdef] = ACTIONS(2715), + [anon_sym_new] = ACTIONS(2715), + [anon_sym_ctypedef] = ACTIONS(2715), + [anon_sym_public] = ACTIONS(2715), + [anon_sym_packed] = ACTIONS(2715), + [anon_sym_inline] = ACTIONS(2715), + [anon_sym_readonly] = ACTIONS(2715), + [anon_sym_sizeof] = ACTIONS(2715), + [sym__dedent] = ACTIONS(2717), + [sym_string_start] = ACTIONS(2717), }, [828] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_except_clause] = STATE(828), + [aux_sym_try_statement_repeat1] = STATE(828), + [sym_identifier] = ACTIONS(2721), + [anon_sym_import] = ACTIONS(2721), + [anon_sym_cimport] = ACTIONS(2721), + [anon_sym_from] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(2723), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_print] = ACTIONS(2721), + [anon_sym_assert] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_del] = ACTIONS(2721), + [anon_sym_raise] = ACTIONS(2721), + [anon_sym_pass] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_else] = ACTIONS(2721), + [anon_sym_match] = ACTIONS(2721), + [anon_sym_async] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_except] = ACTIONS(2725), + [anon_sym_finally] = ACTIONS(2721), + [anon_sym_with] = ACTIONS(2721), + [anon_sym_def] = ACTIONS(2721), + [anon_sym_global] = ACTIONS(2721), + [anon_sym_nonlocal] = ACTIONS(2721), + [anon_sym_exec] = ACTIONS(2721), + [anon_sym_type] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2723), + [anon_sym_AT] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2723), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_PLUS] = ACTIONS(2723), + [anon_sym_not] = ACTIONS(2721), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_LT] = ACTIONS(2723), + [anon_sym_lambda] = ACTIONS(2721), + [anon_sym_yield] = ACTIONS(2721), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2723), + [anon_sym_None] = ACTIONS(2721), + [sym_integer] = ACTIONS(2721), + [sym_float] = ACTIONS(2723), + [anon_sym_await] = ACTIONS(2721), + [anon_sym_api] = ACTIONS(2721), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(2721), + [anon_sym_include] = ACTIONS(2721), + [anon_sym_DEF] = ACTIONS(2721), + [anon_sym_cdef] = ACTIONS(2721), + [anon_sym_cpdef] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_ctypedef] = ACTIONS(2721), + [anon_sym_public] = ACTIONS(2721), + [anon_sym_packed] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym_readonly] = ACTIONS(2721), + [anon_sym_sizeof] = ACTIONS(2721), + [sym__dedent] = ACTIONS(2723), + [sym_string_start] = ACTIONS(2723), }, [829] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat_pattern] = STATE(2326), + [sym_as_pattern] = STATE(2375), + [sym__expression_within_for_in_clause] = STATE(4226), + [sym_expression] = STATE(3733), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_lambda_within_for_in_clause] = STATE(4226), + [sym_attribute] = STATE(2374), + [sym_subscript] = STATE(2374), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2728), + [anon_sym_print] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(2730), + [anon_sym_match] = ACTIONS(2591), + [anon_sym_async] = ACTIONS(2730), + [anon_sym_for] = ACTIONS(2730), + [anon_sym_exec] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_RBRACK] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2591), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [830] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5077), + [sym_dictionary_splat] = STATE(5077), + [sym_parenthesized_list_splat] = STATE(5078), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4095), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_keyword_argument] = STATE(5077), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_print] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_STAR_STAR] = ACTIONS(1284), + [anon_sym_exec] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(1306), + [anon_sym_api] = ACTIONS(1282), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [831] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2718), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5103), + [sym_parenthesized_list_splat] = STATE(5103), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4102), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_yield] = STATE(5103), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2736), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2738), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_print] = ACTIONS(2742), + [anon_sym_match] = ACTIONS(2742), + [anon_sym_async] = ACTIONS(2742), + [anon_sym_exec] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(2744), + [anon_sym_api] = ACTIONS(2742), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [832] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_expression_list] = STATE(5396), + [sym_pattern] = STATE(4453), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(2473), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(3984), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_pattern_list] = STATE(5007), + [sym_attribute] = STATE(2481), + [sym_subscript] = STATE(2481), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2746), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_print] = ACTIONS(2752), + [anon_sym_match] = ACTIONS(2752), + [anon_sym_async] = ACTIONS(2752), + [anon_sym_exec] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(2756), + [anon_sym_api] = ACTIONS(2752), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [833] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2722), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_except_group_clause] = STATE(833), + [aux_sym_try_statement_repeat2] = STATE(833), + [sym_identifier] = ACTIONS(2758), + [anon_sym_import] = ACTIONS(2758), + [anon_sym_cimport] = ACTIONS(2758), + [anon_sym_from] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2760), + [anon_sym_STAR] = ACTIONS(2760), + [anon_sym_print] = ACTIONS(2758), + [anon_sym_assert] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_del] = ACTIONS(2758), + [anon_sym_raise] = ACTIONS(2758), + [anon_sym_pass] = ACTIONS(2758), + [anon_sym_break] = ACTIONS(2758), + [anon_sym_continue] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_else] = ACTIONS(2758), + [anon_sym_match] = ACTIONS(2758), + [anon_sym_async] = ACTIONS(2758), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2758), + [anon_sym_except_STAR] = ACTIONS(2762), + [anon_sym_finally] = ACTIONS(2758), + [anon_sym_with] = ACTIONS(2758), + [anon_sym_def] = ACTIONS(2758), + [anon_sym_global] = ACTIONS(2758), + [anon_sym_nonlocal] = ACTIONS(2758), + [anon_sym_exec] = ACTIONS(2758), + [anon_sym_type] = ACTIONS(2758), + [anon_sym_class] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2760), + [anon_sym_AT] = ACTIONS(2760), + [anon_sym_DASH] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2760), + [anon_sym_PLUS] = ACTIONS(2760), + [anon_sym_not] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2760), + [anon_sym_TILDE] = ACTIONS(2760), + [anon_sym_LT] = ACTIONS(2760), + [anon_sym_lambda] = ACTIONS(2758), + [anon_sym_yield] = ACTIONS(2758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2760), + [anon_sym_None] = ACTIONS(2758), + [sym_integer] = ACTIONS(2758), + [sym_float] = ACTIONS(2760), + [anon_sym_await] = ACTIONS(2758), + [anon_sym_api] = ACTIONS(2758), + [sym_true] = ACTIONS(2758), + [sym_false] = ACTIONS(2758), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(2758), + [anon_sym_include] = ACTIONS(2758), + [anon_sym_DEF] = ACTIONS(2758), + [anon_sym_cdef] = ACTIONS(2758), + [anon_sym_cpdef] = ACTIONS(2758), + [anon_sym_new] = ACTIONS(2758), + [anon_sym_ctypedef] = ACTIONS(2758), + [anon_sym_public] = ACTIONS(2758), + [anon_sym_packed] = ACTIONS(2758), + [anon_sym_inline] = ACTIONS(2758), + [anon_sym_readonly] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2758), + [sym__dedent] = ACTIONS(2760), + [sym_string_start] = ACTIONS(2760), }, [834] = { - [sym_elif_clause] = STATE(999), - [sym_else_clause] = STATE(1396), - [aux_sym_if_statement_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(2620), - [sym_identifier] = ACTIONS(2618), - [anon_sym_import] = ACTIONS(2618), - [anon_sym_cimport] = ACTIONS(2618), - [anon_sym_from] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_print] = ACTIONS(2618), - [anon_sym_assert] = ACTIONS(2618), - [anon_sym_return] = ACTIONS(2618), - [anon_sym_del] = ACTIONS(2618), - [anon_sym_raise] = ACTIONS(2618), - [anon_sym_pass] = ACTIONS(2618), - [anon_sym_break] = ACTIONS(2618), - [anon_sym_continue] = ACTIONS(2618), - [anon_sym_if] = ACTIONS(2618), - [anon_sym_elif] = ACTIONS(2568), - [anon_sym_else] = ACTIONS(2412), - [anon_sym_match] = ACTIONS(2618), - [anon_sym_async] = ACTIONS(2618), - [anon_sym_for] = ACTIONS(2618), - [anon_sym_while] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2618), - [anon_sym_with] = ACTIONS(2618), - [anon_sym_def] = ACTIONS(2618), - [anon_sym_global] = ACTIONS(2618), - [anon_sym_nonlocal] = ACTIONS(2618), - [anon_sym_exec] = ACTIONS(2618), - [anon_sym_type] = ACTIONS(2618), - [anon_sym_class] = ACTIONS(2618), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_AT] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_not] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_TILDE] = ACTIONS(2620), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_lambda] = ACTIONS(2618), - [anon_sym_yield] = ACTIONS(2618), - [sym_ellipsis] = ACTIONS(2620), - [anon_sym_None] = ACTIONS(2618), - [sym_integer] = ACTIONS(2618), - [sym_float] = ACTIONS(2620), - [anon_sym_await] = ACTIONS(2618), - [anon_sym_api] = ACTIONS(2618), - [sym_true] = ACTIONS(2618), - [sym_false] = ACTIONS(2618), + [sym_named_expression] = STATE(2171), + [sym__named_expression_lhs] = STATE(5551), + [sym_list_splat_pattern] = STATE(2272), + [sym_as_pattern] = STATE(2171), + [sym__expression_within_for_in_clause] = STATE(4209), + [sym_expression] = STATE(3765), + [sym_primary_expression] = STATE(1945), + [sym_not_operator] = STATE(2171), + [sym_boolean_operator] = STATE(2171), + [sym_binary_operator] = STATE(2168), + [sym_unary_operator] = STATE(2168), + [sym_comparison_operator] = STATE(2171), + [sym_lambda] = STATE(2171), + [sym_lambda_within_for_in_clause] = STATE(4209), + [sym_attribute] = STATE(2168), + [sym_subscript] = STATE(2168), + [sym_ellipsis] = STATE(2168), + [sym_call] = STATE(2168), + [sym_list] = STATE(2168), + [sym_set] = STATE(2168), + [sym_tuple] = STATE(2168), + [sym_dictionary] = STATE(2168), + [sym_list_comprehension] = STATE(2168), + [sym_dictionary_comprehension] = STATE(2168), + [sym_set_comprehension] = STATE(2168), + [sym_generator_expression] = STATE(2168), + [sym_parenthesized_expression] = STATE(2168), + [sym_conditional_expression] = STATE(2171), + [sym_concatenated_string] = STATE(2168), + [sym_string] = STATE(2004), + [sym_none] = STATE(2168), + [sym_await] = STATE(2168), + [sym_new_expression] = STATE(2171), + [sym_sizeof_expression] = STATE(2168), + [sym_cast_expression] = STATE(2168), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_print] = ACTIONS(2323), + [anon_sym_if] = ACTIONS(2730), + [anon_sym_match] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(2730), + [anon_sym_for] = ACTIONS(2730), + [anon_sym_exec] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_LT] = ACTIONS(2331), + [anon_sym_lambda] = ACTIONS(2709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2201), + [anon_sym_None] = ACTIONS(2203), + [sym_integer] = ACTIONS(2185), + [sym_float] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2337), + [anon_sym_api] = ACTIONS(2323), + [sym_true] = ACTIONS(2185), + [sym_false] = ACTIONS(2185), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2618), - [anon_sym_include] = ACTIONS(2618), - [anon_sym_DEF] = ACTIONS(2618), - [anon_sym_cdef] = ACTIONS(2618), - [anon_sym_cpdef] = ACTIONS(2618), - [anon_sym_new] = ACTIONS(2618), - [anon_sym_ctypedef] = ACTIONS(2618), - [anon_sym_public] = ACTIONS(2618), - [anon_sym_packed] = ACTIONS(2618), - [anon_sym_inline] = ACTIONS(2618), - [anon_sym_readonly] = ACTIONS(2618), - [anon_sym_sizeof] = ACTIONS(2618), - [sym_string_start] = ACTIONS(2620), + [anon_sym_new] = ACTIONS(2339), + [anon_sym_sizeof] = ACTIONS(2209), + [sym_string_start] = ACTIONS(2211), }, [835] = { - [sym_elif_clause] = STATE(999), - [sym_else_clause] = STATE(1361), - [aux_sym_if_statement_repeat1] = STATE(760), - [ts_builtin_sym_end] = ACTIONS(2624), - [sym_identifier] = ACTIONS(2622), - [anon_sym_import] = ACTIONS(2622), - [anon_sym_cimport] = ACTIONS(2622), - [anon_sym_from] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2624), - [anon_sym_STAR] = ACTIONS(2624), - [anon_sym_print] = ACTIONS(2622), - [anon_sym_assert] = ACTIONS(2622), - [anon_sym_return] = ACTIONS(2622), - [anon_sym_del] = ACTIONS(2622), - [anon_sym_raise] = ACTIONS(2622), - [anon_sym_pass] = ACTIONS(2622), - [anon_sym_break] = ACTIONS(2622), - [anon_sym_continue] = ACTIONS(2622), - [anon_sym_if] = ACTIONS(2622), - [anon_sym_elif] = ACTIONS(2568), - [anon_sym_else] = ACTIONS(2412), - [anon_sym_match] = ACTIONS(2622), - [anon_sym_async] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2622), - [anon_sym_while] = ACTIONS(2622), - [anon_sym_try] = ACTIONS(2622), - [anon_sym_with] = ACTIONS(2622), - [anon_sym_def] = ACTIONS(2622), - [anon_sym_global] = ACTIONS(2622), - [anon_sym_nonlocal] = ACTIONS(2622), - [anon_sym_exec] = ACTIONS(2622), - [anon_sym_type] = ACTIONS(2622), - [anon_sym_class] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2624), - [anon_sym_AT] = ACTIONS(2624), - [anon_sym_DASH] = ACTIONS(2624), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_PLUS] = ACTIONS(2624), - [anon_sym_not] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_TILDE] = ACTIONS(2624), - [anon_sym_LT] = ACTIONS(2624), - [anon_sym_lambda] = ACTIONS(2622), - [anon_sym_yield] = ACTIONS(2622), - [sym_ellipsis] = ACTIONS(2624), - [anon_sym_None] = ACTIONS(2622), - [sym_integer] = ACTIONS(2622), - [sym_float] = ACTIONS(2624), - [anon_sym_await] = ACTIONS(2622), - [anon_sym_api] = ACTIONS(2622), - [sym_true] = ACTIONS(2622), - [sym_false] = ACTIONS(2622), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat_pattern] = STATE(2326), + [sym_as_pattern] = STATE(2375), + [sym__expression_within_for_in_clause] = STATE(4226), + [sym_expression] = STATE(3733), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_lambda_within_for_in_clause] = STATE(4226), + [sym_attribute] = STATE(2374), + [sym_subscript] = STATE(2374), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2728), + [anon_sym_print] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_match] = ACTIONS(2591), + [anon_sym_async] = ACTIONS(2765), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_exec] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_RBRACK] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2591), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2622), - [anon_sym_include] = ACTIONS(2622), - [anon_sym_DEF] = ACTIONS(2622), - [anon_sym_cdef] = ACTIONS(2622), - [anon_sym_cpdef] = ACTIONS(2622), - [anon_sym_new] = ACTIONS(2622), - [anon_sym_ctypedef] = ACTIONS(2622), - [anon_sym_public] = ACTIONS(2622), - [anon_sym_packed] = ACTIONS(2622), - [anon_sym_inline] = ACTIONS(2622), - [anon_sym_readonly] = ACTIONS(2622), - [anon_sym_sizeof] = ACTIONS(2622), - [sym_string_start] = ACTIONS(2624), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [836] = { - [sym_elif_clause] = STATE(999), - [sym_else_clause] = STATE(1398), - [aux_sym_if_statement_repeat1] = STATE(834), - [ts_builtin_sym_end] = ACTIONS(2610), - [sym_identifier] = ACTIONS(2608), - [anon_sym_import] = ACTIONS(2608), - [anon_sym_cimport] = ACTIONS(2608), - [anon_sym_from] = ACTIONS(2608), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(2610), - [anon_sym_print] = ACTIONS(2608), - [anon_sym_assert] = ACTIONS(2608), - [anon_sym_return] = ACTIONS(2608), - [anon_sym_del] = ACTIONS(2608), - [anon_sym_raise] = ACTIONS(2608), - [anon_sym_pass] = ACTIONS(2608), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2608), - [anon_sym_if] = ACTIONS(2608), - [anon_sym_elif] = ACTIONS(2568), - [anon_sym_else] = ACTIONS(2412), - [anon_sym_match] = ACTIONS(2608), - [anon_sym_async] = ACTIONS(2608), - [anon_sym_for] = ACTIONS(2608), - [anon_sym_while] = ACTIONS(2608), - [anon_sym_try] = ACTIONS(2608), - [anon_sym_with] = ACTIONS(2608), - [anon_sym_def] = ACTIONS(2608), - [anon_sym_global] = ACTIONS(2608), - [anon_sym_nonlocal] = ACTIONS(2608), - [anon_sym_exec] = ACTIONS(2608), - [anon_sym_type] = ACTIONS(2608), - [anon_sym_class] = ACTIONS(2608), - [anon_sym_LBRACK] = ACTIONS(2610), - [anon_sym_AT] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_LBRACE] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2610), - [anon_sym_TILDE] = ACTIONS(2610), - [anon_sym_LT] = ACTIONS(2610), - [anon_sym_lambda] = ACTIONS(2608), - [anon_sym_yield] = ACTIONS(2608), - [sym_ellipsis] = ACTIONS(2610), - [anon_sym_None] = ACTIONS(2608), - [sym_integer] = ACTIONS(2608), - [sym_float] = ACTIONS(2610), - [anon_sym_await] = ACTIONS(2608), - [anon_sym_api] = ACTIONS(2608), - [sym_true] = ACTIONS(2608), - [sym_false] = ACTIONS(2608), + [sym_pattern] = STATE(3055), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(2558), + [sym_primary_expression] = STATE(3047), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_attribute] = STATE(2591), + [sym_subscript] = STATE(2591), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2769), + [anon_sym_LPAREN] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2773), + [anon_sym_print] = ACTIONS(2775), + [anon_sym_COLON] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2775), + [anon_sym_async] = ACTIONS(2775), + [anon_sym_exec] = ACTIONS(2775), + [anon_sym_EQ] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_PLUS_EQ] = ACTIONS(2541), + [anon_sym_DASH_EQ] = ACTIONS(2541), + [anon_sym_STAR_EQ] = ACTIONS(2541), + [anon_sym_SLASH_EQ] = ACTIONS(2541), + [anon_sym_AT_EQ] = ACTIONS(2541), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2541), + [anon_sym_PERCENT_EQ] = ACTIONS(2541), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2541), + [anon_sym_GT_GT_EQ] = ACTIONS(2541), + [anon_sym_LT_LT_EQ] = ACTIONS(2541), + [anon_sym_AMP_EQ] = ACTIONS(2541), + [anon_sym_CARET_EQ] = ACTIONS(2541), + [anon_sym_PIPE_EQ] = ACTIONS(2541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(2779), + [anon_sym_api] = ACTIONS(2775), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2608), - [anon_sym_include] = ACTIONS(2608), - [anon_sym_DEF] = ACTIONS(2608), - [anon_sym_cdef] = ACTIONS(2608), - [anon_sym_cpdef] = ACTIONS(2608), - [anon_sym_new] = ACTIONS(2608), - [anon_sym_ctypedef] = ACTIONS(2608), - [anon_sym_public] = ACTIONS(2608), - [anon_sym_packed] = ACTIONS(2608), - [anon_sym_inline] = ACTIONS(2608), - [anon_sym_readonly] = ACTIONS(2608), - [anon_sym_sizeof] = ACTIONS(2608), - [sym_string_start] = ACTIONS(2610), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [837] = { - [sym_elif_clause] = STATE(999), - [aux_sym_if_statement_repeat1] = STATE(837), - [ts_builtin_sym_end] = ACTIONS(2724), - [sym_identifier] = ACTIONS(2726), - [anon_sym_import] = ACTIONS(2726), - [anon_sym_cimport] = ACTIONS(2726), - [anon_sym_from] = ACTIONS(2726), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym_STAR] = ACTIONS(2724), - [anon_sym_print] = ACTIONS(2726), - [anon_sym_assert] = ACTIONS(2726), - [anon_sym_return] = ACTIONS(2726), - [anon_sym_del] = ACTIONS(2726), - [anon_sym_raise] = ACTIONS(2726), - [anon_sym_pass] = ACTIONS(2726), - [anon_sym_break] = ACTIONS(2726), - [anon_sym_continue] = ACTIONS(2726), - [anon_sym_if] = ACTIONS(2726), - [anon_sym_elif] = ACTIONS(2728), - [anon_sym_else] = ACTIONS(2726), - [anon_sym_match] = ACTIONS(2726), - [anon_sym_async] = ACTIONS(2726), - [anon_sym_for] = ACTIONS(2726), - [anon_sym_while] = ACTIONS(2726), - [anon_sym_try] = ACTIONS(2726), - [anon_sym_with] = ACTIONS(2726), - [anon_sym_def] = ACTIONS(2726), - [anon_sym_global] = ACTIONS(2726), - [anon_sym_nonlocal] = ACTIONS(2726), - [anon_sym_exec] = ACTIONS(2726), - [anon_sym_type] = ACTIONS(2726), - [anon_sym_class] = ACTIONS(2726), - [anon_sym_LBRACK] = ACTIONS(2724), - [anon_sym_AT] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_PLUS] = ACTIONS(2724), - [anon_sym_not] = ACTIONS(2726), - [anon_sym_AMP] = ACTIONS(2724), - [anon_sym_TILDE] = ACTIONS(2724), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_lambda] = ACTIONS(2726), - [anon_sym_yield] = ACTIONS(2726), - [sym_ellipsis] = ACTIONS(2724), - [anon_sym_None] = ACTIONS(2726), - [sym_integer] = ACTIONS(2726), - [sym_float] = ACTIONS(2724), - [anon_sym_await] = ACTIONS(2726), - [anon_sym_api] = ACTIONS(2726), - [sym_true] = ACTIONS(2726), - [sym_false] = ACTIONS(2726), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat] = STATE(5159), + [sym_parenthesized_list_splat] = STATE(5159), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(4121), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_yield] = STATE(5159), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2787), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2726), - [anon_sym_include] = ACTIONS(2726), - [anon_sym_DEF] = ACTIONS(2726), - [anon_sym_cdef] = ACTIONS(2726), - [anon_sym_cpdef] = ACTIONS(2726), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_ctypedef] = ACTIONS(2726), - [anon_sym_public] = ACTIONS(2726), - [anon_sym_packed] = ACTIONS(2726), - [anon_sym_inline] = ACTIONS(2726), - [anon_sym_readonly] = ACTIONS(2726), - [anon_sym_sizeof] = ACTIONS(2726), - [sym_string_start] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [838] = { - [sym_named_expression] = STATE(2255), + [sym_named_expression] = STATE(2171), [sym__named_expression_lhs] = STATE(5551), - [sym_list_splat_pattern] = STATE(2133), - [sym_as_pattern] = STATE(2255), - [sym__expression_within_for_in_clause] = STATE(4313), - [sym_expression] = STATE(3812), - [sym_primary_expression] = STATE(1944), - [sym_not_operator] = STATE(2255), - [sym_boolean_operator] = STATE(2255), - [sym_binary_operator] = STATE(2246), - [sym_unary_operator] = STATE(2246), - [sym_comparison_operator] = STATE(2255), - [sym_lambda] = STATE(2255), - [sym_lambda_within_for_in_clause] = STATE(4313), - [sym_attribute] = STATE(2246), - [sym_subscript] = STATE(2246), - [sym_call] = STATE(2246), - [sym_list] = STATE(2246), - [sym_set] = STATE(2246), - [sym_tuple] = STATE(2246), - [sym_dictionary] = STATE(2246), - [sym_list_comprehension] = STATE(2246), - [sym_dictionary_comprehension] = STATE(2246), - [sym_set_comprehension] = STATE(2246), - [sym_generator_expression] = STATE(2246), - [sym_parenthesized_expression] = STATE(2246), - [sym_conditional_expression] = STATE(2255), - [sym_concatenated_string] = STATE(2246), - [sym_string] = STATE(1984), - [sym_none] = STATE(2246), - [sym_await] = STATE(2246), - [sym_new_expression] = STATE(2255), - [sym_sizeof_expression] = STATE(2246), - [sym_cast_expression] = STATE(2246), - [sym_identifier] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2731), - [anon_sym_print] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_match] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2733), - [anon_sym_for] = ACTIONS(2733), - [anon_sym_exec] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2735), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_not] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_TILDE] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_lambda] = ACTIONS(2737), - [sym_ellipsis] = ACTIONS(2180), - [anon_sym_None] = ACTIONS(2182), - [sym_integer] = ACTIONS(2164), - [sym_float] = ACTIONS(2180), - [anon_sym_await] = ACTIONS(2290), - [anon_sym_api] = ACTIONS(2276), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), + [sym_list_splat_pattern] = STATE(2272), + [sym_as_pattern] = STATE(2171), + [sym__expression_within_for_in_clause] = STATE(4209), + [sym_expression] = STATE(3765), + [sym_primary_expression] = STATE(1945), + [sym_not_operator] = STATE(2171), + [sym_boolean_operator] = STATE(2171), + [sym_binary_operator] = STATE(2168), + [sym_unary_operator] = STATE(2168), + [sym_comparison_operator] = STATE(2171), + [sym_lambda] = STATE(2171), + [sym_lambda_within_for_in_clause] = STATE(4209), + [sym_attribute] = STATE(2168), + [sym_subscript] = STATE(2168), + [sym_ellipsis] = STATE(2168), + [sym_call] = STATE(2168), + [sym_list] = STATE(2168), + [sym_set] = STATE(2168), + [sym_tuple] = STATE(2168), + [sym_dictionary] = STATE(2168), + [sym_list_comprehension] = STATE(2168), + [sym_dictionary_comprehension] = STATE(2168), + [sym_set_comprehension] = STATE(2168), + [sym_generator_expression] = STATE(2168), + [sym_parenthesized_expression] = STATE(2168), + [sym_conditional_expression] = STATE(2171), + [sym_concatenated_string] = STATE(2168), + [sym_string] = STATE(2004), + [sym_none] = STATE(2168), + [sym_await] = STATE(2168), + [sym_new_expression] = STATE(2171), + [sym_sizeof_expression] = STATE(2168), + [sym_cast_expression] = STATE(2168), + [sym_identifier] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_print] = ACTIONS(2323), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_match] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(2765), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_exec] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2767), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_not] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_LT] = ACTIONS(2331), + [anon_sym_lambda] = ACTIONS(2709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2201), + [anon_sym_None] = ACTIONS(2203), + [sym_integer] = ACTIONS(2185), + [sym_float] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2337), + [anon_sym_api] = ACTIONS(2323), + [sym_true] = ACTIONS(2185), + [sym_false] = ACTIONS(2185), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_sizeof] = ACTIONS(2186), - [sym_string_start] = ACTIONS(2188), + [anon_sym_new] = ACTIONS(2339), + [anon_sym_sizeof] = ACTIONS(2209), + [sym_string_start] = ACTIONS(2211), }, [839] = { - [sym_elif_clause] = STATE(997), - [aux_sym_if_statement_repeat1] = STATE(839), - [sym_identifier] = ACTIONS(2726), - [anon_sym_import] = ACTIONS(2726), - [anon_sym_cimport] = ACTIONS(2726), - [anon_sym_from] = ACTIONS(2726), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym_STAR] = ACTIONS(2724), - [anon_sym_print] = ACTIONS(2726), - [anon_sym_assert] = ACTIONS(2726), - [anon_sym_return] = ACTIONS(2726), - [anon_sym_del] = ACTIONS(2726), - [anon_sym_raise] = ACTIONS(2726), - [anon_sym_pass] = ACTIONS(2726), - [anon_sym_break] = ACTIONS(2726), - [anon_sym_continue] = ACTIONS(2726), - [anon_sym_if] = ACTIONS(2726), - [anon_sym_elif] = ACTIONS(2739), - [anon_sym_else] = ACTIONS(2726), - [anon_sym_match] = ACTIONS(2726), - [anon_sym_async] = ACTIONS(2726), - [anon_sym_for] = ACTIONS(2726), - [anon_sym_while] = ACTIONS(2726), - [anon_sym_try] = ACTIONS(2726), - [anon_sym_with] = ACTIONS(2726), - [anon_sym_def] = ACTIONS(2726), - [anon_sym_global] = ACTIONS(2726), - [anon_sym_nonlocal] = ACTIONS(2726), - [anon_sym_exec] = ACTIONS(2726), - [anon_sym_type] = ACTIONS(2726), - [anon_sym_class] = ACTIONS(2726), - [anon_sym_LBRACK] = ACTIONS(2724), - [anon_sym_AT] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_PLUS] = ACTIONS(2724), - [anon_sym_not] = ACTIONS(2726), - [anon_sym_AMP] = ACTIONS(2724), - [anon_sym_TILDE] = ACTIONS(2724), - [anon_sym_LT] = ACTIONS(2724), - [anon_sym_lambda] = ACTIONS(2726), - [anon_sym_yield] = ACTIONS(2726), - [sym_ellipsis] = ACTIONS(2724), - [anon_sym_None] = ACTIONS(2726), - [sym_integer] = ACTIONS(2726), - [sym_float] = ACTIONS(2724), - [anon_sym_await] = ACTIONS(2726), - [anon_sym_api] = ACTIONS(2726), - [sym_true] = ACTIONS(2726), - [sym_false] = ACTIONS(2726), + [sym_elif_clause] = STATE(985), + [sym_else_clause] = STATE(1427), + [aux_sym_if_statement_repeat1] = STATE(843), + [ts_builtin_sym_end] = ACTIONS(2717), + [sym_identifier] = ACTIONS(2715), + [anon_sym_import] = ACTIONS(2715), + [anon_sym_cimport] = ACTIONS(2715), + [anon_sym_from] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2717), + [anon_sym_print] = ACTIONS(2715), + [anon_sym_assert] = ACTIONS(2715), + [anon_sym_return] = ACTIONS(2715), + [anon_sym_del] = ACTIONS(2715), + [anon_sym_raise] = ACTIONS(2715), + [anon_sym_pass] = ACTIONS(2715), + [anon_sym_break] = ACTIONS(2715), + [anon_sym_continue] = ACTIONS(2715), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_elif] = ACTIONS(2789), + [anon_sym_else] = ACTIONS(2467), + [anon_sym_match] = ACTIONS(2715), + [anon_sym_async] = ACTIONS(2715), + [anon_sym_for] = ACTIONS(2715), + [anon_sym_while] = ACTIONS(2715), + [anon_sym_try] = ACTIONS(2715), + [anon_sym_with] = ACTIONS(2715), + [anon_sym_def] = ACTIONS(2715), + [anon_sym_global] = ACTIONS(2715), + [anon_sym_nonlocal] = ACTIONS(2715), + [anon_sym_exec] = ACTIONS(2715), + [anon_sym_type] = ACTIONS(2715), + [anon_sym_class] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_AT] = ACTIONS(2717), + [anon_sym_DASH] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2717), + [anon_sym_PLUS] = ACTIONS(2717), + [anon_sym_not] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_TILDE] = ACTIONS(2717), + [anon_sym_LT] = ACTIONS(2717), + [anon_sym_lambda] = ACTIONS(2715), + [anon_sym_yield] = ACTIONS(2715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2717), + [anon_sym_None] = ACTIONS(2715), + [sym_integer] = ACTIONS(2715), + [sym_float] = ACTIONS(2717), + [anon_sym_await] = ACTIONS(2715), + [anon_sym_api] = ACTIONS(2715), + [sym_true] = ACTIONS(2715), + [sym_false] = ACTIONS(2715), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2726), - [anon_sym_include] = ACTIONS(2726), - [anon_sym_DEF] = ACTIONS(2726), - [anon_sym_cdef] = ACTIONS(2726), - [anon_sym_cpdef] = ACTIONS(2726), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_ctypedef] = ACTIONS(2726), - [anon_sym_public] = ACTIONS(2726), - [anon_sym_packed] = ACTIONS(2726), - [anon_sym_inline] = ACTIONS(2726), - [anon_sym_readonly] = ACTIONS(2726), - [anon_sym_sizeof] = ACTIONS(2726), - [sym__dedent] = ACTIONS(2724), - [sym_string_start] = ACTIONS(2724), + [anon_sym_property] = ACTIONS(2715), + [anon_sym_include] = ACTIONS(2715), + [anon_sym_DEF] = ACTIONS(2715), + [anon_sym_cdef] = ACTIONS(2715), + [anon_sym_cpdef] = ACTIONS(2715), + [anon_sym_new] = ACTIONS(2715), + [anon_sym_ctypedef] = ACTIONS(2715), + [anon_sym_public] = ACTIONS(2715), + [anon_sym_packed] = ACTIONS(2715), + [anon_sym_inline] = ACTIONS(2715), + [anon_sym_readonly] = ACTIONS(2715), + [anon_sym_sizeof] = ACTIONS(2715), + [sym_string_start] = ACTIONS(2717), }, [840] = { - [sym_named_expression] = STATE(2512), - [sym__named_expression_lhs] = STATE(5443), - [sym_list_splat] = STATE(5057), - [sym_parenthesized_list_splat] = STATE(5057), - [sym_list_splat_pattern] = STATE(2490), - [sym_as_pattern] = STATE(2512), - [sym_expression] = STATE(4084), - [sym_primary_expression] = STATE(1967), - [sym_not_operator] = STATE(2512), - [sym_boolean_operator] = STATE(2512), - [sym_binary_operator] = STATE(2509), - [sym_unary_operator] = STATE(2509), - [sym_comparison_operator] = STATE(2512), - [sym_lambda] = STATE(2512), - [sym_yield] = STATE(5057), - [sym_attribute] = STATE(2509), - [sym_subscript] = STATE(2509), - [sym_call] = STATE(2509), - [sym_list] = STATE(2509), - [sym_set] = STATE(2509), - [sym_tuple] = STATE(2509), - [sym_dictionary] = STATE(2509), - [sym_list_comprehension] = STATE(2509), - [sym_dictionary_comprehension] = STATE(2509), - [sym_set_comprehension] = STATE(2509), - [sym_generator_expression] = STATE(2509), - [sym_parenthesized_expression] = STATE(2509), - [sym_conditional_expression] = STATE(2512), - [sym_concatenated_string] = STATE(2509), - [sym_string] = STATE(2110), - [sym_none] = STATE(2509), - [sym_await] = STATE(2509), - [sym_new_expression] = STATE(2512), - [sym_sizeof_expression] = STATE(2509), - [sym_cast_expression] = STATE(2509), - [sym_identifier] = ACTIONS(2742), - [anon_sym_LPAREN] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_print] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_exec] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_RBRACK] = ACTIONS(2748), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_not] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_lambda] = ACTIONS(2400), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2218), - [anon_sym_None] = ACTIONS(2220), - [sym_integer] = ACTIONS(2202), - [sym_float] = ACTIONS(2218), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_api] = ACTIONS(2390), - [sym_true] = ACTIONS(2202), - [sym_false] = ACTIONS(2202), + [sym_elif_clause] = STATE(984), + [sym_else_clause] = STATE(1551), + [aux_sym_if_statement_repeat1] = STATE(879), + [sym_identifier] = ACTIONS(2791), + [anon_sym_import] = ACTIONS(2791), + [anon_sym_cimport] = ACTIONS(2791), + [anon_sym_from] = ACTIONS(2791), + [anon_sym_LPAREN] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2793), + [anon_sym_print] = ACTIONS(2791), + [anon_sym_assert] = ACTIONS(2791), + [anon_sym_return] = ACTIONS(2791), + [anon_sym_del] = ACTIONS(2791), + [anon_sym_raise] = ACTIONS(2791), + [anon_sym_pass] = ACTIONS(2791), + [anon_sym_break] = ACTIONS(2791), + [anon_sym_continue] = ACTIONS(2791), + [anon_sym_if] = ACTIONS(2791), + [anon_sym_elif] = ACTIONS(2719), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2791), + [anon_sym_async] = ACTIONS(2791), + [anon_sym_for] = ACTIONS(2791), + [anon_sym_while] = ACTIONS(2791), + [anon_sym_try] = ACTIONS(2791), + [anon_sym_with] = ACTIONS(2791), + [anon_sym_def] = ACTIONS(2791), + [anon_sym_global] = ACTIONS(2791), + [anon_sym_nonlocal] = ACTIONS(2791), + [anon_sym_exec] = ACTIONS(2791), + [anon_sym_type] = ACTIONS(2791), + [anon_sym_class] = ACTIONS(2791), + [anon_sym_LBRACK] = ACTIONS(2793), + [anon_sym_AT] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2793), + [anon_sym_not] = ACTIONS(2791), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2793), + [anon_sym_LT] = ACTIONS(2793), + [anon_sym_lambda] = ACTIONS(2791), + [anon_sym_yield] = ACTIONS(2791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2793), + [anon_sym_None] = ACTIONS(2791), + [sym_integer] = ACTIONS(2791), + [sym_float] = ACTIONS(2793), + [anon_sym_await] = ACTIONS(2791), + [anon_sym_api] = ACTIONS(2791), + [sym_true] = ACTIONS(2791), + [sym_false] = ACTIONS(2791), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2224), - [sym_string_start] = ACTIONS(2226), + [anon_sym_property] = ACTIONS(2791), + [anon_sym_include] = ACTIONS(2791), + [anon_sym_DEF] = ACTIONS(2791), + [anon_sym_cdef] = ACTIONS(2791), + [anon_sym_cpdef] = ACTIONS(2791), + [anon_sym_new] = ACTIONS(2791), + [anon_sym_ctypedef] = ACTIONS(2791), + [anon_sym_public] = ACTIONS(2791), + [anon_sym_packed] = ACTIONS(2791), + [anon_sym_inline] = ACTIONS(2791), + [anon_sym_readonly] = ACTIONS(2791), + [anon_sym_sizeof] = ACTIONS(2791), + [sym__dedent] = ACTIONS(2793), + [sym_string_start] = ACTIONS(2793), }, [841] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat_pattern] = STATE(2307), - [sym_as_pattern] = STATE(2314), - [sym__expression_within_for_in_clause] = STATE(4273), - [sym_expression] = STATE(3762), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_lambda_within_for_in_clause] = STATE(4273), - [sym_attribute] = STATE(2310), - [sym_subscript] = STATE(2310), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2570), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_print] = ACTIONS(2574), - [anon_sym_if] = ACTIONS(2752), - [anon_sym_match] = ACTIONS(2574), - [anon_sym_async] = ACTIONS(2752), - [anon_sym_for] = ACTIONS(2752), - [anon_sym_exec] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2236), - [anon_sym_RBRACK] = ACTIONS(2754), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2756), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2578), - [anon_sym_api] = ACTIONS(2574), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_elif_clause] = STATE(985), + [sym_else_clause] = STATE(1426), + [aux_sym_if_statement_repeat1] = STATE(889), + [ts_builtin_sym_end] = ACTIONS(2793), + [sym_identifier] = ACTIONS(2791), + [anon_sym_import] = ACTIONS(2791), + [anon_sym_cimport] = ACTIONS(2791), + [anon_sym_from] = ACTIONS(2791), + [anon_sym_LPAREN] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2793), + [anon_sym_print] = ACTIONS(2791), + [anon_sym_assert] = ACTIONS(2791), + [anon_sym_return] = ACTIONS(2791), + [anon_sym_del] = ACTIONS(2791), + [anon_sym_raise] = ACTIONS(2791), + [anon_sym_pass] = ACTIONS(2791), + [anon_sym_break] = ACTIONS(2791), + [anon_sym_continue] = ACTIONS(2791), + [anon_sym_if] = ACTIONS(2791), + [anon_sym_elif] = ACTIONS(2789), + [anon_sym_else] = ACTIONS(2467), + [anon_sym_match] = ACTIONS(2791), + [anon_sym_async] = ACTIONS(2791), + [anon_sym_for] = ACTIONS(2791), + [anon_sym_while] = ACTIONS(2791), + [anon_sym_try] = ACTIONS(2791), + [anon_sym_with] = ACTIONS(2791), + [anon_sym_def] = ACTIONS(2791), + [anon_sym_global] = ACTIONS(2791), + [anon_sym_nonlocal] = ACTIONS(2791), + [anon_sym_exec] = ACTIONS(2791), + [anon_sym_type] = ACTIONS(2791), + [anon_sym_class] = ACTIONS(2791), + [anon_sym_LBRACK] = ACTIONS(2793), + [anon_sym_AT] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2793), + [anon_sym_not] = ACTIONS(2791), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2793), + [anon_sym_LT] = ACTIONS(2793), + [anon_sym_lambda] = ACTIONS(2791), + [anon_sym_yield] = ACTIONS(2791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2793), + [anon_sym_None] = ACTIONS(2791), + [sym_integer] = ACTIONS(2791), + [sym_float] = ACTIONS(2793), + [anon_sym_await] = ACTIONS(2791), + [anon_sym_api] = ACTIONS(2791), + [sym_true] = ACTIONS(2791), + [sym_false] = ACTIONS(2791), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_property] = ACTIONS(2791), + [anon_sym_include] = ACTIONS(2791), + [anon_sym_DEF] = ACTIONS(2791), + [anon_sym_cdef] = ACTIONS(2791), + [anon_sym_cpdef] = ACTIONS(2791), + [anon_sym_new] = ACTIONS(2791), + [anon_sym_ctypedef] = ACTIONS(2791), + [anon_sym_public] = ACTIONS(2791), + [anon_sym_packed] = ACTIONS(2791), + [anon_sym_inline] = ACTIONS(2791), + [anon_sym_readonly] = ACTIONS(2791), + [anon_sym_sizeof] = ACTIONS(2791), + [sym_string_start] = ACTIONS(2793), }, [842] = { - [sym_named_expression] = STATE(2255), - [sym__named_expression_lhs] = STATE(5551), - [sym_list_splat_pattern] = STATE(2133), - [sym_as_pattern] = STATE(2255), - [sym__expression_within_for_in_clause] = STATE(4313), - [sym_expression] = STATE(3812), - [sym_primary_expression] = STATE(1944), - [sym_not_operator] = STATE(2255), - [sym_boolean_operator] = STATE(2255), - [sym_binary_operator] = STATE(2246), - [sym_unary_operator] = STATE(2246), - [sym_comparison_operator] = STATE(2255), - [sym_lambda] = STATE(2255), - [sym_lambda_within_for_in_clause] = STATE(4313), - [sym_attribute] = STATE(2246), - [sym_subscript] = STATE(2246), - [sym_call] = STATE(2246), - [sym_list] = STATE(2246), - [sym_set] = STATE(2246), - [sym_tuple] = STATE(2246), - [sym_dictionary] = STATE(2246), - [sym_list_comprehension] = STATE(2246), - [sym_dictionary_comprehension] = STATE(2246), - [sym_set_comprehension] = STATE(2246), - [sym_generator_expression] = STATE(2246), - [sym_parenthesized_expression] = STATE(2246), - [sym_conditional_expression] = STATE(2255), - [sym_concatenated_string] = STATE(2246), - [sym_string] = STATE(1984), - [sym_none] = STATE(2246), - [sym_await] = STATE(2246), - [sym_new_expression] = STATE(2255), - [sym_sizeof_expression] = STATE(2246), - [sym_cast_expression] = STATE(2246), - [sym_identifier] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2731), - [anon_sym_print] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2752), - [anon_sym_match] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2752), - [anon_sym_for] = ACTIONS(2752), - [anon_sym_exec] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_not] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_TILDE] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_lambda] = ACTIONS(2737), - [sym_ellipsis] = ACTIONS(2180), - [anon_sym_None] = ACTIONS(2182), - [sym_integer] = ACTIONS(2164), - [sym_float] = ACTIONS(2180), - [anon_sym_await] = ACTIONS(2290), - [anon_sym_api] = ACTIONS(2276), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), + [sym_elif_clause] = STATE(985), + [sym_else_clause] = STATE(1313), + [aux_sym_if_statement_repeat1] = STATE(841), + [ts_builtin_sym_end] = ACTIONS(2795), + [sym_identifier] = ACTIONS(2797), + [anon_sym_import] = ACTIONS(2797), + [anon_sym_cimport] = ACTIONS(2797), + [anon_sym_from] = ACTIONS(2797), + [anon_sym_LPAREN] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2795), + [anon_sym_print] = ACTIONS(2797), + [anon_sym_assert] = ACTIONS(2797), + [anon_sym_return] = ACTIONS(2797), + [anon_sym_del] = ACTIONS(2797), + [anon_sym_raise] = ACTIONS(2797), + [anon_sym_pass] = ACTIONS(2797), + [anon_sym_break] = ACTIONS(2797), + [anon_sym_continue] = ACTIONS(2797), + [anon_sym_if] = ACTIONS(2797), + [anon_sym_elif] = ACTIONS(2789), + [anon_sym_else] = ACTIONS(2467), + [anon_sym_match] = ACTIONS(2797), + [anon_sym_async] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2797), + [anon_sym_while] = ACTIONS(2797), + [anon_sym_try] = ACTIONS(2797), + [anon_sym_with] = ACTIONS(2797), + [anon_sym_def] = ACTIONS(2797), + [anon_sym_global] = ACTIONS(2797), + [anon_sym_nonlocal] = ACTIONS(2797), + [anon_sym_exec] = ACTIONS(2797), + [anon_sym_type] = ACTIONS(2797), + [anon_sym_class] = ACTIONS(2797), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_AT] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_not] = ACTIONS(2797), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2795), + [anon_sym_lambda] = ACTIONS(2797), + [anon_sym_yield] = ACTIONS(2797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2795), + [anon_sym_None] = ACTIONS(2797), + [sym_integer] = ACTIONS(2797), + [sym_float] = ACTIONS(2795), + [anon_sym_await] = ACTIONS(2797), + [anon_sym_api] = ACTIONS(2797), + [sym_true] = ACTIONS(2797), + [sym_false] = ACTIONS(2797), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_sizeof] = ACTIONS(2186), - [sym_string_start] = ACTIONS(2188), + [anon_sym_property] = ACTIONS(2797), + [anon_sym_include] = ACTIONS(2797), + [anon_sym_DEF] = ACTIONS(2797), + [anon_sym_cdef] = ACTIONS(2797), + [anon_sym_cpdef] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(2797), + [anon_sym_ctypedef] = ACTIONS(2797), + [anon_sym_public] = ACTIONS(2797), + [anon_sym_packed] = ACTIONS(2797), + [anon_sym_inline] = ACTIONS(2797), + [anon_sym_readonly] = ACTIONS(2797), + [anon_sym_sizeof] = ACTIONS(2797), + [sym_string_start] = ACTIONS(2795), }, [843] = { - [ts_builtin_sym_end] = ACTIONS(1373), - [sym_identifier] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_import] = ACTIONS(1371), - [anon_sym_cimport] = ACTIONS(1371), - [anon_sym_from] = ACTIONS(1371), - [anon_sym_LPAREN] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1373), - [anon_sym_print] = ACTIONS(1371), - [anon_sym_assert] = ACTIONS(1371), - [anon_sym_return] = ACTIONS(1371), - [anon_sym_del] = ACTIONS(1371), - [anon_sym_raise] = ACTIONS(1371), - [anon_sym_pass] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(1371), - [anon_sym_continue] = ACTIONS(1371), - [anon_sym_if] = ACTIONS(1371), - [anon_sym_elif] = ACTIONS(1371), - [anon_sym_else] = ACTIONS(1371), - [anon_sym_match] = ACTIONS(1371), - [anon_sym_async] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1371), - [anon_sym_while] = ACTIONS(1371), - [anon_sym_try] = ACTIONS(1371), - [anon_sym_finally] = ACTIONS(1371), - [anon_sym_with] = ACTIONS(1371), - [anon_sym_def] = ACTIONS(1371), - [anon_sym_global] = ACTIONS(1371), - [anon_sym_nonlocal] = ACTIONS(1371), - [anon_sym_exec] = ACTIONS(1371), - [anon_sym_type] = ACTIONS(1371), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1373), - [anon_sym_AT] = ACTIONS(1373), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_not] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_LT] = ACTIONS(1373), - [anon_sym_lambda] = ACTIONS(1371), - [anon_sym_yield] = ACTIONS(1371), - [sym_ellipsis] = ACTIONS(1373), - [anon_sym_None] = ACTIONS(1371), - [sym_integer] = ACTIONS(1371), - [sym_float] = ACTIONS(1373), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_api] = ACTIONS(1371), - [sym_true] = ACTIONS(1371), - [sym_false] = ACTIONS(1371), + [sym_elif_clause] = STATE(985), + [sym_else_clause] = STATE(1617), + [aux_sym_if_statement_repeat1] = STATE(889), + [ts_builtin_sym_end] = ACTIONS(2799), + [sym_identifier] = ACTIONS(2801), + [anon_sym_import] = ACTIONS(2801), + [anon_sym_cimport] = ACTIONS(2801), + [anon_sym_from] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(2799), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_print] = ACTIONS(2801), + [anon_sym_assert] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_del] = ACTIONS(2801), + [anon_sym_raise] = ACTIONS(2801), + [anon_sym_pass] = ACTIONS(2801), + [anon_sym_break] = ACTIONS(2801), + [anon_sym_continue] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_elif] = ACTIONS(2789), + [anon_sym_else] = ACTIONS(2467), + [anon_sym_match] = ACTIONS(2801), + [anon_sym_async] = ACTIONS(2801), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_with] = ACTIONS(2801), + [anon_sym_def] = ACTIONS(2801), + [anon_sym_global] = ACTIONS(2801), + [anon_sym_nonlocal] = ACTIONS(2801), + [anon_sym_exec] = ACTIONS(2801), + [anon_sym_type] = ACTIONS(2801), + [anon_sym_class] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_AT] = ACTIONS(2799), + [anon_sym_DASH] = ACTIONS(2799), + [anon_sym_LBRACE] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2799), + [anon_sym_not] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_TILDE] = ACTIONS(2799), + [anon_sym_LT] = ACTIONS(2799), + [anon_sym_lambda] = ACTIONS(2801), + [anon_sym_yield] = ACTIONS(2801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2799), + [anon_sym_None] = ACTIONS(2801), + [sym_integer] = ACTIONS(2801), + [sym_float] = ACTIONS(2799), + [anon_sym_await] = ACTIONS(2801), + [anon_sym_api] = ACTIONS(2801), + [sym_true] = ACTIONS(2801), + [sym_false] = ACTIONS(2801), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1371), - [anon_sym_include] = ACTIONS(1371), - [anon_sym_DEF] = ACTIONS(1371), - [anon_sym_cdef] = ACTIONS(1371), - [anon_sym_cpdef] = ACTIONS(1371), - [anon_sym_new] = ACTIONS(1371), - [anon_sym_ctypedef] = ACTIONS(1371), - [anon_sym_public] = ACTIONS(1371), - [anon_sym_packed] = ACTIONS(1371), - [anon_sym_inline] = ACTIONS(1371), - [anon_sym_readonly] = ACTIONS(1371), - [anon_sym_sizeof] = ACTIONS(1371), - [sym_string_start] = ACTIONS(1373), + [anon_sym_property] = ACTIONS(2801), + [anon_sym_include] = ACTIONS(2801), + [anon_sym_DEF] = ACTIONS(2801), + [anon_sym_cdef] = ACTIONS(2801), + [anon_sym_cpdef] = ACTIONS(2801), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_ctypedef] = ACTIONS(2801), + [anon_sym_public] = ACTIONS(2801), + [anon_sym_packed] = ACTIONS(2801), + [anon_sym_inline] = ACTIONS(2801), + [anon_sym_readonly] = ACTIONS(2801), + [anon_sym_sizeof] = ACTIONS(2801), + [sym_string_start] = ACTIONS(2799), }, [844] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym__expression_within_for_in_clause] = STATE(4307), - [sym_expression] = STATE(3739), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym__expression_within_for_in_clause] = STATE(4216), + [sym_expression] = STATE(3812), [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_lambda_within_for_in_clause] = STATE(4307), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_RPAREN] = ACTIONS(2758), - [anon_sym_STAR] = ACTIONS(2760), - [anon_sym_print] = ACTIONS(1363), - [anon_sym_if] = ACTIONS(2762), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(2762), - [anon_sym_for] = ACTIONS(2762), - [anon_sym_exec] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(2764), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_api] = ACTIONS(1363), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_lambda_within_for_in_clause] = STATE(4216), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_RPAREN] = ACTIONS(2732), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_print] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(2730), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(2730), + [anon_sym_for] = ACTIONS(2730), + [anon_sym_exec] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(2805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1374), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [845] = { - [sym_pattern] = STATE(3078), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(2525), - [sym_primary_expression] = STATE(3054), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_attribute] = STATE(2578), - [sym_subscript] = STATE(2578), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2766), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_print] = ACTIONS(2772), - [anon_sym_COLON] = ACTIONS(2506), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_async] = ACTIONS(2772), - [anon_sym_exec] = ACTIONS(2772), - [anon_sym_EQ] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(1207), - [anon_sym_PLUS_EQ] = ACTIONS(2506), - [anon_sym_DASH_EQ] = ACTIONS(2506), - [anon_sym_STAR_EQ] = ACTIONS(2506), - [anon_sym_SLASH_EQ] = ACTIONS(2506), - [anon_sym_AT_EQ] = ACTIONS(2506), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2506), - [anon_sym_PERCENT_EQ] = ACTIONS(2506), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2506), - [anon_sym_GT_GT_EQ] = ACTIONS(2506), - [anon_sym_LT_LT_EQ] = ACTIONS(2506), - [anon_sym_AMP_EQ] = ACTIONS(2506), - [anon_sym_CARET_EQ] = ACTIONS(2506), - [anon_sym_PIPE_EQ] = ACTIONS(2506), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(2776), - [anon_sym_api] = ACTIONS(2772), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_expression_list] = STATE(5425), + [sym_pattern] = STATE(4424), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(2473), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(3999), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_pattern_list] = STATE(5174), + [sym_attribute] = STATE(2481), + [sym_subscript] = STATE(2481), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2746), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_print] = ACTIONS(2752), + [anon_sym_match] = ACTIONS(2752), + [anon_sym_async] = ACTIONS(2752), + [anon_sym_exec] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(2756), + [anon_sym_api] = ACTIONS(2752), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [846] = { - [ts_builtin_sym_end] = ACTIONS(1385), - [sym_identifier] = ACTIONS(1383), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_import] = ACTIONS(1383), - [anon_sym_cimport] = ACTIONS(1383), - [anon_sym_from] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_print] = ACTIONS(1383), - [anon_sym_assert] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(1383), - [anon_sym_del] = ACTIONS(1383), - [anon_sym_raise] = ACTIONS(1383), - [anon_sym_pass] = ACTIONS(1383), - [anon_sym_break] = ACTIONS(1383), - [anon_sym_continue] = ACTIONS(1383), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_elif] = ACTIONS(1383), - [anon_sym_else] = ACTIONS(1383), - [anon_sym_match] = ACTIONS(1383), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_for] = ACTIONS(1383), - [anon_sym_while] = ACTIONS(1383), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_finally] = ACTIONS(1383), - [anon_sym_with] = ACTIONS(1383), - [anon_sym_def] = ACTIONS(1383), - [anon_sym_global] = ACTIONS(1383), - [anon_sym_nonlocal] = ACTIONS(1383), - [anon_sym_exec] = ACTIONS(1383), - [anon_sym_type] = ACTIONS(1383), - [anon_sym_class] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_AT] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_not] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT] = ACTIONS(1385), - [anon_sym_lambda] = ACTIONS(1383), - [anon_sym_yield] = ACTIONS(1383), - [sym_ellipsis] = ACTIONS(1385), - [anon_sym_None] = ACTIONS(1383), - [sym_integer] = ACTIONS(1383), - [sym_float] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_api] = ACTIONS(1383), - [sym_true] = ACTIONS(1383), - [sym_false] = ACTIONS(1383), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat] = STATE(5159), + [sym_parenthesized_list_splat] = STATE(5159), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(4121), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_yield] = STATE(5159), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2738), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1383), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_DEF] = ACTIONS(1383), - [anon_sym_cdef] = ACTIONS(1383), - [anon_sym_cpdef] = ACTIONS(1383), - [anon_sym_new] = ACTIONS(1383), - [anon_sym_ctypedef] = ACTIONS(1383), - [anon_sym_public] = ACTIONS(1383), - [anon_sym_packed] = ACTIONS(1383), - [anon_sym_inline] = ACTIONS(1383), - [anon_sym_readonly] = ACTIONS(1383), - [anon_sym_sizeof] = ACTIONS(1383), - [sym_string_start] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [847] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(5041), - [sym_parenthesized_list_splat] = STATE(5041), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4104), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_yield] = STATE(5041), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2780), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_print] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_async] = ACTIONS(2784), - [anon_sym_exec] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(2786), - [anon_sym_api] = ACTIONS(2784), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym__expression_within_for_in_clause] = STATE(4216), + [sym_expression] = STATE(3812), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_lambda_within_for_in_clause] = STATE(4216), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_RPAREN] = ACTIONS(2707), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_print] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_exec] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(2805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1374), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [848] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(5041), - [sym_parenthesized_list_splat] = STATE(5041), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4104), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_yield] = STATE(5041), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_RPAREN] = ACTIONS(2748), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_print] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_async] = ACTIONS(2784), - [anon_sym_exec] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(2786), - [anon_sym_api] = ACTIONS(2784), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_except_clause] = STATE(848), + [aux_sym_try_statement_repeat1] = STATE(848), + [ts_builtin_sym_end] = ACTIONS(2723), + [sym_identifier] = ACTIONS(2721), + [anon_sym_import] = ACTIONS(2721), + [anon_sym_cimport] = ACTIONS(2721), + [anon_sym_from] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(2723), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_print] = ACTIONS(2721), + [anon_sym_assert] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_del] = ACTIONS(2721), + [anon_sym_raise] = ACTIONS(2721), + [anon_sym_pass] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_else] = ACTIONS(2721), + [anon_sym_match] = ACTIONS(2721), + [anon_sym_async] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_except] = ACTIONS(2807), + [anon_sym_finally] = ACTIONS(2721), + [anon_sym_with] = ACTIONS(2721), + [anon_sym_def] = ACTIONS(2721), + [anon_sym_global] = ACTIONS(2721), + [anon_sym_nonlocal] = ACTIONS(2721), + [anon_sym_exec] = ACTIONS(2721), + [anon_sym_type] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2723), + [anon_sym_AT] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2723), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_PLUS] = ACTIONS(2723), + [anon_sym_not] = ACTIONS(2721), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_LT] = ACTIONS(2723), + [anon_sym_lambda] = ACTIONS(2721), + [anon_sym_yield] = ACTIONS(2721), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2723), + [anon_sym_None] = ACTIONS(2721), + [sym_integer] = ACTIONS(2721), + [sym_float] = ACTIONS(2723), + [anon_sym_await] = ACTIONS(2721), + [anon_sym_api] = ACTIONS(2721), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(2721), + [anon_sym_include] = ACTIONS(2721), + [anon_sym_DEF] = ACTIONS(2721), + [anon_sym_cdef] = ACTIONS(2721), + [anon_sym_cpdef] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_ctypedef] = ACTIONS(2721), + [anon_sym_public] = ACTIONS(2721), + [anon_sym_packed] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym_readonly] = ACTIONS(2721), + [anon_sym_sizeof] = ACTIONS(2721), + [sym_string_start] = ACTIONS(2723), }, [849] = { - [sym_named_expression] = STATE(2512), - [sym__named_expression_lhs] = STATE(5443), - [sym_list_splat] = STATE(5057), - [sym_parenthesized_list_splat] = STATE(5057), - [sym_list_splat_pattern] = STATE(2490), - [sym_as_pattern] = STATE(2512), - [sym_expression] = STATE(4084), - [sym_primary_expression] = STATE(1967), - [sym_not_operator] = STATE(2512), - [sym_boolean_operator] = STATE(2512), - [sym_binary_operator] = STATE(2509), - [sym_unary_operator] = STATE(2509), - [sym_comparison_operator] = STATE(2512), - [sym_lambda] = STATE(2512), - [sym_yield] = STATE(5057), - [sym_attribute] = STATE(2509), - [sym_subscript] = STATE(2509), - [sym_call] = STATE(2509), - [sym_list] = STATE(2509), - [sym_set] = STATE(2509), - [sym_tuple] = STATE(2509), - [sym_dictionary] = STATE(2509), - [sym_list_comprehension] = STATE(2509), - [sym_dictionary_comprehension] = STATE(2509), - [sym_set_comprehension] = STATE(2509), - [sym_generator_expression] = STATE(2509), - [sym_parenthesized_expression] = STATE(2509), - [sym_conditional_expression] = STATE(2512), - [sym_concatenated_string] = STATE(2509), - [sym_string] = STATE(2110), - [sym_none] = STATE(2509), - [sym_await] = STATE(2509), - [sym_new_expression] = STATE(2512), - [sym_sizeof_expression] = STATE(2509), - [sym_cast_expression] = STATE(2509), - [sym_identifier] = ACTIONS(2742), - [anon_sym_LPAREN] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_print] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_exec] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_RBRACK] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_not] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_lambda] = ACTIONS(2400), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2218), - [anon_sym_None] = ACTIONS(2220), - [sym_integer] = ACTIONS(2202), - [sym_float] = ACTIONS(2218), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_api] = ACTIONS(2390), - [sym_true] = ACTIONS(2202), - [sym_false] = ACTIONS(2202), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5103), + [sym_parenthesized_list_splat] = STATE(5103), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4102), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_yield] = STATE(5103), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2736), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_RPAREN] = ACTIONS(2787), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_print] = ACTIONS(2742), + [anon_sym_match] = ACTIONS(2742), + [anon_sym_async] = ACTIONS(2742), + [anon_sym_exec] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(2744), + [anon_sym_api] = ACTIONS(2742), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2224), - [sym_string_start] = ACTIONS(2226), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [850] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat_pattern] = STATE(2307), - [sym_as_pattern] = STATE(2314), - [sym__expression_within_for_in_clause] = STATE(4273), - [sym_expression] = STATE(3762), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_lambda_within_for_in_clause] = STATE(4273), - [sym_attribute] = STATE(2310), - [sym_subscript] = STATE(2310), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2570), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_print] = ACTIONS(2574), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_match] = ACTIONS(2574), - [anon_sym_async] = ACTIONS(2788), - [anon_sym_for] = ACTIONS(2788), - [anon_sym_exec] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2236), - [anon_sym_RBRACK] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2756), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2578), - [anon_sym_api] = ACTIONS(2574), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_elif_clause] = STATE(984), + [sym_else_clause] = STATE(1578), + [aux_sym_if_statement_repeat1] = STATE(879), + [sym_identifier] = ACTIONS(2801), + [anon_sym_import] = ACTIONS(2801), + [anon_sym_cimport] = ACTIONS(2801), + [anon_sym_from] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(2799), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_print] = ACTIONS(2801), + [anon_sym_assert] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_del] = ACTIONS(2801), + [anon_sym_raise] = ACTIONS(2801), + [anon_sym_pass] = ACTIONS(2801), + [anon_sym_break] = ACTIONS(2801), + [anon_sym_continue] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_elif] = ACTIONS(2719), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2801), + [anon_sym_async] = ACTIONS(2801), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_with] = ACTIONS(2801), + [anon_sym_def] = ACTIONS(2801), + [anon_sym_global] = ACTIONS(2801), + [anon_sym_nonlocal] = ACTIONS(2801), + [anon_sym_exec] = ACTIONS(2801), + [anon_sym_type] = ACTIONS(2801), + [anon_sym_class] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_AT] = ACTIONS(2799), + [anon_sym_DASH] = ACTIONS(2799), + [anon_sym_LBRACE] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2799), + [anon_sym_not] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_TILDE] = ACTIONS(2799), + [anon_sym_LT] = ACTIONS(2799), + [anon_sym_lambda] = ACTIONS(2801), + [anon_sym_yield] = ACTIONS(2801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2799), + [anon_sym_None] = ACTIONS(2801), + [sym_integer] = ACTIONS(2801), + [sym_float] = ACTIONS(2799), + [anon_sym_await] = ACTIONS(2801), + [anon_sym_api] = ACTIONS(2801), + [sym_true] = ACTIONS(2801), + [sym_false] = ACTIONS(2801), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_property] = ACTIONS(2801), + [anon_sym_include] = ACTIONS(2801), + [anon_sym_DEF] = ACTIONS(2801), + [anon_sym_cdef] = ACTIONS(2801), + [anon_sym_cpdef] = ACTIONS(2801), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_ctypedef] = ACTIONS(2801), + [anon_sym_public] = ACTIONS(2801), + [anon_sym_packed] = ACTIONS(2801), + [anon_sym_inline] = ACTIONS(2801), + [anon_sym_readonly] = ACTIONS(2801), + [anon_sym_sizeof] = ACTIONS(2801), + [sym__dedent] = ACTIONS(2799), + [sym_string_start] = ACTIONS(2799), }, [851] = { - [sym_named_expression] = STATE(3682), - [sym__named_expression_lhs] = STATE(5485), - [sym_list_splat] = STATE(5066), - [sym_parenthesized_list_splat] = STATE(5066), - [sym_list_splat_pattern] = STATE(2230), - [sym_as_pattern] = STATE(3682), - [sym_expression] = STATE(4105), - [sym_primary_expression] = STATE(1950), - [sym_not_operator] = STATE(3682), - [sym_boolean_operator] = STATE(3682), - [sym_binary_operator] = STATE(2179), - [sym_unary_operator] = STATE(2179), - [sym_comparison_operator] = STATE(3682), - [sym_lambda] = STATE(3682), - [sym_yield] = STATE(5066), - [sym_attribute] = STATE(2179), - [sym_subscript] = STATE(2179), - [sym_call] = STATE(2179), - [sym_list] = STATE(2179), - [sym_set] = STATE(2179), - [sym_tuple] = STATE(2179), - [sym_dictionary] = STATE(2179), - [sym_list_comprehension] = STATE(2179), - [sym_dictionary_comprehension] = STATE(2179), - [sym_set_comprehension] = STATE(2179), - [sym_generator_expression] = STATE(2179), - [sym_parenthesized_expression] = STATE(2179), - [sym_conditional_expression] = STATE(3682), - [sym_concatenated_string] = STATE(2179), - [sym_string] = STATE(1968), - [sym_none] = STATE(2179), - [sym_await] = STATE(2179), - [sym_new_expression] = STATE(3682), - [sym_sizeof_expression] = STATE(2179), - [sym_cast_expression] = STATE(2179), - [sym_identifier] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_print] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2558), - [anon_sym_async] = ACTIONS(2558), - [anon_sym_exec] = ACTIONS(2558), - [anon_sym_LBRACK] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2796), - [anon_sym_AMP] = ACTIONS(2110), - [anon_sym_TILDE] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2434), - [anon_sym_lambda] = ACTIONS(2798), - [anon_sym_yield] = ACTIONS(2288), - [sym_ellipsis] = ACTIONS(2116), - [anon_sym_None] = ACTIONS(2118), - [sym_integer] = ACTIONS(2100), - [sym_float] = ACTIONS(2116), - [anon_sym_await] = ACTIONS(2562), - [anon_sym_api] = ACTIONS(2558), - [sym_true] = ACTIONS(2100), - [sym_false] = ACTIONS(2100), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym__expression_within_for_in_clause] = STATE(4216), + [sym_expression] = STATE(3812), + [sym_primary_expression] = STATE(1953), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_lambda_within_for_in_clause] = STATE(4216), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_RPAREN] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_print] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(2765), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_exec] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(2805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1374), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2800), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_string_start] = ACTIONS(2124), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [852] = { - [ts_builtin_sym_end] = ACTIONS(1381), - [sym_identifier] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_import] = ACTIONS(1379), - [anon_sym_cimport] = ACTIONS(1379), - [anon_sym_from] = ACTIONS(1379), - [anon_sym_LPAREN] = ACTIONS(1381), - [anon_sym_STAR] = ACTIONS(1381), - [anon_sym_print] = ACTIONS(1379), - [anon_sym_assert] = ACTIONS(1379), - [anon_sym_return] = ACTIONS(1379), - [anon_sym_del] = ACTIONS(1379), - [anon_sym_raise] = ACTIONS(1379), - [anon_sym_pass] = ACTIONS(1379), - [anon_sym_break] = ACTIONS(1379), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_elif] = ACTIONS(1379), - [anon_sym_else] = ACTIONS(1379), - [anon_sym_match] = ACTIONS(1379), - [anon_sym_async] = ACTIONS(1379), - [anon_sym_for] = ACTIONS(1379), - [anon_sym_while] = ACTIONS(1379), - [anon_sym_try] = ACTIONS(1379), - [anon_sym_finally] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(1379), - [anon_sym_global] = ACTIONS(1379), - [anon_sym_nonlocal] = ACTIONS(1379), - [anon_sym_exec] = ACTIONS(1379), - [anon_sym_type] = ACTIONS(1379), - [anon_sym_class] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_AT] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(1381), - [anon_sym_not] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(1381), - [anon_sym_lambda] = ACTIONS(1379), - [anon_sym_yield] = ACTIONS(1379), - [sym_ellipsis] = ACTIONS(1381), - [anon_sym_None] = ACTIONS(1379), - [sym_integer] = ACTIONS(1379), - [sym_float] = ACTIONS(1381), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_api] = ACTIONS(1379), - [sym_true] = ACTIONS(1379), - [sym_false] = ACTIONS(1379), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_expression_list] = STATE(5415), + [sym_pattern] = STATE(4472), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(2473), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_pattern_list] = STATE(5180), + [sym_attribute] = STATE(2481), + [sym_subscript] = STATE(2481), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2746), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_print] = ACTIONS(2752), + [anon_sym_match] = ACTIONS(2752), + [anon_sym_async] = ACTIONS(2752), + [anon_sym_exec] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(2756), + [anon_sym_api] = ACTIONS(2752), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1379), - [anon_sym_include] = ACTIONS(1379), - [anon_sym_DEF] = ACTIONS(1379), - [anon_sym_cdef] = ACTIONS(1379), - [anon_sym_cpdef] = ACTIONS(1379), - [anon_sym_new] = ACTIONS(1379), - [anon_sym_ctypedef] = ACTIONS(1379), - [anon_sym_public] = ACTIONS(1379), - [anon_sym_packed] = ACTIONS(1379), - [anon_sym_inline] = ACTIONS(1379), - [anon_sym_readonly] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1379), - [sym_string_start] = ACTIONS(1381), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [853] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat_pattern] = STATE(2307), - [sym_as_pattern] = STATE(2314), - [sym__expression_within_for_in_clause] = STATE(4273), - [sym_expression] = STATE(3762), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_lambda_within_for_in_clause] = STATE(4273), - [sym_attribute] = STATE(2310), - [sym_subscript] = STATE(2310), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2570), - [anon_sym_LPAREN] = ACTIONS(2230), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_expression_list] = STATE(5451), + [sym_pattern] = STATE(4478), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(2473), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(3978), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_pattern_list] = STATE(5186), + [sym_attribute] = STATE(2481), + [sym_subscript] = STATE(2481), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2746), + [anon_sym_LPAREN] = ACTIONS(2748), [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_print] = ACTIONS(2574), - [anon_sym_if] = ACTIONS(2762), - [anon_sym_match] = ACTIONS(2574), - [anon_sym_async] = ACTIONS(2762), - [anon_sym_for] = ACTIONS(2762), - [anon_sym_exec] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2236), - [anon_sym_RBRACK] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2756), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2578), - [anon_sym_api] = ACTIONS(2574), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [anon_sym_print] = ACTIONS(2752), + [anon_sym_match] = ACTIONS(2752), + [anon_sym_async] = ACTIONS(2752), + [anon_sym_exec] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(2756), + [anon_sym_api] = ACTIONS(2752), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [854] = { - [ts_builtin_sym_end] = ACTIONS(1377), - [sym_identifier] = ACTIONS(1375), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_import] = ACTIONS(1375), - [anon_sym_cimport] = ACTIONS(1375), - [anon_sym_from] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_print] = ACTIONS(1375), - [anon_sym_assert] = ACTIONS(1375), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_del] = ACTIONS(1375), - [anon_sym_raise] = ACTIONS(1375), - [anon_sym_pass] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1375), - [anon_sym_continue] = ACTIONS(1375), - [anon_sym_if] = ACTIONS(1375), - [anon_sym_elif] = ACTIONS(1375), - [anon_sym_else] = ACTIONS(1375), - [anon_sym_match] = ACTIONS(1375), - [anon_sym_async] = ACTIONS(1375), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_while] = ACTIONS(1375), - [anon_sym_try] = ACTIONS(1375), - [anon_sym_finally] = ACTIONS(1375), - [anon_sym_with] = ACTIONS(1375), - [anon_sym_def] = ACTIONS(1375), - [anon_sym_global] = ACTIONS(1375), - [anon_sym_nonlocal] = ACTIONS(1375), - [anon_sym_exec] = ACTIONS(1375), - [anon_sym_type] = ACTIONS(1375), - [anon_sym_class] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1377), - [anon_sym_AT] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_not] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_lambda] = ACTIONS(1375), - [anon_sym_yield] = ACTIONS(1375), - [sym_ellipsis] = ACTIONS(1377), - [anon_sym_None] = ACTIONS(1375), - [sym_integer] = ACTIONS(1375), - [sym_float] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(1375), - [anon_sym_api] = ACTIONS(1375), - [sym_true] = ACTIONS(1375), - [sym_false] = ACTIONS(1375), + [sym_elif_clause] = STATE(984), + [sym_else_clause] = STATE(1520), + [aux_sym_if_statement_repeat1] = STATE(840), + [sym_identifier] = ACTIONS(2797), + [anon_sym_import] = ACTIONS(2797), + [anon_sym_cimport] = ACTIONS(2797), + [anon_sym_from] = ACTIONS(2797), + [anon_sym_LPAREN] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2795), + [anon_sym_print] = ACTIONS(2797), + [anon_sym_assert] = ACTIONS(2797), + [anon_sym_return] = ACTIONS(2797), + [anon_sym_del] = ACTIONS(2797), + [anon_sym_raise] = ACTIONS(2797), + [anon_sym_pass] = ACTIONS(2797), + [anon_sym_break] = ACTIONS(2797), + [anon_sym_continue] = ACTIONS(2797), + [anon_sym_if] = ACTIONS(2797), + [anon_sym_elif] = ACTIONS(2719), + [anon_sym_else] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2797), + [anon_sym_async] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2797), + [anon_sym_while] = ACTIONS(2797), + [anon_sym_try] = ACTIONS(2797), + [anon_sym_with] = ACTIONS(2797), + [anon_sym_def] = ACTIONS(2797), + [anon_sym_global] = ACTIONS(2797), + [anon_sym_nonlocal] = ACTIONS(2797), + [anon_sym_exec] = ACTIONS(2797), + [anon_sym_type] = ACTIONS(2797), + [anon_sym_class] = ACTIONS(2797), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_AT] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_not] = ACTIONS(2797), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2795), + [anon_sym_lambda] = ACTIONS(2797), + [anon_sym_yield] = ACTIONS(2797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2795), + [anon_sym_None] = ACTIONS(2797), + [sym_integer] = ACTIONS(2797), + [sym_float] = ACTIONS(2795), + [anon_sym_await] = ACTIONS(2797), + [anon_sym_api] = ACTIONS(2797), + [sym_true] = ACTIONS(2797), + [sym_false] = ACTIONS(2797), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1375), - [anon_sym_include] = ACTIONS(1375), - [anon_sym_DEF] = ACTIONS(1375), - [anon_sym_cdef] = ACTIONS(1375), - [anon_sym_cpdef] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1375), - [anon_sym_ctypedef] = ACTIONS(1375), - [anon_sym_public] = ACTIONS(1375), - [anon_sym_packed] = ACTIONS(1375), - [anon_sym_inline] = ACTIONS(1375), - [anon_sym_readonly] = ACTIONS(1375), - [anon_sym_sizeof] = ACTIONS(1375), - [sym_string_start] = ACTIONS(1377), + [anon_sym_property] = ACTIONS(2797), + [anon_sym_include] = ACTIONS(2797), + [anon_sym_DEF] = ACTIONS(2797), + [anon_sym_cdef] = ACTIONS(2797), + [anon_sym_cpdef] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(2797), + [anon_sym_ctypedef] = ACTIONS(2797), + [anon_sym_public] = ACTIONS(2797), + [anon_sym_packed] = ACTIONS(2797), + [anon_sym_inline] = ACTIONS(2797), + [anon_sym_readonly] = ACTIONS(2797), + [anon_sym_sizeof] = ACTIONS(2797), + [sym__dedent] = ACTIONS(2795), + [sym_string_start] = ACTIONS(2795), }, [855] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym__expression_within_for_in_clause] = STATE(4307), - [sym_expression] = STATE(3739), + [sym_named_expression] = STATE(2303), + [sym__named_expression_lhs] = STATE(5490), + [sym_list_splat_pattern] = STATE(2287), + [sym_as_pattern] = STATE(2303), + [sym__expression_within_for_in_clause] = STATE(4216), + [sym_expression] = STATE(3812), [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_lambda_within_for_in_clause] = STATE(4307), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_RPAREN] = ACTIONS(2735), - [anon_sym_STAR] = ACTIONS(2760), - [anon_sym_print] = ACTIONS(1363), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(2733), - [anon_sym_for] = ACTIONS(2733), - [anon_sym_exec] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(2764), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_api] = ACTIONS(1363), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_not_operator] = STATE(2303), + [sym_boolean_operator] = STATE(2303), + [sym_binary_operator] = STATE(2302), + [sym_unary_operator] = STATE(2302), + [sym_comparison_operator] = STATE(2303), + [sym_lambda] = STATE(2303), + [sym_lambda_within_for_in_clause] = STATE(4216), + [sym_attribute] = STATE(2302), + [sym_subscript] = STATE(2302), + [sym_ellipsis] = STATE(2302), + [sym_call] = STATE(2302), + [sym_list] = STATE(2302), + [sym_set] = STATE(2302), + [sym_tuple] = STATE(2302), + [sym_dictionary] = STATE(2302), + [sym_list_comprehension] = STATE(2302), + [sym_dictionary_comprehension] = STATE(2302), + [sym_set_comprehension] = STATE(2302), + [sym_generator_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym_conditional_expression] = STATE(2303), + [sym_concatenated_string] = STATE(2302), + [sym_string] = STATE(2056), + [sym_none] = STATE(2302), + [sym_await] = STATE(2302), + [sym_new_expression] = STATE(2303), + [sym_sizeof_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_RPAREN] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_print] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(2711), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(2711), + [anon_sym_for] = ACTIONS(2711), + [anon_sym_exec] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1230), + [anon_sym_not] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_lambda] = ACTIONS(2805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1242), + [anon_sym_None] = ACTIONS(1244), + [sym_integer] = ACTIONS(1246), + [sym_float] = ACTIONS(1248), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1374), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1264), + [sym_string_start] = ACTIONS(1266), }, [856] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_expression_list] = STATE(5347), - [sym_pattern] = STATE(4334), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(2502), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(3824), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_pattern_list] = STATE(5000), - [sym_attribute] = STATE(2504), - [sym_subscript] = STATE(2504), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(2806), - [anon_sym_print] = ACTIONS(2808), - [anon_sym_match] = ACTIONS(2808), - [anon_sym_async] = ACTIONS(2808), - [anon_sym_exec] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(2812), - [anon_sym_api] = ACTIONS(2808), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_except_group_clause] = STATE(856), + [aux_sym_try_statement_repeat2] = STATE(856), + [ts_builtin_sym_end] = ACTIONS(2760), + [sym_identifier] = ACTIONS(2758), + [anon_sym_import] = ACTIONS(2758), + [anon_sym_cimport] = ACTIONS(2758), + [anon_sym_from] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2760), + [anon_sym_STAR] = ACTIONS(2760), + [anon_sym_print] = ACTIONS(2758), + [anon_sym_assert] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_del] = ACTIONS(2758), + [anon_sym_raise] = ACTIONS(2758), + [anon_sym_pass] = ACTIONS(2758), + [anon_sym_break] = ACTIONS(2758), + [anon_sym_continue] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_else] = ACTIONS(2758), + [anon_sym_match] = ACTIONS(2758), + [anon_sym_async] = ACTIONS(2758), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2758), + [anon_sym_except_STAR] = ACTIONS(2810), + [anon_sym_finally] = ACTIONS(2758), + [anon_sym_with] = ACTIONS(2758), + [anon_sym_def] = ACTIONS(2758), + [anon_sym_global] = ACTIONS(2758), + [anon_sym_nonlocal] = ACTIONS(2758), + [anon_sym_exec] = ACTIONS(2758), + [anon_sym_type] = ACTIONS(2758), + [anon_sym_class] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2760), + [anon_sym_AT] = ACTIONS(2760), + [anon_sym_DASH] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2760), + [anon_sym_PLUS] = ACTIONS(2760), + [anon_sym_not] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2760), + [anon_sym_TILDE] = ACTIONS(2760), + [anon_sym_LT] = ACTIONS(2760), + [anon_sym_lambda] = ACTIONS(2758), + [anon_sym_yield] = ACTIONS(2758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2760), + [anon_sym_None] = ACTIONS(2758), + [sym_integer] = ACTIONS(2758), + [sym_float] = ACTIONS(2760), + [anon_sym_await] = ACTIONS(2758), + [anon_sym_api] = ACTIONS(2758), + [sym_true] = ACTIONS(2758), + [sym_false] = ACTIONS(2758), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_property] = ACTIONS(2758), + [anon_sym_include] = ACTIONS(2758), + [anon_sym_DEF] = ACTIONS(2758), + [anon_sym_cdef] = ACTIONS(2758), + [anon_sym_cpdef] = ACTIONS(2758), + [anon_sym_new] = ACTIONS(2758), + [anon_sym_ctypedef] = ACTIONS(2758), + [anon_sym_public] = ACTIONS(2758), + [anon_sym_packed] = ACTIONS(2758), + [anon_sym_inline] = ACTIONS(2758), + [anon_sym_readonly] = ACTIONS(2758), + [anon_sym_sizeof] = ACTIONS(2758), + [sym_string_start] = ACTIONS(2760), }, [857] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(4996), - [sym_dictionary_splat] = STATE(4996), - [sym_parenthesized_list_splat] = STATE(5006), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_keyword_argument] = STATE(4996), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_print] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_exec] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(1295), - [anon_sym_api] = ACTIONS(1273), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat_pattern] = STATE(2326), + [sym_as_pattern] = STATE(2375), + [sym__expression_within_for_in_clause] = STATE(4226), + [sym_expression] = STATE(3733), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_lambda_within_for_in_clause] = STATE(4226), + [sym_attribute] = STATE(2374), + [sym_subscript] = STATE(2374), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2728), + [anon_sym_print] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_match] = ACTIONS(2591), + [anon_sym_async] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_exec] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_RBRACK] = ACTIONS(2707), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2591), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [858] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_expression_list] = STATE(5378), - [sym_pattern] = STATE(4467), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(2502), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(3950), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_pattern_list] = STATE(5173), - [sym_attribute] = STATE(2504), - [sym_subscript] = STATE(2504), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(2806), - [anon_sym_print] = ACTIONS(2808), - [anon_sym_match] = ACTIONS(2808), - [anon_sym_async] = ACTIONS(2808), - [anon_sym_exec] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(2812), - [anon_sym_api] = ACTIONS(2808), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(2375), + [sym__named_expression_lhs] = STATE(5492), + [sym_list_splat_pattern] = STATE(2326), + [sym_as_pattern] = STATE(2375), + [sym__expression_within_for_in_clause] = STATE(4226), + [sym_expression] = STATE(3733), + [sym_primary_expression] = STATE(1956), + [sym_not_operator] = STATE(2375), + [sym_boolean_operator] = STATE(2375), + [sym_binary_operator] = STATE(2374), + [sym_unary_operator] = STATE(2374), + [sym_comparison_operator] = STATE(2375), + [sym_lambda] = STATE(2375), + [sym_lambda_within_for_in_clause] = STATE(4226), + [sym_attribute] = STATE(2374), + [sym_subscript] = STATE(2374), + [sym_ellipsis] = STATE(2374), + [sym_call] = STATE(2374), + [sym_list] = STATE(2374), + [sym_set] = STATE(2374), + [sym_tuple] = STATE(2374), + [sym_dictionary] = STATE(2374), + [sym_list_comprehension] = STATE(2374), + [sym_dictionary_comprehension] = STATE(2374), + [sym_set_comprehension] = STATE(2374), + [sym_generator_expression] = STATE(2374), + [sym_parenthesized_expression] = STATE(2374), + [sym_conditional_expression] = STATE(2375), + [sym_concatenated_string] = STATE(2374), + [sym_string] = STATE(2051), + [sym_none] = STATE(2374), + [sym_await] = STATE(2374), + [sym_new_expression] = STATE(2375), + [sym_sizeof_expression] = STATE(2374), + [sym_cast_expression] = STATE(2374), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2728), + [anon_sym_print] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(2711), + [anon_sym_match] = ACTIONS(2591), + [anon_sym_async] = ACTIONS(2711), + [anon_sym_for] = ACTIONS(2711), + [anon_sym_exec] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_RBRACK] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2591), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2281), }, [859] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_expression_list] = STATE(5429), - [sym_pattern] = STATE(4470), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(2502), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(3962), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_pattern_list] = STATE(5180), - [sym_attribute] = STATE(2504), - [sym_subscript] = STATE(2504), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(2806), - [anon_sym_print] = ACTIONS(2808), - [anon_sym_match] = ACTIONS(2808), - [anon_sym_async] = ACTIONS(2808), - [anon_sym_exec] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(2812), - [anon_sym_api] = ACTIONS(2808), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_pattern] = STATE(3055), + [sym_tuple_pattern] = STATE(3042), + [sym_list_pattern] = STATE(3042), + [sym_list_splat_pattern] = STATE(2558), + [sym_primary_expression] = STATE(3047), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_attribute] = STATE(2591), + [sym_subscript] = STATE(2591), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(2769), + [anon_sym_LPAREN] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2773), + [anon_sym_print] = ACTIONS(2775), + [anon_sym_COLON] = ACTIONS(2527), + [anon_sym_match] = ACTIONS(2775), + [anon_sym_async] = ACTIONS(2775), + [anon_sym_exec] = ACTIONS(2775), + [anon_sym_EQ] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_PLUS_EQ] = ACTIONS(2527), + [anon_sym_DASH_EQ] = ACTIONS(2527), + [anon_sym_STAR_EQ] = ACTIONS(2527), + [anon_sym_SLASH_EQ] = ACTIONS(2527), + [anon_sym_AT_EQ] = ACTIONS(2527), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2527), + [anon_sym_PERCENT_EQ] = ACTIONS(2527), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2527), + [anon_sym_GT_GT_EQ] = ACTIONS(2527), + [anon_sym_LT_LT_EQ] = ACTIONS(2527), + [anon_sym_AMP_EQ] = ACTIONS(2527), + [anon_sym_CARET_EQ] = ACTIONS(2527), + [anon_sym_PIPE_EQ] = ACTIONS(2527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(2779), + [anon_sym_api] = ACTIONS(2775), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [860] = { - [sym_named_expression] = STATE(3682), - [sym__named_expression_lhs] = STATE(5485), - [sym_list_splat] = STATE(5066), - [sym_parenthesized_list_splat] = STATE(5066), - [sym_list_splat_pattern] = STATE(2230), - [sym_as_pattern] = STATE(3682), - [sym_expression] = STATE(4105), - [sym_primary_expression] = STATE(1950), - [sym_not_operator] = STATE(3682), - [sym_boolean_operator] = STATE(3682), - [sym_binary_operator] = STATE(2179), - [sym_unary_operator] = STATE(2179), - [sym_comparison_operator] = STATE(3682), - [sym_lambda] = STATE(3682), - [sym_yield] = STATE(5066), - [sym_attribute] = STATE(2179), - [sym_subscript] = STATE(2179), - [sym_call] = STATE(2179), - [sym_list] = STATE(2179), - [sym_set] = STATE(2179), - [sym_tuple] = STATE(2179), - [sym_dictionary] = STATE(2179), - [sym_list_comprehension] = STATE(2179), - [sym_dictionary_comprehension] = STATE(2179), - [sym_set_comprehension] = STATE(2179), - [sym_generator_expression] = STATE(2179), - [sym_parenthesized_expression] = STATE(2179), - [sym_conditional_expression] = STATE(3682), - [sym_concatenated_string] = STATE(2179), - [sym_string] = STATE(1968), - [sym_none] = STATE(2179), - [sym_await] = STATE(2179), - [sym_new_expression] = STATE(3682), - [sym_sizeof_expression] = STATE(2179), - [sym_cast_expression] = STATE(2179), - [sym_identifier] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_print] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2558), - [anon_sym_async] = ACTIONS(2558), - [anon_sym_exec] = ACTIONS(2558), - [anon_sym_LBRACK] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(2748), - [anon_sym_PLUS] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2796), - [anon_sym_AMP] = ACTIONS(2110), - [anon_sym_TILDE] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2434), - [anon_sym_lambda] = ACTIONS(2798), - [anon_sym_yield] = ACTIONS(2288), - [sym_ellipsis] = ACTIONS(2116), - [anon_sym_None] = ACTIONS(2118), - [sym_integer] = ACTIONS(2100), - [sym_float] = ACTIONS(2116), - [anon_sym_await] = ACTIONS(2562), - [anon_sym_api] = ACTIONS(2558), - [sym_true] = ACTIONS(2100), - [sym_false] = ACTIONS(2100), + [sym_named_expression] = STATE(3724), + [sym__named_expression_lhs] = STATE(5493), + [sym_list_splat] = STATE(5169), + [sym_parenthesized_list_splat] = STATE(5169), + [sym_list_splat_pattern] = STATE(2212), + [sym_as_pattern] = STATE(3724), + [sym_expression] = STATE(4027), + [sym_primary_expression] = STATE(1942), + [sym_not_operator] = STATE(3724), + [sym_boolean_operator] = STATE(3724), + [sym_binary_operator] = STATE(2175), + [sym_unary_operator] = STATE(2175), + [sym_comparison_operator] = STATE(3724), + [sym_lambda] = STATE(3724), + [sym_yield] = STATE(5169), + [sym_attribute] = STATE(2175), + [sym_subscript] = STATE(2175), + [sym_ellipsis] = STATE(2175), + [sym_call] = STATE(2175), + [sym_list] = STATE(2175), + [sym_set] = STATE(2175), + [sym_tuple] = STATE(2175), + [sym_dictionary] = STATE(2175), + [sym_list_comprehension] = STATE(2175), + [sym_dictionary_comprehension] = STATE(2175), + [sym_set_comprehension] = STATE(2175), + [sym_generator_expression] = STATE(2175), + [sym_parenthesized_expression] = STATE(2175), + [sym_conditional_expression] = STATE(3724), + [sym_concatenated_string] = STATE(2175), + [sym_string] = STATE(1976), + [sym_none] = STATE(2175), + [sym_await] = STATE(2175), + [sym_new_expression] = STATE(3724), + [sym_sizeof_expression] = STATE(2175), + [sym_cast_expression] = STATE(2175), + [sym_identifier] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_print] = ACTIONS(2697), + [anon_sym_match] = ACTIONS(2697), + [anon_sym_async] = ACTIONS(2697), + [anon_sym_exec] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(2787), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_not] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_TILDE] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(2417), + [anon_sym_lambda] = ACTIONS(2819), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1717), + [anon_sym_None] = ACTIONS(1719), + [sym_integer] = ACTIONS(1701), + [sym_float] = ACTIONS(1721), + [anon_sym_await] = ACTIONS(2701), + [anon_sym_api] = ACTIONS(2697), + [sym_true] = ACTIONS(1701), + [sym_false] = ACTIONS(1701), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2800), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_string_start] = ACTIONS(2124), + [anon_sym_new] = ACTIONS(2821), + [anon_sym_sizeof] = ACTIONS(1725), + [sym_string_start] = ACTIONS(1727), }, [861] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym__expression_within_for_in_clause] = STATE(4307), - [sym_expression] = STATE(3739), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_lambda_within_for_in_clause] = STATE(4307), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_RPAREN] = ACTIONS(2790), - [anon_sym_STAR] = ACTIONS(2760), - [anon_sym_print] = ACTIONS(1363), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(2788), - [anon_sym_for] = ACTIONS(2788), - [anon_sym_exec] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(2764), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_api] = ACTIONS(1363), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_named_expression] = STATE(3724), + [sym__named_expression_lhs] = STATE(5493), + [sym_list_splat] = STATE(5169), + [sym_parenthesized_list_splat] = STATE(5169), + [sym_list_splat_pattern] = STATE(2212), + [sym_as_pattern] = STATE(3724), + [sym_expression] = STATE(4027), + [sym_primary_expression] = STATE(1942), + [sym_not_operator] = STATE(3724), + [sym_boolean_operator] = STATE(3724), + [sym_binary_operator] = STATE(2175), + [sym_unary_operator] = STATE(2175), + [sym_comparison_operator] = STATE(3724), + [sym_lambda] = STATE(3724), + [sym_yield] = STATE(5169), + [sym_attribute] = STATE(2175), + [sym_subscript] = STATE(2175), + [sym_ellipsis] = STATE(2175), + [sym_call] = STATE(2175), + [sym_list] = STATE(2175), + [sym_set] = STATE(2175), + [sym_tuple] = STATE(2175), + [sym_dictionary] = STATE(2175), + [sym_list_comprehension] = STATE(2175), + [sym_dictionary_comprehension] = STATE(2175), + [sym_set_comprehension] = STATE(2175), + [sym_generator_expression] = STATE(2175), + [sym_parenthesized_expression] = STATE(2175), + [sym_conditional_expression] = STATE(3724), + [sym_concatenated_string] = STATE(2175), + [sym_string] = STATE(1976), + [sym_none] = STATE(2175), + [sym_await] = STATE(2175), + [sym_new_expression] = STATE(3724), + [sym_sizeof_expression] = STATE(2175), + [sym_cast_expression] = STATE(2175), + [sym_identifier] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_print] = ACTIONS(2697), + [anon_sym_match] = ACTIONS(2697), + [anon_sym_async] = ACTIONS(2697), + [anon_sym_exec] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(2738), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_not] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_TILDE] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(2417), + [anon_sym_lambda] = ACTIONS(2819), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1717), + [anon_sym_None] = ACTIONS(1719), + [sym_integer] = ACTIONS(1701), + [sym_float] = ACTIONS(1721), + [anon_sym_await] = ACTIONS(2701), + [anon_sym_api] = ACTIONS(2697), + [sym_true] = ACTIONS(1701), + [sym_false] = ACTIONS(1701), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(2821), + [anon_sym_sizeof] = ACTIONS(1725), + [sym_string_start] = ACTIONS(1727), }, [862] = { - [sym_named_expression] = STATE(2255), - [sym__named_expression_lhs] = STATE(5551), - [sym_list_splat_pattern] = STATE(2133), - [sym_as_pattern] = STATE(2255), - [sym__expression_within_for_in_clause] = STATE(4313), - [sym_expression] = STATE(3812), - [sym_primary_expression] = STATE(1944), - [sym_not_operator] = STATE(2255), - [sym_boolean_operator] = STATE(2255), - [sym_binary_operator] = STATE(2246), - [sym_unary_operator] = STATE(2246), - [sym_comparison_operator] = STATE(2255), - [sym_lambda] = STATE(2255), - [sym_lambda_within_for_in_clause] = STATE(4313), - [sym_attribute] = STATE(2246), - [sym_subscript] = STATE(2246), - [sym_call] = STATE(2246), - [sym_list] = STATE(2246), - [sym_set] = STATE(2246), - [sym_tuple] = STATE(2246), - [sym_dictionary] = STATE(2246), - [sym_list_comprehension] = STATE(2246), - [sym_dictionary_comprehension] = STATE(2246), - [sym_set_comprehension] = STATE(2246), - [sym_generator_expression] = STATE(2246), - [sym_parenthesized_expression] = STATE(2246), - [sym_conditional_expression] = STATE(2255), - [sym_concatenated_string] = STATE(2246), - [sym_string] = STATE(1984), - [sym_none] = STATE(2246), - [sym_await] = STATE(2246), - [sym_new_expression] = STATE(2255), - [sym_sizeof_expression] = STATE(2246), - [sym_cast_expression] = STATE(2246), - [sym_identifier] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2731), - [anon_sym_print] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_match] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2788), - [anon_sym_for] = ACTIONS(2788), - [anon_sym_exec] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_not] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_TILDE] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_lambda] = ACTIONS(2737), - [sym_ellipsis] = ACTIONS(2180), - [anon_sym_None] = ACTIONS(2182), - [sym_integer] = ACTIONS(2164), - [sym_float] = ACTIONS(2180), - [anon_sym_await] = ACTIONS(2290), - [anon_sym_api] = ACTIONS(2276), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_dictionary_splat] = STATE(5149), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(4188), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_pair] = STATE(5149), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(2823), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_sizeof] = ACTIONS(2186), - [sym_string_start] = ACTIONS(2188), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [863] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_expression_list] = STATE(5233), - [sym_pattern] = STATE(4323), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(2502), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(3847), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_pattern_list] = STATE(5075), - [sym_attribute] = STATE(2504), - [sym_subscript] = STATE(2504), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(2806), - [anon_sym_print] = ACTIONS(2808), - [anon_sym_match] = ACTIONS(2808), - [anon_sym_async] = ACTIONS(2808), - [anon_sym_exec] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(2812), - [anon_sym_api] = ACTIONS(2808), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(3724), + [sym__named_expression_lhs] = STATE(5368), + [sym_list_splat_pattern] = STATE(2212), + [sym_as_pattern] = STATE(3724), + [sym_expression] = STATE(3674), + [sym_primary_expression] = STATE(1942), + [sym_not_operator] = STATE(3724), + [sym_boolean_operator] = STATE(3724), + [sym_binary_operator] = STATE(2175), + [sym_unary_operator] = STATE(2175), + [sym_comparison_operator] = STATE(3724), + [sym_lambda] = STATE(3724), + [sym_attribute] = STATE(2175), + [sym_subscript] = STATE(2175), + [sym_ellipsis] = STATE(2175), + [sym_call] = STATE(2175), + [sym_list] = STATE(2175), + [sym_set] = STATE(2175), + [sym_tuple] = STATE(2175), + [sym_dictionary] = STATE(2175), + [sym_list_comprehension] = STATE(2175), + [sym_dictionary_comprehension] = STATE(2175), + [sym_set_comprehension] = STATE(2175), + [sym_generator_expression] = STATE(2175), + [sym_parenthesized_expression] = STATE(2175), + [sym_conditional_expression] = STATE(3724), + [sym_concatenated_string] = STATE(2175), + [sym_string] = STATE(1976), + [sym_none] = STATE(2175), + [sym_await] = STATE(2175), + [sym_new_expression] = STATE(3724), + [sym_sizeof_expression] = STATE(2175), + [sym_cast_expression] = STATE(2175), + [sym_identifier] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(2409), + [anon_sym_print] = ACTIONS(2697), + [anon_sym_COLON] = ACTIONS(2825), + [anon_sym_match] = ACTIONS(2697), + [anon_sym_async] = ACTIONS(2697), + [anon_sym_exec] = ACTIONS(2697), + [anon_sym_EQ] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(2825), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_TILDE] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(2417), + [anon_sym_lambda] = ACTIONS(2419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1717), + [anon_sym_None] = ACTIONS(1719), + [sym_type_conversion] = ACTIONS(2825), + [sym_integer] = ACTIONS(1701), + [sym_float] = ACTIONS(1721), + [anon_sym_await] = ACTIONS(2701), + [anon_sym_api] = ACTIONS(2697), + [sym_true] = ACTIONS(1701), + [sym_false] = ACTIONS(1701), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_sizeof] = ACTIONS(1725), + [sym_string_start] = ACTIONS(1727), }, [864] = { - [ts_builtin_sym_end] = ACTIONS(1389), - [sym_identifier] = ACTIONS(1387), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_import] = ACTIONS(1387), - [anon_sym_cimport] = ACTIONS(1387), - [anon_sym_from] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_print] = ACTIONS(1387), - [anon_sym_assert] = ACTIONS(1387), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_del] = ACTIONS(1387), - [anon_sym_raise] = ACTIONS(1387), - [anon_sym_pass] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1387), - [anon_sym_continue] = ACTIONS(1387), - [anon_sym_if] = ACTIONS(1387), - [anon_sym_elif] = ACTIONS(1387), - [anon_sym_else] = ACTIONS(1387), - [anon_sym_match] = ACTIONS(1387), - [anon_sym_async] = ACTIONS(1387), - [anon_sym_for] = ACTIONS(1387), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_try] = ACTIONS(1387), - [anon_sym_finally] = ACTIONS(1387), - [anon_sym_with] = ACTIONS(1387), - [anon_sym_def] = ACTIONS(1387), - [anon_sym_global] = ACTIONS(1387), - [anon_sym_nonlocal] = ACTIONS(1387), - [anon_sym_exec] = ACTIONS(1387), - [anon_sym_type] = ACTIONS(1387), - [anon_sym_class] = ACTIONS(1387), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_AT] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_not] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1389), - [anon_sym_lambda] = ACTIONS(1387), - [anon_sym_yield] = ACTIONS(1387), - [sym_ellipsis] = ACTIONS(1389), - [anon_sym_None] = ACTIONS(1387), - [sym_integer] = ACTIONS(1387), - [sym_float] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_api] = ACTIONS(1387), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_dictionary_splat] = STATE(5149), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(4188), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_pair] = STATE(5149), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(2827), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1387), - [anon_sym_include] = ACTIONS(1387), - [anon_sym_DEF] = ACTIONS(1387), - [anon_sym_cdef] = ACTIONS(1387), - [anon_sym_cpdef] = ACTIONS(1387), - [anon_sym_new] = ACTIONS(1387), - [anon_sym_ctypedef] = ACTIONS(1387), - [anon_sym_public] = ACTIONS(1387), - [anon_sym_packed] = ACTIONS(1387), - [anon_sym_inline] = ACTIONS(1387), - [anon_sym_readonly] = ACTIONS(1387), - [anon_sym_sizeof] = ACTIONS(1387), - [sym_string_start] = ACTIONS(1389), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [865] = { - [sym_named_expression] = STATE(2255), - [sym__named_expression_lhs] = STATE(5551), - [sym_list_splat_pattern] = STATE(2133), - [sym_as_pattern] = STATE(2255), - [sym__expression_within_for_in_clause] = STATE(4313), - [sym_expression] = STATE(3812), - [sym_primary_expression] = STATE(1944), - [sym_not_operator] = STATE(2255), - [sym_boolean_operator] = STATE(2255), - [sym_binary_operator] = STATE(2246), - [sym_unary_operator] = STATE(2246), - [sym_comparison_operator] = STATE(2255), - [sym_lambda] = STATE(2255), - [sym_lambda_within_for_in_clause] = STATE(4313), - [sym_attribute] = STATE(2246), - [sym_subscript] = STATE(2246), - [sym_call] = STATE(2246), - [sym_list] = STATE(2246), - [sym_set] = STATE(2246), - [sym_tuple] = STATE(2246), - [sym_dictionary] = STATE(2246), - [sym_list_comprehension] = STATE(2246), - [sym_dictionary_comprehension] = STATE(2246), - [sym_set_comprehension] = STATE(2246), - [sym_generator_expression] = STATE(2246), - [sym_parenthesized_expression] = STATE(2246), - [sym_conditional_expression] = STATE(2255), - [sym_concatenated_string] = STATE(2246), - [sym_string] = STATE(1984), - [sym_none] = STATE(2246), - [sym_await] = STATE(2246), - [sym_new_expression] = STATE(2255), - [sym_sizeof_expression] = STATE(2246), - [sym_cast_expression] = STATE(2246), - [sym_identifier] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2731), - [anon_sym_print] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2762), - [anon_sym_match] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2762), - [anon_sym_for] = ACTIONS(2762), - [anon_sym_exec] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2758), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_not] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_TILDE] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_lambda] = ACTIONS(2737), - [sym_ellipsis] = ACTIONS(2180), - [anon_sym_None] = ACTIONS(2182), - [sym_integer] = ACTIONS(2164), - [sym_float] = ACTIONS(2180), - [anon_sym_await] = ACTIONS(2290), - [anon_sym_api] = ACTIONS(2276), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_expression_list] = STATE(4981), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(3960), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2736), + [anon_sym_from] = ACTIONS(2829), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_RPAREN] = ACTIONS(2699), + [anon_sym_COMMA] = ACTIONS(2699), + [anon_sym_STAR] = ACTIONS(2831), + [anon_sym_print] = ACTIONS(2742), + [anon_sym_match] = ACTIONS(2742), + [anon_sym_async] = ACTIONS(2742), + [anon_sym_exec] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(2744), + [anon_sym_api] = ACTIONS(2742), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_sizeof] = ACTIONS(2186), - [sym_string_start] = ACTIONS(2188), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [866] = { - [sym_pattern] = STATE(3078), - [sym_tuple_pattern] = STATE(3068), - [sym_list_pattern] = STATE(3068), - [sym_list_splat_pattern] = STATE(2525), - [sym_primary_expression] = STATE(3054), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_attribute] = STATE(2578), - [sym_subscript] = STATE(2578), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(2766), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_print] = ACTIONS(2772), - [anon_sym_COLON] = ACTIONS(2494), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_async] = ACTIONS(2772), - [anon_sym_exec] = ACTIONS(2772), - [anon_sym_EQ] = ACTIONS(2494), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_TILDE] = ACTIONS(1205), - [anon_sym_LT] = ACTIONS(1207), - [anon_sym_PLUS_EQ] = ACTIONS(2494), - [anon_sym_DASH_EQ] = ACTIONS(2494), - [anon_sym_STAR_EQ] = ACTIONS(2494), - [anon_sym_SLASH_EQ] = ACTIONS(2494), - [anon_sym_AT_EQ] = ACTIONS(2494), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2494), - [anon_sym_PERCENT_EQ] = ACTIONS(2494), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2494), - [anon_sym_GT_GT_EQ] = ACTIONS(2494), - [anon_sym_LT_LT_EQ] = ACTIONS(2494), - [anon_sym_AMP_EQ] = ACTIONS(2494), - [anon_sym_CARET_EQ] = ACTIONS(2494), - [anon_sym_PIPE_EQ] = ACTIONS(2494), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(2776), - [anon_sym_api] = ACTIONS(2772), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [ts_builtin_sym_end] = ACTIONS(1392), + [sym_identifier] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym_import] = ACTIONS(1390), + [anon_sym_cimport] = ACTIONS(1390), + [anon_sym_from] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_print] = ACTIONS(1390), + [anon_sym_assert] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_del] = ACTIONS(1390), + [anon_sym_raise] = ACTIONS(1390), + [anon_sym_pass] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_elif] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_match] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1390), + [anon_sym_finally] = ACTIONS(1390), + [anon_sym_with] = ACTIONS(1390), + [anon_sym_def] = ACTIONS(1390), + [anon_sym_global] = ACTIONS(1390), + [anon_sym_nonlocal] = ACTIONS(1390), + [anon_sym_exec] = ACTIONS(1390), + [anon_sym_type] = ACTIONS(1390), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1392), + [anon_sym_AT] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1392), + [anon_sym_lambda] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1392), + [anon_sym_None] = ACTIONS(1390), + [sym_integer] = ACTIONS(1390), + [sym_float] = ACTIONS(1392), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_api] = ACTIONS(1390), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_property] = ACTIONS(1390), + [anon_sym_include] = ACTIONS(1390), + [anon_sym_DEF] = ACTIONS(1390), + [anon_sym_cdef] = ACTIONS(1390), + [anon_sym_cpdef] = ACTIONS(1390), + [anon_sym_new] = ACTIONS(1390), + [anon_sym_ctypedef] = ACTIONS(1390), + [anon_sym_public] = ACTIONS(1390), + [anon_sym_packed] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym_readonly] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1390), + [sym_string_start] = ACTIONS(1392), }, [867] = { - [sym_named_expression] = STATE(2406), - [sym__named_expression_lhs] = STATE(5528), - [sym_list_splat_pattern] = STATE(2426), - [sym_as_pattern] = STATE(2406), - [sym__expression_within_for_in_clause] = STATE(4307), - [sym_expression] = STATE(3739), - [sym_primary_expression] = STATE(1953), - [sym_not_operator] = STATE(2406), - [sym_boolean_operator] = STATE(2406), - [sym_binary_operator] = STATE(2403), - [sym_unary_operator] = STATE(2403), - [sym_comparison_operator] = STATE(2406), - [sym_lambda] = STATE(2406), - [sym_lambda_within_for_in_clause] = STATE(4307), - [sym_attribute] = STATE(2403), - [sym_subscript] = STATE(2403), - [sym_call] = STATE(2403), - [sym_list] = STATE(2403), - [sym_set] = STATE(2403), - [sym_tuple] = STATE(2403), - [sym_dictionary] = STATE(2403), - [sym_list_comprehension] = STATE(2403), - [sym_dictionary_comprehension] = STATE(2403), - [sym_set_comprehension] = STATE(2403), - [sym_generator_expression] = STATE(2403), - [sym_parenthesized_expression] = STATE(2403), - [sym_conditional_expression] = STATE(2406), - [sym_concatenated_string] = STATE(2403), - [sym_string] = STATE(2028), - [sym_none] = STATE(2403), - [sym_await] = STATE(2403), - [sym_new_expression] = STATE(2406), - [sym_sizeof_expression] = STATE(2403), - [sym_cast_expression] = STATE(2403), - [sym_identifier] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_STAR] = ACTIONS(2760), - [anon_sym_print] = ACTIONS(1363), - [anon_sym_if] = ACTIONS(2752), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(2752), - [anon_sym_for] = ACTIONS(2752), - [anon_sym_exec] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1223), - [anon_sym_TILDE] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_lambda] = ACTIONS(2764), - [sym_ellipsis] = ACTIONS(1235), - [anon_sym_None] = ACTIONS(1237), - [sym_integer] = ACTIONS(1239), - [sym_float] = ACTIONS(1235), - [anon_sym_await] = ACTIONS(1367), - [anon_sym_api] = ACTIONS(1363), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_expression_list] = STATE(5013), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3952), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_from] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_COMMA] = ACTIONS(2699), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_string_start] = ACTIONS(1257), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [868] = { - [sym_named_expression] = STATE(2314), - [sym__named_expression_lhs] = STATE(5519), - [sym_list_splat_pattern] = STATE(2307), - [sym_as_pattern] = STATE(2314), - [sym__expression_within_for_in_clause] = STATE(4273), - [sym_expression] = STATE(3762), - [sym_primary_expression] = STATE(1962), - [sym_not_operator] = STATE(2314), - [sym_boolean_operator] = STATE(2314), - [sym_binary_operator] = STATE(2310), - [sym_unary_operator] = STATE(2310), - [sym_comparison_operator] = STATE(2314), - [sym_lambda] = STATE(2314), - [sym_lambda_within_for_in_clause] = STATE(4273), - [sym_attribute] = STATE(2310), - [sym_subscript] = STATE(2310), - [sym_call] = STATE(2310), - [sym_list] = STATE(2310), - [sym_set] = STATE(2310), - [sym_tuple] = STATE(2310), - [sym_dictionary] = STATE(2310), - [sym_list_comprehension] = STATE(2310), - [sym_dictionary_comprehension] = STATE(2310), - [sym_set_comprehension] = STATE(2310), - [sym_generator_expression] = STATE(2310), - [sym_parenthesized_expression] = STATE(2310), - [sym_conditional_expression] = STATE(2314), - [sym_concatenated_string] = STATE(2310), - [sym_string] = STATE(2061), - [sym_none] = STATE(2310), - [sym_await] = STATE(2310), - [sym_new_expression] = STATE(2314), - [sym_sizeof_expression] = STATE(2310), - [sym_cast_expression] = STATE(2310), - [sym_identifier] = ACTIONS(2570), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_print] = ACTIONS(2574), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_match] = ACTIONS(2574), - [anon_sym_async] = ACTIONS(2733), - [anon_sym_for] = ACTIONS(2733), - [anon_sym_exec] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2236), - [anon_sym_RBRACK] = ACTIONS(2735), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_not] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_lambda] = ACTIONS(2756), - [sym_ellipsis] = ACTIONS(2244), - [anon_sym_None] = ACTIONS(2246), - [sym_integer] = ACTIONS(2228), - [sym_float] = ACTIONS(2244), - [anon_sym_await] = ACTIONS(2578), - [anon_sym_api] = ACTIONS(2574), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat] = STATE(5159), + [sym_parenthesized_list_splat] = STATE(5159), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(4121), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_yield] = STATE(5159), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2318), - [anon_sym_sizeof] = ACTIONS(2250), - [sym_string_start] = ACTIONS(2252), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [869] = { - [sym_named_expression] = STATE(3682), - [sym__named_expression_lhs] = STATE(5332), - [sym_list_splat_pattern] = STATE(2230), - [sym_as_pattern] = STATE(3682), - [sym_expression] = STATE(3709), - [sym_primary_expression] = STATE(1950), - [sym_not_operator] = STATE(3682), - [sym_boolean_operator] = STATE(3682), - [sym_binary_operator] = STATE(2179), - [sym_unary_operator] = STATE(2179), - [sym_comparison_operator] = STATE(3682), - [sym_lambda] = STATE(3682), - [sym_attribute] = STATE(2179), - [sym_subscript] = STATE(2179), - [sym_call] = STATE(2179), - [sym_list] = STATE(2179), - [sym_set] = STATE(2179), - [sym_tuple] = STATE(2179), - [sym_dictionary] = STATE(2179), - [sym_list_comprehension] = STATE(2179), - [sym_dictionary_comprehension] = STATE(2179), - [sym_set_comprehension] = STATE(2179), - [sym_generator_expression] = STATE(2179), - [sym_parenthesized_expression] = STATE(2179), - [sym_conditional_expression] = STATE(3682), - [sym_concatenated_string] = STATE(2179), - [sym_string] = STATE(1968), - [sym_none] = STATE(2179), - [sym_await] = STATE(2179), - [sym_new_expression] = STATE(3682), - [sym_sizeof_expression] = STATE(2179), - [sym_cast_expression] = STATE(2179), - [sym_identifier] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_STAR] = ACTIONS(2426), - [anon_sym_print] = ACTIONS(2558), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2558), - [anon_sym_async] = ACTIONS(2558), - [anon_sym_exec] = ACTIONS(2558), - [anon_sym_EQ] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2110), - [anon_sym_TILDE] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2434), - [anon_sym_lambda] = ACTIONS(2436), - [sym_ellipsis] = ACTIONS(2116), - [anon_sym_None] = ACTIONS(2118), - [sym_type_conversion] = ACTIONS(2814), - [sym_integer] = ACTIONS(2100), - [sym_float] = ACTIONS(2116), - [anon_sym_await] = ACTIONS(2562), - [anon_sym_api] = ACTIONS(2558), - [sym_true] = ACTIONS(2100), - [sym_false] = ACTIONS(2100), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_dictionary_splat] = STATE(5149), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(4188), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_pair] = STATE(5149), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2442), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_string_start] = ACTIONS(2124), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [870] = { - [sym_named_expression] = STATE(2512), - [sym__named_expression_lhs] = STATE(5443), - [sym_list_splat] = STATE(5057), - [sym_parenthesized_list_splat] = STATE(5057), - [sym_list_splat_pattern] = STATE(2490), - [sym_as_pattern] = STATE(2512), - [sym_expression] = STATE(4084), - [sym_primary_expression] = STATE(1967), - [sym_not_operator] = STATE(2512), - [sym_boolean_operator] = STATE(2512), - [sym_binary_operator] = STATE(2509), - [sym_unary_operator] = STATE(2509), - [sym_comparison_operator] = STATE(2512), - [sym_lambda] = STATE(2512), - [sym_yield] = STATE(5057), - [sym_attribute] = STATE(2509), - [sym_subscript] = STATE(2509), - [sym_call] = STATE(2509), - [sym_list] = STATE(2509), - [sym_set] = STATE(2509), - [sym_tuple] = STATE(2509), - [sym_dictionary] = STATE(2509), - [sym_list_comprehension] = STATE(2509), - [sym_dictionary_comprehension] = STATE(2509), - [sym_set_comprehension] = STATE(2509), - [sym_generator_expression] = STATE(2509), - [sym_parenthesized_expression] = STATE(2509), - [sym_conditional_expression] = STATE(2512), - [sym_concatenated_string] = STATE(2509), - [sym_string] = STATE(2110), - [sym_none] = STATE(2509), - [sym_await] = STATE(2509), - [sym_new_expression] = STATE(2512), - [sym_sizeof_expression] = STATE(2509), - [sym_cast_expression] = STATE(2509), - [sym_identifier] = ACTIONS(2742), - [anon_sym_LPAREN] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_print] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_exec] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_not] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_lambda] = ACTIONS(2400), - [anon_sym_yield] = ACTIONS(2314), - [sym_ellipsis] = ACTIONS(2218), - [anon_sym_None] = ACTIONS(2220), - [sym_integer] = ACTIONS(2202), - [sym_float] = ACTIONS(2218), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_api] = ACTIONS(2390), - [sym_true] = ACTIONS(2202), - [sym_false] = ACTIONS(2202), + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_identifier] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_import] = ACTIONS(1386), + [anon_sym_cimport] = ACTIONS(1386), + [anon_sym_from] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_print] = ACTIONS(1386), + [anon_sym_assert] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_del] = ACTIONS(1386), + [anon_sym_raise] = ACTIONS(1386), + [anon_sym_pass] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_elif] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_match] = ACTIONS(1386), + [anon_sym_async] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_try] = ACTIONS(1386), + [anon_sym_finally] = ACTIONS(1386), + [anon_sym_with] = ACTIONS(1386), + [anon_sym_def] = ACTIONS(1386), + [anon_sym_global] = ACTIONS(1386), + [anon_sym_nonlocal] = ACTIONS(1386), + [anon_sym_exec] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_class] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_AT] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_not] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_lambda] = ACTIONS(1386), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + [anon_sym_None] = ACTIONS(1386), + [sym_integer] = ACTIONS(1386), + [sym_float] = ACTIONS(1388), + [anon_sym_await] = ACTIONS(1386), + [anon_sym_api] = ACTIONS(1386), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2224), - [sym_string_start] = ACTIONS(2226), + [anon_sym_property] = ACTIONS(1386), + [anon_sym_include] = ACTIONS(1386), + [anon_sym_DEF] = ACTIONS(1386), + [anon_sym_cdef] = ACTIONS(1386), + [anon_sym_cpdef] = ACTIONS(1386), + [anon_sym_new] = ACTIONS(1386), + [anon_sym_ctypedef] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_packed] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1386), + [sym_string_start] = ACTIONS(1388), }, [871] = { - [ts_builtin_sym_end] = ACTIONS(1385), - [sym_identifier] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(1383), - [anon_sym_cimport] = ACTIONS(1383), - [anon_sym_from] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_print] = ACTIONS(1383), - [anon_sym_assert] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(1383), - [anon_sym_del] = ACTIONS(1383), - [anon_sym_raise] = ACTIONS(1383), - [anon_sym_pass] = ACTIONS(1383), - [anon_sym_break] = ACTIONS(1383), - [anon_sym_continue] = ACTIONS(1383), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_else] = ACTIONS(1383), - [anon_sym_match] = ACTIONS(1383), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_for] = ACTIONS(1383), - [anon_sym_while] = ACTIONS(1383), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_except] = ACTIONS(1383), - [anon_sym_finally] = ACTIONS(1383), - [anon_sym_with] = ACTIONS(1383), - [anon_sym_def] = ACTIONS(1383), - [anon_sym_global] = ACTIONS(1383), - [anon_sym_nonlocal] = ACTIONS(1383), - [anon_sym_exec] = ACTIONS(1383), - [anon_sym_type] = ACTIONS(1383), - [anon_sym_class] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_AT] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_not] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT] = ACTIONS(1385), - [anon_sym_lambda] = ACTIONS(1383), - [anon_sym_yield] = ACTIONS(1383), - [sym_ellipsis] = ACTIONS(1385), - [anon_sym_None] = ACTIONS(1383), - [sym_integer] = ACTIONS(1383), - [sym_float] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_api] = ACTIONS(1383), - [sym_true] = ACTIONS(1383), - [sym_false] = ACTIONS(1383), + [sym_named_expression] = STATE(3724), + [sym__named_expression_lhs] = STATE(5368), + [sym_list_splat_pattern] = STATE(2212), + [sym_as_pattern] = STATE(3724), + [sym_expression] = STATE(3674), + [sym_primary_expression] = STATE(1942), + [sym_not_operator] = STATE(3724), + [sym_boolean_operator] = STATE(3724), + [sym_binary_operator] = STATE(2175), + [sym_unary_operator] = STATE(2175), + [sym_comparison_operator] = STATE(3724), + [sym_lambda] = STATE(3724), + [sym_attribute] = STATE(2175), + [sym_subscript] = STATE(2175), + [sym_ellipsis] = STATE(2175), + [sym_call] = STATE(2175), + [sym_list] = STATE(2175), + [sym_set] = STATE(2175), + [sym_tuple] = STATE(2175), + [sym_dictionary] = STATE(2175), + [sym_list_comprehension] = STATE(2175), + [sym_dictionary_comprehension] = STATE(2175), + [sym_set_comprehension] = STATE(2175), + [sym_generator_expression] = STATE(2175), + [sym_parenthesized_expression] = STATE(2175), + [sym_conditional_expression] = STATE(3724), + [sym_concatenated_string] = STATE(2175), + [sym_string] = STATE(1976), + [sym_none] = STATE(2175), + [sym_await] = STATE(2175), + [sym_new_expression] = STATE(3724), + [sym_sizeof_expression] = STATE(2175), + [sym_cast_expression] = STATE(2175), + [sym_identifier] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(2409), + [anon_sym_print] = ACTIONS(2697), + [anon_sym_COLON] = ACTIONS(2839), + [anon_sym_match] = ACTIONS(2697), + [anon_sym_async] = ACTIONS(2697), + [anon_sym_exec] = ACTIONS(2697), + [anon_sym_EQ] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(2839), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_TILDE] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(2417), + [anon_sym_lambda] = ACTIONS(2419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1717), + [anon_sym_None] = ACTIONS(1719), + [sym_type_conversion] = ACTIONS(2839), + [sym_integer] = ACTIONS(1701), + [sym_float] = ACTIONS(1721), + [anon_sym_await] = ACTIONS(2701), + [anon_sym_api] = ACTIONS(2697), + [sym_true] = ACTIONS(1701), + [sym_false] = ACTIONS(1701), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1383), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_DEF] = ACTIONS(1383), - [anon_sym_cdef] = ACTIONS(1383), - [anon_sym_cpdef] = ACTIONS(1383), - [anon_sym_new] = ACTIONS(1383), - [anon_sym_ctypedef] = ACTIONS(1383), - [anon_sym_public] = ACTIONS(1383), - [anon_sym_packed] = ACTIONS(1383), - [anon_sym_inline] = ACTIONS(1383), - [anon_sym_readonly] = ACTIONS(1383), - [anon_sym_sizeof] = ACTIONS(1383), - [sym_string_start] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_sizeof] = ACTIONS(1725), + [sym_string_start] = ACTIONS(1727), }, [872] = { - [ts_builtin_sym_end] = ACTIONS(1389), - [sym_identifier] = ACTIONS(1387), - [anon_sym_import] = ACTIONS(1387), - [anon_sym_cimport] = ACTIONS(1387), - [anon_sym_from] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_print] = ACTIONS(1387), - [anon_sym_assert] = ACTIONS(1387), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_del] = ACTIONS(1387), - [anon_sym_raise] = ACTIONS(1387), - [anon_sym_pass] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1387), - [anon_sym_continue] = ACTIONS(1387), - [anon_sym_if] = ACTIONS(1387), - [anon_sym_else] = ACTIONS(1387), - [anon_sym_match] = ACTIONS(1387), - [anon_sym_async] = ACTIONS(1387), - [anon_sym_for] = ACTIONS(1387), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_try] = ACTIONS(1387), - [anon_sym_except_STAR] = ACTIONS(1389), - [anon_sym_finally] = ACTIONS(1387), - [anon_sym_with] = ACTIONS(1387), - [anon_sym_def] = ACTIONS(1387), - [anon_sym_global] = ACTIONS(1387), - [anon_sym_nonlocal] = ACTIONS(1387), - [anon_sym_exec] = ACTIONS(1387), - [anon_sym_type] = ACTIONS(1387), - [anon_sym_class] = ACTIONS(1387), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_AT] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_not] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1389), - [anon_sym_lambda] = ACTIONS(1387), - [anon_sym_yield] = ACTIONS(1387), - [sym_ellipsis] = ACTIONS(1389), - [anon_sym_None] = ACTIONS(1387), - [sym_integer] = ACTIONS(1387), - [sym_float] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_api] = ACTIONS(1387), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1387), - [anon_sym_include] = ACTIONS(1387), - [anon_sym_DEF] = ACTIONS(1387), - [anon_sym_cdef] = ACTIONS(1387), - [anon_sym_cpdef] = ACTIONS(1387), - [anon_sym_new] = ACTIONS(1387), - [anon_sym_ctypedef] = ACTIONS(1387), - [anon_sym_public] = ACTIONS(1387), - [anon_sym_packed] = ACTIONS(1387), - [anon_sym_inline] = ACTIONS(1387), - [anon_sym_readonly] = ACTIONS(1387), - [anon_sym_sizeof] = ACTIONS(1387), - [sym_string_start] = ACTIONS(1389), - }, - [873] = { - [ts_builtin_sym_end] = ACTIONS(1381), - [sym_identifier] = ACTIONS(1379), - [anon_sym_import] = ACTIONS(1379), - [anon_sym_cimport] = ACTIONS(1379), - [anon_sym_from] = ACTIONS(1379), - [anon_sym_LPAREN] = ACTIONS(1381), - [anon_sym_STAR] = ACTIONS(1381), - [anon_sym_print] = ACTIONS(1379), - [anon_sym_assert] = ACTIONS(1379), - [anon_sym_return] = ACTIONS(1379), - [anon_sym_del] = ACTIONS(1379), - [anon_sym_raise] = ACTIONS(1379), - [anon_sym_pass] = ACTIONS(1379), - [anon_sym_break] = ACTIONS(1379), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_else] = ACTIONS(1379), - [anon_sym_match] = ACTIONS(1379), - [anon_sym_async] = ACTIONS(1379), - [anon_sym_for] = ACTIONS(1379), - [anon_sym_while] = ACTIONS(1379), - [anon_sym_try] = ACTIONS(1379), - [anon_sym_except_STAR] = ACTIONS(1381), - [anon_sym_finally] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(1379), - [anon_sym_global] = ACTIONS(1379), - [anon_sym_nonlocal] = ACTIONS(1379), - [anon_sym_exec] = ACTIONS(1379), - [anon_sym_type] = ACTIONS(1379), - [anon_sym_class] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_AT] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(1381), - [anon_sym_not] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(1381), - [anon_sym_lambda] = ACTIONS(1379), - [anon_sym_yield] = ACTIONS(1379), - [sym_ellipsis] = ACTIONS(1381), - [anon_sym_None] = ACTIONS(1379), - [sym_integer] = ACTIONS(1379), - [sym_float] = ACTIONS(1381), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_api] = ACTIONS(1379), - [sym_true] = ACTIONS(1379), - [sym_false] = ACTIONS(1379), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1379), - [anon_sym_include] = ACTIONS(1379), - [anon_sym_DEF] = ACTIONS(1379), - [anon_sym_cdef] = ACTIONS(1379), - [anon_sym_cpdef] = ACTIONS(1379), - [anon_sym_new] = ACTIONS(1379), - [anon_sym_ctypedef] = ACTIONS(1379), - [anon_sym_public] = ACTIONS(1379), - [anon_sym_packed] = ACTIONS(1379), - [anon_sym_inline] = ACTIONS(1379), - [anon_sym_readonly] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1379), - [sym_string_start] = ACTIONS(1381), - }, - [874] = { - [sym_identifier] = ACTIONS(2816), - [anon_sym_import] = ACTIONS(2816), - [anon_sym_cimport] = ACTIONS(2816), - [anon_sym_from] = ACTIONS(2816), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2818), - [anon_sym_print] = ACTIONS(2816), - [anon_sym_assert] = ACTIONS(2816), - [anon_sym_return] = ACTIONS(2816), - [anon_sym_del] = ACTIONS(2816), - [anon_sym_raise] = ACTIONS(2816), - [anon_sym_pass] = ACTIONS(2816), - [anon_sym_break] = ACTIONS(2816), - [anon_sym_continue] = ACTIONS(2816), - [anon_sym_if] = ACTIONS(2816), - [anon_sym_else] = ACTIONS(2816), - [anon_sym_match] = ACTIONS(2816), - [anon_sym_async] = ACTIONS(2816), - [anon_sym_for] = ACTIONS(2816), - [anon_sym_while] = ACTIONS(2816), - [anon_sym_try] = ACTIONS(2816), - [anon_sym_except_STAR] = ACTIONS(2818), - [anon_sym_finally] = ACTIONS(2816), - [anon_sym_with] = ACTIONS(2816), - [anon_sym_def] = ACTIONS(2816), - [anon_sym_global] = ACTIONS(2816), - [anon_sym_nonlocal] = ACTIONS(2816), - [anon_sym_exec] = ACTIONS(2816), - [anon_sym_type] = ACTIONS(2816), - [anon_sym_class] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_AT] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_not] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_TILDE] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2818), - [anon_sym_lambda] = ACTIONS(2816), - [anon_sym_yield] = ACTIONS(2816), - [sym_ellipsis] = ACTIONS(2818), - [anon_sym_None] = ACTIONS(2816), - [sym_integer] = ACTIONS(2816), - [sym_float] = ACTIONS(2818), - [anon_sym_await] = ACTIONS(2816), - [anon_sym_api] = ACTIONS(2816), - [sym_true] = ACTIONS(2816), - [sym_false] = ACTIONS(2816), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2816), - [anon_sym_include] = ACTIONS(2816), - [anon_sym_DEF] = ACTIONS(2816), - [anon_sym_cdef] = ACTIONS(2816), - [anon_sym_cpdef] = ACTIONS(2816), - [anon_sym_new] = ACTIONS(2816), - [anon_sym_ctypedef] = ACTIONS(2816), - [anon_sym_public] = ACTIONS(2816), - [anon_sym_packed] = ACTIONS(2816), - [anon_sym_inline] = ACTIONS(2816), - [anon_sym_readonly] = ACTIONS(2816), - [anon_sym_sizeof] = ACTIONS(2816), - [sym__dedent] = ACTIONS(2818), - [sym_string_start] = ACTIONS(2818), - }, - [875] = { - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_expression_list] = STATE(5043), - [sym_list_splat_pattern] = STATE(1985), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3752), - [sym_primary_expression] = STATE(1918), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_attribute] = STATE(1981), - [sym_subscript] = STATE(1981), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_from] = ACTIONS(2820), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_print] = ACTIONS(847), - [anon_sym_match] = ACTIONS(847), - [anon_sym_async] = ACTIONS(847), - [anon_sym_exec] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(1184), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_expression_list] = STATE(5111), + [sym_list_splat_pattern] = STATE(1975), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3730), + [sym_primary_expression] = STATE(1927), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_attribute] = STATE(2021), + [sym_subscript] = STATE(2021), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_from] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(576), + [anon_sym_match] = ACTIONS(576), + [anon_sym_async] = ACTIONS(576), + [anon_sym_exec] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(1191), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -103286,3616 +103754,4576 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(869), - [anon_sym_api] = ACTIONS(847), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(598), + [anon_sym_api] = ACTIONS(576), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(2560), - [sym_string_start] = ACTIONS(105), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(2699), + [sym_string_start] = ACTIONS(107), + }, + [873] = { + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_dictionary_splat] = STATE(5149), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(4188), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_pair] = STATE(5149), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(2845), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), + }, + [874] = { + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_dictionary_splat] = STATE(5149), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(4188), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_pair] = STATE(5149), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), + }, + [875] = { + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_import] = ACTIONS(1398), + [anon_sym_cimport] = ACTIONS(1398), + [anon_sym_from] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_print] = ACTIONS(1398), + [anon_sym_assert] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_del] = ACTIONS(1398), + [anon_sym_raise] = ACTIONS(1398), + [anon_sym_pass] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_elif] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_try] = ACTIONS(1398), + [anon_sym_finally] = ACTIONS(1398), + [anon_sym_with] = ACTIONS(1398), + [anon_sym_def] = ACTIONS(1398), + [anon_sym_global] = ACTIONS(1398), + [anon_sym_nonlocal] = ACTIONS(1398), + [anon_sym_exec] = ACTIONS(1398), + [anon_sym_type] = ACTIONS(1398), + [anon_sym_class] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_not] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_lambda] = ACTIONS(1398), + [anon_sym_yield] = ACTIONS(1398), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1400), + [anon_sym_None] = ACTIONS(1398), + [sym_integer] = ACTIONS(1398), + [sym_float] = ACTIONS(1400), + [anon_sym_await] = ACTIONS(1398), + [anon_sym_api] = ACTIONS(1398), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1398), + [anon_sym_include] = ACTIONS(1398), + [anon_sym_DEF] = ACTIONS(1398), + [anon_sym_cdef] = ACTIONS(1398), + [anon_sym_cpdef] = ACTIONS(1398), + [anon_sym_new] = ACTIONS(1398), + [anon_sym_ctypedef] = ACTIONS(1398), + [anon_sym_public] = ACTIONS(1398), + [anon_sym_packed] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym_readonly] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1398), + [sym_string_start] = ACTIONS(1400), }, [876] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_dictionary_splat] = STATE(5105), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(4281), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_pair] = STATE(5105), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1110), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(2824), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [ts_builtin_sym_end] = ACTIONS(1384), + [sym_identifier] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym_import] = ACTIONS(1382), + [anon_sym_cimport] = ACTIONS(1382), + [anon_sym_from] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_print] = ACTIONS(1382), + [anon_sym_assert] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_del] = ACTIONS(1382), + [anon_sym_raise] = ACTIONS(1382), + [anon_sym_pass] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_elif] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1382), + [anon_sym_match] = ACTIONS(1382), + [anon_sym_async] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_finally] = ACTIONS(1382), + [anon_sym_with] = ACTIONS(1382), + [anon_sym_def] = ACTIONS(1382), + [anon_sym_global] = ACTIONS(1382), + [anon_sym_nonlocal] = ACTIONS(1382), + [anon_sym_exec] = ACTIONS(1382), + [anon_sym_type] = ACTIONS(1382), + [anon_sym_class] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1384), + [anon_sym_AT] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_lambda] = ACTIONS(1382), + [anon_sym_yield] = ACTIONS(1382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1384), + [anon_sym_None] = ACTIONS(1382), + [sym_integer] = ACTIONS(1382), + [sym_float] = ACTIONS(1384), + [anon_sym_await] = ACTIONS(1382), + [anon_sym_api] = ACTIONS(1382), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_property] = ACTIONS(1382), + [anon_sym_include] = ACTIONS(1382), + [anon_sym_DEF] = ACTIONS(1382), + [anon_sym_cdef] = ACTIONS(1382), + [anon_sym_cpdef] = ACTIONS(1382), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_ctypedef] = ACTIONS(1382), + [anon_sym_public] = ACTIONS(1382), + [anon_sym_packed] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym_readonly] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1382), + [sym_string_start] = ACTIONS(1384), }, [877] = { - [ts_builtin_sym_end] = ACTIONS(2826), - [sym_identifier] = ACTIONS(2828), - [anon_sym_import] = ACTIONS(2828), - [anon_sym_cimport] = ACTIONS(2828), - [anon_sym_from] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_STAR] = ACTIONS(2826), - [anon_sym_print] = ACTIONS(2828), - [anon_sym_assert] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_del] = ACTIONS(2828), - [anon_sym_raise] = ACTIONS(2828), - [anon_sym_pass] = ACTIONS(2828), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_continue] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_else] = ACTIONS(2828), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_async] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_while] = ACTIONS(2828), - [anon_sym_try] = ACTIONS(2828), - [anon_sym_except] = ACTIONS(2828), - [anon_sym_finally] = ACTIONS(2828), - [anon_sym_with] = ACTIONS(2828), - [anon_sym_def] = ACTIONS(2828), - [anon_sym_global] = ACTIONS(2828), - [anon_sym_nonlocal] = ACTIONS(2828), - [anon_sym_exec] = ACTIONS(2828), - [anon_sym_type] = ACTIONS(2828), - [anon_sym_class] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_AT] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_not] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_TILDE] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2826), - [anon_sym_lambda] = ACTIONS(2828), - [anon_sym_yield] = ACTIONS(2828), - [sym_ellipsis] = ACTIONS(2826), - [anon_sym_None] = ACTIONS(2828), - [sym_integer] = ACTIONS(2828), - [sym_float] = ACTIONS(2826), - [anon_sym_await] = ACTIONS(2828), - [anon_sym_api] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_dictionary_splat] = STATE(5149), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(4188), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_pair] = STATE(5149), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2828), - [anon_sym_include] = ACTIONS(2828), - [anon_sym_DEF] = ACTIONS(2828), - [anon_sym_cdef] = ACTIONS(2828), - [anon_sym_cpdef] = ACTIONS(2828), - [anon_sym_new] = ACTIONS(2828), - [anon_sym_ctypedef] = ACTIONS(2828), - [anon_sym_public] = ACTIONS(2828), - [anon_sym_packed] = ACTIONS(2828), - [anon_sym_inline] = ACTIONS(2828), - [anon_sym_readonly] = ACTIONS(2828), - [anon_sym_sizeof] = ACTIONS(2828), - [sym_string_start] = ACTIONS(2826), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [878] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_dictionary_splat] = STATE(5105), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(4281), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_pair] = STATE(5105), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1110), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(2557), + [sym__named_expression_lhs] = STATE(5311), + [sym_list_splat] = STATE(5103), + [sym_parenthesized_list_splat] = STATE(5103), + [sym_list_splat_pattern] = STATE(2614), + [sym_as_pattern] = STATE(2557), + [sym_expression] = STATE(4102), + [sym_primary_expression] = STATE(2031), + [sym_not_operator] = STATE(2557), + [sym_boolean_operator] = STATE(2557), + [sym_binary_operator] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym_comparison_operator] = STATE(2557), + [sym_lambda] = STATE(2557), + [sym_yield] = STATE(5103), + [sym_attribute] = STATE(2540), + [sym_subscript] = STATE(2540), + [sym_ellipsis] = STATE(2540), + [sym_call] = STATE(2540), + [sym_list] = STATE(2540), + [sym_set] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_dictionary] = STATE(2540), + [sym_list_comprehension] = STATE(2540), + [sym_dictionary_comprehension] = STATE(2540), + [sym_set_comprehension] = STATE(2540), + [sym_generator_expression] = STATE(2540), + [sym_parenthesized_expression] = STATE(2540), + [sym_conditional_expression] = STATE(2557), + [sym_concatenated_string] = STATE(2540), + [sym_string] = STATE(2152), + [sym_none] = STATE(2540), + [sym_await] = STATE(2540), + [sym_new_expression] = STATE(2557), + [sym_sizeof_expression] = STATE(2540), + [sym_cast_expression] = STATE(2540), + [sym_identifier] = ACTIONS(2736), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_print] = ACTIONS(2742), + [anon_sym_match] = ACTIONS(2742), + [anon_sym_async] = ACTIONS(2742), + [anon_sym_exec] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_not] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_lambda] = ACTIONS(1296), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1298), + [anon_sym_None] = ACTIONS(1300), + [sym_integer] = ACTIONS(1302), + [sym_float] = ACTIONS(1304), + [anon_sym_await] = ACTIONS(2744), + [anon_sym_api] = ACTIONS(2742), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1310), + [sym_string_start] = ACTIONS(1312), }, [879] = { - [ts_builtin_sym_end] = ACTIONS(1373), - [sym_identifier] = ACTIONS(1371), - [anon_sym_import] = ACTIONS(1371), - [anon_sym_cimport] = ACTIONS(1371), - [anon_sym_from] = ACTIONS(1371), - [anon_sym_LPAREN] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1373), - [anon_sym_print] = ACTIONS(1371), - [anon_sym_assert] = ACTIONS(1371), - [anon_sym_return] = ACTIONS(1371), - [anon_sym_del] = ACTIONS(1371), - [anon_sym_raise] = ACTIONS(1371), - [anon_sym_pass] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(1371), - [anon_sym_continue] = ACTIONS(1371), - [anon_sym_if] = ACTIONS(1371), - [anon_sym_else] = ACTIONS(1371), - [anon_sym_match] = ACTIONS(1371), - [anon_sym_async] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1371), - [anon_sym_while] = ACTIONS(1371), - [anon_sym_try] = ACTIONS(1371), - [anon_sym_except_STAR] = ACTIONS(1373), - [anon_sym_finally] = ACTIONS(1371), - [anon_sym_with] = ACTIONS(1371), - [anon_sym_def] = ACTIONS(1371), - [anon_sym_global] = ACTIONS(1371), - [anon_sym_nonlocal] = ACTIONS(1371), - [anon_sym_exec] = ACTIONS(1371), - [anon_sym_type] = ACTIONS(1371), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1373), - [anon_sym_AT] = ACTIONS(1373), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_not] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_LT] = ACTIONS(1373), - [anon_sym_lambda] = ACTIONS(1371), - [anon_sym_yield] = ACTIONS(1371), - [sym_ellipsis] = ACTIONS(1373), - [anon_sym_None] = ACTIONS(1371), - [sym_integer] = ACTIONS(1371), - [sym_float] = ACTIONS(1373), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_api] = ACTIONS(1371), - [sym_true] = ACTIONS(1371), - [sym_false] = ACTIONS(1371), + [sym_elif_clause] = STATE(984), + [aux_sym_if_statement_repeat1] = STATE(879), + [sym_identifier] = ACTIONS(2851), + [anon_sym_import] = ACTIONS(2851), + [anon_sym_cimport] = ACTIONS(2851), + [anon_sym_from] = ACTIONS(2851), + [anon_sym_LPAREN] = ACTIONS(2853), + [anon_sym_STAR] = ACTIONS(2853), + [anon_sym_print] = ACTIONS(2851), + [anon_sym_assert] = ACTIONS(2851), + [anon_sym_return] = ACTIONS(2851), + [anon_sym_del] = ACTIONS(2851), + [anon_sym_raise] = ACTIONS(2851), + [anon_sym_pass] = ACTIONS(2851), + [anon_sym_break] = ACTIONS(2851), + [anon_sym_continue] = ACTIONS(2851), + [anon_sym_if] = ACTIONS(2851), + [anon_sym_elif] = ACTIONS(2855), + [anon_sym_else] = ACTIONS(2851), + [anon_sym_match] = ACTIONS(2851), + [anon_sym_async] = ACTIONS(2851), + [anon_sym_for] = ACTIONS(2851), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_try] = ACTIONS(2851), + [anon_sym_with] = ACTIONS(2851), + [anon_sym_def] = ACTIONS(2851), + [anon_sym_global] = ACTIONS(2851), + [anon_sym_nonlocal] = ACTIONS(2851), + [anon_sym_exec] = ACTIONS(2851), + [anon_sym_type] = ACTIONS(2851), + [anon_sym_class] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_AT] = ACTIONS(2853), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_LBRACE] = ACTIONS(2853), + [anon_sym_PLUS] = ACTIONS(2853), + [anon_sym_not] = ACTIONS(2851), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_TILDE] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(2853), + [anon_sym_lambda] = ACTIONS(2851), + [anon_sym_yield] = ACTIONS(2851), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2853), + [anon_sym_None] = ACTIONS(2851), + [sym_integer] = ACTIONS(2851), + [sym_float] = ACTIONS(2853), + [anon_sym_await] = ACTIONS(2851), + [anon_sym_api] = ACTIONS(2851), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1371), - [anon_sym_include] = ACTIONS(1371), - [anon_sym_DEF] = ACTIONS(1371), - [anon_sym_cdef] = ACTIONS(1371), - [anon_sym_cpdef] = ACTIONS(1371), - [anon_sym_new] = ACTIONS(1371), - [anon_sym_ctypedef] = ACTIONS(1371), - [anon_sym_public] = ACTIONS(1371), - [anon_sym_packed] = ACTIONS(1371), - [anon_sym_inline] = ACTIONS(1371), - [anon_sym_readonly] = ACTIONS(1371), - [anon_sym_sizeof] = ACTIONS(1371), - [sym_string_start] = ACTIONS(1373), + [anon_sym_property] = ACTIONS(2851), + [anon_sym_include] = ACTIONS(2851), + [anon_sym_DEF] = ACTIONS(2851), + [anon_sym_cdef] = ACTIONS(2851), + [anon_sym_cpdef] = ACTIONS(2851), + [anon_sym_new] = ACTIONS(2851), + [anon_sym_ctypedef] = ACTIONS(2851), + [anon_sym_public] = ACTIONS(2851), + [anon_sym_packed] = ACTIONS(2851), + [anon_sym_inline] = ACTIONS(2851), + [anon_sym_readonly] = ACTIONS(2851), + [anon_sym_sizeof] = ACTIONS(2851), + [sym__dedent] = ACTIONS(2853), + [sym_string_start] = ACTIONS(2853), }, [880] = { - [sym_identifier] = ACTIONS(2828), - [anon_sym_import] = ACTIONS(2828), - [anon_sym_cimport] = ACTIONS(2828), - [anon_sym_from] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_STAR] = ACTIONS(2826), - [anon_sym_print] = ACTIONS(2828), - [anon_sym_assert] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_del] = ACTIONS(2828), - [anon_sym_raise] = ACTIONS(2828), - [anon_sym_pass] = ACTIONS(2828), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_continue] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_else] = ACTIONS(2828), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_async] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_while] = ACTIONS(2828), - [anon_sym_try] = ACTIONS(2828), - [anon_sym_except] = ACTIONS(2828), - [anon_sym_finally] = ACTIONS(2828), - [anon_sym_with] = ACTIONS(2828), - [anon_sym_def] = ACTIONS(2828), - [anon_sym_global] = ACTIONS(2828), - [anon_sym_nonlocal] = ACTIONS(2828), - [anon_sym_exec] = ACTIONS(2828), - [anon_sym_type] = ACTIONS(2828), - [anon_sym_class] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_AT] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_not] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_TILDE] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2826), - [anon_sym_lambda] = ACTIONS(2828), - [anon_sym_yield] = ACTIONS(2828), - [sym_ellipsis] = ACTIONS(2826), - [anon_sym_None] = ACTIONS(2828), - [sym_integer] = ACTIONS(2828), - [sym_float] = ACTIONS(2826), - [anon_sym_await] = ACTIONS(2828), - [anon_sym_api] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_expression_list] = STATE(4888), + [sym_list_splat_pattern] = STATE(1975), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3715), + [sym_primary_expression] = STATE(1927), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_attribute] = STATE(2021), + [sym_subscript] = STATE(2021), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym_from] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(576), + [anon_sym_match] = ACTIONS(576), + [anon_sym_async] = ACTIONS(576), + [anon_sym_exec] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(598), + [anon_sym_api] = ACTIONS(576), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2828), - [anon_sym_include] = ACTIONS(2828), - [anon_sym_DEF] = ACTIONS(2828), - [anon_sym_cdef] = ACTIONS(2828), - [anon_sym_cpdef] = ACTIONS(2828), - [anon_sym_new] = ACTIONS(2828), - [anon_sym_ctypedef] = ACTIONS(2828), - [anon_sym_public] = ACTIONS(2828), - [anon_sym_packed] = ACTIONS(2828), - [anon_sym_inline] = ACTIONS(2828), - [anon_sym_readonly] = ACTIONS(2828), - [anon_sym_sizeof] = ACTIONS(2828), - [sym__dedent] = ACTIONS(2826), - [sym_string_start] = ACTIONS(2826), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(2858), + [sym_string_start] = ACTIONS(107), }, [881] = { - [ts_builtin_sym_end] = ACTIONS(2832), - [sym_identifier] = ACTIONS(2834), - [anon_sym_import] = ACTIONS(2834), - [anon_sym_cimport] = ACTIONS(2834), - [anon_sym_from] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_print] = ACTIONS(2834), - [anon_sym_assert] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_del] = ACTIONS(2834), - [anon_sym_raise] = ACTIONS(2834), - [anon_sym_pass] = ACTIONS(2834), - [anon_sym_break] = ACTIONS(2834), - [anon_sym_continue] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_else] = ACTIONS(2834), - [anon_sym_match] = ACTIONS(2834), - [anon_sym_async] = ACTIONS(2834), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_while] = ACTIONS(2834), - [anon_sym_try] = ACTIONS(2834), - [anon_sym_except] = ACTIONS(2834), - [anon_sym_finally] = ACTIONS(2834), - [anon_sym_with] = ACTIONS(2834), - [anon_sym_def] = ACTIONS(2834), - [anon_sym_global] = ACTIONS(2834), - [anon_sym_nonlocal] = ACTIONS(2834), - [anon_sym_exec] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2834), - [anon_sym_class] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2832), - [anon_sym_AT] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_not] = ACTIONS(2834), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_lambda] = ACTIONS(2834), - [anon_sym_yield] = ACTIONS(2834), - [sym_ellipsis] = ACTIONS(2832), - [anon_sym_None] = ACTIONS(2834), - [sym_integer] = ACTIONS(2834), - [sym_float] = ACTIONS(2832), - [anon_sym_await] = ACTIONS(2834), - [anon_sym_api] = ACTIONS(2834), - [sym_true] = ACTIONS(2834), - [sym_false] = ACTIONS(2834), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_dictionary_splat] = STATE(5149), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(4188), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_pair] = STATE(5149), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2834), - [anon_sym_include] = ACTIONS(2834), - [anon_sym_DEF] = ACTIONS(2834), - [anon_sym_cdef] = ACTIONS(2834), - [anon_sym_cpdef] = ACTIONS(2834), - [anon_sym_new] = ACTIONS(2834), - [anon_sym_ctypedef] = ACTIONS(2834), - [anon_sym_public] = ACTIONS(2834), - [anon_sym_packed] = ACTIONS(2834), - [anon_sym_inline] = ACTIONS(2834), - [anon_sym_readonly] = ACTIONS(2834), - [anon_sym_sizeof] = ACTIONS(2834), - [sym_string_start] = ACTIONS(2832), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [882] = { - [ts_builtin_sym_end] = ACTIONS(2818), - [sym_identifier] = ACTIONS(2816), - [anon_sym_import] = ACTIONS(2816), - [anon_sym_cimport] = ACTIONS(2816), - [anon_sym_from] = ACTIONS(2816), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2818), - [anon_sym_print] = ACTIONS(2816), - [anon_sym_assert] = ACTIONS(2816), - [anon_sym_return] = ACTIONS(2816), - [anon_sym_del] = ACTIONS(2816), - [anon_sym_raise] = ACTIONS(2816), - [anon_sym_pass] = ACTIONS(2816), - [anon_sym_break] = ACTIONS(2816), - [anon_sym_continue] = ACTIONS(2816), - [anon_sym_if] = ACTIONS(2816), - [anon_sym_else] = ACTIONS(2816), - [anon_sym_match] = ACTIONS(2816), - [anon_sym_async] = ACTIONS(2816), - [anon_sym_for] = ACTIONS(2816), - [anon_sym_while] = ACTIONS(2816), - [anon_sym_try] = ACTIONS(2816), - [anon_sym_except_STAR] = ACTIONS(2818), - [anon_sym_finally] = ACTIONS(2816), - [anon_sym_with] = ACTIONS(2816), - [anon_sym_def] = ACTIONS(2816), - [anon_sym_global] = ACTIONS(2816), - [anon_sym_nonlocal] = ACTIONS(2816), - [anon_sym_exec] = ACTIONS(2816), - [anon_sym_type] = ACTIONS(2816), - [anon_sym_class] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_AT] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_not] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_TILDE] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2818), - [anon_sym_lambda] = ACTIONS(2816), - [anon_sym_yield] = ACTIONS(2816), - [sym_ellipsis] = ACTIONS(2818), - [anon_sym_None] = ACTIONS(2816), - [sym_integer] = ACTIONS(2816), - [sym_float] = ACTIONS(2818), - [anon_sym_await] = ACTIONS(2816), - [anon_sym_api] = ACTIONS(2816), - [sym_true] = ACTIONS(2816), - [sym_false] = ACTIONS(2816), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_dictionary_splat] = STATE(5149), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(4188), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_pair] = STATE(5149), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2816), - [anon_sym_include] = ACTIONS(2816), - [anon_sym_DEF] = ACTIONS(2816), - [anon_sym_cdef] = ACTIONS(2816), - [anon_sym_cpdef] = ACTIONS(2816), - [anon_sym_new] = ACTIONS(2816), - [anon_sym_ctypedef] = ACTIONS(2816), - [anon_sym_public] = ACTIONS(2816), - [anon_sym_packed] = ACTIONS(2816), - [anon_sym_inline] = ACTIONS(2816), - [anon_sym_readonly] = ACTIONS(2816), - [anon_sym_sizeof] = ACTIONS(2816), - [sym_string_start] = ACTIONS(2818), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [883] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_list_splat] = STATE(5041), - [sym_parenthesized_list_splat] = STATE(5041), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(4104), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_yield] = STATE(5041), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_print] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_async] = ACTIONS(2784), - [anon_sym_exec] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [anon_sym_yield] = ACTIONS(1233), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(2786), - [anon_sym_api] = ACTIONS(2784), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_dictionary_splat] = STATE(5149), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(4188), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_pair] = STATE(5149), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(2866), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [884] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_dictionary_splat] = STATE(5105), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(4281), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_pair] = STATE(5105), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1110), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_dictionary_splat] = STATE(5149), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(4188), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_pair] = STATE(5149), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [885] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_dictionary_splat] = STATE(5105), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(4281), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_pair] = STATE(5105), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1110), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_dictionary_splat] = STATE(5149), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(4188), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_pair] = STATE(5149), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(2870), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [886] = { - [ts_builtin_sym_end] = ACTIONS(1377), - [sym_identifier] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(1375), - [anon_sym_cimport] = ACTIONS(1375), - [anon_sym_from] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_print] = ACTIONS(1375), - [anon_sym_assert] = ACTIONS(1375), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_del] = ACTIONS(1375), - [anon_sym_raise] = ACTIONS(1375), - [anon_sym_pass] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1375), - [anon_sym_continue] = ACTIONS(1375), - [anon_sym_if] = ACTIONS(1375), - [anon_sym_else] = ACTIONS(1375), - [anon_sym_match] = ACTIONS(1375), - [anon_sym_async] = ACTIONS(1375), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_while] = ACTIONS(1375), - [anon_sym_try] = ACTIONS(1375), - [anon_sym_except_STAR] = ACTIONS(1377), - [anon_sym_finally] = ACTIONS(1375), - [anon_sym_with] = ACTIONS(1375), - [anon_sym_def] = ACTIONS(1375), - [anon_sym_global] = ACTIONS(1375), - [anon_sym_nonlocal] = ACTIONS(1375), - [anon_sym_exec] = ACTIONS(1375), - [anon_sym_type] = ACTIONS(1375), - [anon_sym_class] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1377), - [anon_sym_AT] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_not] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_lambda] = ACTIONS(1375), - [anon_sym_yield] = ACTIONS(1375), - [sym_ellipsis] = ACTIONS(1377), - [anon_sym_None] = ACTIONS(1375), - [sym_integer] = ACTIONS(1375), - [sym_float] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(1375), - [anon_sym_api] = ACTIONS(1375), - [sym_true] = ACTIONS(1375), - [sym_false] = ACTIONS(1375), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_dictionary_splat] = STATE(5149), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(4188), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_pair] = STATE(5149), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1375), - [anon_sym_include] = ACTIONS(1375), - [anon_sym_DEF] = ACTIONS(1375), - [anon_sym_cdef] = ACTIONS(1375), - [anon_sym_cpdef] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1375), - [anon_sym_ctypedef] = ACTIONS(1375), - [anon_sym_public] = ACTIONS(1375), - [anon_sym_packed] = ACTIONS(1375), - [anon_sym_inline] = ACTIONS(1375), - [anon_sym_readonly] = ACTIONS(1375), - [anon_sym_sizeof] = ACTIONS(1375), - [sym_string_start] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [887] = { - [ts_builtin_sym_end] = ACTIONS(2840), - [sym_identifier] = ACTIONS(2842), - [anon_sym_import] = ACTIONS(2842), - [anon_sym_cimport] = ACTIONS(2842), - [anon_sym_from] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_print] = ACTIONS(2842), - [anon_sym_assert] = ACTIONS(2842), - [anon_sym_return] = ACTIONS(2842), - [anon_sym_del] = ACTIONS(2842), - [anon_sym_raise] = ACTIONS(2842), - [anon_sym_pass] = ACTIONS(2842), - [anon_sym_break] = ACTIONS(2842), - [anon_sym_continue] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_else] = ACTIONS(2842), - [anon_sym_match] = ACTIONS(2842), - [anon_sym_async] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(2842), - [anon_sym_while] = ACTIONS(2842), - [anon_sym_try] = ACTIONS(2842), - [anon_sym_except] = ACTIONS(2842), - [anon_sym_finally] = ACTIONS(2842), - [anon_sym_with] = ACTIONS(2842), - [anon_sym_def] = ACTIONS(2842), - [anon_sym_global] = ACTIONS(2842), - [anon_sym_nonlocal] = ACTIONS(2842), - [anon_sym_exec] = ACTIONS(2842), - [anon_sym_type] = ACTIONS(2842), - [anon_sym_class] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2840), - [anon_sym_AT] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_not] = ACTIONS(2842), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_lambda] = ACTIONS(2842), - [anon_sym_yield] = ACTIONS(2842), - [sym_ellipsis] = ACTIONS(2840), - [anon_sym_None] = ACTIONS(2842), - [sym_integer] = ACTIONS(2842), - [sym_float] = ACTIONS(2840), - [anon_sym_await] = ACTIONS(2842), - [anon_sym_api] = ACTIONS(2842), - [sym_true] = ACTIONS(2842), - [sym_false] = ACTIONS(2842), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_dictionary_splat] = STATE(5149), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(4188), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_pair] = STATE(5149), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(2874), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2842), - [anon_sym_include] = ACTIONS(2842), - [anon_sym_DEF] = ACTIONS(2842), - [anon_sym_cdef] = ACTIONS(2842), - [anon_sym_cpdef] = ACTIONS(2842), - [anon_sym_new] = ACTIONS(2842), - [anon_sym_ctypedef] = ACTIONS(2842), - [anon_sym_public] = ACTIONS(2842), - [anon_sym_packed] = ACTIONS(2842), - [anon_sym_inline] = ACTIONS(2842), - [anon_sym_readonly] = ACTIONS(2842), - [anon_sym_sizeof] = ACTIONS(2842), - [sym_string_start] = ACTIONS(2840), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [888] = { - [sym_identifier] = ACTIONS(2844), - [anon_sym_import] = ACTIONS(2844), - [anon_sym_cimport] = ACTIONS(2844), - [anon_sym_from] = ACTIONS(2844), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_print] = ACTIONS(2844), - [anon_sym_assert] = ACTIONS(2844), - [anon_sym_return] = ACTIONS(2844), - [anon_sym_del] = ACTIONS(2844), - [anon_sym_raise] = ACTIONS(2844), - [anon_sym_pass] = ACTIONS(2844), - [anon_sym_break] = ACTIONS(2844), - [anon_sym_continue] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_else] = ACTIONS(2844), - [anon_sym_match] = ACTIONS(2844), - [anon_sym_async] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2844), - [anon_sym_while] = ACTIONS(2844), - [anon_sym_try] = ACTIONS(2844), - [anon_sym_except] = ACTIONS(2844), - [anon_sym_finally] = ACTIONS(2844), - [anon_sym_with] = ACTIONS(2844), - [anon_sym_def] = ACTIONS(2844), - [anon_sym_global] = ACTIONS(2844), - [anon_sym_nonlocal] = ACTIONS(2844), - [anon_sym_exec] = ACTIONS(2844), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_class] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_AT] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_not] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2846), - [anon_sym_lambda] = ACTIONS(2844), - [anon_sym_yield] = ACTIONS(2844), - [sym_ellipsis] = ACTIONS(2846), - [anon_sym_None] = ACTIONS(2844), - [sym_integer] = ACTIONS(2844), - [sym_float] = ACTIONS(2846), - [anon_sym_await] = ACTIONS(2844), - [anon_sym_api] = ACTIONS(2844), - [sym_true] = ACTIONS(2844), - [sym_false] = ACTIONS(2844), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_dictionary_splat] = STATE(5149), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(4188), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_pair] = STATE(5149), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2844), - [anon_sym_include] = ACTIONS(2844), - [anon_sym_DEF] = ACTIONS(2844), - [anon_sym_cdef] = ACTIONS(2844), - [anon_sym_cpdef] = ACTIONS(2844), - [anon_sym_new] = ACTIONS(2844), - [anon_sym_ctypedef] = ACTIONS(2844), - [anon_sym_public] = ACTIONS(2844), - [anon_sym_packed] = ACTIONS(2844), - [anon_sym_inline] = ACTIONS(2844), - [anon_sym_readonly] = ACTIONS(2844), - [anon_sym_sizeof] = ACTIONS(2844), - [sym__dedent] = ACTIONS(2846), - [sym_string_start] = ACTIONS(2846), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [889] = { - [sym_identifier] = ACTIONS(2848), - [anon_sym_import] = ACTIONS(2848), - [anon_sym_cimport] = ACTIONS(2848), - [anon_sym_from] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(2850), - [anon_sym_print] = ACTIONS(2848), - [anon_sym_assert] = ACTIONS(2848), - [anon_sym_return] = ACTIONS(2848), - [anon_sym_del] = ACTIONS(2848), - [anon_sym_raise] = ACTIONS(2848), - [anon_sym_pass] = ACTIONS(2848), - [anon_sym_break] = ACTIONS(2848), - [anon_sym_continue] = ACTIONS(2848), - [anon_sym_if] = ACTIONS(2848), - [anon_sym_else] = ACTIONS(2848), - [anon_sym_match] = ACTIONS(2848), - [anon_sym_async] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2848), - [anon_sym_while] = ACTIONS(2848), - [anon_sym_try] = ACTIONS(2848), - [anon_sym_except_STAR] = ACTIONS(2850), - [anon_sym_finally] = ACTIONS(2848), - [anon_sym_with] = ACTIONS(2848), - [anon_sym_def] = ACTIONS(2848), - [anon_sym_global] = ACTIONS(2848), - [anon_sym_nonlocal] = ACTIONS(2848), - [anon_sym_exec] = ACTIONS(2848), - [anon_sym_type] = ACTIONS(2848), - [anon_sym_class] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_AT] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_not] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2850), - [anon_sym_lambda] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2848), - [sym_ellipsis] = ACTIONS(2850), - [anon_sym_None] = ACTIONS(2848), - [sym_integer] = ACTIONS(2848), - [sym_float] = ACTIONS(2850), - [anon_sym_await] = ACTIONS(2848), - [anon_sym_api] = ACTIONS(2848), - [sym_true] = ACTIONS(2848), - [sym_false] = ACTIONS(2848), + [sym_elif_clause] = STATE(985), + [aux_sym_if_statement_repeat1] = STATE(889), + [ts_builtin_sym_end] = ACTIONS(2853), + [sym_identifier] = ACTIONS(2851), + [anon_sym_import] = ACTIONS(2851), + [anon_sym_cimport] = ACTIONS(2851), + [anon_sym_from] = ACTIONS(2851), + [anon_sym_LPAREN] = ACTIONS(2853), + [anon_sym_STAR] = ACTIONS(2853), + [anon_sym_print] = ACTIONS(2851), + [anon_sym_assert] = ACTIONS(2851), + [anon_sym_return] = ACTIONS(2851), + [anon_sym_del] = ACTIONS(2851), + [anon_sym_raise] = ACTIONS(2851), + [anon_sym_pass] = ACTIONS(2851), + [anon_sym_break] = ACTIONS(2851), + [anon_sym_continue] = ACTIONS(2851), + [anon_sym_if] = ACTIONS(2851), + [anon_sym_elif] = ACTIONS(2878), + [anon_sym_else] = ACTIONS(2851), + [anon_sym_match] = ACTIONS(2851), + [anon_sym_async] = ACTIONS(2851), + [anon_sym_for] = ACTIONS(2851), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_try] = ACTIONS(2851), + [anon_sym_with] = ACTIONS(2851), + [anon_sym_def] = ACTIONS(2851), + [anon_sym_global] = ACTIONS(2851), + [anon_sym_nonlocal] = ACTIONS(2851), + [anon_sym_exec] = ACTIONS(2851), + [anon_sym_type] = ACTIONS(2851), + [anon_sym_class] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_AT] = ACTIONS(2853), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_LBRACE] = ACTIONS(2853), + [anon_sym_PLUS] = ACTIONS(2853), + [anon_sym_not] = ACTIONS(2851), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_TILDE] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(2853), + [anon_sym_lambda] = ACTIONS(2851), + [anon_sym_yield] = ACTIONS(2851), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2853), + [anon_sym_None] = ACTIONS(2851), + [sym_integer] = ACTIONS(2851), + [sym_float] = ACTIONS(2853), + [anon_sym_await] = ACTIONS(2851), + [anon_sym_api] = ACTIONS(2851), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2848), - [anon_sym_include] = ACTIONS(2848), - [anon_sym_DEF] = ACTIONS(2848), - [anon_sym_cdef] = ACTIONS(2848), - [anon_sym_cpdef] = ACTIONS(2848), - [anon_sym_new] = ACTIONS(2848), - [anon_sym_ctypedef] = ACTIONS(2848), - [anon_sym_public] = ACTIONS(2848), - [anon_sym_packed] = ACTIONS(2848), - [anon_sym_inline] = ACTIONS(2848), - [anon_sym_readonly] = ACTIONS(2848), - [anon_sym_sizeof] = ACTIONS(2848), - [sym__dedent] = ACTIONS(2850), - [sym_string_start] = ACTIONS(2850), + [anon_sym_property] = ACTIONS(2851), + [anon_sym_include] = ACTIONS(2851), + [anon_sym_DEF] = ACTIONS(2851), + [anon_sym_cdef] = ACTIONS(2851), + [anon_sym_cpdef] = ACTIONS(2851), + [anon_sym_new] = ACTIONS(2851), + [anon_sym_ctypedef] = ACTIONS(2851), + [anon_sym_public] = ACTIONS(2851), + [anon_sym_packed] = ACTIONS(2851), + [anon_sym_inline] = ACTIONS(2851), + [anon_sym_readonly] = ACTIONS(2851), + [anon_sym_sizeof] = ACTIONS(2851), + [sym_string_start] = ACTIONS(2853), }, [890] = { - [ts_builtin_sym_end] = ACTIONS(2852), - [sym_identifier] = ACTIONS(2854), - [anon_sym_import] = ACTIONS(2854), - [anon_sym_cimport] = ACTIONS(2854), - [anon_sym_from] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2852), - [anon_sym_STAR] = ACTIONS(2852), - [anon_sym_print] = ACTIONS(2854), - [anon_sym_assert] = ACTIONS(2854), - [anon_sym_return] = ACTIONS(2854), - [anon_sym_del] = ACTIONS(2854), - [anon_sym_raise] = ACTIONS(2854), - [anon_sym_pass] = ACTIONS(2854), - [anon_sym_break] = ACTIONS(2854), - [anon_sym_continue] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_else] = ACTIONS(2854), - [anon_sym_match] = ACTIONS(2854), - [anon_sym_async] = ACTIONS(2854), - [anon_sym_for] = ACTIONS(2854), - [anon_sym_while] = ACTIONS(2854), - [anon_sym_try] = ACTIONS(2854), - [anon_sym_except] = ACTIONS(2854), - [anon_sym_finally] = ACTIONS(2854), - [anon_sym_with] = ACTIONS(2854), - [anon_sym_def] = ACTIONS(2854), - [anon_sym_global] = ACTIONS(2854), - [anon_sym_nonlocal] = ACTIONS(2854), - [anon_sym_exec] = ACTIONS(2854), - [anon_sym_type] = ACTIONS(2854), - [anon_sym_class] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2852), - [anon_sym_AT] = ACTIONS(2852), - [anon_sym_DASH] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2852), - [anon_sym_PLUS] = ACTIONS(2852), - [anon_sym_not] = ACTIONS(2854), - [anon_sym_AMP] = ACTIONS(2852), - [anon_sym_TILDE] = ACTIONS(2852), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_lambda] = ACTIONS(2854), - [anon_sym_yield] = ACTIONS(2854), - [sym_ellipsis] = ACTIONS(2852), - [anon_sym_None] = ACTIONS(2854), - [sym_integer] = ACTIONS(2854), - [sym_float] = ACTIONS(2852), - [anon_sym_await] = ACTIONS(2854), - [anon_sym_api] = ACTIONS(2854), - [sym_true] = ACTIONS(2854), - [sym_false] = ACTIONS(2854), + [sym_named_expression] = STATE(3724), + [sym__named_expression_lhs] = STATE(5493), + [sym_list_splat] = STATE(5169), + [sym_parenthesized_list_splat] = STATE(5169), + [sym_list_splat_pattern] = STATE(2212), + [sym_as_pattern] = STATE(3724), + [sym_expression] = STATE(4027), + [sym_primary_expression] = STATE(1942), + [sym_not_operator] = STATE(3724), + [sym_boolean_operator] = STATE(3724), + [sym_binary_operator] = STATE(2175), + [sym_unary_operator] = STATE(2175), + [sym_comparison_operator] = STATE(3724), + [sym_lambda] = STATE(3724), + [sym_yield] = STATE(5169), + [sym_attribute] = STATE(2175), + [sym_subscript] = STATE(2175), + [sym_ellipsis] = STATE(2175), + [sym_call] = STATE(2175), + [sym_list] = STATE(2175), + [sym_set] = STATE(2175), + [sym_tuple] = STATE(2175), + [sym_dictionary] = STATE(2175), + [sym_list_comprehension] = STATE(2175), + [sym_dictionary_comprehension] = STATE(2175), + [sym_set_comprehension] = STATE(2175), + [sym_generator_expression] = STATE(2175), + [sym_parenthesized_expression] = STATE(2175), + [sym_conditional_expression] = STATE(3724), + [sym_concatenated_string] = STATE(2175), + [sym_string] = STATE(1976), + [sym_none] = STATE(2175), + [sym_await] = STATE(2175), + [sym_new_expression] = STATE(3724), + [sym_sizeof_expression] = STATE(2175), + [sym_cast_expression] = STATE(2175), + [sym_identifier] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_print] = ACTIONS(2697), + [anon_sym_match] = ACTIONS(2697), + [anon_sym_async] = ACTIONS(2697), + [anon_sym_exec] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_not] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_TILDE] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(2417), + [anon_sym_lambda] = ACTIONS(2819), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1717), + [anon_sym_None] = ACTIONS(1719), + [sym_integer] = ACTIONS(1701), + [sym_float] = ACTIONS(1721), + [anon_sym_await] = ACTIONS(2701), + [anon_sym_api] = ACTIONS(2697), + [sym_true] = ACTIONS(1701), + [sym_false] = ACTIONS(1701), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2854), - [anon_sym_include] = ACTIONS(2854), - [anon_sym_DEF] = ACTIONS(2854), - [anon_sym_cdef] = ACTIONS(2854), - [anon_sym_cpdef] = ACTIONS(2854), - [anon_sym_new] = ACTIONS(2854), - [anon_sym_ctypedef] = ACTIONS(2854), - [anon_sym_public] = ACTIONS(2854), - [anon_sym_packed] = ACTIONS(2854), - [anon_sym_inline] = ACTIONS(2854), - [anon_sym_readonly] = ACTIONS(2854), - [anon_sym_sizeof] = ACTIONS(2854), - [sym_string_start] = ACTIONS(2852), + [anon_sym_new] = ACTIONS(2821), + [anon_sym_sizeof] = ACTIONS(1725), + [sym_string_start] = ACTIONS(1727), }, [891] = { - [ts_builtin_sym_end] = ACTIONS(2856), - [sym_identifier] = ACTIONS(2858), - [anon_sym_import] = ACTIONS(2858), - [anon_sym_cimport] = ACTIONS(2858), - [anon_sym_from] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2856), - [anon_sym_print] = ACTIONS(2858), - [anon_sym_assert] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_del] = ACTIONS(2858), - [anon_sym_raise] = ACTIONS(2858), - [anon_sym_pass] = ACTIONS(2858), - [anon_sym_break] = ACTIONS(2858), - [anon_sym_continue] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_else] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2858), - [anon_sym_async] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_try] = ACTIONS(2858), - [anon_sym_except_STAR] = ACTIONS(2856), - [anon_sym_finally] = ACTIONS(2858), - [anon_sym_with] = ACTIONS(2858), - [anon_sym_def] = ACTIONS(2858), - [anon_sym_global] = ACTIONS(2858), - [anon_sym_nonlocal] = ACTIONS(2858), - [anon_sym_exec] = ACTIONS(2858), - [anon_sym_type] = ACTIONS(2858), - [anon_sym_class] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2856), - [anon_sym_AT] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2856), - [anon_sym_not] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_lambda] = ACTIONS(2858), - [anon_sym_yield] = ACTIONS(2858), - [sym_ellipsis] = ACTIONS(2856), - [anon_sym_None] = ACTIONS(2858), - [sym_integer] = ACTIONS(2858), - [sym_float] = ACTIONS(2856), - [anon_sym_await] = ACTIONS(2858), - [anon_sym_api] = ACTIONS(2858), - [sym_true] = ACTIONS(2858), - [sym_false] = ACTIONS(2858), + [ts_builtin_sym_end] = ACTIONS(1396), + [sym_identifier] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_import] = ACTIONS(1394), + [anon_sym_cimport] = ACTIONS(1394), + [anon_sym_from] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_print] = ACTIONS(1394), + [anon_sym_assert] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_del] = ACTIONS(1394), + [anon_sym_raise] = ACTIONS(1394), + [anon_sym_pass] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_elif] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_async] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_try] = ACTIONS(1394), + [anon_sym_finally] = ACTIONS(1394), + [anon_sym_with] = ACTIONS(1394), + [anon_sym_def] = ACTIONS(1394), + [anon_sym_global] = ACTIONS(1394), + [anon_sym_nonlocal] = ACTIONS(1394), + [anon_sym_exec] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_class] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1396), + [anon_sym_AT] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_not] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_lambda] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1396), + [anon_sym_None] = ACTIONS(1394), + [sym_integer] = ACTIONS(1394), + [sym_float] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_api] = ACTIONS(1394), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2858), - [anon_sym_include] = ACTIONS(2858), - [anon_sym_DEF] = ACTIONS(2858), - [anon_sym_cdef] = ACTIONS(2858), - [anon_sym_cpdef] = ACTIONS(2858), - [anon_sym_new] = ACTIONS(2858), - [anon_sym_ctypedef] = ACTIONS(2858), - [anon_sym_public] = ACTIONS(2858), - [anon_sym_packed] = ACTIONS(2858), - [anon_sym_inline] = ACTIONS(2858), - [anon_sym_readonly] = ACTIONS(2858), - [anon_sym_sizeof] = ACTIONS(2858), - [sym_string_start] = ACTIONS(2856), + [anon_sym_property] = ACTIONS(1394), + [anon_sym_include] = ACTIONS(1394), + [anon_sym_DEF] = ACTIONS(1394), + [anon_sym_cdef] = ACTIONS(1394), + [anon_sym_cpdef] = ACTIONS(1394), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_ctypedef] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_packed] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_sizeof] = ACTIONS(1394), + [sym_string_start] = ACTIONS(1396), }, [892] = { - [ts_builtin_sym_end] = ACTIONS(1385), - [sym_identifier] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(1383), - [anon_sym_cimport] = ACTIONS(1383), - [anon_sym_from] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_print] = ACTIONS(1383), - [anon_sym_assert] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(1383), - [anon_sym_del] = ACTIONS(1383), - [anon_sym_raise] = ACTIONS(1383), - [anon_sym_pass] = ACTIONS(1383), - [anon_sym_break] = ACTIONS(1383), - [anon_sym_continue] = ACTIONS(1383), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_else] = ACTIONS(1383), - [anon_sym_match] = ACTIONS(1383), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_for] = ACTIONS(1383), - [anon_sym_while] = ACTIONS(1383), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_except_STAR] = ACTIONS(1385), - [anon_sym_finally] = ACTIONS(1383), - [anon_sym_with] = ACTIONS(1383), - [anon_sym_def] = ACTIONS(1383), - [anon_sym_global] = ACTIONS(1383), - [anon_sym_nonlocal] = ACTIONS(1383), - [anon_sym_exec] = ACTIONS(1383), - [anon_sym_type] = ACTIONS(1383), - [anon_sym_class] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_AT] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_not] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT] = ACTIONS(1385), - [anon_sym_lambda] = ACTIONS(1383), - [anon_sym_yield] = ACTIONS(1383), - [sym_ellipsis] = ACTIONS(1385), - [anon_sym_None] = ACTIONS(1383), - [sym_integer] = ACTIONS(1383), - [sym_float] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_api] = ACTIONS(1383), - [sym_true] = ACTIONS(1383), - [sym_false] = ACTIONS(1383), + [sym_named_expression] = STATE(3724), + [sym__named_expression_lhs] = STATE(5493), + [sym_expression_list] = STATE(4164), + [sym_list_splat_pattern] = STATE(2212), + [sym_as_pattern] = STATE(3724), + [sym_expression] = STATE(3944), + [sym_primary_expression] = STATE(1942), + [sym_not_operator] = STATE(3724), + [sym_boolean_operator] = STATE(3724), + [sym_binary_operator] = STATE(2175), + [sym_unary_operator] = STATE(2175), + [sym_comparison_operator] = STATE(3724), + [sym_lambda] = STATE(3724), + [sym_attribute] = STATE(2175), + [sym_subscript] = STATE(2175), + [sym_ellipsis] = STATE(2175), + [sym_call] = STATE(2175), + [sym_list] = STATE(2175), + [sym_set] = STATE(2175), + [sym_tuple] = STATE(2175), + [sym_dictionary] = STATE(2175), + [sym_list_comprehension] = STATE(2175), + [sym_dictionary_comprehension] = STATE(2175), + [sym_set_comprehension] = STATE(2175), + [sym_generator_expression] = STATE(2175), + [sym_parenthesized_expression] = STATE(2175), + [sym_conditional_expression] = STATE(3724), + [sym_concatenated_string] = STATE(2175), + [sym_string] = STATE(1976), + [sym_none] = STATE(2175), + [sym_await] = STATE(2175), + [sym_new_expression] = STATE(3724), + [sym_sizeof_expression] = STATE(2175), + [sym_cast_expression] = STATE(2175), + [sym_identifier] = ACTIONS(2693), + [anon_sym_from] = ACTIONS(2881), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_COMMA] = ACTIONS(2699), + [anon_sym_STAR] = ACTIONS(2409), + [anon_sym_print] = ACTIONS(2697), + [anon_sym_match] = ACTIONS(2697), + [anon_sym_async] = ACTIONS(2697), + [anon_sym_exec] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(2699), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_not] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_TILDE] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(2417), + [anon_sym_lambda] = ACTIONS(2819), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1717), + [anon_sym_None] = ACTIONS(1719), + [sym_integer] = ACTIONS(1701), + [sym_float] = ACTIONS(1721), + [anon_sym_await] = ACTIONS(2701), + [anon_sym_api] = ACTIONS(2697), + [sym_true] = ACTIONS(1701), + [sym_false] = ACTIONS(1701), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1383), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_DEF] = ACTIONS(1383), - [anon_sym_cdef] = ACTIONS(1383), - [anon_sym_cpdef] = ACTIONS(1383), - [anon_sym_new] = ACTIONS(1383), - [anon_sym_ctypedef] = ACTIONS(1383), - [anon_sym_public] = ACTIONS(1383), - [anon_sym_packed] = ACTIONS(1383), - [anon_sym_inline] = ACTIONS(1383), - [anon_sym_readonly] = ACTIONS(1383), - [anon_sym_sizeof] = ACTIONS(1383), - [sym_string_start] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(2821), + [anon_sym_sizeof] = ACTIONS(1725), + [sym_string_start] = ACTIONS(1727), }, [893] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_dictionary_splat] = STATE(5105), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(4281), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_pair] = STATE(5105), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1110), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(2860), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_dictionary_splat] = STATE(5149), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(4188), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_pair] = STATE(5149), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [894] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_dictionary_splat] = STATE(5105), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(4281), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_pair] = STATE(5105), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1110), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_dictionary_splat] = STATE(5149), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(4188), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_pair] = STATE(5149), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [895] = { - [sym_identifier] = ACTIONS(1371), - [anon_sym_import] = ACTIONS(1371), - [anon_sym_cimport] = ACTIONS(1371), - [anon_sym_from] = ACTIONS(1371), - [anon_sym_LPAREN] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1373), - [anon_sym_print] = ACTIONS(1371), - [anon_sym_assert] = ACTIONS(1371), - [anon_sym_return] = ACTIONS(1371), - [anon_sym_del] = ACTIONS(1371), - [anon_sym_raise] = ACTIONS(1371), - [anon_sym_pass] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(1371), - [anon_sym_continue] = ACTIONS(1371), - [anon_sym_if] = ACTIONS(1371), - [anon_sym_else] = ACTIONS(1371), - [anon_sym_match] = ACTIONS(1371), - [anon_sym_async] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1371), - [anon_sym_while] = ACTIONS(1371), - [anon_sym_try] = ACTIONS(1371), - [anon_sym_except] = ACTIONS(1371), - [anon_sym_finally] = ACTIONS(1371), - [anon_sym_with] = ACTIONS(1371), - [anon_sym_def] = ACTIONS(1371), - [anon_sym_global] = ACTIONS(1371), - [anon_sym_nonlocal] = ACTIONS(1371), - [anon_sym_exec] = ACTIONS(1371), - [anon_sym_type] = ACTIONS(1371), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1373), - [anon_sym_AT] = ACTIONS(1373), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_not] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_LT] = ACTIONS(1373), - [anon_sym_lambda] = ACTIONS(1371), - [anon_sym_yield] = ACTIONS(1371), - [sym_ellipsis] = ACTIONS(1373), - [anon_sym_None] = ACTIONS(1371), - [sym_integer] = ACTIONS(1371), - [sym_float] = ACTIONS(1373), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_api] = ACTIONS(1371), - [sym_true] = ACTIONS(1371), - [sym_false] = ACTIONS(1371), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1371), - [anon_sym_include] = ACTIONS(1371), - [anon_sym_DEF] = ACTIONS(1371), - [anon_sym_cdef] = ACTIONS(1371), - [anon_sym_cpdef] = ACTIONS(1371), - [anon_sym_new] = ACTIONS(1371), - [anon_sym_ctypedef] = ACTIONS(1371), - [anon_sym_public] = ACTIONS(1371), - [anon_sym_packed] = ACTIONS(1371), - [anon_sym_inline] = ACTIONS(1371), - [anon_sym_readonly] = ACTIONS(1371), - [anon_sym_sizeof] = ACTIONS(1371), - [sym__dedent] = ACTIONS(1373), - [sym_string_start] = ACTIONS(1373), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [896] = { - [sym_identifier] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(1375), - [anon_sym_cimport] = ACTIONS(1375), - [anon_sym_from] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_print] = ACTIONS(1375), - [anon_sym_assert] = ACTIONS(1375), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_del] = ACTIONS(1375), - [anon_sym_raise] = ACTIONS(1375), - [anon_sym_pass] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1375), - [anon_sym_continue] = ACTIONS(1375), - [anon_sym_if] = ACTIONS(1375), - [anon_sym_else] = ACTIONS(1375), - [anon_sym_match] = ACTIONS(1375), - [anon_sym_async] = ACTIONS(1375), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_while] = ACTIONS(1375), - [anon_sym_try] = ACTIONS(1375), - [anon_sym_except] = ACTIONS(1375), - [anon_sym_finally] = ACTIONS(1375), - [anon_sym_with] = ACTIONS(1375), - [anon_sym_def] = ACTIONS(1375), - [anon_sym_global] = ACTIONS(1375), - [anon_sym_nonlocal] = ACTIONS(1375), - [anon_sym_exec] = ACTIONS(1375), - [anon_sym_type] = ACTIONS(1375), - [anon_sym_class] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1377), - [anon_sym_AT] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_not] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_lambda] = ACTIONS(1375), - [anon_sym_yield] = ACTIONS(1375), - [sym_ellipsis] = ACTIONS(1377), - [anon_sym_None] = ACTIONS(1375), - [sym_integer] = ACTIONS(1375), - [sym_float] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(1375), - [anon_sym_api] = ACTIONS(1375), - [sym_true] = ACTIONS(1375), - [sym_false] = ACTIONS(1375), + [sym_named_expression] = STATE(2946), + [sym__named_expression_lhs] = STATE(5197), + [sym_dictionary_splat] = STATE(5149), + [sym_list_splat_pattern] = STATE(2340), + [sym_as_pattern] = STATE(2946), + [sym_expression] = STATE(4188), + [sym_primary_expression] = STATE(1963), + [sym_not_operator] = STATE(2946), + [sym_boolean_operator] = STATE(2946), + [sym_binary_operator] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_comparison_operator] = STATE(2946), + [sym_lambda] = STATE(2946), + [sym_attribute] = STATE(2295), + [sym_subscript] = STATE(2295), + [sym_ellipsis] = STATE(2295), + [sym_call] = STATE(2295), + [sym_list] = STATE(2295), + [sym_set] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_dictionary] = STATE(2295), + [sym_pair] = STATE(5149), + [sym_list_comprehension] = STATE(2295), + [sym_dictionary_comprehension] = STATE(2295), + [sym_set_comprehension] = STATE(2295), + [sym_generator_expression] = STATE(2295), + [sym_parenthesized_expression] = STATE(2295), + [sym_conditional_expression] = STATE(2946), + [sym_concatenated_string] = STATE(2295), + [sym_string] = STATE(2028), + [sym_none] = STATE(2295), + [sym_await] = STATE(2295), + [sym_new_expression] = STATE(2946), + [sym_sizeof_expression] = STATE(2295), + [sym_cast_expression] = STATE(2295), + [sym_identifier] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_async] = ACTIONS(1121), + [anon_sym_STAR_STAR] = ACTIONS(2325), + [anon_sym_exec] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_not] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_lambda] = ACTIONS(1135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1137), + [anon_sym_None] = ACTIONS(1139), + [sym_integer] = ACTIONS(1141), + [sym_float] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1145), + [anon_sym_api] = ACTIONS(1121), + [sym_true] = ACTIONS(1141), + [sym_false] = ACTIONS(1141), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1375), - [anon_sym_include] = ACTIONS(1375), - [anon_sym_DEF] = ACTIONS(1375), - [anon_sym_cdef] = ACTIONS(1375), - [anon_sym_cpdef] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1375), - [anon_sym_ctypedef] = ACTIONS(1375), - [anon_sym_public] = ACTIONS(1375), - [anon_sym_packed] = ACTIONS(1375), - [anon_sym_inline] = ACTIONS(1375), - [anon_sym_readonly] = ACTIONS(1375), - [anon_sym_sizeof] = ACTIONS(1375), - [sym__dedent] = ACTIONS(1377), - [sym_string_start] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_sizeof] = ACTIONS(1149), + [sym_string_start] = ACTIONS(1151), }, [897] = { - [sym_identifier] = ACTIONS(1387), - [anon_sym_import] = ACTIONS(1387), - [anon_sym_cimport] = ACTIONS(1387), - [anon_sym_from] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_print] = ACTIONS(1387), - [anon_sym_assert] = ACTIONS(1387), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_del] = ACTIONS(1387), - [anon_sym_raise] = ACTIONS(1387), - [anon_sym_pass] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1387), - [anon_sym_continue] = ACTIONS(1387), - [anon_sym_if] = ACTIONS(1387), - [anon_sym_else] = ACTIONS(1387), - [anon_sym_match] = ACTIONS(1387), - [anon_sym_async] = ACTIONS(1387), - [anon_sym_for] = ACTIONS(1387), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_try] = ACTIONS(1387), - [anon_sym_except] = ACTIONS(1387), - [anon_sym_finally] = ACTIONS(1387), - [anon_sym_with] = ACTIONS(1387), - [anon_sym_def] = ACTIONS(1387), - [anon_sym_global] = ACTIONS(1387), - [anon_sym_nonlocal] = ACTIONS(1387), - [anon_sym_exec] = ACTIONS(1387), - [anon_sym_type] = ACTIONS(1387), - [anon_sym_class] = ACTIONS(1387), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_AT] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_not] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1389), - [anon_sym_lambda] = ACTIONS(1387), - [anon_sym_yield] = ACTIONS(1387), - [sym_ellipsis] = ACTIONS(1389), - [anon_sym_None] = ACTIONS(1387), - [sym_integer] = ACTIONS(1387), - [sym_float] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_api] = ACTIONS(1387), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2891), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1387), - [anon_sym_include] = ACTIONS(1387), - [anon_sym_DEF] = ACTIONS(1387), - [anon_sym_cdef] = ACTIONS(1387), - [anon_sym_cpdef] = ACTIONS(1387), - [anon_sym_new] = ACTIONS(1387), - [anon_sym_ctypedef] = ACTIONS(1387), - [anon_sym_public] = ACTIONS(1387), - [anon_sym_packed] = ACTIONS(1387), - [anon_sym_inline] = ACTIONS(1387), - [anon_sym_readonly] = ACTIONS(1387), - [anon_sym_sizeof] = ACTIONS(1387), - [sym__dedent] = ACTIONS(1389), - [sym_string_start] = ACTIONS(1389), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [898] = { - [sym_identifier] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(1383), - [anon_sym_cimport] = ACTIONS(1383), - [anon_sym_from] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_print] = ACTIONS(1383), - [anon_sym_assert] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(1383), - [anon_sym_del] = ACTIONS(1383), - [anon_sym_raise] = ACTIONS(1383), - [anon_sym_pass] = ACTIONS(1383), - [anon_sym_break] = ACTIONS(1383), - [anon_sym_continue] = ACTIONS(1383), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_else] = ACTIONS(1383), - [anon_sym_match] = ACTIONS(1383), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_for] = ACTIONS(1383), - [anon_sym_while] = ACTIONS(1383), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_except] = ACTIONS(1383), - [anon_sym_finally] = ACTIONS(1383), - [anon_sym_with] = ACTIONS(1383), - [anon_sym_def] = ACTIONS(1383), - [anon_sym_global] = ACTIONS(1383), - [anon_sym_nonlocal] = ACTIONS(1383), - [anon_sym_exec] = ACTIONS(1383), - [anon_sym_type] = ACTIONS(1383), - [anon_sym_class] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_AT] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_not] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT] = ACTIONS(1385), - [anon_sym_lambda] = ACTIONS(1383), - [anon_sym_yield] = ACTIONS(1383), - [sym_ellipsis] = ACTIONS(1385), - [anon_sym_None] = ACTIONS(1383), - [sym_integer] = ACTIONS(1383), - [sym_float] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_api] = ACTIONS(1383), - [sym_true] = ACTIONS(1383), - [sym_false] = ACTIONS(1383), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3986), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_COMMA] = ACTIONS(2893), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2895), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1383), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_DEF] = ACTIONS(1383), - [anon_sym_cdef] = ACTIONS(1383), - [anon_sym_cpdef] = ACTIONS(1383), - [anon_sym_new] = ACTIONS(1383), - [anon_sym_ctypedef] = ACTIONS(1383), - [anon_sym_public] = ACTIONS(1383), - [anon_sym_packed] = ACTIONS(1383), - [anon_sym_inline] = ACTIONS(1383), - [anon_sym_readonly] = ACTIONS(1383), - [anon_sym_sizeof] = ACTIONS(1383), - [sym__dedent] = ACTIONS(1385), - [sym_string_start] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [899] = { - [sym_identifier] = ACTIONS(2854), - [anon_sym_import] = ACTIONS(2854), - [anon_sym_cimport] = ACTIONS(2854), - [anon_sym_from] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2852), - [anon_sym_STAR] = ACTIONS(2852), - [anon_sym_print] = ACTIONS(2854), - [anon_sym_assert] = ACTIONS(2854), - [anon_sym_return] = ACTIONS(2854), - [anon_sym_del] = ACTIONS(2854), - [anon_sym_raise] = ACTIONS(2854), - [anon_sym_pass] = ACTIONS(2854), - [anon_sym_break] = ACTIONS(2854), - [anon_sym_continue] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_else] = ACTIONS(2854), - [anon_sym_match] = ACTIONS(2854), - [anon_sym_async] = ACTIONS(2854), - [anon_sym_for] = ACTIONS(2854), - [anon_sym_while] = ACTIONS(2854), - [anon_sym_try] = ACTIONS(2854), - [anon_sym_except] = ACTIONS(2854), - [anon_sym_finally] = ACTIONS(2854), - [anon_sym_with] = ACTIONS(2854), - [anon_sym_def] = ACTIONS(2854), - [anon_sym_global] = ACTIONS(2854), - [anon_sym_nonlocal] = ACTIONS(2854), - [anon_sym_exec] = ACTIONS(2854), - [anon_sym_type] = ACTIONS(2854), - [anon_sym_class] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2852), - [anon_sym_AT] = ACTIONS(2852), - [anon_sym_DASH] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2852), - [anon_sym_PLUS] = ACTIONS(2852), - [anon_sym_not] = ACTIONS(2854), - [anon_sym_AMP] = ACTIONS(2852), - [anon_sym_TILDE] = ACTIONS(2852), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_lambda] = ACTIONS(2854), - [anon_sym_yield] = ACTIONS(2854), - [sym_ellipsis] = ACTIONS(2852), - [anon_sym_None] = ACTIONS(2854), - [sym_integer] = ACTIONS(2854), - [sym_float] = ACTIONS(2852), - [anon_sym_await] = ACTIONS(2854), - [anon_sym_api] = ACTIONS(2854), - [sym_true] = ACTIONS(2854), - [sym_false] = ACTIONS(2854), + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1398), + [anon_sym_import] = ACTIONS(1398), + [anon_sym_cimport] = ACTIONS(1398), + [anon_sym_from] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_print] = ACTIONS(1398), + [anon_sym_assert] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_del] = ACTIONS(1398), + [anon_sym_raise] = ACTIONS(1398), + [anon_sym_pass] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_try] = ACTIONS(1398), + [anon_sym_except] = ACTIONS(1398), + [anon_sym_finally] = ACTIONS(1398), + [anon_sym_with] = ACTIONS(1398), + [anon_sym_def] = ACTIONS(1398), + [anon_sym_global] = ACTIONS(1398), + [anon_sym_nonlocal] = ACTIONS(1398), + [anon_sym_exec] = ACTIONS(1398), + [anon_sym_type] = ACTIONS(1398), + [anon_sym_class] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_not] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_lambda] = ACTIONS(1398), + [anon_sym_yield] = ACTIONS(1398), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1400), + [anon_sym_None] = ACTIONS(1398), + [sym_integer] = ACTIONS(1398), + [sym_float] = ACTIONS(1400), + [anon_sym_await] = ACTIONS(1398), + [anon_sym_api] = ACTIONS(1398), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2854), - [anon_sym_include] = ACTIONS(2854), - [anon_sym_DEF] = ACTIONS(2854), - [anon_sym_cdef] = ACTIONS(2854), - [anon_sym_cpdef] = ACTIONS(2854), - [anon_sym_new] = ACTIONS(2854), - [anon_sym_ctypedef] = ACTIONS(2854), - [anon_sym_public] = ACTIONS(2854), - [anon_sym_packed] = ACTIONS(2854), - [anon_sym_inline] = ACTIONS(2854), - [anon_sym_readonly] = ACTIONS(2854), - [anon_sym_sizeof] = ACTIONS(2854), - [sym__dedent] = ACTIONS(2852), - [sym_string_start] = ACTIONS(2852), + [anon_sym_property] = ACTIONS(1398), + [anon_sym_include] = ACTIONS(1398), + [anon_sym_DEF] = ACTIONS(1398), + [anon_sym_cdef] = ACTIONS(1398), + [anon_sym_cpdef] = ACTIONS(1398), + [anon_sym_new] = ACTIONS(1398), + [anon_sym_ctypedef] = ACTIONS(1398), + [anon_sym_public] = ACTIONS(1398), + [anon_sym_packed] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym_readonly] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1398), + [sym_string_start] = ACTIONS(1400), }, [900] = { - [sym_identifier] = ACTIONS(2858), - [anon_sym_import] = ACTIONS(2858), - [anon_sym_cimport] = ACTIONS(2858), - [anon_sym_from] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2856), - [anon_sym_print] = ACTIONS(2858), - [anon_sym_assert] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_del] = ACTIONS(2858), - [anon_sym_raise] = ACTIONS(2858), - [anon_sym_pass] = ACTIONS(2858), - [anon_sym_break] = ACTIONS(2858), - [anon_sym_continue] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_else] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2858), - [anon_sym_async] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_try] = ACTIONS(2858), - [anon_sym_except_STAR] = ACTIONS(2856), - [anon_sym_finally] = ACTIONS(2858), - [anon_sym_with] = ACTIONS(2858), - [anon_sym_def] = ACTIONS(2858), - [anon_sym_global] = ACTIONS(2858), - [anon_sym_nonlocal] = ACTIONS(2858), - [anon_sym_exec] = ACTIONS(2858), - [anon_sym_type] = ACTIONS(2858), - [anon_sym_class] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2856), - [anon_sym_AT] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2856), - [anon_sym_not] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_lambda] = ACTIONS(2858), - [anon_sym_yield] = ACTIONS(2858), - [sym_ellipsis] = ACTIONS(2856), - [anon_sym_None] = ACTIONS(2858), - [sym_integer] = ACTIONS(2858), - [sym_float] = ACTIONS(2856), - [anon_sym_await] = ACTIONS(2858), - [anon_sym_api] = ACTIONS(2858), - [sym_true] = ACTIONS(2858), - [sym_false] = ACTIONS(2858), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2858), - [anon_sym_include] = ACTIONS(2858), - [anon_sym_DEF] = ACTIONS(2858), - [anon_sym_cdef] = ACTIONS(2858), - [anon_sym_cpdef] = ACTIONS(2858), - [anon_sym_new] = ACTIONS(2858), - [anon_sym_ctypedef] = ACTIONS(2858), - [anon_sym_public] = ACTIONS(2858), - [anon_sym_packed] = ACTIONS(2858), - [anon_sym_inline] = ACTIONS(2858), - [anon_sym_readonly] = ACTIONS(2858), - [anon_sym_sizeof] = ACTIONS(2858), - [sym__dedent] = ACTIONS(2856), - [sym_string_start] = ACTIONS(2856), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [901] = { - [sym_identifier] = ACTIONS(1379), - [anon_sym_import] = ACTIONS(1379), - [anon_sym_cimport] = ACTIONS(1379), - [anon_sym_from] = ACTIONS(1379), - [anon_sym_LPAREN] = ACTIONS(1381), - [anon_sym_STAR] = ACTIONS(1381), - [anon_sym_print] = ACTIONS(1379), - [anon_sym_assert] = ACTIONS(1379), - [anon_sym_return] = ACTIONS(1379), - [anon_sym_del] = ACTIONS(1379), - [anon_sym_raise] = ACTIONS(1379), - [anon_sym_pass] = ACTIONS(1379), - [anon_sym_break] = ACTIONS(1379), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_else] = ACTIONS(1379), - [anon_sym_match] = ACTIONS(1379), - [anon_sym_async] = ACTIONS(1379), - [anon_sym_for] = ACTIONS(1379), - [anon_sym_while] = ACTIONS(1379), - [anon_sym_try] = ACTIONS(1379), - [anon_sym_except] = ACTIONS(1379), - [anon_sym_finally] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(1379), - [anon_sym_global] = ACTIONS(1379), - [anon_sym_nonlocal] = ACTIONS(1379), - [anon_sym_exec] = ACTIONS(1379), - [anon_sym_type] = ACTIONS(1379), - [anon_sym_class] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_AT] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(1381), - [anon_sym_not] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(1381), - [anon_sym_lambda] = ACTIONS(1379), - [anon_sym_yield] = ACTIONS(1379), - [sym_ellipsis] = ACTIONS(1381), - [anon_sym_None] = ACTIONS(1379), - [sym_integer] = ACTIONS(1379), - [sym_float] = ACTIONS(1381), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_api] = ACTIONS(1379), - [sym_true] = ACTIONS(1379), - [sym_false] = ACTIONS(1379), + [sym_identifier] = ACTIONS(2899), + [anon_sym_import] = ACTIONS(2899), + [anon_sym_cimport] = ACTIONS(2899), + [anon_sym_from] = ACTIONS(2899), + [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2901), + [anon_sym_print] = ACTIONS(2899), + [anon_sym_assert] = ACTIONS(2899), + [anon_sym_return] = ACTIONS(2899), + [anon_sym_del] = ACTIONS(2899), + [anon_sym_raise] = ACTIONS(2899), + [anon_sym_pass] = ACTIONS(2899), + [anon_sym_break] = ACTIONS(2899), + [anon_sym_continue] = ACTIONS(2899), + [anon_sym_if] = ACTIONS(2899), + [anon_sym_else] = ACTIONS(2899), + [anon_sym_match] = ACTIONS(2899), + [anon_sym_async] = ACTIONS(2899), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_while] = ACTIONS(2899), + [anon_sym_try] = ACTIONS(2899), + [anon_sym_except] = ACTIONS(2899), + [anon_sym_finally] = ACTIONS(2899), + [anon_sym_with] = ACTIONS(2899), + [anon_sym_def] = ACTIONS(2899), + [anon_sym_global] = ACTIONS(2899), + [anon_sym_nonlocal] = ACTIONS(2899), + [anon_sym_exec] = ACTIONS(2899), + [anon_sym_type] = ACTIONS(2899), + [anon_sym_class] = ACTIONS(2899), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_AT] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_PLUS] = ACTIONS(2901), + [anon_sym_not] = ACTIONS(2899), + [anon_sym_AMP] = ACTIONS(2901), + [anon_sym_TILDE] = ACTIONS(2901), + [anon_sym_LT] = ACTIONS(2901), + [anon_sym_lambda] = ACTIONS(2899), + [anon_sym_yield] = ACTIONS(2899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2901), + [anon_sym_None] = ACTIONS(2899), + [sym_integer] = ACTIONS(2899), + [sym_float] = ACTIONS(2901), + [anon_sym_await] = ACTIONS(2899), + [anon_sym_api] = ACTIONS(2899), + [sym_true] = ACTIONS(2899), + [sym_false] = ACTIONS(2899), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1379), - [anon_sym_include] = ACTIONS(1379), - [anon_sym_DEF] = ACTIONS(1379), - [anon_sym_cdef] = ACTIONS(1379), - [anon_sym_cpdef] = ACTIONS(1379), - [anon_sym_new] = ACTIONS(1379), - [anon_sym_ctypedef] = ACTIONS(1379), - [anon_sym_public] = ACTIONS(1379), - [anon_sym_packed] = ACTIONS(1379), - [anon_sym_inline] = ACTIONS(1379), - [anon_sym_readonly] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1379), - [sym__dedent] = ACTIONS(1381), - [sym_string_start] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(2899), + [anon_sym_include] = ACTIONS(2899), + [anon_sym_DEF] = ACTIONS(2899), + [anon_sym_cdef] = ACTIONS(2899), + [anon_sym_cpdef] = ACTIONS(2899), + [anon_sym_new] = ACTIONS(2899), + [anon_sym_ctypedef] = ACTIONS(2899), + [anon_sym_public] = ACTIONS(2899), + [anon_sym_packed] = ACTIONS(2899), + [anon_sym_inline] = ACTIONS(2899), + [anon_sym_readonly] = ACTIONS(2899), + [anon_sym_sizeof] = ACTIONS(2899), + [sym__dedent] = ACTIONS(2901), + [sym_string_start] = ACTIONS(2901), }, [902] = { - [sym_identifier] = ACTIONS(1371), - [anon_sym_import] = ACTIONS(1371), - [anon_sym_cimport] = ACTIONS(1371), - [anon_sym_from] = ACTIONS(1371), - [anon_sym_LPAREN] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1373), - [anon_sym_print] = ACTIONS(1371), - [anon_sym_assert] = ACTIONS(1371), - [anon_sym_return] = ACTIONS(1371), - [anon_sym_del] = ACTIONS(1371), - [anon_sym_raise] = ACTIONS(1371), - [anon_sym_pass] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(1371), - [anon_sym_continue] = ACTIONS(1371), - [anon_sym_if] = ACTIONS(1371), - [anon_sym_else] = ACTIONS(1371), - [anon_sym_match] = ACTIONS(1371), - [anon_sym_async] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1371), - [anon_sym_while] = ACTIONS(1371), - [anon_sym_try] = ACTIONS(1371), - [anon_sym_except_STAR] = ACTIONS(1373), - [anon_sym_finally] = ACTIONS(1371), - [anon_sym_with] = ACTIONS(1371), - [anon_sym_def] = ACTIONS(1371), - [anon_sym_global] = ACTIONS(1371), - [anon_sym_nonlocal] = ACTIONS(1371), - [anon_sym_exec] = ACTIONS(1371), - [anon_sym_type] = ACTIONS(1371), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1373), - [anon_sym_AT] = ACTIONS(1373), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_not] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_LT] = ACTIONS(1373), - [anon_sym_lambda] = ACTIONS(1371), - [anon_sym_yield] = ACTIONS(1371), - [sym_ellipsis] = ACTIONS(1373), - [anon_sym_None] = ACTIONS(1371), - [sym_integer] = ACTIONS(1371), - [sym_float] = ACTIONS(1373), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_api] = ACTIONS(1371), - [sym_true] = ACTIONS(1371), - [sym_false] = ACTIONS(1371), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1371), - [anon_sym_include] = ACTIONS(1371), - [anon_sym_DEF] = ACTIONS(1371), - [anon_sym_cdef] = ACTIONS(1371), - [anon_sym_cpdef] = ACTIONS(1371), - [anon_sym_new] = ACTIONS(1371), - [anon_sym_ctypedef] = ACTIONS(1371), - [anon_sym_public] = ACTIONS(1371), - [anon_sym_packed] = ACTIONS(1371), - [anon_sym_inline] = ACTIONS(1371), - [anon_sym_readonly] = ACTIONS(1371), - [anon_sym_sizeof] = ACTIONS(1371), - [sym__dedent] = ACTIONS(1373), - [sym_string_start] = ACTIONS(1373), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [903] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_dictionary_splat] = STATE(5105), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(4281), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_pair] = STATE(5105), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1110), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(2864), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [ts_builtin_sym_end] = ACTIONS(1384), + [sym_identifier] = ACTIONS(1382), + [anon_sym_import] = ACTIONS(1382), + [anon_sym_cimport] = ACTIONS(1382), + [anon_sym_from] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_print] = ACTIONS(1382), + [anon_sym_assert] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_del] = ACTIONS(1382), + [anon_sym_raise] = ACTIONS(1382), + [anon_sym_pass] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1382), + [anon_sym_match] = ACTIONS(1382), + [anon_sym_async] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_except] = ACTIONS(1382), + [anon_sym_finally] = ACTIONS(1382), + [anon_sym_with] = ACTIONS(1382), + [anon_sym_def] = ACTIONS(1382), + [anon_sym_global] = ACTIONS(1382), + [anon_sym_nonlocal] = ACTIONS(1382), + [anon_sym_exec] = ACTIONS(1382), + [anon_sym_type] = ACTIONS(1382), + [anon_sym_class] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1384), + [anon_sym_AT] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_lambda] = ACTIONS(1382), + [anon_sym_yield] = ACTIONS(1382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1384), + [anon_sym_None] = ACTIONS(1382), + [sym_integer] = ACTIONS(1382), + [sym_float] = ACTIONS(1384), + [anon_sym_await] = ACTIONS(1382), + [anon_sym_api] = ACTIONS(1382), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_property] = ACTIONS(1382), + [anon_sym_include] = ACTIONS(1382), + [anon_sym_DEF] = ACTIONS(1382), + [anon_sym_cdef] = ACTIONS(1382), + [anon_sym_cpdef] = ACTIONS(1382), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_ctypedef] = ACTIONS(1382), + [anon_sym_public] = ACTIONS(1382), + [anon_sym_packed] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym_readonly] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1382), + [sym_string_start] = ACTIONS(1384), }, [904] = { - [sym_identifier] = ACTIONS(2866), - [anon_sym_import] = ACTIONS(2866), - [anon_sym_cimport] = ACTIONS(2866), - [anon_sym_from] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym_STAR] = ACTIONS(2868), - [anon_sym_print] = ACTIONS(2866), - [anon_sym_assert] = ACTIONS(2866), - [anon_sym_return] = ACTIONS(2866), - [anon_sym_del] = ACTIONS(2866), - [anon_sym_raise] = ACTIONS(2866), - [anon_sym_pass] = ACTIONS(2866), - [anon_sym_break] = ACTIONS(2866), - [anon_sym_continue] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2866), - [anon_sym_else] = ACTIONS(2866), - [anon_sym_match] = ACTIONS(2866), - [anon_sym_async] = ACTIONS(2866), - [anon_sym_for] = ACTIONS(2866), - [anon_sym_while] = ACTIONS(2866), - [anon_sym_try] = ACTIONS(2866), - [anon_sym_except] = ACTIONS(2866), - [anon_sym_finally] = ACTIONS(2866), - [anon_sym_with] = ACTIONS(2866), - [anon_sym_def] = ACTIONS(2866), - [anon_sym_global] = ACTIONS(2866), - [anon_sym_nonlocal] = ACTIONS(2866), - [anon_sym_exec] = ACTIONS(2866), - [anon_sym_type] = ACTIONS(2866), - [anon_sym_class] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2868), - [anon_sym_AT] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2868), - [anon_sym_PLUS] = ACTIONS(2868), - [anon_sym_not] = ACTIONS(2866), - [anon_sym_AMP] = ACTIONS(2868), - [anon_sym_TILDE] = ACTIONS(2868), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_lambda] = ACTIONS(2866), - [anon_sym_yield] = ACTIONS(2866), - [sym_ellipsis] = ACTIONS(2868), - [anon_sym_None] = ACTIONS(2866), - [sym_integer] = ACTIONS(2866), - [sym_float] = ACTIONS(2868), - [anon_sym_await] = ACTIONS(2866), - [anon_sym_api] = ACTIONS(2866), - [sym_true] = ACTIONS(2866), - [sym_false] = ACTIONS(2866), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2905), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2866), - [anon_sym_include] = ACTIONS(2866), - [anon_sym_DEF] = ACTIONS(2866), - [anon_sym_cdef] = ACTIONS(2866), - [anon_sym_cpdef] = ACTIONS(2866), - [anon_sym_new] = ACTIONS(2866), - [anon_sym_ctypedef] = ACTIONS(2866), - [anon_sym_public] = ACTIONS(2866), - [anon_sym_packed] = ACTIONS(2866), - [anon_sym_inline] = ACTIONS(2866), - [anon_sym_readonly] = ACTIONS(2866), - [anon_sym_sizeof] = ACTIONS(2866), - [sym__dedent] = ACTIONS(2868), - [sym_string_start] = ACTIONS(2868), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [905] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_dictionary_splat] = STATE(5105), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(4281), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_pair] = STATE(5105), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1110), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_identifier] = ACTIONS(1386), + [anon_sym_import] = ACTIONS(1386), + [anon_sym_cimport] = ACTIONS(1386), + [anon_sym_from] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_print] = ACTIONS(1386), + [anon_sym_assert] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_del] = ACTIONS(1386), + [anon_sym_raise] = ACTIONS(1386), + [anon_sym_pass] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_match] = ACTIONS(1386), + [anon_sym_async] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_try] = ACTIONS(1386), + [anon_sym_except] = ACTIONS(1386), + [anon_sym_finally] = ACTIONS(1386), + [anon_sym_with] = ACTIONS(1386), + [anon_sym_def] = ACTIONS(1386), + [anon_sym_global] = ACTIONS(1386), + [anon_sym_nonlocal] = ACTIONS(1386), + [anon_sym_exec] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_class] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_AT] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_not] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_lambda] = ACTIONS(1386), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + [anon_sym_None] = ACTIONS(1386), + [sym_integer] = ACTIONS(1386), + [sym_float] = ACTIONS(1388), + [anon_sym_await] = ACTIONS(1386), + [anon_sym_api] = ACTIONS(1386), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_property] = ACTIONS(1386), + [anon_sym_include] = ACTIONS(1386), + [anon_sym_DEF] = ACTIONS(1386), + [anon_sym_cdef] = ACTIONS(1386), + [anon_sym_cpdef] = ACTIONS(1386), + [anon_sym_new] = ACTIONS(1386), + [anon_sym_ctypedef] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_packed] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1386), + [sym_string_start] = ACTIONS(1388), }, [906] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_dictionary_splat] = STATE(5105), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(4281), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_pair] = STATE(5105), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1110), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(2872), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [ts_builtin_sym_end] = ACTIONS(1396), + [sym_identifier] = ACTIONS(1394), + [anon_sym_import] = ACTIONS(1394), + [anon_sym_cimport] = ACTIONS(1394), + [anon_sym_from] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_print] = ACTIONS(1394), + [anon_sym_assert] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_del] = ACTIONS(1394), + [anon_sym_raise] = ACTIONS(1394), + [anon_sym_pass] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_async] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_try] = ACTIONS(1394), + [anon_sym_except] = ACTIONS(1394), + [anon_sym_finally] = ACTIONS(1394), + [anon_sym_with] = ACTIONS(1394), + [anon_sym_def] = ACTIONS(1394), + [anon_sym_global] = ACTIONS(1394), + [anon_sym_nonlocal] = ACTIONS(1394), + [anon_sym_exec] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_class] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1396), + [anon_sym_AT] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_not] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_lambda] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1396), + [anon_sym_None] = ACTIONS(1394), + [sym_integer] = ACTIONS(1394), + [sym_float] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_api] = ACTIONS(1394), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_property] = ACTIONS(1394), + [anon_sym_include] = ACTIONS(1394), + [anon_sym_DEF] = ACTIONS(1394), + [anon_sym_cdef] = ACTIONS(1394), + [anon_sym_cpdef] = ACTIONS(1394), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_ctypedef] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_packed] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_sizeof] = ACTIONS(1394), + [sym_string_start] = ACTIONS(1396), }, [907] = { - [sym_identifier] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(1375), - [anon_sym_cimport] = ACTIONS(1375), - [anon_sym_from] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_print] = ACTIONS(1375), - [anon_sym_assert] = ACTIONS(1375), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_del] = ACTIONS(1375), - [anon_sym_raise] = ACTIONS(1375), - [anon_sym_pass] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1375), - [anon_sym_continue] = ACTIONS(1375), - [anon_sym_if] = ACTIONS(1375), - [anon_sym_else] = ACTIONS(1375), - [anon_sym_match] = ACTIONS(1375), - [anon_sym_async] = ACTIONS(1375), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_while] = ACTIONS(1375), - [anon_sym_try] = ACTIONS(1375), - [anon_sym_except_STAR] = ACTIONS(1377), - [anon_sym_finally] = ACTIONS(1375), - [anon_sym_with] = ACTIONS(1375), - [anon_sym_def] = ACTIONS(1375), - [anon_sym_global] = ACTIONS(1375), - [anon_sym_nonlocal] = ACTIONS(1375), - [anon_sym_exec] = ACTIONS(1375), - [anon_sym_type] = ACTIONS(1375), - [anon_sym_class] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1377), - [anon_sym_AT] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_not] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_lambda] = ACTIONS(1375), - [anon_sym_yield] = ACTIONS(1375), - [sym_ellipsis] = ACTIONS(1377), - [anon_sym_None] = ACTIONS(1375), - [sym_integer] = ACTIONS(1375), - [sym_float] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(1375), - [anon_sym_api] = ACTIONS(1375), - [sym_true] = ACTIONS(1375), - [sym_false] = ACTIONS(1375), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3838), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_COMMA] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2909), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2907), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1375), - [anon_sym_include] = ACTIONS(1375), - [anon_sym_DEF] = ACTIONS(1375), - [anon_sym_cdef] = ACTIONS(1375), - [anon_sym_cpdef] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1375), - [anon_sym_ctypedef] = ACTIONS(1375), - [anon_sym_public] = ACTIONS(1375), - [anon_sym_packed] = ACTIONS(1375), - [anon_sym_inline] = ACTIONS(1375), - [anon_sym_readonly] = ACTIONS(1375), - [anon_sym_sizeof] = ACTIONS(1375), - [sym__dedent] = ACTIONS(1377), - [sym_string_start] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [908] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_dictionary_splat] = STATE(5105), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(4281), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_pair] = STATE(5105), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1110), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [909] = { - [sym_identifier] = ACTIONS(1387), - [anon_sym_import] = ACTIONS(1387), - [anon_sym_cimport] = ACTIONS(1387), - [anon_sym_from] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_print] = ACTIONS(1387), - [anon_sym_assert] = ACTIONS(1387), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_del] = ACTIONS(1387), - [anon_sym_raise] = ACTIONS(1387), - [anon_sym_pass] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1387), - [anon_sym_continue] = ACTIONS(1387), - [anon_sym_if] = ACTIONS(1387), - [anon_sym_else] = ACTIONS(1387), - [anon_sym_match] = ACTIONS(1387), - [anon_sym_async] = ACTIONS(1387), - [anon_sym_for] = ACTIONS(1387), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_try] = ACTIONS(1387), - [anon_sym_except_STAR] = ACTIONS(1389), - [anon_sym_finally] = ACTIONS(1387), - [anon_sym_with] = ACTIONS(1387), - [anon_sym_def] = ACTIONS(1387), - [anon_sym_global] = ACTIONS(1387), - [anon_sym_nonlocal] = ACTIONS(1387), - [anon_sym_exec] = ACTIONS(1387), - [anon_sym_type] = ACTIONS(1387), - [anon_sym_class] = ACTIONS(1387), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_AT] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_not] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1389), - [anon_sym_lambda] = ACTIONS(1387), - [anon_sym_yield] = ACTIONS(1387), - [sym_ellipsis] = ACTIONS(1389), - [anon_sym_None] = ACTIONS(1387), - [sym_integer] = ACTIONS(1387), - [sym_float] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_api] = ACTIONS(1387), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2913), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1387), - [anon_sym_include] = ACTIONS(1387), - [anon_sym_DEF] = ACTIONS(1387), - [anon_sym_cdef] = ACTIONS(1387), - [anon_sym_cpdef] = ACTIONS(1387), - [anon_sym_new] = ACTIONS(1387), - [anon_sym_ctypedef] = ACTIONS(1387), - [anon_sym_public] = ACTIONS(1387), - [anon_sym_packed] = ACTIONS(1387), - [anon_sym_inline] = ACTIONS(1387), - [anon_sym_readonly] = ACTIONS(1387), - [anon_sym_sizeof] = ACTIONS(1387), - [sym__dedent] = ACTIONS(1389), - [sym_string_start] = ACTIONS(1389), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), }, [910] = { - [sym_named_expression] = STATE(2512), - [sym__named_expression_lhs] = STATE(5443), - [sym_expression_list] = STATE(4976), - [sym_list_splat_pattern] = STATE(2490), - [sym_as_pattern] = STATE(2512), - [sym_expression] = STATE(3954), - [sym_primary_expression] = STATE(1967), - [sym_not_operator] = STATE(2512), - [sym_boolean_operator] = STATE(2512), - [sym_binary_operator] = STATE(2509), - [sym_unary_operator] = STATE(2509), - [sym_comparison_operator] = STATE(2512), - [sym_lambda] = STATE(2512), - [sym_attribute] = STATE(2509), - [sym_subscript] = STATE(2509), - [sym_call] = STATE(2509), - [sym_list] = STATE(2509), - [sym_set] = STATE(2509), - [sym_tuple] = STATE(2509), - [sym_dictionary] = STATE(2509), - [sym_list_comprehension] = STATE(2509), - [sym_dictionary_comprehension] = STATE(2509), - [sym_set_comprehension] = STATE(2509), - [sym_generator_expression] = STATE(2509), - [sym_parenthesized_expression] = STATE(2509), - [sym_conditional_expression] = STATE(2512), - [sym_concatenated_string] = STATE(2509), - [sym_string] = STATE(2110), - [sym_none] = STATE(2509), - [sym_await] = STATE(2509), - [sym_new_expression] = STATE(2512), - [sym_sizeof_expression] = STATE(2509), - [sym_cast_expression] = STATE(2509), - [sym_identifier] = ACTIONS(2742), - [anon_sym_from] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_print] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_exec] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_RBRACK] = ACTIONS(2560), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_not] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2212), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_lambda] = ACTIONS(2400), - [sym_ellipsis] = ACTIONS(2218), - [anon_sym_None] = ACTIONS(2220), - [sym_integer] = ACTIONS(2202), - [sym_float] = ACTIONS(2218), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_api] = ACTIONS(2390), - [sym_true] = ACTIONS(2202), - [sym_false] = ACTIONS(2202), + [sym_identifier] = ACTIONS(2915), + [anon_sym_import] = ACTIONS(2915), + [anon_sym_cimport] = ACTIONS(2915), + [anon_sym_from] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2917), + [anon_sym_STAR] = ACTIONS(2917), + [anon_sym_print] = ACTIONS(2915), + [anon_sym_assert] = ACTIONS(2915), + [anon_sym_return] = ACTIONS(2915), + [anon_sym_del] = ACTIONS(2915), + [anon_sym_raise] = ACTIONS(2915), + [anon_sym_pass] = ACTIONS(2915), + [anon_sym_break] = ACTIONS(2915), + [anon_sym_continue] = ACTIONS(2915), + [anon_sym_if] = ACTIONS(2915), + [anon_sym_else] = ACTIONS(2915), + [anon_sym_match] = ACTIONS(2915), + [anon_sym_async] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2915), + [anon_sym_while] = ACTIONS(2915), + [anon_sym_try] = ACTIONS(2915), + [anon_sym_except] = ACTIONS(2915), + [anon_sym_finally] = ACTIONS(2915), + [anon_sym_with] = ACTIONS(2915), + [anon_sym_def] = ACTIONS(2915), + [anon_sym_global] = ACTIONS(2915), + [anon_sym_nonlocal] = ACTIONS(2915), + [anon_sym_exec] = ACTIONS(2915), + [anon_sym_type] = ACTIONS(2915), + [anon_sym_class] = ACTIONS(2915), + [anon_sym_LBRACK] = ACTIONS(2917), + [anon_sym_AT] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(2917), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_not] = ACTIONS(2915), + [anon_sym_AMP] = ACTIONS(2917), + [anon_sym_TILDE] = ACTIONS(2917), + [anon_sym_LT] = ACTIONS(2917), + [anon_sym_lambda] = ACTIONS(2915), + [anon_sym_yield] = ACTIONS(2915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2917), + [anon_sym_None] = ACTIONS(2915), + [sym_integer] = ACTIONS(2915), + [sym_float] = ACTIONS(2917), + [anon_sym_await] = ACTIONS(2915), + [anon_sym_api] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_sizeof] = ACTIONS(2224), - [sym_string_start] = ACTIONS(2226), + [anon_sym_property] = ACTIONS(2915), + [anon_sym_include] = ACTIONS(2915), + [anon_sym_DEF] = ACTIONS(2915), + [anon_sym_cdef] = ACTIONS(2915), + [anon_sym_cpdef] = ACTIONS(2915), + [anon_sym_new] = ACTIONS(2915), + [anon_sym_ctypedef] = ACTIONS(2915), + [anon_sym_public] = ACTIONS(2915), + [anon_sym_packed] = ACTIONS(2915), + [anon_sym_inline] = ACTIONS(2915), + [anon_sym_readonly] = ACTIONS(2915), + [anon_sym_sizeof] = ACTIONS(2915), + [sym__dedent] = ACTIONS(2917), + [sym_string_start] = ACTIONS(2917), }, [911] = { - [sym_identifier] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(1383), - [anon_sym_cimport] = ACTIONS(1383), - [anon_sym_from] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_print] = ACTIONS(1383), - [anon_sym_assert] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(1383), - [anon_sym_del] = ACTIONS(1383), - [anon_sym_raise] = ACTIONS(1383), - [anon_sym_pass] = ACTIONS(1383), - [anon_sym_break] = ACTIONS(1383), - [anon_sym_continue] = ACTIONS(1383), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_else] = ACTIONS(1383), - [anon_sym_match] = ACTIONS(1383), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_for] = ACTIONS(1383), - [anon_sym_while] = ACTIONS(1383), - [anon_sym_try] = ACTIONS(1383), - [anon_sym_except_STAR] = ACTIONS(1385), - [anon_sym_finally] = ACTIONS(1383), - [anon_sym_with] = ACTIONS(1383), - [anon_sym_def] = ACTIONS(1383), - [anon_sym_global] = ACTIONS(1383), - [anon_sym_nonlocal] = ACTIONS(1383), - [anon_sym_exec] = ACTIONS(1383), - [anon_sym_type] = ACTIONS(1383), - [anon_sym_class] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_AT] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_not] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT] = ACTIONS(1385), - [anon_sym_lambda] = ACTIONS(1383), - [anon_sym_yield] = ACTIONS(1383), - [sym_ellipsis] = ACTIONS(1385), - [anon_sym_None] = ACTIONS(1383), - [sym_integer] = ACTIONS(1383), - [sym_float] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1383), - [anon_sym_api] = ACTIONS(1383), - [sym_true] = ACTIONS(1383), - [sym_false] = ACTIONS(1383), + [sym_identifier] = ACTIONS(2919), + [anon_sym_import] = ACTIONS(2919), + [anon_sym_cimport] = ACTIONS(2919), + [anon_sym_from] = ACTIONS(2919), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2921), + [anon_sym_print] = ACTIONS(2919), + [anon_sym_assert] = ACTIONS(2919), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_del] = ACTIONS(2919), + [anon_sym_raise] = ACTIONS(2919), + [anon_sym_pass] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2919), + [anon_sym_continue] = ACTIONS(2919), + [anon_sym_if] = ACTIONS(2919), + [anon_sym_else] = ACTIONS(2919), + [anon_sym_match] = ACTIONS(2919), + [anon_sym_async] = ACTIONS(2919), + [anon_sym_for] = ACTIONS(2919), + [anon_sym_while] = ACTIONS(2919), + [anon_sym_try] = ACTIONS(2919), + [anon_sym_except] = ACTIONS(2919), + [anon_sym_finally] = ACTIONS(2919), + [anon_sym_with] = ACTIONS(2919), + [anon_sym_def] = ACTIONS(2919), + [anon_sym_global] = ACTIONS(2919), + [anon_sym_nonlocal] = ACTIONS(2919), + [anon_sym_exec] = ACTIONS(2919), + [anon_sym_type] = ACTIONS(2919), + [anon_sym_class] = ACTIONS(2919), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_AT] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_not] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2921), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_lambda] = ACTIONS(2919), + [anon_sym_yield] = ACTIONS(2919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2921), + [anon_sym_None] = ACTIONS(2919), + [sym_integer] = ACTIONS(2919), + [sym_float] = ACTIONS(2921), + [anon_sym_await] = ACTIONS(2919), + [anon_sym_api] = ACTIONS(2919), + [sym_true] = ACTIONS(2919), + [sym_false] = ACTIONS(2919), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1383), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_DEF] = ACTIONS(1383), - [anon_sym_cdef] = ACTIONS(1383), - [anon_sym_cpdef] = ACTIONS(1383), - [anon_sym_new] = ACTIONS(1383), - [anon_sym_ctypedef] = ACTIONS(1383), - [anon_sym_public] = ACTIONS(1383), - [anon_sym_packed] = ACTIONS(1383), - [anon_sym_inline] = ACTIONS(1383), - [anon_sym_readonly] = ACTIONS(1383), - [anon_sym_sizeof] = ACTIONS(1383), - [sym__dedent] = ACTIONS(1385), - [sym_string_start] = ACTIONS(1385), + [anon_sym_property] = ACTIONS(2919), + [anon_sym_include] = ACTIONS(2919), + [anon_sym_DEF] = ACTIONS(2919), + [anon_sym_cdef] = ACTIONS(2919), + [anon_sym_cpdef] = ACTIONS(2919), + [anon_sym_new] = ACTIONS(2919), + [anon_sym_ctypedef] = ACTIONS(2919), + [anon_sym_public] = ACTIONS(2919), + [anon_sym_packed] = ACTIONS(2919), + [anon_sym_inline] = ACTIONS(2919), + [anon_sym_readonly] = ACTIONS(2919), + [anon_sym_sizeof] = ACTIONS(2919), + [sym__dedent] = ACTIONS(2921), + [sym_string_start] = ACTIONS(2921), }, [912] = { - [sym_named_expression] = STATE(3682), - [sym__named_expression_lhs] = STATE(5485), - [sym_list_splat] = STATE(5066), - [sym_parenthesized_list_splat] = STATE(5066), - [sym_list_splat_pattern] = STATE(2230), - [sym_as_pattern] = STATE(3682), - [sym_expression] = STATE(4105), - [sym_primary_expression] = STATE(1950), - [sym_not_operator] = STATE(3682), - [sym_boolean_operator] = STATE(3682), - [sym_binary_operator] = STATE(2179), - [sym_unary_operator] = STATE(2179), - [sym_comparison_operator] = STATE(3682), - [sym_lambda] = STATE(3682), - [sym_yield] = STATE(5066), - [sym_attribute] = STATE(2179), - [sym_subscript] = STATE(2179), - [sym_call] = STATE(2179), - [sym_list] = STATE(2179), - [sym_set] = STATE(2179), - [sym_tuple] = STATE(2179), - [sym_dictionary] = STATE(2179), - [sym_list_comprehension] = STATE(2179), - [sym_dictionary_comprehension] = STATE(2179), - [sym_set_comprehension] = STATE(2179), - [sym_generator_expression] = STATE(2179), - [sym_parenthesized_expression] = STATE(2179), - [sym_conditional_expression] = STATE(3682), - [sym_concatenated_string] = STATE(2179), - [sym_string] = STATE(1968), - [sym_none] = STATE(2179), - [sym_await] = STATE(2179), - [sym_new_expression] = STATE(3682), - [sym_sizeof_expression] = STATE(2179), - [sym_cast_expression] = STATE(2179), - [sym_identifier] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_print] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2558), - [anon_sym_async] = ACTIONS(2558), - [anon_sym_exec] = ACTIONS(2558), - [anon_sym_LBRACK] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_PLUS] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2796), - [anon_sym_AMP] = ACTIONS(2110), - [anon_sym_TILDE] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2434), - [anon_sym_lambda] = ACTIONS(2798), - [anon_sym_yield] = ACTIONS(2288), - [sym_ellipsis] = ACTIONS(2116), - [anon_sym_None] = ACTIONS(2118), - [sym_integer] = ACTIONS(2100), - [sym_float] = ACTIONS(2116), - [anon_sym_await] = ACTIONS(2562), - [anon_sym_api] = ACTIONS(2558), - [sym_true] = ACTIONS(2100), - [sym_false] = ACTIONS(2100), + [sym_identifier] = ACTIONS(2923), + [anon_sym_import] = ACTIONS(2923), + [anon_sym_cimport] = ACTIONS(2923), + [anon_sym_from] = ACTIONS(2923), + [anon_sym_LPAREN] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_print] = ACTIONS(2923), + [anon_sym_assert] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2923), + [anon_sym_del] = ACTIONS(2923), + [anon_sym_raise] = ACTIONS(2923), + [anon_sym_pass] = ACTIONS(2923), + [anon_sym_break] = ACTIONS(2923), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_else] = ACTIONS(2923), + [anon_sym_match] = ACTIONS(2923), + [anon_sym_async] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2923), + [anon_sym_while] = ACTIONS(2923), + [anon_sym_try] = ACTIONS(2923), + [anon_sym_except_STAR] = ACTIONS(2925), + [anon_sym_finally] = ACTIONS(2923), + [anon_sym_with] = ACTIONS(2923), + [anon_sym_def] = ACTIONS(2923), + [anon_sym_global] = ACTIONS(2923), + [anon_sym_nonlocal] = ACTIONS(2923), + [anon_sym_exec] = ACTIONS(2923), + [anon_sym_type] = ACTIONS(2923), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_AT] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_not] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_LT] = ACTIONS(2925), + [anon_sym_lambda] = ACTIONS(2923), + [anon_sym_yield] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2925), + [anon_sym_None] = ACTIONS(2923), + [sym_integer] = ACTIONS(2923), + [sym_float] = ACTIONS(2925), + [anon_sym_await] = ACTIONS(2923), + [anon_sym_api] = ACTIONS(2923), + [sym_true] = ACTIONS(2923), + [sym_false] = ACTIONS(2923), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2800), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_string_start] = ACTIONS(2124), + [anon_sym_property] = ACTIONS(2923), + [anon_sym_include] = ACTIONS(2923), + [anon_sym_DEF] = ACTIONS(2923), + [anon_sym_cdef] = ACTIONS(2923), + [anon_sym_cpdef] = ACTIONS(2923), + [anon_sym_new] = ACTIONS(2923), + [anon_sym_ctypedef] = ACTIONS(2923), + [anon_sym_public] = ACTIONS(2923), + [anon_sym_packed] = ACTIONS(2923), + [anon_sym_inline] = ACTIONS(2923), + [anon_sym_readonly] = ACTIONS(2923), + [anon_sym_sizeof] = ACTIONS(2923), + [sym__dedent] = ACTIONS(2925), + [sym_string_start] = ACTIONS(2925), }, [913] = { - [sym_identifier] = ACTIONS(1379), - [anon_sym_import] = ACTIONS(1379), - [anon_sym_cimport] = ACTIONS(1379), - [anon_sym_from] = ACTIONS(1379), - [anon_sym_LPAREN] = ACTIONS(1381), - [anon_sym_STAR] = ACTIONS(1381), - [anon_sym_print] = ACTIONS(1379), - [anon_sym_assert] = ACTIONS(1379), - [anon_sym_return] = ACTIONS(1379), - [anon_sym_del] = ACTIONS(1379), - [anon_sym_raise] = ACTIONS(1379), - [anon_sym_pass] = ACTIONS(1379), - [anon_sym_break] = ACTIONS(1379), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_else] = ACTIONS(1379), - [anon_sym_match] = ACTIONS(1379), - [anon_sym_async] = ACTIONS(1379), - [anon_sym_for] = ACTIONS(1379), - [anon_sym_while] = ACTIONS(1379), - [anon_sym_try] = ACTIONS(1379), - [anon_sym_except_STAR] = ACTIONS(1381), - [anon_sym_finally] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(1379), - [anon_sym_global] = ACTIONS(1379), - [anon_sym_nonlocal] = ACTIONS(1379), - [anon_sym_exec] = ACTIONS(1379), - [anon_sym_type] = ACTIONS(1379), - [anon_sym_class] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_AT] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(1381), - [anon_sym_not] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(1381), - [anon_sym_lambda] = ACTIONS(1379), - [anon_sym_yield] = ACTIONS(1379), - [sym_ellipsis] = ACTIONS(1381), - [anon_sym_None] = ACTIONS(1379), - [sym_integer] = ACTIONS(1379), - [sym_float] = ACTIONS(1381), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_api] = ACTIONS(1379), - [sym_true] = ACTIONS(1379), - [sym_false] = ACTIONS(1379), + [ts_builtin_sym_end] = ACTIONS(2901), + [sym_identifier] = ACTIONS(2899), + [anon_sym_import] = ACTIONS(2899), + [anon_sym_cimport] = ACTIONS(2899), + [anon_sym_from] = ACTIONS(2899), + [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2901), + [anon_sym_print] = ACTIONS(2899), + [anon_sym_assert] = ACTIONS(2899), + [anon_sym_return] = ACTIONS(2899), + [anon_sym_del] = ACTIONS(2899), + [anon_sym_raise] = ACTIONS(2899), + [anon_sym_pass] = ACTIONS(2899), + [anon_sym_break] = ACTIONS(2899), + [anon_sym_continue] = ACTIONS(2899), + [anon_sym_if] = ACTIONS(2899), + [anon_sym_else] = ACTIONS(2899), + [anon_sym_match] = ACTIONS(2899), + [anon_sym_async] = ACTIONS(2899), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_while] = ACTIONS(2899), + [anon_sym_try] = ACTIONS(2899), + [anon_sym_except] = ACTIONS(2899), + [anon_sym_finally] = ACTIONS(2899), + [anon_sym_with] = ACTIONS(2899), + [anon_sym_def] = ACTIONS(2899), + [anon_sym_global] = ACTIONS(2899), + [anon_sym_nonlocal] = ACTIONS(2899), + [anon_sym_exec] = ACTIONS(2899), + [anon_sym_type] = ACTIONS(2899), + [anon_sym_class] = ACTIONS(2899), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_AT] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_PLUS] = ACTIONS(2901), + [anon_sym_not] = ACTIONS(2899), + [anon_sym_AMP] = ACTIONS(2901), + [anon_sym_TILDE] = ACTIONS(2901), + [anon_sym_LT] = ACTIONS(2901), + [anon_sym_lambda] = ACTIONS(2899), + [anon_sym_yield] = ACTIONS(2899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2901), + [anon_sym_None] = ACTIONS(2899), + [sym_integer] = ACTIONS(2899), + [sym_float] = ACTIONS(2901), + [anon_sym_await] = ACTIONS(2899), + [anon_sym_api] = ACTIONS(2899), + [sym_true] = ACTIONS(2899), + [sym_false] = ACTIONS(2899), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1379), - [anon_sym_include] = ACTIONS(1379), - [anon_sym_DEF] = ACTIONS(1379), - [anon_sym_cdef] = ACTIONS(1379), - [anon_sym_cpdef] = ACTIONS(1379), - [anon_sym_new] = ACTIONS(1379), - [anon_sym_ctypedef] = ACTIONS(1379), - [anon_sym_public] = ACTIONS(1379), - [anon_sym_packed] = ACTIONS(1379), - [anon_sym_inline] = ACTIONS(1379), - [anon_sym_readonly] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1379), - [sym__dedent] = ACTIONS(1381), - [sym_string_start] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(2899), + [anon_sym_include] = ACTIONS(2899), + [anon_sym_DEF] = ACTIONS(2899), + [anon_sym_cdef] = ACTIONS(2899), + [anon_sym_cpdef] = ACTIONS(2899), + [anon_sym_new] = ACTIONS(2899), + [anon_sym_ctypedef] = ACTIONS(2899), + [anon_sym_public] = ACTIONS(2899), + [anon_sym_packed] = ACTIONS(2899), + [anon_sym_inline] = ACTIONS(2899), + [anon_sym_readonly] = ACTIONS(2899), + [anon_sym_sizeof] = ACTIONS(2899), + [sym_string_start] = ACTIONS(2901), }, [914] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_dictionary_splat] = STATE(5105), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(4281), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_pair] = STATE(5105), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1110), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(2880), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_list_splat_pattern] = STATE(1975), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3728), + [sym_primary_expression] = STATE(1927), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_attribute] = STATE(2021), + [sym_subscript] = STATE(2021), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(2825), + [anon_sym_from] = ACTIONS(2927), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(576), + [anon_sym_match] = ACTIONS(576), + [anon_sym_async] = ACTIONS(576), + [anon_sym_exec] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(598), + [anon_sym_api] = ACTIONS(576), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(2825), + [sym_string_start] = ACTIONS(107), }, [915] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_dictionary_splat] = STATE(5105), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(4281), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_pair] = STATE(5105), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1110), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1398), + [anon_sym_import] = ACTIONS(1398), + [anon_sym_cimport] = ACTIONS(1398), + [anon_sym_from] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_print] = ACTIONS(1398), + [anon_sym_assert] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_del] = ACTIONS(1398), + [anon_sym_raise] = ACTIONS(1398), + [anon_sym_pass] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_try] = ACTIONS(1398), + [anon_sym_except_STAR] = ACTIONS(1400), + [anon_sym_finally] = ACTIONS(1398), + [anon_sym_with] = ACTIONS(1398), + [anon_sym_def] = ACTIONS(1398), + [anon_sym_global] = ACTIONS(1398), + [anon_sym_nonlocal] = ACTIONS(1398), + [anon_sym_exec] = ACTIONS(1398), + [anon_sym_type] = ACTIONS(1398), + [anon_sym_class] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_not] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_lambda] = ACTIONS(1398), + [anon_sym_yield] = ACTIONS(1398), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1400), + [anon_sym_None] = ACTIONS(1398), + [sym_integer] = ACTIONS(1398), + [sym_float] = ACTIONS(1400), + [anon_sym_await] = ACTIONS(1398), + [anon_sym_api] = ACTIONS(1398), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_property] = ACTIONS(1398), + [anon_sym_include] = ACTIONS(1398), + [anon_sym_DEF] = ACTIONS(1398), + [anon_sym_cdef] = ACTIONS(1398), + [anon_sym_cpdef] = ACTIONS(1398), + [anon_sym_new] = ACTIONS(1398), + [anon_sym_ctypedef] = ACTIONS(1398), + [anon_sym_public] = ACTIONS(1398), + [anon_sym_packed] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym_readonly] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1398), + [sym_string_start] = ACTIONS(1400), }, [916] = { - [sym_named_expression] = STATE(2524), - [sym__named_expression_lhs] = STATE(5288), - [sym_expression_list] = STATE(5087), - [sym_list_splat_pattern] = STATE(2556), - [sym_as_pattern] = STATE(2524), - [sym_expression] = STATE(3851), - [sym_primary_expression] = STATE(2043), - [sym_not_operator] = STATE(2524), - [sym_boolean_operator] = STATE(2524), - [sym_binary_operator] = STATE(2521), - [sym_unary_operator] = STATE(2521), - [sym_comparison_operator] = STATE(2524), - [sym_lambda] = STATE(2524), - [sym_attribute] = STATE(2521), - [sym_subscript] = STATE(2521), - [sym_call] = STATE(2521), - [sym_list] = STATE(2521), - [sym_set] = STATE(2521), - [sym_tuple] = STATE(2521), - [sym_dictionary] = STATE(2521), - [sym_list_comprehension] = STATE(2521), - [sym_dictionary_comprehension] = STATE(2521), - [sym_set_comprehension] = STATE(2521), - [sym_generator_expression] = STATE(2521), - [sym_parenthesized_expression] = STATE(2521), - [sym_conditional_expression] = STATE(2524), - [sym_concatenated_string] = STATE(2521), - [sym_string] = STATE(2171), - [sym_none] = STATE(2521), - [sym_await] = STATE(2521), - [sym_new_expression] = STATE(2524), - [sym_sizeof_expression] = STATE(2521), - [sym_cast_expression] = STATE(2521), - [sym_identifier] = ACTIONS(2778), - [anon_sym_from] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(2560), - [anon_sym_COMMA] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(2886), - [anon_sym_print] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_async] = ACTIONS(2784), - [anon_sym_exec] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_not] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_lambda] = ACTIONS(1287), - [sym_ellipsis] = ACTIONS(1289), - [anon_sym_None] = ACTIONS(1291), - [sym_integer] = ACTIONS(1293), - [sym_float] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(2786), - [anon_sym_api] = ACTIONS(2784), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), + [ts_builtin_sym_end] = ACTIONS(1392), + [sym_identifier] = ACTIONS(1390), + [anon_sym_import] = ACTIONS(1390), + [anon_sym_cimport] = ACTIONS(1390), + [anon_sym_from] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_print] = ACTIONS(1390), + [anon_sym_assert] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_del] = ACTIONS(1390), + [anon_sym_raise] = ACTIONS(1390), + [anon_sym_pass] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_match] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1390), + [anon_sym_except_STAR] = ACTIONS(1392), + [anon_sym_finally] = ACTIONS(1390), + [anon_sym_with] = ACTIONS(1390), + [anon_sym_def] = ACTIONS(1390), + [anon_sym_global] = ACTIONS(1390), + [anon_sym_nonlocal] = ACTIONS(1390), + [anon_sym_exec] = ACTIONS(1390), + [anon_sym_type] = ACTIONS(1390), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1392), + [anon_sym_AT] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1392), + [anon_sym_lambda] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1392), + [anon_sym_None] = ACTIONS(1390), + [sym_integer] = ACTIONS(1390), + [sym_float] = ACTIONS(1392), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_api] = ACTIONS(1390), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1297), - [anon_sym_sizeof] = ACTIONS(1299), - [sym_string_start] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1390), + [anon_sym_include] = ACTIONS(1390), + [anon_sym_DEF] = ACTIONS(1390), + [anon_sym_cdef] = ACTIONS(1390), + [anon_sym_cpdef] = ACTIONS(1390), + [anon_sym_new] = ACTIONS(1390), + [anon_sym_ctypedef] = ACTIONS(1390), + [anon_sym_public] = ACTIONS(1390), + [anon_sym_packed] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym_readonly] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1390), + [sym_string_start] = ACTIONS(1392), }, [917] = { - [sym_named_expression] = STATE(3682), - [sym__named_expression_lhs] = STATE(5332), - [sym_list_splat_pattern] = STATE(2230), - [sym_as_pattern] = STATE(3682), - [sym_expression] = STATE(3709), - [sym_primary_expression] = STATE(1950), - [sym_not_operator] = STATE(3682), - [sym_boolean_operator] = STATE(3682), - [sym_binary_operator] = STATE(2179), - [sym_unary_operator] = STATE(2179), - [sym_comparison_operator] = STATE(3682), - [sym_lambda] = STATE(3682), - [sym_attribute] = STATE(2179), - [sym_subscript] = STATE(2179), - [sym_call] = STATE(2179), - [sym_list] = STATE(2179), - [sym_set] = STATE(2179), - [sym_tuple] = STATE(2179), - [sym_dictionary] = STATE(2179), - [sym_list_comprehension] = STATE(2179), - [sym_dictionary_comprehension] = STATE(2179), - [sym_set_comprehension] = STATE(2179), - [sym_generator_expression] = STATE(2179), - [sym_parenthesized_expression] = STATE(2179), - [sym_conditional_expression] = STATE(3682), - [sym_concatenated_string] = STATE(2179), - [sym_string] = STATE(1968), - [sym_none] = STATE(2179), - [sym_await] = STATE(2179), - [sym_new_expression] = STATE(3682), - [sym_sizeof_expression] = STATE(2179), - [sym_cast_expression] = STATE(2179), - [sym_identifier] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_STAR] = ACTIONS(2426), - [anon_sym_print] = ACTIONS(2558), - [anon_sym_COLON] = ACTIONS(2888), - [anon_sym_match] = ACTIONS(2558), - [anon_sym_async] = ACTIONS(2558), - [anon_sym_exec] = ACTIONS(2558), - [anon_sym_EQ] = ACTIONS(2888), - [anon_sym_LBRACK] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(2888), - [anon_sym_PLUS] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2110), - [anon_sym_TILDE] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2434), - [anon_sym_lambda] = ACTIONS(2436), - [sym_ellipsis] = ACTIONS(2116), - [anon_sym_None] = ACTIONS(2118), - [sym_type_conversion] = ACTIONS(2888), - [sym_integer] = ACTIONS(2100), - [sym_float] = ACTIONS(2116), - [anon_sym_await] = ACTIONS(2562), - [anon_sym_api] = ACTIONS(2558), - [sym_true] = ACTIONS(2100), - [sym_false] = ACTIONS(2100), + [sym_identifier] = ACTIONS(2929), + [anon_sym_import] = ACTIONS(2929), + [anon_sym_cimport] = ACTIONS(2929), + [anon_sym_from] = ACTIONS(2929), + [anon_sym_LPAREN] = ACTIONS(2931), + [anon_sym_STAR] = ACTIONS(2931), + [anon_sym_print] = ACTIONS(2929), + [anon_sym_assert] = ACTIONS(2929), + [anon_sym_return] = ACTIONS(2929), + [anon_sym_del] = ACTIONS(2929), + [anon_sym_raise] = ACTIONS(2929), + [anon_sym_pass] = ACTIONS(2929), + [anon_sym_break] = ACTIONS(2929), + [anon_sym_continue] = ACTIONS(2929), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_else] = ACTIONS(2929), + [anon_sym_match] = ACTIONS(2929), + [anon_sym_async] = ACTIONS(2929), + [anon_sym_for] = ACTIONS(2929), + [anon_sym_while] = ACTIONS(2929), + [anon_sym_try] = ACTIONS(2929), + [anon_sym_except] = ACTIONS(2929), + [anon_sym_finally] = ACTIONS(2929), + [anon_sym_with] = ACTIONS(2929), + [anon_sym_def] = ACTIONS(2929), + [anon_sym_global] = ACTIONS(2929), + [anon_sym_nonlocal] = ACTIONS(2929), + [anon_sym_exec] = ACTIONS(2929), + [anon_sym_type] = ACTIONS(2929), + [anon_sym_class] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(2931), + [anon_sym_AT] = ACTIONS(2931), + [anon_sym_DASH] = ACTIONS(2931), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_PLUS] = ACTIONS(2931), + [anon_sym_not] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_TILDE] = ACTIONS(2931), + [anon_sym_LT] = ACTIONS(2931), + [anon_sym_lambda] = ACTIONS(2929), + [anon_sym_yield] = ACTIONS(2929), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2931), + [anon_sym_None] = ACTIONS(2929), + [sym_integer] = ACTIONS(2929), + [sym_float] = ACTIONS(2931), + [anon_sym_await] = ACTIONS(2929), + [anon_sym_api] = ACTIONS(2929), + [sym_true] = ACTIONS(2929), + [sym_false] = ACTIONS(2929), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2442), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_string_start] = ACTIONS(2124), + [anon_sym_property] = ACTIONS(2929), + [anon_sym_include] = ACTIONS(2929), + [anon_sym_DEF] = ACTIONS(2929), + [anon_sym_cdef] = ACTIONS(2929), + [anon_sym_cpdef] = ACTIONS(2929), + [anon_sym_new] = ACTIONS(2929), + [anon_sym_ctypedef] = ACTIONS(2929), + [anon_sym_public] = ACTIONS(2929), + [anon_sym_packed] = ACTIONS(2929), + [anon_sym_inline] = ACTIONS(2929), + [anon_sym_readonly] = ACTIONS(2929), + [anon_sym_sizeof] = ACTIONS(2929), + [sym__dedent] = ACTIONS(2931), + [sym_string_start] = ACTIONS(2931), }, [918] = { - [ts_builtin_sym_end] = ACTIONS(2890), - [sym_identifier] = ACTIONS(2892), - [anon_sym_import] = ACTIONS(2892), - [anon_sym_cimport] = ACTIONS(2892), - [anon_sym_from] = ACTIONS(2892), - [anon_sym_LPAREN] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2890), - [anon_sym_print] = ACTIONS(2892), - [anon_sym_assert] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_del] = ACTIONS(2892), - [anon_sym_raise] = ACTIONS(2892), - [anon_sym_pass] = ACTIONS(2892), - [anon_sym_break] = ACTIONS(2892), - [anon_sym_continue] = ACTIONS(2892), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_else] = ACTIONS(2892), - [anon_sym_match] = ACTIONS(2892), - [anon_sym_async] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_try] = ACTIONS(2892), - [anon_sym_except_STAR] = ACTIONS(2890), - [anon_sym_finally] = ACTIONS(2892), - [anon_sym_with] = ACTIONS(2892), - [anon_sym_def] = ACTIONS(2892), - [anon_sym_global] = ACTIONS(2892), - [anon_sym_nonlocal] = ACTIONS(2892), - [anon_sym_exec] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2892), - [anon_sym_class] = ACTIONS(2892), - [anon_sym_LBRACK] = ACTIONS(2890), - [anon_sym_AT] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_not] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2890), - [anon_sym_lambda] = ACTIONS(2892), - [anon_sym_yield] = ACTIONS(2892), - [sym_ellipsis] = ACTIONS(2890), - [anon_sym_None] = ACTIONS(2892), - [sym_integer] = ACTIONS(2892), - [sym_float] = ACTIONS(2890), - [anon_sym_await] = ACTIONS(2892), - [anon_sym_api] = ACTIONS(2892), - [sym_true] = ACTIONS(2892), - [sym_false] = ACTIONS(2892), + [sym_identifier] = ACTIONS(2933), + [anon_sym_import] = ACTIONS(2933), + [anon_sym_cimport] = ACTIONS(2933), + [anon_sym_from] = ACTIONS(2933), + [anon_sym_LPAREN] = ACTIONS(2935), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_print] = ACTIONS(2933), + [anon_sym_assert] = ACTIONS(2933), + [anon_sym_return] = ACTIONS(2933), + [anon_sym_del] = ACTIONS(2933), + [anon_sym_raise] = ACTIONS(2933), + [anon_sym_pass] = ACTIONS(2933), + [anon_sym_break] = ACTIONS(2933), + [anon_sym_continue] = ACTIONS(2933), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_else] = ACTIONS(2933), + [anon_sym_match] = ACTIONS(2933), + [anon_sym_async] = ACTIONS(2933), + [anon_sym_for] = ACTIONS(2933), + [anon_sym_while] = ACTIONS(2933), + [anon_sym_try] = ACTIONS(2933), + [anon_sym_except_STAR] = ACTIONS(2935), + [anon_sym_finally] = ACTIONS(2933), + [anon_sym_with] = ACTIONS(2933), + [anon_sym_def] = ACTIONS(2933), + [anon_sym_global] = ACTIONS(2933), + [anon_sym_nonlocal] = ACTIONS(2933), + [anon_sym_exec] = ACTIONS(2933), + [anon_sym_type] = ACTIONS(2933), + [anon_sym_class] = ACTIONS(2933), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_AT] = ACTIONS(2935), + [anon_sym_DASH] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2935), + [anon_sym_PLUS] = ACTIONS(2935), + [anon_sym_not] = ACTIONS(2933), + [anon_sym_AMP] = ACTIONS(2935), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_LT] = ACTIONS(2935), + [anon_sym_lambda] = ACTIONS(2933), + [anon_sym_yield] = ACTIONS(2933), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2935), + [anon_sym_None] = ACTIONS(2933), + [sym_integer] = ACTIONS(2933), + [sym_float] = ACTIONS(2935), + [anon_sym_await] = ACTIONS(2933), + [anon_sym_api] = ACTIONS(2933), + [sym_true] = ACTIONS(2933), + [sym_false] = ACTIONS(2933), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2892), - [anon_sym_include] = ACTIONS(2892), - [anon_sym_DEF] = ACTIONS(2892), - [anon_sym_cdef] = ACTIONS(2892), - [anon_sym_cpdef] = ACTIONS(2892), - [anon_sym_new] = ACTIONS(2892), - [anon_sym_ctypedef] = ACTIONS(2892), - [anon_sym_public] = ACTIONS(2892), - [anon_sym_packed] = ACTIONS(2892), - [anon_sym_inline] = ACTIONS(2892), - [anon_sym_readonly] = ACTIONS(2892), - [anon_sym_sizeof] = ACTIONS(2892), - [sym_string_start] = ACTIONS(2890), + [anon_sym_property] = ACTIONS(2933), + [anon_sym_include] = ACTIONS(2933), + [anon_sym_DEF] = ACTIONS(2933), + [anon_sym_cdef] = ACTIONS(2933), + [anon_sym_cpdef] = ACTIONS(2933), + [anon_sym_new] = ACTIONS(2933), + [anon_sym_ctypedef] = ACTIONS(2933), + [anon_sym_public] = ACTIONS(2933), + [anon_sym_packed] = ACTIONS(2933), + [anon_sym_inline] = ACTIONS(2933), + [anon_sym_readonly] = ACTIONS(2933), + [anon_sym_sizeof] = ACTIONS(2933), + [sym__dedent] = ACTIONS(2935), + [sym_string_start] = ACTIONS(2935), }, [919] = { - [ts_builtin_sym_end] = ACTIONS(1381), - [sym_identifier] = ACTIONS(1379), - [anon_sym_import] = ACTIONS(1379), - [anon_sym_cimport] = ACTIONS(1379), - [anon_sym_from] = ACTIONS(1379), - [anon_sym_LPAREN] = ACTIONS(1381), - [anon_sym_STAR] = ACTIONS(1381), - [anon_sym_print] = ACTIONS(1379), - [anon_sym_assert] = ACTIONS(1379), - [anon_sym_return] = ACTIONS(1379), - [anon_sym_del] = ACTIONS(1379), - [anon_sym_raise] = ACTIONS(1379), - [anon_sym_pass] = ACTIONS(1379), - [anon_sym_break] = ACTIONS(1379), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_else] = ACTIONS(1379), - [anon_sym_match] = ACTIONS(1379), - [anon_sym_async] = ACTIONS(1379), - [anon_sym_for] = ACTIONS(1379), - [anon_sym_while] = ACTIONS(1379), - [anon_sym_try] = ACTIONS(1379), - [anon_sym_except] = ACTIONS(1379), - [anon_sym_finally] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(1379), - [anon_sym_global] = ACTIONS(1379), - [anon_sym_nonlocal] = ACTIONS(1379), - [anon_sym_exec] = ACTIONS(1379), - [anon_sym_type] = ACTIONS(1379), - [anon_sym_class] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_AT] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(1381), - [anon_sym_not] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(1381), - [anon_sym_lambda] = ACTIONS(1379), - [anon_sym_yield] = ACTIONS(1379), - [sym_ellipsis] = ACTIONS(1381), - [anon_sym_None] = ACTIONS(1379), - [sym_integer] = ACTIONS(1379), - [sym_float] = ACTIONS(1381), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_api] = ACTIONS(1379), - [sym_true] = ACTIONS(1379), - [sym_false] = ACTIONS(1379), + [ts_builtin_sym_end] = ACTIONS(1384), + [sym_identifier] = ACTIONS(1382), + [anon_sym_import] = ACTIONS(1382), + [anon_sym_cimport] = ACTIONS(1382), + [anon_sym_from] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_print] = ACTIONS(1382), + [anon_sym_assert] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_del] = ACTIONS(1382), + [anon_sym_raise] = ACTIONS(1382), + [anon_sym_pass] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1382), + [anon_sym_match] = ACTIONS(1382), + [anon_sym_async] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_except_STAR] = ACTIONS(1384), + [anon_sym_finally] = ACTIONS(1382), + [anon_sym_with] = ACTIONS(1382), + [anon_sym_def] = ACTIONS(1382), + [anon_sym_global] = ACTIONS(1382), + [anon_sym_nonlocal] = ACTIONS(1382), + [anon_sym_exec] = ACTIONS(1382), + [anon_sym_type] = ACTIONS(1382), + [anon_sym_class] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1384), + [anon_sym_AT] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_lambda] = ACTIONS(1382), + [anon_sym_yield] = ACTIONS(1382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1384), + [anon_sym_None] = ACTIONS(1382), + [sym_integer] = ACTIONS(1382), + [sym_float] = ACTIONS(1384), + [anon_sym_await] = ACTIONS(1382), + [anon_sym_api] = ACTIONS(1382), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1379), - [anon_sym_include] = ACTIONS(1379), - [anon_sym_DEF] = ACTIONS(1379), - [anon_sym_cdef] = ACTIONS(1379), - [anon_sym_cpdef] = ACTIONS(1379), - [anon_sym_new] = ACTIONS(1379), - [anon_sym_ctypedef] = ACTIONS(1379), - [anon_sym_public] = ACTIONS(1379), - [anon_sym_packed] = ACTIONS(1379), - [anon_sym_inline] = ACTIONS(1379), - [anon_sym_readonly] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1379), - [sym_string_start] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1382), + [anon_sym_include] = ACTIONS(1382), + [anon_sym_DEF] = ACTIONS(1382), + [anon_sym_cdef] = ACTIONS(1382), + [anon_sym_cpdef] = ACTIONS(1382), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_ctypedef] = ACTIONS(1382), + [anon_sym_public] = ACTIONS(1382), + [anon_sym_packed] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym_readonly] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1382), + [sym_string_start] = ACTIONS(1384), }, [920] = { - [sym_identifier] = ACTIONS(2892), - [anon_sym_import] = ACTIONS(2892), - [anon_sym_cimport] = ACTIONS(2892), - [anon_sym_from] = ACTIONS(2892), - [anon_sym_LPAREN] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2890), - [anon_sym_print] = ACTIONS(2892), - [anon_sym_assert] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_del] = ACTIONS(2892), - [anon_sym_raise] = ACTIONS(2892), - [anon_sym_pass] = ACTIONS(2892), - [anon_sym_break] = ACTIONS(2892), - [anon_sym_continue] = ACTIONS(2892), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_else] = ACTIONS(2892), - [anon_sym_match] = ACTIONS(2892), - [anon_sym_async] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_try] = ACTIONS(2892), - [anon_sym_except_STAR] = ACTIONS(2890), - [anon_sym_finally] = ACTIONS(2892), - [anon_sym_with] = ACTIONS(2892), - [anon_sym_def] = ACTIONS(2892), - [anon_sym_global] = ACTIONS(2892), - [anon_sym_nonlocal] = ACTIONS(2892), - [anon_sym_exec] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2892), - [anon_sym_class] = ACTIONS(2892), - [anon_sym_LBRACK] = ACTIONS(2890), - [anon_sym_AT] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_not] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2890), - [anon_sym_lambda] = ACTIONS(2892), - [anon_sym_yield] = ACTIONS(2892), - [sym_ellipsis] = ACTIONS(2890), - [anon_sym_None] = ACTIONS(2892), - [sym_integer] = ACTIONS(2892), - [sym_float] = ACTIONS(2890), - [anon_sym_await] = ACTIONS(2892), - [anon_sym_api] = ACTIONS(2892), - [sym_true] = ACTIONS(2892), - [sym_false] = ACTIONS(2892), + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_identifier] = ACTIONS(1386), + [anon_sym_import] = ACTIONS(1386), + [anon_sym_cimport] = ACTIONS(1386), + [anon_sym_from] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_print] = ACTIONS(1386), + [anon_sym_assert] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_del] = ACTIONS(1386), + [anon_sym_raise] = ACTIONS(1386), + [anon_sym_pass] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_match] = ACTIONS(1386), + [anon_sym_async] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_try] = ACTIONS(1386), + [anon_sym_except_STAR] = ACTIONS(1388), + [anon_sym_finally] = ACTIONS(1386), + [anon_sym_with] = ACTIONS(1386), + [anon_sym_def] = ACTIONS(1386), + [anon_sym_global] = ACTIONS(1386), + [anon_sym_nonlocal] = ACTIONS(1386), + [anon_sym_exec] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_class] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_AT] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_not] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_lambda] = ACTIONS(1386), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + [anon_sym_None] = ACTIONS(1386), + [sym_integer] = ACTIONS(1386), + [sym_float] = ACTIONS(1388), + [anon_sym_await] = ACTIONS(1386), + [anon_sym_api] = ACTIONS(1386), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2892), - [anon_sym_include] = ACTIONS(2892), - [anon_sym_DEF] = ACTIONS(2892), - [anon_sym_cdef] = ACTIONS(2892), - [anon_sym_cpdef] = ACTIONS(2892), - [anon_sym_new] = ACTIONS(2892), - [anon_sym_ctypedef] = ACTIONS(2892), - [anon_sym_public] = ACTIONS(2892), - [anon_sym_packed] = ACTIONS(2892), - [anon_sym_inline] = ACTIONS(2892), - [anon_sym_readonly] = ACTIONS(2892), - [anon_sym_sizeof] = ACTIONS(2892), - [sym__dedent] = ACTIONS(2890), - [sym_string_start] = ACTIONS(2890), + [anon_sym_property] = ACTIONS(1386), + [anon_sym_include] = ACTIONS(1386), + [anon_sym_DEF] = ACTIONS(1386), + [anon_sym_cdef] = ACTIONS(1386), + [anon_sym_cpdef] = ACTIONS(1386), + [anon_sym_new] = ACTIONS(1386), + [anon_sym_ctypedef] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_packed] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1386), + [sym_string_start] = ACTIONS(1388), }, [921] = { - [sym_named_expression] = STATE(3682), - [sym__named_expression_lhs] = STATE(5485), - [sym_expression_list] = STATE(4150), - [sym_list_splat_pattern] = STATE(2230), - [sym_as_pattern] = STATE(3682), - [sym_expression] = STATE(3904), - [sym_primary_expression] = STATE(1950), - [sym_not_operator] = STATE(3682), - [sym_boolean_operator] = STATE(3682), - [sym_binary_operator] = STATE(2179), - [sym_unary_operator] = STATE(2179), - [sym_comparison_operator] = STATE(3682), - [sym_lambda] = STATE(3682), - [sym_attribute] = STATE(2179), - [sym_subscript] = STATE(2179), - [sym_call] = STATE(2179), - [sym_list] = STATE(2179), - [sym_set] = STATE(2179), - [sym_tuple] = STATE(2179), - [sym_dictionary] = STATE(2179), - [sym_list_comprehension] = STATE(2179), - [sym_dictionary_comprehension] = STATE(2179), - [sym_set_comprehension] = STATE(2179), - [sym_generator_expression] = STATE(2179), - [sym_parenthesized_expression] = STATE(2179), - [sym_conditional_expression] = STATE(3682), - [sym_concatenated_string] = STATE(2179), - [sym_string] = STATE(1968), - [sym_none] = STATE(2179), - [sym_await] = STATE(2179), - [sym_new_expression] = STATE(3682), - [sym_sizeof_expression] = STATE(2179), - [sym_cast_expression] = STATE(2179), - [sym_identifier] = ACTIONS(2554), - [anon_sym_from] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_COMMA] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(2426), - [anon_sym_print] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2558), - [anon_sym_async] = ACTIONS(2558), - [anon_sym_exec] = ACTIONS(2558), - [anon_sym_LBRACK] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(2560), - [anon_sym_PLUS] = ACTIONS(2110), - [anon_sym_not] = ACTIONS(2796), - [anon_sym_AMP] = ACTIONS(2110), - [anon_sym_TILDE] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2434), - [anon_sym_lambda] = ACTIONS(2798), - [sym_ellipsis] = ACTIONS(2116), - [anon_sym_None] = ACTIONS(2118), - [sym_integer] = ACTIONS(2100), - [sym_float] = ACTIONS(2116), - [anon_sym_await] = ACTIONS(2562), - [anon_sym_api] = ACTIONS(2558), - [sym_true] = ACTIONS(2100), - [sym_false] = ACTIONS(2100), + [sym_identifier] = ACTIONS(2937), + [anon_sym_import] = ACTIONS(2937), + [anon_sym_cimport] = ACTIONS(2937), + [anon_sym_from] = ACTIONS(2937), + [anon_sym_LPAREN] = ACTIONS(2939), + [anon_sym_STAR] = ACTIONS(2939), + [anon_sym_print] = ACTIONS(2937), + [anon_sym_assert] = ACTIONS(2937), + [anon_sym_return] = ACTIONS(2937), + [anon_sym_del] = ACTIONS(2937), + [anon_sym_raise] = ACTIONS(2937), + [anon_sym_pass] = ACTIONS(2937), + [anon_sym_break] = ACTIONS(2937), + [anon_sym_continue] = ACTIONS(2937), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_else] = ACTIONS(2937), + [anon_sym_match] = ACTIONS(2937), + [anon_sym_async] = ACTIONS(2937), + [anon_sym_for] = ACTIONS(2937), + [anon_sym_while] = ACTIONS(2937), + [anon_sym_try] = ACTIONS(2937), + [anon_sym_except] = ACTIONS(2937), + [anon_sym_finally] = ACTIONS(2937), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_def] = ACTIONS(2937), + [anon_sym_global] = ACTIONS(2937), + [anon_sym_nonlocal] = ACTIONS(2937), + [anon_sym_exec] = ACTIONS(2937), + [anon_sym_type] = ACTIONS(2937), + [anon_sym_class] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_AT] = ACTIONS(2939), + [anon_sym_DASH] = ACTIONS(2939), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_PLUS] = ACTIONS(2939), + [anon_sym_not] = ACTIONS(2937), + [anon_sym_AMP] = ACTIONS(2939), + [anon_sym_TILDE] = ACTIONS(2939), + [anon_sym_LT] = ACTIONS(2939), + [anon_sym_lambda] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2937), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2939), + [anon_sym_None] = ACTIONS(2937), + [sym_integer] = ACTIONS(2937), + [sym_float] = ACTIONS(2939), + [anon_sym_await] = ACTIONS(2937), + [anon_sym_api] = ACTIONS(2937), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2800), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_string_start] = ACTIONS(2124), + [anon_sym_property] = ACTIONS(2937), + [anon_sym_include] = ACTIONS(2937), + [anon_sym_DEF] = ACTIONS(2937), + [anon_sym_cdef] = ACTIONS(2937), + [anon_sym_cpdef] = ACTIONS(2937), + [anon_sym_new] = ACTIONS(2937), + [anon_sym_ctypedef] = ACTIONS(2937), + [anon_sym_public] = ACTIONS(2937), + [anon_sym_packed] = ACTIONS(2937), + [anon_sym_inline] = ACTIONS(2937), + [anon_sym_readonly] = ACTIONS(2937), + [anon_sym_sizeof] = ACTIONS(2937), + [sym__dedent] = ACTIONS(2939), + [sym_string_start] = ACTIONS(2939), }, [922] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_dictionary_splat] = STATE(5105), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(4281), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_pair] = STATE(5105), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1110), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(2896), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_identifier] = ACTIONS(2941), + [anon_sym_import] = ACTIONS(2941), + [anon_sym_cimport] = ACTIONS(2941), + [anon_sym_from] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_print] = ACTIONS(2941), + [anon_sym_assert] = ACTIONS(2941), + [anon_sym_return] = ACTIONS(2941), + [anon_sym_del] = ACTIONS(2941), + [anon_sym_raise] = ACTIONS(2941), + [anon_sym_pass] = ACTIONS(2941), + [anon_sym_break] = ACTIONS(2941), + [anon_sym_continue] = ACTIONS(2941), + [anon_sym_if] = ACTIONS(2941), + [anon_sym_else] = ACTIONS(2941), + [anon_sym_match] = ACTIONS(2941), + [anon_sym_async] = ACTIONS(2941), + [anon_sym_for] = ACTIONS(2941), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_try] = ACTIONS(2941), + [anon_sym_except_STAR] = ACTIONS(2943), + [anon_sym_finally] = ACTIONS(2941), + [anon_sym_with] = ACTIONS(2941), + [anon_sym_def] = ACTIONS(2941), + [anon_sym_global] = ACTIONS(2941), + [anon_sym_nonlocal] = ACTIONS(2941), + [anon_sym_exec] = ACTIONS(2941), + [anon_sym_type] = ACTIONS(2941), + [anon_sym_class] = ACTIONS(2941), + [anon_sym_LBRACK] = ACTIONS(2943), + [anon_sym_AT] = ACTIONS(2943), + [anon_sym_DASH] = ACTIONS(2943), + [anon_sym_LBRACE] = ACTIONS(2943), + [anon_sym_PLUS] = ACTIONS(2943), + [anon_sym_not] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_TILDE] = ACTIONS(2943), + [anon_sym_LT] = ACTIONS(2943), + [anon_sym_lambda] = ACTIONS(2941), + [anon_sym_yield] = ACTIONS(2941), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2943), + [anon_sym_None] = ACTIONS(2941), + [sym_integer] = ACTIONS(2941), + [sym_float] = ACTIONS(2943), + [anon_sym_await] = ACTIONS(2941), + [anon_sym_api] = ACTIONS(2941), + [sym_true] = ACTIONS(2941), + [sym_false] = ACTIONS(2941), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_property] = ACTIONS(2941), + [anon_sym_include] = ACTIONS(2941), + [anon_sym_DEF] = ACTIONS(2941), + [anon_sym_cdef] = ACTIONS(2941), + [anon_sym_cpdef] = ACTIONS(2941), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_ctypedef] = ACTIONS(2941), + [anon_sym_public] = ACTIONS(2941), + [anon_sym_packed] = ACTIONS(2941), + [anon_sym_inline] = ACTIONS(2941), + [anon_sym_readonly] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2941), + [sym__dedent] = ACTIONS(2943), + [sym_string_start] = ACTIONS(2943), }, [923] = { - [ts_builtin_sym_end] = ACTIONS(1373), - [sym_identifier] = ACTIONS(1371), - [anon_sym_import] = ACTIONS(1371), - [anon_sym_cimport] = ACTIONS(1371), - [anon_sym_from] = ACTIONS(1371), - [anon_sym_LPAREN] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1373), - [anon_sym_print] = ACTIONS(1371), - [anon_sym_assert] = ACTIONS(1371), - [anon_sym_return] = ACTIONS(1371), - [anon_sym_del] = ACTIONS(1371), - [anon_sym_raise] = ACTIONS(1371), - [anon_sym_pass] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(1371), - [anon_sym_continue] = ACTIONS(1371), - [anon_sym_if] = ACTIONS(1371), - [anon_sym_else] = ACTIONS(1371), - [anon_sym_match] = ACTIONS(1371), - [anon_sym_async] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1371), - [anon_sym_while] = ACTIONS(1371), - [anon_sym_try] = ACTIONS(1371), - [anon_sym_except] = ACTIONS(1371), - [anon_sym_finally] = ACTIONS(1371), - [anon_sym_with] = ACTIONS(1371), - [anon_sym_def] = ACTIONS(1371), - [anon_sym_global] = ACTIONS(1371), - [anon_sym_nonlocal] = ACTIONS(1371), - [anon_sym_exec] = ACTIONS(1371), - [anon_sym_type] = ACTIONS(1371), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1373), - [anon_sym_AT] = ACTIONS(1373), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_not] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_LT] = ACTIONS(1373), - [anon_sym_lambda] = ACTIONS(1371), - [anon_sym_yield] = ACTIONS(1371), - [sym_ellipsis] = ACTIONS(1373), - [anon_sym_None] = ACTIONS(1371), - [sym_integer] = ACTIONS(1371), - [sym_float] = ACTIONS(1373), - [anon_sym_await] = ACTIONS(1371), - [anon_sym_api] = ACTIONS(1371), - [sym_true] = ACTIONS(1371), - [sym_false] = ACTIONS(1371), + [ts_builtin_sym_end] = ACTIONS(1396), + [sym_identifier] = ACTIONS(1394), + [anon_sym_import] = ACTIONS(1394), + [anon_sym_cimport] = ACTIONS(1394), + [anon_sym_from] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_print] = ACTIONS(1394), + [anon_sym_assert] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_del] = ACTIONS(1394), + [anon_sym_raise] = ACTIONS(1394), + [anon_sym_pass] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_async] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_try] = ACTIONS(1394), + [anon_sym_except_STAR] = ACTIONS(1396), + [anon_sym_finally] = ACTIONS(1394), + [anon_sym_with] = ACTIONS(1394), + [anon_sym_def] = ACTIONS(1394), + [anon_sym_global] = ACTIONS(1394), + [anon_sym_nonlocal] = ACTIONS(1394), + [anon_sym_exec] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_class] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1396), + [anon_sym_AT] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_not] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_lambda] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1396), + [anon_sym_None] = ACTIONS(1394), + [sym_integer] = ACTIONS(1394), + [sym_float] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_api] = ACTIONS(1394), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1371), - [anon_sym_include] = ACTIONS(1371), - [anon_sym_DEF] = ACTIONS(1371), - [anon_sym_cdef] = ACTIONS(1371), - [anon_sym_cpdef] = ACTIONS(1371), - [anon_sym_new] = ACTIONS(1371), - [anon_sym_ctypedef] = ACTIONS(1371), - [anon_sym_public] = ACTIONS(1371), - [anon_sym_packed] = ACTIONS(1371), - [anon_sym_inline] = ACTIONS(1371), - [anon_sym_readonly] = ACTIONS(1371), - [anon_sym_sizeof] = ACTIONS(1371), - [sym_string_start] = ACTIONS(1373), + [anon_sym_property] = ACTIONS(1394), + [anon_sym_include] = ACTIONS(1394), + [anon_sym_DEF] = ACTIONS(1394), + [anon_sym_cdef] = ACTIONS(1394), + [anon_sym_cpdef] = ACTIONS(1394), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_ctypedef] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_packed] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_sizeof] = ACTIONS(1394), + [sym_string_start] = ACTIONS(1396), }, [924] = { - [ts_builtin_sym_end] = ACTIONS(2846), - [sym_identifier] = ACTIONS(2844), - [anon_sym_import] = ACTIONS(2844), - [anon_sym_cimport] = ACTIONS(2844), - [anon_sym_from] = ACTIONS(2844), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_print] = ACTIONS(2844), - [anon_sym_assert] = ACTIONS(2844), - [anon_sym_return] = ACTIONS(2844), - [anon_sym_del] = ACTIONS(2844), - [anon_sym_raise] = ACTIONS(2844), - [anon_sym_pass] = ACTIONS(2844), - [anon_sym_break] = ACTIONS(2844), - [anon_sym_continue] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_else] = ACTIONS(2844), - [anon_sym_match] = ACTIONS(2844), - [anon_sym_async] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2844), - [anon_sym_while] = ACTIONS(2844), - [anon_sym_try] = ACTIONS(2844), - [anon_sym_except] = ACTIONS(2844), - [anon_sym_finally] = ACTIONS(2844), - [anon_sym_with] = ACTIONS(2844), - [anon_sym_def] = ACTIONS(2844), - [anon_sym_global] = ACTIONS(2844), - [anon_sym_nonlocal] = ACTIONS(2844), - [anon_sym_exec] = ACTIONS(2844), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_class] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_AT] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_not] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2846), - [anon_sym_lambda] = ACTIONS(2844), - [anon_sym_yield] = ACTIONS(2844), - [sym_ellipsis] = ACTIONS(2846), - [anon_sym_None] = ACTIONS(2844), - [sym_integer] = ACTIONS(2844), - [sym_float] = ACTIONS(2846), - [anon_sym_await] = ACTIONS(2844), - [anon_sym_api] = ACTIONS(2844), - [sym_true] = ACTIONS(2844), - [sym_false] = ACTIONS(2844), + [sym_identifier] = ACTIONS(1382), + [anon_sym_import] = ACTIONS(1382), + [anon_sym_cimport] = ACTIONS(1382), + [anon_sym_from] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_print] = ACTIONS(1382), + [anon_sym_assert] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_del] = ACTIONS(1382), + [anon_sym_raise] = ACTIONS(1382), + [anon_sym_pass] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1382), + [anon_sym_match] = ACTIONS(1382), + [anon_sym_async] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_except] = ACTIONS(1382), + [anon_sym_finally] = ACTIONS(1382), + [anon_sym_with] = ACTIONS(1382), + [anon_sym_def] = ACTIONS(1382), + [anon_sym_global] = ACTIONS(1382), + [anon_sym_nonlocal] = ACTIONS(1382), + [anon_sym_exec] = ACTIONS(1382), + [anon_sym_type] = ACTIONS(1382), + [anon_sym_class] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1384), + [anon_sym_AT] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_lambda] = ACTIONS(1382), + [anon_sym_yield] = ACTIONS(1382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1384), + [anon_sym_None] = ACTIONS(1382), + [sym_integer] = ACTIONS(1382), + [sym_float] = ACTIONS(1384), + [anon_sym_await] = ACTIONS(1382), + [anon_sym_api] = ACTIONS(1382), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2844), - [anon_sym_include] = ACTIONS(2844), - [anon_sym_DEF] = ACTIONS(2844), - [anon_sym_cdef] = ACTIONS(2844), - [anon_sym_cpdef] = ACTIONS(2844), - [anon_sym_new] = ACTIONS(2844), - [anon_sym_ctypedef] = ACTIONS(2844), - [anon_sym_public] = ACTIONS(2844), - [anon_sym_packed] = ACTIONS(2844), - [anon_sym_inline] = ACTIONS(2844), - [anon_sym_readonly] = ACTIONS(2844), - [anon_sym_sizeof] = ACTIONS(2844), - [sym_string_start] = ACTIONS(2846), + [anon_sym_property] = ACTIONS(1382), + [anon_sym_include] = ACTIONS(1382), + [anon_sym_DEF] = ACTIONS(1382), + [anon_sym_cdef] = ACTIONS(1382), + [anon_sym_cpdef] = ACTIONS(1382), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_ctypedef] = ACTIONS(1382), + [anon_sym_public] = ACTIONS(1382), + [anon_sym_packed] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym_readonly] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1382), + [sym__dedent] = ACTIONS(1384), + [sym_string_start] = ACTIONS(1384), }, [925] = { - [ts_builtin_sym_end] = ACTIONS(2868), - [sym_identifier] = ACTIONS(2866), - [anon_sym_import] = ACTIONS(2866), - [anon_sym_cimport] = ACTIONS(2866), - [anon_sym_from] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym_STAR] = ACTIONS(2868), - [anon_sym_print] = ACTIONS(2866), - [anon_sym_assert] = ACTIONS(2866), - [anon_sym_return] = ACTIONS(2866), - [anon_sym_del] = ACTIONS(2866), - [anon_sym_raise] = ACTIONS(2866), - [anon_sym_pass] = ACTIONS(2866), - [anon_sym_break] = ACTIONS(2866), - [anon_sym_continue] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2866), - [anon_sym_else] = ACTIONS(2866), - [anon_sym_match] = ACTIONS(2866), - [anon_sym_async] = ACTIONS(2866), - [anon_sym_for] = ACTIONS(2866), - [anon_sym_while] = ACTIONS(2866), - [anon_sym_try] = ACTIONS(2866), - [anon_sym_except] = ACTIONS(2866), - [anon_sym_finally] = ACTIONS(2866), - [anon_sym_with] = ACTIONS(2866), - [anon_sym_def] = ACTIONS(2866), - [anon_sym_global] = ACTIONS(2866), - [anon_sym_nonlocal] = ACTIONS(2866), - [anon_sym_exec] = ACTIONS(2866), - [anon_sym_type] = ACTIONS(2866), - [anon_sym_class] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2868), - [anon_sym_AT] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2868), - [anon_sym_PLUS] = ACTIONS(2868), - [anon_sym_not] = ACTIONS(2866), - [anon_sym_AMP] = ACTIONS(2868), - [anon_sym_TILDE] = ACTIONS(2868), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_lambda] = ACTIONS(2866), - [anon_sym_yield] = ACTIONS(2866), - [sym_ellipsis] = ACTIONS(2868), - [anon_sym_None] = ACTIONS(2866), - [sym_integer] = ACTIONS(2866), - [sym_float] = ACTIONS(2868), - [anon_sym_await] = ACTIONS(2866), - [anon_sym_api] = ACTIONS(2866), - [sym_true] = ACTIONS(2866), - [sym_false] = ACTIONS(2866), + [sym_identifier] = ACTIONS(1386), + [anon_sym_import] = ACTIONS(1386), + [anon_sym_cimport] = ACTIONS(1386), + [anon_sym_from] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_print] = ACTIONS(1386), + [anon_sym_assert] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_del] = ACTIONS(1386), + [anon_sym_raise] = ACTIONS(1386), + [anon_sym_pass] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_match] = ACTIONS(1386), + [anon_sym_async] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_try] = ACTIONS(1386), + [anon_sym_except] = ACTIONS(1386), + [anon_sym_finally] = ACTIONS(1386), + [anon_sym_with] = ACTIONS(1386), + [anon_sym_def] = ACTIONS(1386), + [anon_sym_global] = ACTIONS(1386), + [anon_sym_nonlocal] = ACTIONS(1386), + [anon_sym_exec] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_class] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_AT] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_not] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_lambda] = ACTIONS(1386), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + [anon_sym_None] = ACTIONS(1386), + [sym_integer] = ACTIONS(1386), + [sym_float] = ACTIONS(1388), + [anon_sym_await] = ACTIONS(1386), + [anon_sym_api] = ACTIONS(1386), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2866), - [anon_sym_include] = ACTIONS(2866), - [anon_sym_DEF] = ACTIONS(2866), - [anon_sym_cdef] = ACTIONS(2866), - [anon_sym_cpdef] = ACTIONS(2866), - [anon_sym_new] = ACTIONS(2866), - [anon_sym_ctypedef] = ACTIONS(2866), - [anon_sym_public] = ACTIONS(2866), - [anon_sym_packed] = ACTIONS(2866), - [anon_sym_inline] = ACTIONS(2866), - [anon_sym_readonly] = ACTIONS(2866), - [anon_sym_sizeof] = ACTIONS(2866), - [sym_string_start] = ACTIONS(2868), + [anon_sym_property] = ACTIONS(1386), + [anon_sym_include] = ACTIONS(1386), + [anon_sym_DEF] = ACTIONS(1386), + [anon_sym_cdef] = ACTIONS(1386), + [anon_sym_cpdef] = ACTIONS(1386), + [anon_sym_new] = ACTIONS(1386), + [anon_sym_ctypedef] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_packed] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1386), + [sym__dedent] = ACTIONS(1388), + [sym_string_start] = ACTIONS(1388), }, [926] = { - [ts_builtin_sym_end] = ACTIONS(1389), - [sym_identifier] = ACTIONS(1387), - [anon_sym_import] = ACTIONS(1387), - [anon_sym_cimport] = ACTIONS(1387), - [anon_sym_from] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_print] = ACTIONS(1387), - [anon_sym_assert] = ACTIONS(1387), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_del] = ACTIONS(1387), - [anon_sym_raise] = ACTIONS(1387), - [anon_sym_pass] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1387), - [anon_sym_continue] = ACTIONS(1387), - [anon_sym_if] = ACTIONS(1387), - [anon_sym_else] = ACTIONS(1387), - [anon_sym_match] = ACTIONS(1387), - [anon_sym_async] = ACTIONS(1387), - [anon_sym_for] = ACTIONS(1387), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_try] = ACTIONS(1387), - [anon_sym_except] = ACTIONS(1387), - [anon_sym_finally] = ACTIONS(1387), - [anon_sym_with] = ACTIONS(1387), - [anon_sym_def] = ACTIONS(1387), - [anon_sym_global] = ACTIONS(1387), - [anon_sym_nonlocal] = ACTIONS(1387), - [anon_sym_exec] = ACTIONS(1387), - [anon_sym_type] = ACTIONS(1387), - [anon_sym_class] = ACTIONS(1387), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_AT] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_not] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1389), - [anon_sym_lambda] = ACTIONS(1387), - [anon_sym_yield] = ACTIONS(1387), - [sym_ellipsis] = ACTIONS(1389), - [anon_sym_None] = ACTIONS(1387), - [sym_integer] = ACTIONS(1387), - [sym_float] = ACTIONS(1389), - [anon_sym_await] = ACTIONS(1387), - [anon_sym_api] = ACTIONS(1387), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), + [sym_identifier] = ACTIONS(1398), + [anon_sym_import] = ACTIONS(1398), + [anon_sym_cimport] = ACTIONS(1398), + [anon_sym_from] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_print] = ACTIONS(1398), + [anon_sym_assert] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_del] = ACTIONS(1398), + [anon_sym_raise] = ACTIONS(1398), + [anon_sym_pass] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_try] = ACTIONS(1398), + [anon_sym_except] = ACTIONS(1398), + [anon_sym_finally] = ACTIONS(1398), + [anon_sym_with] = ACTIONS(1398), + [anon_sym_def] = ACTIONS(1398), + [anon_sym_global] = ACTIONS(1398), + [anon_sym_nonlocal] = ACTIONS(1398), + [anon_sym_exec] = ACTIONS(1398), + [anon_sym_type] = ACTIONS(1398), + [anon_sym_class] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_not] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_lambda] = ACTIONS(1398), + [anon_sym_yield] = ACTIONS(1398), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1400), + [anon_sym_None] = ACTIONS(1398), + [sym_integer] = ACTIONS(1398), + [sym_float] = ACTIONS(1400), + [anon_sym_await] = ACTIONS(1398), + [anon_sym_api] = ACTIONS(1398), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1387), - [anon_sym_include] = ACTIONS(1387), - [anon_sym_DEF] = ACTIONS(1387), - [anon_sym_cdef] = ACTIONS(1387), - [anon_sym_cpdef] = ACTIONS(1387), - [anon_sym_new] = ACTIONS(1387), - [anon_sym_ctypedef] = ACTIONS(1387), - [anon_sym_public] = ACTIONS(1387), - [anon_sym_packed] = ACTIONS(1387), - [anon_sym_inline] = ACTIONS(1387), - [anon_sym_readonly] = ACTIONS(1387), - [anon_sym_sizeof] = ACTIONS(1387), - [sym_string_start] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1398), + [anon_sym_include] = ACTIONS(1398), + [anon_sym_DEF] = ACTIONS(1398), + [anon_sym_cdef] = ACTIONS(1398), + [anon_sym_cpdef] = ACTIONS(1398), + [anon_sym_new] = ACTIONS(1398), + [anon_sym_ctypedef] = ACTIONS(1398), + [anon_sym_public] = ACTIONS(1398), + [anon_sym_packed] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym_readonly] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1398), + [sym__dedent] = ACTIONS(1400), + [sym_string_start] = ACTIONS(1400), }, [927] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_dictionary_splat] = STATE(5105), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(4281), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_pair] = STATE(5105), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1110), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [sym_identifier] = ACTIONS(1394), + [anon_sym_import] = ACTIONS(1394), + [anon_sym_cimport] = ACTIONS(1394), + [anon_sym_from] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_print] = ACTIONS(1394), + [anon_sym_assert] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_del] = ACTIONS(1394), + [anon_sym_raise] = ACTIONS(1394), + [anon_sym_pass] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_async] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_try] = ACTIONS(1394), + [anon_sym_except] = ACTIONS(1394), + [anon_sym_finally] = ACTIONS(1394), + [anon_sym_with] = ACTIONS(1394), + [anon_sym_def] = ACTIONS(1394), + [anon_sym_global] = ACTIONS(1394), + [anon_sym_nonlocal] = ACTIONS(1394), + [anon_sym_exec] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_class] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1396), + [anon_sym_AT] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_not] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_lambda] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1396), + [anon_sym_None] = ACTIONS(1394), + [sym_integer] = ACTIONS(1394), + [sym_float] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_api] = ACTIONS(1394), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), + [anon_sym_property] = ACTIONS(1394), + [anon_sym_include] = ACTIONS(1394), + [anon_sym_DEF] = ACTIONS(1394), + [anon_sym_cdef] = ACTIONS(1394), + [anon_sym_cpdef] = ACTIONS(1394), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_ctypedef] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_packed] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_sizeof] = ACTIONS(1394), + [sym__dedent] = ACTIONS(1396), + [sym_string_start] = ACTIONS(1396), }, [928] = { - [ts_builtin_sym_end] = ACTIONS(2850), - [sym_identifier] = ACTIONS(2848), - [anon_sym_import] = ACTIONS(2848), - [anon_sym_cimport] = ACTIONS(2848), - [anon_sym_from] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(2850), - [anon_sym_print] = ACTIONS(2848), - [anon_sym_assert] = ACTIONS(2848), - [anon_sym_return] = ACTIONS(2848), - [anon_sym_del] = ACTIONS(2848), - [anon_sym_raise] = ACTIONS(2848), - [anon_sym_pass] = ACTIONS(2848), - [anon_sym_break] = ACTIONS(2848), - [anon_sym_continue] = ACTIONS(2848), - [anon_sym_if] = ACTIONS(2848), - [anon_sym_else] = ACTIONS(2848), - [anon_sym_match] = ACTIONS(2848), - [anon_sym_async] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2848), - [anon_sym_while] = ACTIONS(2848), - [anon_sym_try] = ACTIONS(2848), - [anon_sym_except_STAR] = ACTIONS(2850), - [anon_sym_finally] = ACTIONS(2848), - [anon_sym_with] = ACTIONS(2848), - [anon_sym_def] = ACTIONS(2848), - [anon_sym_global] = ACTIONS(2848), - [anon_sym_nonlocal] = ACTIONS(2848), - [anon_sym_exec] = ACTIONS(2848), - [anon_sym_type] = ACTIONS(2848), - [anon_sym_class] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_AT] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_not] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2850), - [anon_sym_lambda] = ACTIONS(2848), - [anon_sym_yield] = ACTIONS(2848), - [sym_ellipsis] = ACTIONS(2850), - [anon_sym_None] = ACTIONS(2848), - [sym_integer] = ACTIONS(2848), - [sym_float] = ACTIONS(2850), - [anon_sym_await] = ACTIONS(2848), - [anon_sym_api] = ACTIONS(2848), - [sym_true] = ACTIONS(2848), - [sym_false] = ACTIONS(2848), + [sym_identifier] = ACTIONS(1390), + [anon_sym_import] = ACTIONS(1390), + [anon_sym_cimport] = ACTIONS(1390), + [anon_sym_from] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_print] = ACTIONS(1390), + [anon_sym_assert] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_del] = ACTIONS(1390), + [anon_sym_raise] = ACTIONS(1390), + [anon_sym_pass] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_match] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1390), + [anon_sym_except] = ACTIONS(1390), + [anon_sym_finally] = ACTIONS(1390), + [anon_sym_with] = ACTIONS(1390), + [anon_sym_def] = ACTIONS(1390), + [anon_sym_global] = ACTIONS(1390), + [anon_sym_nonlocal] = ACTIONS(1390), + [anon_sym_exec] = ACTIONS(1390), + [anon_sym_type] = ACTIONS(1390), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1392), + [anon_sym_AT] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1392), + [anon_sym_lambda] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1392), + [anon_sym_None] = ACTIONS(1390), + [sym_integer] = ACTIONS(1390), + [sym_float] = ACTIONS(1392), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_api] = ACTIONS(1390), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2848), - [anon_sym_include] = ACTIONS(2848), - [anon_sym_DEF] = ACTIONS(2848), - [anon_sym_cdef] = ACTIONS(2848), - [anon_sym_cpdef] = ACTIONS(2848), - [anon_sym_new] = ACTIONS(2848), - [anon_sym_ctypedef] = ACTIONS(2848), - [anon_sym_public] = ACTIONS(2848), - [anon_sym_packed] = ACTIONS(2848), - [anon_sym_inline] = ACTIONS(2848), - [anon_sym_readonly] = ACTIONS(2848), - [anon_sym_sizeof] = ACTIONS(2848), - [sym_string_start] = ACTIONS(2850), + [anon_sym_property] = ACTIONS(1390), + [anon_sym_include] = ACTIONS(1390), + [anon_sym_DEF] = ACTIONS(1390), + [anon_sym_cdef] = ACTIONS(1390), + [anon_sym_cpdef] = ACTIONS(1390), + [anon_sym_new] = ACTIONS(1390), + [anon_sym_ctypedef] = ACTIONS(1390), + [anon_sym_public] = ACTIONS(1390), + [anon_sym_packed] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym_readonly] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1390), + [sym__dedent] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1392), }, [929] = { - [sym_named_expression] = STATE(3273), - [sym__named_expression_lhs] = STATE(5376), - [sym_expression_list] = STATE(4541), - [sym_list_splat_pattern] = STATE(1985), - [sym_as_pattern] = STATE(3273), - [sym_expression] = STATE(3688), - [sym_primary_expression] = STATE(1918), - [sym_not_operator] = STATE(3273), - [sym_boolean_operator] = STATE(3273), - [sym_binary_operator] = STATE(1981), - [sym_unary_operator] = STATE(1981), - [sym_comparison_operator] = STATE(3273), - [sym_lambda] = STATE(3273), - [sym_attribute] = STATE(1981), - [sym_subscript] = STATE(1981), - [sym_call] = STATE(1981), - [sym_list] = STATE(1981), - [sym_set] = STATE(1981), - [sym_tuple] = STATE(1981), - [sym_dictionary] = STATE(1981), - [sym_list_comprehension] = STATE(1981), - [sym_dictionary_comprehension] = STATE(1981), - [sym_set_comprehension] = STATE(1981), - [sym_generator_expression] = STATE(1981), - [sym_parenthesized_expression] = STATE(1981), - [sym_conditional_expression] = STATE(3273), - [sym_concatenated_string] = STATE(1981), - [sym_string] = STATE(1933), - [sym_none] = STATE(1981), - [sym_await] = STATE(1981), - [sym_new_expression] = STATE(3273), - [sym_sizeof_expression] = STATE(1981), - [sym_cast_expression] = STATE(1981), - [sym_identifier] = ACTIONS(832), - [anon_sym_SEMI] = ACTIONS(2900), - [anon_sym_from] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_print] = ACTIONS(847), - [anon_sym_match] = ACTIONS(847), - [anon_sym_async] = ACTIONS(847), - [anon_sym_exec] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(1184), + [ts_builtin_sym_end] = ACTIONS(1392), + [sym_identifier] = ACTIONS(1390), + [anon_sym_import] = ACTIONS(1390), + [anon_sym_cimport] = ACTIONS(1390), + [anon_sym_from] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_print] = ACTIONS(1390), + [anon_sym_assert] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_del] = ACTIONS(1390), + [anon_sym_raise] = ACTIONS(1390), + [anon_sym_pass] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_match] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1390), + [anon_sym_except] = ACTIONS(1390), + [anon_sym_finally] = ACTIONS(1390), + [anon_sym_with] = ACTIONS(1390), + [anon_sym_def] = ACTIONS(1390), + [anon_sym_global] = ACTIONS(1390), + [anon_sym_nonlocal] = ACTIONS(1390), + [anon_sym_exec] = ACTIONS(1390), + [anon_sym_type] = ACTIONS(1390), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1392), + [anon_sym_AT] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1392), + [anon_sym_lambda] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1392), + [anon_sym_None] = ACTIONS(1390), + [sym_integer] = ACTIONS(1390), + [sym_float] = ACTIONS(1392), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_api] = ACTIONS(1390), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1390), + [anon_sym_include] = ACTIONS(1390), + [anon_sym_DEF] = ACTIONS(1390), + [anon_sym_cdef] = ACTIONS(1390), + [anon_sym_cpdef] = ACTIONS(1390), + [anon_sym_new] = ACTIONS(1390), + [anon_sym_ctypedef] = ACTIONS(1390), + [anon_sym_public] = ACTIONS(1390), + [anon_sym_packed] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym_readonly] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1390), + [sym_string_start] = ACTIONS(1392), + }, + [930] = { + [ts_builtin_sym_end] = ACTIONS(2939), + [sym_identifier] = ACTIONS(2937), + [anon_sym_import] = ACTIONS(2937), + [anon_sym_cimport] = ACTIONS(2937), + [anon_sym_from] = ACTIONS(2937), + [anon_sym_LPAREN] = ACTIONS(2939), + [anon_sym_STAR] = ACTIONS(2939), + [anon_sym_print] = ACTIONS(2937), + [anon_sym_assert] = ACTIONS(2937), + [anon_sym_return] = ACTIONS(2937), + [anon_sym_del] = ACTIONS(2937), + [anon_sym_raise] = ACTIONS(2937), + [anon_sym_pass] = ACTIONS(2937), + [anon_sym_break] = ACTIONS(2937), + [anon_sym_continue] = ACTIONS(2937), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_else] = ACTIONS(2937), + [anon_sym_match] = ACTIONS(2937), + [anon_sym_async] = ACTIONS(2937), + [anon_sym_for] = ACTIONS(2937), + [anon_sym_while] = ACTIONS(2937), + [anon_sym_try] = ACTIONS(2937), + [anon_sym_except] = ACTIONS(2937), + [anon_sym_finally] = ACTIONS(2937), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_def] = ACTIONS(2937), + [anon_sym_global] = ACTIONS(2937), + [anon_sym_nonlocal] = ACTIONS(2937), + [anon_sym_exec] = ACTIONS(2937), + [anon_sym_type] = ACTIONS(2937), + [anon_sym_class] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_AT] = ACTIONS(2939), + [anon_sym_DASH] = ACTIONS(2939), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_PLUS] = ACTIONS(2939), + [anon_sym_not] = ACTIONS(2937), + [anon_sym_AMP] = ACTIONS(2939), + [anon_sym_TILDE] = ACTIONS(2939), + [anon_sym_LT] = ACTIONS(2939), + [anon_sym_lambda] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2937), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2939), + [anon_sym_None] = ACTIONS(2937), + [sym_integer] = ACTIONS(2937), + [sym_float] = ACTIONS(2939), + [anon_sym_await] = ACTIONS(2937), + [anon_sym_api] = ACTIONS(2937), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2937), + [anon_sym_include] = ACTIONS(2937), + [anon_sym_DEF] = ACTIONS(2937), + [anon_sym_cdef] = ACTIONS(2937), + [anon_sym_cpdef] = ACTIONS(2937), + [anon_sym_new] = ACTIONS(2937), + [anon_sym_ctypedef] = ACTIONS(2937), + [anon_sym_public] = ACTIONS(2937), + [anon_sym_packed] = ACTIONS(2937), + [anon_sym_inline] = ACTIONS(2937), + [anon_sym_readonly] = ACTIONS(2937), + [anon_sym_sizeof] = ACTIONS(2937), + [sym_string_start] = ACTIONS(2939), + }, + [931] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2945), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [932] = { + [sym_identifier] = ACTIONS(1382), + [anon_sym_import] = ACTIONS(1382), + [anon_sym_cimport] = ACTIONS(1382), + [anon_sym_from] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_print] = ACTIONS(1382), + [anon_sym_assert] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_del] = ACTIONS(1382), + [anon_sym_raise] = ACTIONS(1382), + [anon_sym_pass] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1382), + [anon_sym_match] = ACTIONS(1382), + [anon_sym_async] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_try] = ACTIONS(1382), + [anon_sym_except_STAR] = ACTIONS(1384), + [anon_sym_finally] = ACTIONS(1382), + [anon_sym_with] = ACTIONS(1382), + [anon_sym_def] = ACTIONS(1382), + [anon_sym_global] = ACTIONS(1382), + [anon_sym_nonlocal] = ACTIONS(1382), + [anon_sym_exec] = ACTIONS(1382), + [anon_sym_type] = ACTIONS(1382), + [anon_sym_class] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1384), + [anon_sym_AT] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_not] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_lambda] = ACTIONS(1382), + [anon_sym_yield] = ACTIONS(1382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1384), + [anon_sym_None] = ACTIONS(1382), + [sym_integer] = ACTIONS(1382), + [sym_float] = ACTIONS(1384), + [anon_sym_await] = ACTIONS(1382), + [anon_sym_api] = ACTIONS(1382), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1382), + [anon_sym_include] = ACTIONS(1382), + [anon_sym_DEF] = ACTIONS(1382), + [anon_sym_cdef] = ACTIONS(1382), + [anon_sym_cpdef] = ACTIONS(1382), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_ctypedef] = ACTIONS(1382), + [anon_sym_public] = ACTIONS(1382), + [anon_sym_packed] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym_readonly] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1382), + [sym__dedent] = ACTIONS(1384), + [sym_string_start] = ACTIONS(1384), + }, + [933] = { + [sym_identifier] = ACTIONS(1386), + [anon_sym_import] = ACTIONS(1386), + [anon_sym_cimport] = ACTIONS(1386), + [anon_sym_from] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_print] = ACTIONS(1386), + [anon_sym_assert] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_del] = ACTIONS(1386), + [anon_sym_raise] = ACTIONS(1386), + [anon_sym_pass] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_match] = ACTIONS(1386), + [anon_sym_async] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_try] = ACTIONS(1386), + [anon_sym_except_STAR] = ACTIONS(1388), + [anon_sym_finally] = ACTIONS(1386), + [anon_sym_with] = ACTIONS(1386), + [anon_sym_def] = ACTIONS(1386), + [anon_sym_global] = ACTIONS(1386), + [anon_sym_nonlocal] = ACTIONS(1386), + [anon_sym_exec] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_class] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_AT] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_not] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_lambda] = ACTIONS(1386), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1388), + [anon_sym_None] = ACTIONS(1386), + [sym_integer] = ACTIONS(1386), + [sym_float] = ACTIONS(1388), + [anon_sym_await] = ACTIONS(1386), + [anon_sym_api] = ACTIONS(1386), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1386), + [anon_sym_include] = ACTIONS(1386), + [anon_sym_DEF] = ACTIONS(1386), + [anon_sym_cdef] = ACTIONS(1386), + [anon_sym_cpdef] = ACTIONS(1386), + [anon_sym_new] = ACTIONS(1386), + [anon_sym_ctypedef] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_packed] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1386), + [sym__dedent] = ACTIONS(1388), + [sym_string_start] = ACTIONS(1388), + }, + [934] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [935] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [936] = { + [sym_identifier] = ACTIONS(1398), + [anon_sym_import] = ACTIONS(1398), + [anon_sym_cimport] = ACTIONS(1398), + [anon_sym_from] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_print] = ACTIONS(1398), + [anon_sym_assert] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_del] = ACTIONS(1398), + [anon_sym_raise] = ACTIONS(1398), + [anon_sym_pass] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_try] = ACTIONS(1398), + [anon_sym_except_STAR] = ACTIONS(1400), + [anon_sym_finally] = ACTIONS(1398), + [anon_sym_with] = ACTIONS(1398), + [anon_sym_def] = ACTIONS(1398), + [anon_sym_global] = ACTIONS(1398), + [anon_sym_nonlocal] = ACTIONS(1398), + [anon_sym_exec] = ACTIONS(1398), + [anon_sym_type] = ACTIONS(1398), + [anon_sym_class] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_not] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_lambda] = ACTIONS(1398), + [anon_sym_yield] = ACTIONS(1398), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1400), + [anon_sym_None] = ACTIONS(1398), + [sym_integer] = ACTIONS(1398), + [sym_float] = ACTIONS(1400), + [anon_sym_await] = ACTIONS(1398), + [anon_sym_api] = ACTIONS(1398), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1398), + [anon_sym_include] = ACTIONS(1398), + [anon_sym_DEF] = ACTIONS(1398), + [anon_sym_cdef] = ACTIONS(1398), + [anon_sym_cpdef] = ACTIONS(1398), + [anon_sym_new] = ACTIONS(1398), + [anon_sym_ctypedef] = ACTIONS(1398), + [anon_sym_public] = ACTIONS(1398), + [anon_sym_packed] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym_readonly] = ACTIONS(1398), + [anon_sym_sizeof] = ACTIONS(1398), + [sym__dedent] = ACTIONS(1400), + [sym_string_start] = ACTIONS(1400), + }, + [937] = { + [sym_identifier] = ACTIONS(1394), + [anon_sym_import] = ACTIONS(1394), + [anon_sym_cimport] = ACTIONS(1394), + [anon_sym_from] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_print] = ACTIONS(1394), + [anon_sym_assert] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_del] = ACTIONS(1394), + [anon_sym_raise] = ACTIONS(1394), + [anon_sym_pass] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_async] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_try] = ACTIONS(1394), + [anon_sym_except_STAR] = ACTIONS(1396), + [anon_sym_finally] = ACTIONS(1394), + [anon_sym_with] = ACTIONS(1394), + [anon_sym_def] = ACTIONS(1394), + [anon_sym_global] = ACTIONS(1394), + [anon_sym_nonlocal] = ACTIONS(1394), + [anon_sym_exec] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_class] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1396), + [anon_sym_AT] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_not] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_lambda] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1396), + [anon_sym_None] = ACTIONS(1394), + [sym_integer] = ACTIONS(1394), + [sym_float] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_api] = ACTIONS(1394), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1394), + [anon_sym_include] = ACTIONS(1394), + [anon_sym_DEF] = ACTIONS(1394), + [anon_sym_cdef] = ACTIONS(1394), + [anon_sym_cpdef] = ACTIONS(1394), + [anon_sym_new] = ACTIONS(1394), + [anon_sym_ctypedef] = ACTIONS(1394), + [anon_sym_public] = ACTIONS(1394), + [anon_sym_packed] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym_readonly] = ACTIONS(1394), + [anon_sym_sizeof] = ACTIONS(1394), + [sym__dedent] = ACTIONS(1396), + [sym_string_start] = ACTIONS(1396), + }, + [938] = { + [sym_identifier] = ACTIONS(1390), + [anon_sym_import] = ACTIONS(1390), + [anon_sym_cimport] = ACTIONS(1390), + [anon_sym_from] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_print] = ACTIONS(1390), + [anon_sym_assert] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_del] = ACTIONS(1390), + [anon_sym_raise] = ACTIONS(1390), + [anon_sym_pass] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_match] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_try] = ACTIONS(1390), + [anon_sym_except_STAR] = ACTIONS(1392), + [anon_sym_finally] = ACTIONS(1390), + [anon_sym_with] = ACTIONS(1390), + [anon_sym_def] = ACTIONS(1390), + [anon_sym_global] = ACTIONS(1390), + [anon_sym_nonlocal] = ACTIONS(1390), + [anon_sym_exec] = ACTIONS(1390), + [anon_sym_type] = ACTIONS(1390), + [anon_sym_class] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1392), + [anon_sym_AT] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1392), + [anon_sym_lambda] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1392), + [anon_sym_None] = ACTIONS(1390), + [sym_integer] = ACTIONS(1390), + [sym_float] = ACTIONS(1392), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_api] = ACTIONS(1390), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1390), + [anon_sym_include] = ACTIONS(1390), + [anon_sym_DEF] = ACTIONS(1390), + [anon_sym_cdef] = ACTIONS(1390), + [anon_sym_cpdef] = ACTIONS(1390), + [anon_sym_new] = ACTIONS(1390), + [anon_sym_ctypedef] = ACTIONS(1390), + [anon_sym_public] = ACTIONS(1390), + [anon_sym_packed] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym_readonly] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1390), + [sym__dedent] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1392), + }, + [939] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3912), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_COMMA] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2953), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [940] = { + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_list_splat_pattern] = STATE(1975), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3728), + [sym_primary_expression] = STATE(1927), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_attribute] = STATE(2021), + [sym_subscript] = STATE(2021), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(2839), + [anon_sym_from] = ACTIONS(2955), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(576), + [anon_sym_match] = ACTIONS(576), + [anon_sym_async] = ACTIONS(576), + [anon_sym_exec] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(1191), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -106904,424 +108332,2655 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(77), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(77), - [anon_sym_await] = ACTIONS(869), - [anon_sym_api] = ACTIONS(847), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(598), + [anon_sym_api] = ACTIONS(576), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(97), - [anon_sym_sizeof] = ACTIONS(103), - [sym__newline] = ACTIONS(2900), - [sym_string_start] = ACTIONS(105), - }, - [930] = { - [sym_identifier] = ACTIONS(2842), - [anon_sym_import] = ACTIONS(2842), - [anon_sym_cimport] = ACTIONS(2842), - [anon_sym_from] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_print] = ACTIONS(2842), - [anon_sym_assert] = ACTIONS(2842), - [anon_sym_return] = ACTIONS(2842), - [anon_sym_del] = ACTIONS(2842), - [anon_sym_raise] = ACTIONS(2842), - [anon_sym_pass] = ACTIONS(2842), - [anon_sym_break] = ACTIONS(2842), - [anon_sym_continue] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_else] = ACTIONS(2842), - [anon_sym_match] = ACTIONS(2842), - [anon_sym_async] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(2842), - [anon_sym_while] = ACTIONS(2842), - [anon_sym_try] = ACTIONS(2842), - [anon_sym_except] = ACTIONS(2842), - [anon_sym_finally] = ACTIONS(2842), - [anon_sym_with] = ACTIONS(2842), - [anon_sym_def] = ACTIONS(2842), - [anon_sym_global] = ACTIONS(2842), - [anon_sym_nonlocal] = ACTIONS(2842), - [anon_sym_exec] = ACTIONS(2842), - [anon_sym_type] = ACTIONS(2842), - [anon_sym_class] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2840), - [anon_sym_AT] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_not] = ACTIONS(2842), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_lambda] = ACTIONS(2842), - [anon_sym_yield] = ACTIONS(2842), - [sym_ellipsis] = ACTIONS(2840), - [anon_sym_None] = ACTIONS(2842), - [sym_integer] = ACTIONS(2842), - [sym_float] = ACTIONS(2840), - [anon_sym_await] = ACTIONS(2842), - [anon_sym_api] = ACTIONS(2842), - [sym_true] = ACTIONS(2842), - [sym_false] = ACTIONS(2842), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(2839), + [sym_string_start] = ACTIONS(107), + }, + [941] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2842), - [anon_sym_include] = ACTIONS(2842), - [anon_sym_DEF] = ACTIONS(2842), - [anon_sym_cdef] = ACTIONS(2842), - [anon_sym_cpdef] = ACTIONS(2842), - [anon_sym_new] = ACTIONS(2842), - [anon_sym_ctypedef] = ACTIONS(2842), - [anon_sym_public] = ACTIONS(2842), - [anon_sym_packed] = ACTIONS(2842), - [anon_sym_inline] = ACTIONS(2842), - [anon_sym_readonly] = ACTIONS(2842), - [anon_sym_sizeof] = ACTIONS(2842), - [sym__dedent] = ACTIONS(2840), - [sym_string_start] = ACTIONS(2840), - }, - [931] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_dictionary_splat] = STATE(5105), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(4281), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_pair] = STATE(5105), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1110), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(2904), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [942] = { + [sym_named_expression] = STATE(3283), + [sym__named_expression_lhs] = STATE(5367), + [sym_expression_list] = STATE(5089), + [sym_list_splat_pattern] = STATE(1975), + [sym_as_pattern] = STATE(3283), + [sym_expression] = STATE(3792), + [sym_primary_expression] = STATE(1927), + [sym_not_operator] = STATE(3283), + [sym_boolean_operator] = STATE(3283), + [sym_binary_operator] = STATE(2021), + [sym_unary_operator] = STATE(2021), + [sym_comparison_operator] = STATE(3283), + [sym_lambda] = STATE(3283), + [sym_attribute] = STATE(2021), + [sym_subscript] = STATE(2021), + [sym_ellipsis] = STATE(2021), + [sym_call] = STATE(2021), + [sym_list] = STATE(2021), + [sym_set] = STATE(2021), + [sym_tuple] = STATE(2021), + [sym_dictionary] = STATE(2021), + [sym_list_comprehension] = STATE(2021), + [sym_dictionary_comprehension] = STATE(2021), + [sym_set_comprehension] = STATE(2021), + [sym_generator_expression] = STATE(2021), + [sym_parenthesized_expression] = STATE(2021), + [sym_conditional_expression] = STATE(3283), + [sym_concatenated_string] = STATE(2021), + [sym_string] = STATE(1929), + [sym_none] = STATE(2021), + [sym_await] = STATE(2021), + [sym_new_expression] = STATE(3283), + [sym_sizeof_expression] = STATE(2021), + [sym_cast_expression] = STATE(2021), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(2959), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(576), + [anon_sym_match] = ACTIONS(576), + [anon_sym_async] = ACTIONS(576), + [anon_sym_exec] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(71), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(598), + [anon_sym_api] = ACTIONS(576), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), - }, - [932] = { - [ts_builtin_sym_end] = ACTIONS(1377), - [sym_identifier] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(1375), - [anon_sym_cimport] = ACTIONS(1375), - [anon_sym_from] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_print] = ACTIONS(1375), - [anon_sym_assert] = ACTIONS(1375), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_del] = ACTIONS(1375), - [anon_sym_raise] = ACTIONS(1375), - [anon_sym_pass] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1375), - [anon_sym_continue] = ACTIONS(1375), - [anon_sym_if] = ACTIONS(1375), - [anon_sym_else] = ACTIONS(1375), - [anon_sym_match] = ACTIONS(1375), - [anon_sym_async] = ACTIONS(1375), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_while] = ACTIONS(1375), - [anon_sym_try] = ACTIONS(1375), - [anon_sym_except] = ACTIONS(1375), - [anon_sym_finally] = ACTIONS(1375), - [anon_sym_with] = ACTIONS(1375), - [anon_sym_def] = ACTIONS(1375), - [anon_sym_global] = ACTIONS(1375), - [anon_sym_nonlocal] = ACTIONS(1375), - [anon_sym_exec] = ACTIONS(1375), - [anon_sym_type] = ACTIONS(1375), - [anon_sym_class] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1377), - [anon_sym_AT] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_not] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_lambda] = ACTIONS(1375), - [anon_sym_yield] = ACTIONS(1375), - [sym_ellipsis] = ACTIONS(1377), - [anon_sym_None] = ACTIONS(1375), - [sym_integer] = ACTIONS(1375), - [sym_float] = ACTIONS(1377), - [anon_sym_await] = ACTIONS(1375), - [anon_sym_api] = ACTIONS(1375), - [sym_true] = ACTIONS(1375), - [sym_false] = ACTIONS(1375), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(2959), + [sym_string_start] = ACTIONS(107), + }, + [943] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1375), - [anon_sym_include] = ACTIONS(1375), - [anon_sym_DEF] = ACTIONS(1375), - [anon_sym_cdef] = ACTIONS(1375), - [anon_sym_cpdef] = ACTIONS(1375), - [anon_sym_new] = ACTIONS(1375), - [anon_sym_ctypedef] = ACTIONS(1375), - [anon_sym_public] = ACTIONS(1375), - [anon_sym_packed] = ACTIONS(1375), - [anon_sym_inline] = ACTIONS(1375), - [anon_sym_readonly] = ACTIONS(1375), - [anon_sym_sizeof] = ACTIONS(1375), - [sym_string_start] = ACTIONS(1377), - }, - [933] = { - [sym_named_expression] = STATE(2935), - [sym__named_expression_lhs] = STATE(5331), - [sym_dictionary_splat] = STATE(5105), - [sym_list_splat_pattern] = STATE(2402), - [sym_as_pattern] = STATE(2935), - [sym_expression] = STATE(4281), - [sym_primary_expression] = STATE(1958), - [sym_not_operator] = STATE(2935), - [sym_boolean_operator] = STATE(2935), - [sym_binary_operator] = STATE(2436), - [sym_unary_operator] = STATE(2436), - [sym_comparison_operator] = STATE(2935), - [sym_lambda] = STATE(2935), - [sym_attribute] = STATE(2436), - [sym_subscript] = STATE(2436), - [sym_call] = STATE(2436), - [sym_list] = STATE(2436), - [sym_set] = STATE(2436), - [sym_tuple] = STATE(2436), - [sym_dictionary] = STATE(2436), - [sym_pair] = STATE(5105), - [sym_list_comprehension] = STATE(2436), - [sym_dictionary_comprehension] = STATE(2436), - [sym_set_comprehension] = STATE(2436), - [sym_generator_expression] = STATE(2436), - [sym_parenthesized_expression] = STATE(2436), - [sym_conditional_expression] = STATE(2935), - [sym_concatenated_string] = STATE(2436), - [sym_string] = STATE(2037), - [sym_none] = STATE(2436), - [sym_await] = STATE(2436), - [sym_new_expression] = STATE(2935), - [sym_sizeof_expression] = STATE(2436), - [sym_cast_expression] = STATE(2436), - [sym_identifier] = ACTIONS(1110), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_print] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_async] = ACTIONS(1116), - [anon_sym_STAR_STAR] = ACTIONS(2278), - [anon_sym_exec] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_LBRACE] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(2906), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_not] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1126), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_lambda] = ACTIONS(1130), - [sym_ellipsis] = ACTIONS(1132), - [anon_sym_None] = ACTIONS(1134), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1132), - [anon_sym_await] = ACTIONS(1138), - [anon_sym_api] = ACTIONS(1116), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [944] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2963), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_sizeof] = ACTIONS(1142), - [sym_string_start] = ACTIONS(1144), - }, - [934] = { - [sym_identifier] = ACTIONS(2834), - [anon_sym_import] = ACTIONS(2834), - [anon_sym_cimport] = ACTIONS(2834), - [anon_sym_from] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_print] = ACTIONS(2834), - [anon_sym_assert] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_del] = ACTIONS(2834), - [anon_sym_raise] = ACTIONS(2834), - [anon_sym_pass] = ACTIONS(2834), - [anon_sym_break] = ACTIONS(2834), - [anon_sym_continue] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_else] = ACTIONS(2834), - [anon_sym_match] = ACTIONS(2834), - [anon_sym_async] = ACTIONS(2834), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_while] = ACTIONS(2834), - [anon_sym_try] = ACTIONS(2834), - [anon_sym_except] = ACTIONS(2834), - [anon_sym_finally] = ACTIONS(2834), - [anon_sym_with] = ACTIONS(2834), - [anon_sym_def] = ACTIONS(2834), - [anon_sym_global] = ACTIONS(2834), - [anon_sym_nonlocal] = ACTIONS(2834), - [anon_sym_exec] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2834), - [anon_sym_class] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2832), - [anon_sym_AT] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_not] = ACTIONS(2834), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_lambda] = ACTIONS(2834), - [anon_sym_yield] = ACTIONS(2834), - [sym_ellipsis] = ACTIONS(2832), - [anon_sym_None] = ACTIONS(2834), - [sym_integer] = ACTIONS(2834), - [sym_float] = ACTIONS(2832), - [anon_sym_await] = ACTIONS(2834), - [anon_sym_api] = ACTIONS(2834), - [sym_true] = ACTIONS(2834), - [sym_false] = ACTIONS(2834), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [945] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2965), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [946] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [947] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2969), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [948] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [949] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [950] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [951] = { + [sym_identifier] = ACTIONS(2977), + [anon_sym_import] = ACTIONS(2977), + [anon_sym_cimport] = ACTIONS(2977), + [anon_sym_from] = ACTIONS(2977), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_print] = ACTIONS(2977), + [anon_sym_assert] = ACTIONS(2977), + [anon_sym_return] = ACTIONS(2977), + [anon_sym_del] = ACTIONS(2977), + [anon_sym_raise] = ACTIONS(2977), + [anon_sym_pass] = ACTIONS(2977), + [anon_sym_break] = ACTIONS(2977), + [anon_sym_continue] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_else] = ACTIONS(2977), + [anon_sym_match] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2977), + [anon_sym_for] = ACTIONS(2977), + [anon_sym_while] = ACTIONS(2977), + [anon_sym_try] = ACTIONS(2977), + [anon_sym_except] = ACTIONS(2977), + [anon_sym_finally] = ACTIONS(2977), + [anon_sym_with] = ACTIONS(2977), + [anon_sym_def] = ACTIONS(2977), + [anon_sym_global] = ACTIONS(2977), + [anon_sym_nonlocal] = ACTIONS(2977), + [anon_sym_exec] = ACTIONS(2977), + [anon_sym_type] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_AT] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_not] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2979), + [anon_sym_lambda] = ACTIONS(2977), + [anon_sym_yield] = ACTIONS(2977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2979), + [anon_sym_None] = ACTIONS(2977), + [sym_integer] = ACTIONS(2977), + [sym_float] = ACTIONS(2979), + [anon_sym_await] = ACTIONS(2977), + [anon_sym_api] = ACTIONS(2977), + [sym_true] = ACTIONS(2977), + [sym_false] = ACTIONS(2977), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2977), + [anon_sym_include] = ACTIONS(2977), + [anon_sym_DEF] = ACTIONS(2977), + [anon_sym_cdef] = ACTIONS(2977), + [anon_sym_cpdef] = ACTIONS(2977), + [anon_sym_new] = ACTIONS(2977), + [anon_sym_ctypedef] = ACTIONS(2977), + [anon_sym_public] = ACTIONS(2977), + [anon_sym_packed] = ACTIONS(2977), + [anon_sym_inline] = ACTIONS(2977), + [anon_sym_readonly] = ACTIONS(2977), + [anon_sym_sizeof] = ACTIONS(2977), + [sym__dedent] = ACTIONS(2979), + [sym_string_start] = ACTIONS(2979), + }, + [952] = { + [sym_identifier] = ACTIONS(2981), + [anon_sym_import] = ACTIONS(2981), + [anon_sym_cimport] = ACTIONS(2981), + [anon_sym_from] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_print] = ACTIONS(2981), + [anon_sym_assert] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2981), + [anon_sym_del] = ACTIONS(2981), + [anon_sym_raise] = ACTIONS(2981), + [anon_sym_pass] = ACTIONS(2981), + [anon_sym_break] = ACTIONS(2981), + [anon_sym_continue] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_else] = ACTIONS(2981), + [anon_sym_match] = ACTIONS(2981), + [anon_sym_async] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2981), + [anon_sym_while] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2981), + [anon_sym_except_STAR] = ACTIONS(2983), + [anon_sym_finally] = ACTIONS(2981), + [anon_sym_with] = ACTIONS(2981), + [anon_sym_def] = ACTIONS(2981), + [anon_sym_global] = ACTIONS(2981), + [anon_sym_nonlocal] = ACTIONS(2981), + [anon_sym_exec] = ACTIONS(2981), + [anon_sym_type] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_AT] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_not] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2983), + [anon_sym_lambda] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), + [anon_sym_None] = ACTIONS(2981), + [sym_integer] = ACTIONS(2981), + [sym_float] = ACTIONS(2983), + [anon_sym_await] = ACTIONS(2981), + [anon_sym_api] = ACTIONS(2981), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2981), + [anon_sym_include] = ACTIONS(2981), + [anon_sym_DEF] = ACTIONS(2981), + [anon_sym_cdef] = ACTIONS(2981), + [anon_sym_cpdef] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2981), + [anon_sym_ctypedef] = ACTIONS(2981), + [anon_sym_public] = ACTIONS(2981), + [anon_sym_packed] = ACTIONS(2981), + [anon_sym_inline] = ACTIONS(2981), + [anon_sym_readonly] = ACTIONS(2981), + [anon_sym_sizeof] = ACTIONS(2981), + [sym__dedent] = ACTIONS(2983), + [sym_string_start] = ACTIONS(2983), + }, + [953] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [954] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [955] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [956] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2991), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [957] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [958] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2995), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [959] = { + [ts_builtin_sym_end] = ACTIONS(2931), + [sym_identifier] = ACTIONS(2929), + [anon_sym_import] = ACTIONS(2929), + [anon_sym_cimport] = ACTIONS(2929), + [anon_sym_from] = ACTIONS(2929), + [anon_sym_LPAREN] = ACTIONS(2931), + [anon_sym_STAR] = ACTIONS(2931), + [anon_sym_print] = ACTIONS(2929), + [anon_sym_assert] = ACTIONS(2929), + [anon_sym_return] = ACTIONS(2929), + [anon_sym_del] = ACTIONS(2929), + [anon_sym_raise] = ACTIONS(2929), + [anon_sym_pass] = ACTIONS(2929), + [anon_sym_break] = ACTIONS(2929), + [anon_sym_continue] = ACTIONS(2929), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_else] = ACTIONS(2929), + [anon_sym_match] = ACTIONS(2929), + [anon_sym_async] = ACTIONS(2929), + [anon_sym_for] = ACTIONS(2929), + [anon_sym_while] = ACTIONS(2929), + [anon_sym_try] = ACTIONS(2929), + [anon_sym_except] = ACTIONS(2929), + [anon_sym_finally] = ACTIONS(2929), + [anon_sym_with] = ACTIONS(2929), + [anon_sym_def] = ACTIONS(2929), + [anon_sym_global] = ACTIONS(2929), + [anon_sym_nonlocal] = ACTIONS(2929), + [anon_sym_exec] = ACTIONS(2929), + [anon_sym_type] = ACTIONS(2929), + [anon_sym_class] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(2931), + [anon_sym_AT] = ACTIONS(2931), + [anon_sym_DASH] = ACTIONS(2931), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_PLUS] = ACTIONS(2931), + [anon_sym_not] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_TILDE] = ACTIONS(2931), + [anon_sym_LT] = ACTIONS(2931), + [anon_sym_lambda] = ACTIONS(2929), + [anon_sym_yield] = ACTIONS(2929), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2931), + [anon_sym_None] = ACTIONS(2929), + [sym_integer] = ACTIONS(2929), + [sym_float] = ACTIONS(2931), + [anon_sym_await] = ACTIONS(2929), + [anon_sym_api] = ACTIONS(2929), + [sym_true] = ACTIONS(2929), + [sym_false] = ACTIONS(2929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2929), + [anon_sym_include] = ACTIONS(2929), + [anon_sym_DEF] = ACTIONS(2929), + [anon_sym_cdef] = ACTIONS(2929), + [anon_sym_cpdef] = ACTIONS(2929), + [anon_sym_new] = ACTIONS(2929), + [anon_sym_ctypedef] = ACTIONS(2929), + [anon_sym_public] = ACTIONS(2929), + [anon_sym_packed] = ACTIONS(2929), + [anon_sym_inline] = ACTIONS(2929), + [anon_sym_readonly] = ACTIONS(2929), + [anon_sym_sizeof] = ACTIONS(2929), + [sym_string_start] = ACTIONS(2931), + }, + [960] = { + [ts_builtin_sym_end] = ACTIONS(2935), + [sym_identifier] = ACTIONS(2933), + [anon_sym_import] = ACTIONS(2933), + [anon_sym_cimport] = ACTIONS(2933), + [anon_sym_from] = ACTIONS(2933), + [anon_sym_LPAREN] = ACTIONS(2935), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_print] = ACTIONS(2933), + [anon_sym_assert] = ACTIONS(2933), + [anon_sym_return] = ACTIONS(2933), + [anon_sym_del] = ACTIONS(2933), + [anon_sym_raise] = ACTIONS(2933), + [anon_sym_pass] = ACTIONS(2933), + [anon_sym_break] = ACTIONS(2933), + [anon_sym_continue] = ACTIONS(2933), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_else] = ACTIONS(2933), + [anon_sym_match] = ACTIONS(2933), + [anon_sym_async] = ACTIONS(2933), + [anon_sym_for] = ACTIONS(2933), + [anon_sym_while] = ACTIONS(2933), + [anon_sym_try] = ACTIONS(2933), + [anon_sym_except_STAR] = ACTIONS(2935), + [anon_sym_finally] = ACTIONS(2933), + [anon_sym_with] = ACTIONS(2933), + [anon_sym_def] = ACTIONS(2933), + [anon_sym_global] = ACTIONS(2933), + [anon_sym_nonlocal] = ACTIONS(2933), + [anon_sym_exec] = ACTIONS(2933), + [anon_sym_type] = ACTIONS(2933), + [anon_sym_class] = ACTIONS(2933), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_AT] = ACTIONS(2935), + [anon_sym_DASH] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2935), + [anon_sym_PLUS] = ACTIONS(2935), + [anon_sym_not] = ACTIONS(2933), + [anon_sym_AMP] = ACTIONS(2935), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_LT] = ACTIONS(2935), + [anon_sym_lambda] = ACTIONS(2933), + [anon_sym_yield] = ACTIONS(2933), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2935), + [anon_sym_None] = ACTIONS(2933), + [sym_integer] = ACTIONS(2933), + [sym_float] = ACTIONS(2935), + [anon_sym_await] = ACTIONS(2933), + [anon_sym_api] = ACTIONS(2933), + [sym_true] = ACTIONS(2933), + [sym_false] = ACTIONS(2933), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2933), + [anon_sym_include] = ACTIONS(2933), + [anon_sym_DEF] = ACTIONS(2933), + [anon_sym_cdef] = ACTIONS(2933), + [anon_sym_cpdef] = ACTIONS(2933), + [anon_sym_new] = ACTIONS(2933), + [anon_sym_ctypedef] = ACTIONS(2933), + [anon_sym_public] = ACTIONS(2933), + [anon_sym_packed] = ACTIONS(2933), + [anon_sym_inline] = ACTIONS(2933), + [anon_sym_readonly] = ACTIONS(2933), + [anon_sym_sizeof] = ACTIONS(2933), + [sym_string_start] = ACTIONS(2935), + }, + [961] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [962] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [963] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [964] = { + [ts_builtin_sym_end] = ACTIONS(2979), + [sym_identifier] = ACTIONS(2977), + [anon_sym_import] = ACTIONS(2977), + [anon_sym_cimport] = ACTIONS(2977), + [anon_sym_from] = ACTIONS(2977), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_print] = ACTIONS(2977), + [anon_sym_assert] = ACTIONS(2977), + [anon_sym_return] = ACTIONS(2977), + [anon_sym_del] = ACTIONS(2977), + [anon_sym_raise] = ACTIONS(2977), + [anon_sym_pass] = ACTIONS(2977), + [anon_sym_break] = ACTIONS(2977), + [anon_sym_continue] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_else] = ACTIONS(2977), + [anon_sym_match] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2977), + [anon_sym_for] = ACTIONS(2977), + [anon_sym_while] = ACTIONS(2977), + [anon_sym_try] = ACTIONS(2977), + [anon_sym_except] = ACTIONS(2977), + [anon_sym_finally] = ACTIONS(2977), + [anon_sym_with] = ACTIONS(2977), + [anon_sym_def] = ACTIONS(2977), + [anon_sym_global] = ACTIONS(2977), + [anon_sym_nonlocal] = ACTIONS(2977), + [anon_sym_exec] = ACTIONS(2977), + [anon_sym_type] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_AT] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_not] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_TILDE] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2979), + [anon_sym_lambda] = ACTIONS(2977), + [anon_sym_yield] = ACTIONS(2977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2979), + [anon_sym_None] = ACTIONS(2977), + [sym_integer] = ACTIONS(2977), + [sym_float] = ACTIONS(2979), + [anon_sym_await] = ACTIONS(2977), + [anon_sym_api] = ACTIONS(2977), + [sym_true] = ACTIONS(2977), + [sym_false] = ACTIONS(2977), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2977), + [anon_sym_include] = ACTIONS(2977), + [anon_sym_DEF] = ACTIONS(2977), + [anon_sym_cdef] = ACTIONS(2977), + [anon_sym_cpdef] = ACTIONS(2977), + [anon_sym_new] = ACTIONS(2977), + [anon_sym_ctypedef] = ACTIONS(2977), + [anon_sym_public] = ACTIONS(2977), + [anon_sym_packed] = ACTIONS(2977), + [anon_sym_inline] = ACTIONS(2977), + [anon_sym_readonly] = ACTIONS(2977), + [anon_sym_sizeof] = ACTIONS(2977), + [sym_string_start] = ACTIONS(2979), + }, + [965] = { + [ts_builtin_sym_end] = ACTIONS(2983), + [sym_identifier] = ACTIONS(2981), + [anon_sym_import] = ACTIONS(2981), + [anon_sym_cimport] = ACTIONS(2981), + [anon_sym_from] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_print] = ACTIONS(2981), + [anon_sym_assert] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2981), + [anon_sym_del] = ACTIONS(2981), + [anon_sym_raise] = ACTIONS(2981), + [anon_sym_pass] = ACTIONS(2981), + [anon_sym_break] = ACTIONS(2981), + [anon_sym_continue] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_else] = ACTIONS(2981), + [anon_sym_match] = ACTIONS(2981), + [anon_sym_async] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2981), + [anon_sym_while] = ACTIONS(2981), + [anon_sym_try] = ACTIONS(2981), + [anon_sym_except_STAR] = ACTIONS(2983), + [anon_sym_finally] = ACTIONS(2981), + [anon_sym_with] = ACTIONS(2981), + [anon_sym_def] = ACTIONS(2981), + [anon_sym_global] = ACTIONS(2981), + [anon_sym_nonlocal] = ACTIONS(2981), + [anon_sym_exec] = ACTIONS(2981), + [anon_sym_type] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_AT] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_not] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2983), + [anon_sym_lambda] = ACTIONS(2981), + [anon_sym_yield] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), + [anon_sym_None] = ACTIONS(2981), + [sym_integer] = ACTIONS(2981), + [sym_float] = ACTIONS(2983), + [anon_sym_await] = ACTIONS(2981), + [anon_sym_api] = ACTIONS(2981), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2981), + [anon_sym_include] = ACTIONS(2981), + [anon_sym_DEF] = ACTIONS(2981), + [anon_sym_cdef] = ACTIONS(2981), + [anon_sym_cpdef] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2981), + [anon_sym_ctypedef] = ACTIONS(2981), + [anon_sym_public] = ACTIONS(2981), + [anon_sym_packed] = ACTIONS(2981), + [anon_sym_inline] = ACTIONS(2981), + [anon_sym_readonly] = ACTIONS(2981), + [anon_sym_sizeof] = ACTIONS(2981), + [sym_string_start] = ACTIONS(2983), + }, + [966] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(3003), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [967] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [968] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [969] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [970] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [971] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2834), - [anon_sym_include] = ACTIONS(2834), - [anon_sym_DEF] = ACTIONS(2834), - [anon_sym_cdef] = ACTIONS(2834), - [anon_sym_cpdef] = ACTIONS(2834), - [anon_sym_new] = ACTIONS(2834), - [anon_sym_ctypedef] = ACTIONS(2834), - [anon_sym_public] = ACTIONS(2834), - [anon_sym_packed] = ACTIONS(2834), - [anon_sym_inline] = ACTIONS(2834), - [anon_sym_readonly] = ACTIONS(2834), - [anon_sym_sizeof] = ACTIONS(2834), - [sym__dedent] = ACTIONS(2832), - [sym_string_start] = ACTIONS(2832), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [972] = { + [ts_builtin_sym_end] = ACTIONS(2917), + [sym_identifier] = ACTIONS(2915), + [anon_sym_import] = ACTIONS(2915), + [anon_sym_cimport] = ACTIONS(2915), + [anon_sym_from] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2917), + [anon_sym_STAR] = ACTIONS(2917), + [anon_sym_print] = ACTIONS(2915), + [anon_sym_assert] = ACTIONS(2915), + [anon_sym_return] = ACTIONS(2915), + [anon_sym_del] = ACTIONS(2915), + [anon_sym_raise] = ACTIONS(2915), + [anon_sym_pass] = ACTIONS(2915), + [anon_sym_break] = ACTIONS(2915), + [anon_sym_continue] = ACTIONS(2915), + [anon_sym_if] = ACTIONS(2915), + [anon_sym_else] = ACTIONS(2915), + [anon_sym_match] = ACTIONS(2915), + [anon_sym_async] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2915), + [anon_sym_while] = ACTIONS(2915), + [anon_sym_try] = ACTIONS(2915), + [anon_sym_except] = ACTIONS(2915), + [anon_sym_finally] = ACTIONS(2915), + [anon_sym_with] = ACTIONS(2915), + [anon_sym_def] = ACTIONS(2915), + [anon_sym_global] = ACTIONS(2915), + [anon_sym_nonlocal] = ACTIONS(2915), + [anon_sym_exec] = ACTIONS(2915), + [anon_sym_type] = ACTIONS(2915), + [anon_sym_class] = ACTIONS(2915), + [anon_sym_LBRACK] = ACTIONS(2917), + [anon_sym_AT] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(2917), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_not] = ACTIONS(2915), + [anon_sym_AMP] = ACTIONS(2917), + [anon_sym_TILDE] = ACTIONS(2917), + [anon_sym_LT] = ACTIONS(2917), + [anon_sym_lambda] = ACTIONS(2915), + [anon_sym_yield] = ACTIONS(2915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2917), + [anon_sym_None] = ACTIONS(2915), + [sym_integer] = ACTIONS(2915), + [sym_float] = ACTIONS(2917), + [anon_sym_await] = ACTIONS(2915), + [anon_sym_api] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2915), + [anon_sym_include] = ACTIONS(2915), + [anon_sym_DEF] = ACTIONS(2915), + [anon_sym_cdef] = ACTIONS(2915), + [anon_sym_cpdef] = ACTIONS(2915), + [anon_sym_new] = ACTIONS(2915), + [anon_sym_ctypedef] = ACTIONS(2915), + [anon_sym_public] = ACTIONS(2915), + [anon_sym_packed] = ACTIONS(2915), + [anon_sym_inline] = ACTIONS(2915), + [anon_sym_readonly] = ACTIONS(2915), + [anon_sym_sizeof] = ACTIONS(2915), + [sym_string_start] = ACTIONS(2917), + }, + [973] = { + [ts_builtin_sym_end] = ACTIONS(2921), + [sym_identifier] = ACTIONS(2919), + [anon_sym_import] = ACTIONS(2919), + [anon_sym_cimport] = ACTIONS(2919), + [anon_sym_from] = ACTIONS(2919), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2921), + [anon_sym_print] = ACTIONS(2919), + [anon_sym_assert] = ACTIONS(2919), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_del] = ACTIONS(2919), + [anon_sym_raise] = ACTIONS(2919), + [anon_sym_pass] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2919), + [anon_sym_continue] = ACTIONS(2919), + [anon_sym_if] = ACTIONS(2919), + [anon_sym_else] = ACTIONS(2919), + [anon_sym_match] = ACTIONS(2919), + [anon_sym_async] = ACTIONS(2919), + [anon_sym_for] = ACTIONS(2919), + [anon_sym_while] = ACTIONS(2919), + [anon_sym_try] = ACTIONS(2919), + [anon_sym_except] = ACTIONS(2919), + [anon_sym_finally] = ACTIONS(2919), + [anon_sym_with] = ACTIONS(2919), + [anon_sym_def] = ACTIONS(2919), + [anon_sym_global] = ACTIONS(2919), + [anon_sym_nonlocal] = ACTIONS(2919), + [anon_sym_exec] = ACTIONS(2919), + [anon_sym_type] = ACTIONS(2919), + [anon_sym_class] = ACTIONS(2919), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_AT] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_not] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2921), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_lambda] = ACTIONS(2919), + [anon_sym_yield] = ACTIONS(2919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2921), + [anon_sym_None] = ACTIONS(2919), + [sym_integer] = ACTIONS(2919), + [sym_float] = ACTIONS(2921), + [anon_sym_await] = ACTIONS(2919), + [anon_sym_api] = ACTIONS(2919), + [sym_true] = ACTIONS(2919), + [sym_false] = ACTIONS(2919), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2919), + [anon_sym_include] = ACTIONS(2919), + [anon_sym_DEF] = ACTIONS(2919), + [anon_sym_cdef] = ACTIONS(2919), + [anon_sym_cpdef] = ACTIONS(2919), + [anon_sym_new] = ACTIONS(2919), + [anon_sym_ctypedef] = ACTIONS(2919), + [anon_sym_public] = ACTIONS(2919), + [anon_sym_packed] = ACTIONS(2919), + [anon_sym_inline] = ACTIONS(2919), + [anon_sym_readonly] = ACTIONS(2919), + [anon_sym_sizeof] = ACTIONS(2919), + [sym_string_start] = ACTIONS(2921), + }, + [974] = { + [ts_builtin_sym_end] = ACTIONS(2925), + [sym_identifier] = ACTIONS(2923), + [anon_sym_import] = ACTIONS(2923), + [anon_sym_cimport] = ACTIONS(2923), + [anon_sym_from] = ACTIONS(2923), + [anon_sym_LPAREN] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_print] = ACTIONS(2923), + [anon_sym_assert] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2923), + [anon_sym_del] = ACTIONS(2923), + [anon_sym_raise] = ACTIONS(2923), + [anon_sym_pass] = ACTIONS(2923), + [anon_sym_break] = ACTIONS(2923), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_else] = ACTIONS(2923), + [anon_sym_match] = ACTIONS(2923), + [anon_sym_async] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2923), + [anon_sym_while] = ACTIONS(2923), + [anon_sym_try] = ACTIONS(2923), + [anon_sym_except_STAR] = ACTIONS(2925), + [anon_sym_finally] = ACTIONS(2923), + [anon_sym_with] = ACTIONS(2923), + [anon_sym_def] = ACTIONS(2923), + [anon_sym_global] = ACTIONS(2923), + [anon_sym_nonlocal] = ACTIONS(2923), + [anon_sym_exec] = ACTIONS(2923), + [anon_sym_type] = ACTIONS(2923), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_AT] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_not] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_LT] = ACTIONS(2925), + [anon_sym_lambda] = ACTIONS(2923), + [anon_sym_yield] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2925), + [anon_sym_None] = ACTIONS(2923), + [sym_integer] = ACTIONS(2923), + [sym_float] = ACTIONS(2925), + [anon_sym_await] = ACTIONS(2923), + [anon_sym_api] = ACTIONS(2923), + [sym_true] = ACTIONS(2923), + [sym_false] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2923), + [anon_sym_include] = ACTIONS(2923), + [anon_sym_DEF] = ACTIONS(2923), + [anon_sym_cdef] = ACTIONS(2923), + [anon_sym_cpdef] = ACTIONS(2923), + [anon_sym_new] = ACTIONS(2923), + [anon_sym_ctypedef] = ACTIONS(2923), + [anon_sym_public] = ACTIONS(2923), + [anon_sym_packed] = ACTIONS(2923), + [anon_sym_inline] = ACTIONS(2923), + [anon_sym_readonly] = ACTIONS(2923), + [anon_sym_sizeof] = ACTIONS(2923), + [sym_string_start] = ACTIONS(2925), + }, + [975] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(3015), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [976] = { + [sym_named_expression] = STATE(2496), + [sym__named_expression_lhs] = STATE(5456), + [sym_list_splat_pattern] = STATE(2477), + [sym_as_pattern] = STATE(2496), + [sym_expression] = STATE(3985), + [sym_primary_expression] = STATE(2005), + [sym_not_operator] = STATE(2496), + [sym_boolean_operator] = STATE(2496), + [sym_binary_operator] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_comparison_operator] = STATE(2496), + [sym_lambda] = STATE(2496), + [sym_attribute] = STATE(2523), + [sym_subscript] = STATE(2523), + [sym_slice] = STATE(5097), + [sym_ellipsis] = STATE(2523), + [sym_call] = STATE(2523), + [sym_list] = STATE(2523), + [sym_set] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_dictionary] = STATE(2523), + [sym_list_comprehension] = STATE(2523), + [sym_dictionary_comprehension] = STATE(2523), + [sym_set_comprehension] = STATE(2523), + [sym_generator_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2523), + [sym_conditional_expression] = STATE(2496), + [sym_concatenated_string] = STATE(2523), + [sym_string] = STATE(2096), + [sym_none] = STATE(2523), + [sym_await] = STATE(2523), + [sym_new_expression] = STATE(2496), + [sym_sizeof_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_identifier] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_print] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_exec] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_RBRACK] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_lambda] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2443), + [anon_sym_api] = ACTIONS(2431), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_sizeof] = ACTIONS(2251), + [sym_string_start] = ACTIONS(2253), + }, + [977] = { + [ts_builtin_sym_end] = ACTIONS(2943), + [sym_identifier] = ACTIONS(2941), + [anon_sym_import] = ACTIONS(2941), + [anon_sym_cimport] = ACTIONS(2941), + [anon_sym_from] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_print] = ACTIONS(2941), + [anon_sym_assert] = ACTIONS(2941), + [anon_sym_return] = ACTIONS(2941), + [anon_sym_del] = ACTIONS(2941), + [anon_sym_raise] = ACTIONS(2941), + [anon_sym_pass] = ACTIONS(2941), + [anon_sym_break] = ACTIONS(2941), + [anon_sym_continue] = ACTIONS(2941), + [anon_sym_if] = ACTIONS(2941), + [anon_sym_else] = ACTIONS(2941), + [anon_sym_match] = ACTIONS(2941), + [anon_sym_async] = ACTIONS(2941), + [anon_sym_for] = ACTIONS(2941), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_try] = ACTIONS(2941), + [anon_sym_except_STAR] = ACTIONS(2943), + [anon_sym_finally] = ACTIONS(2941), + [anon_sym_with] = ACTIONS(2941), + [anon_sym_def] = ACTIONS(2941), + [anon_sym_global] = ACTIONS(2941), + [anon_sym_nonlocal] = ACTIONS(2941), + [anon_sym_exec] = ACTIONS(2941), + [anon_sym_type] = ACTIONS(2941), + [anon_sym_class] = ACTIONS(2941), + [anon_sym_LBRACK] = ACTIONS(2943), + [anon_sym_AT] = ACTIONS(2943), + [anon_sym_DASH] = ACTIONS(2943), + [anon_sym_LBRACE] = ACTIONS(2943), + [anon_sym_PLUS] = ACTIONS(2943), + [anon_sym_not] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_TILDE] = ACTIONS(2943), + [anon_sym_LT] = ACTIONS(2943), + [anon_sym_lambda] = ACTIONS(2941), + [anon_sym_yield] = ACTIONS(2941), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2943), + [anon_sym_None] = ACTIONS(2941), + [sym_integer] = ACTIONS(2941), + [sym_float] = ACTIONS(2943), + [anon_sym_await] = ACTIONS(2941), + [anon_sym_api] = ACTIONS(2941), + [sym_true] = ACTIONS(2941), + [sym_false] = ACTIONS(2941), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2941), + [anon_sym_include] = ACTIONS(2941), + [anon_sym_DEF] = ACTIONS(2941), + [anon_sym_cdef] = ACTIONS(2941), + [anon_sym_cpdef] = ACTIONS(2941), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_ctypedef] = ACTIONS(2941), + [anon_sym_public] = ACTIONS(2941), + [anon_sym_packed] = ACTIONS(2941), + [anon_sym_inline] = ACTIONS(2941), + [anon_sym_readonly] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2941), + [sym_string_start] = ACTIONS(2943), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 28, - ACTIONS(2204), 1, + [0] = 23, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(1206), 1, + anon_sym_STAR, + ACTIONS(1214), 1, + anon_sym_LT, + ACTIONS(1216), 1, + anon_sym_await, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(3038), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(565), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1204), 2, + anon_sym_not, + anon_sym_or, + ACTIONS(1199), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1141), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1212), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1208), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + ACTIONS(563), 8, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [111] = 28, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2437), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(2441), 1, anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(2443), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2445), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(2781), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2835), 1, anon_sym_STAR, - ACTIONS(2908), 1, + ACTIONS(2887), 1, anon_sym_COLON, - ACTIONS(2910), 1, - anon_sym_RBRACK, - STATE(1967), 1, + STATE(2005), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2096), 1, sym_string, - STATE(2490), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(3985), 1, sym_expression, - STATE(5044), 1, + STATE(5097), 1, sym_slice, - STATE(5443), 1, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -107330,11 +110989,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -107350,207 +111010,161 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [121] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2914), 14, - sym__dedent, - sym_string_start, + [232] = 27, + ACTIONS(2187), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2193), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2197), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2912), 48, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - sym_integer, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, + anon_sym_sizeof, + ACTIONS(2211), 1, + sym_string_start, + ACTIONS(2315), 1, sym_identifier, + ACTIONS(2329), 1, + anon_sym_not, + ACTIONS(2331), 1, + anon_sym_LT, + ACTIONS(2337), 1, anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, + ACTIONS(2339), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [192] = 3, + ACTIONS(2703), 1, + anon_sym_STAR, + ACTIONS(2709), 1, + anon_sym_lambda, + STATE(1945), 1, + sym_primary_expression, + STATE(2004), 1, + sym_string, + STATE(2272), 1, + sym_list_splat_pattern, + STATE(3765), 1, + sym_expression, + STATE(5551), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2916), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + STATE(4030), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2185), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2195), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2918), 48, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2323), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [263] = 28, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, + STATE(2171), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2168), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [351] = 27, + ACTIONS(1286), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, + ACTIONS(1292), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(1296), 1, anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, + anon_sym_None, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(1310), 1, + anon_sym_sizeof, + ACTIONS(1312), 1, + sym_string_start, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2744), 1, + anon_sym_await, + ACTIONS(2831), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(2920), 1, - anon_sym_RBRACK, - STATE(1967), 1, + STATE(2031), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2152), 1, sym_string, - STATE(2490), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(4067), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5311), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(2825), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -107559,11 +111173,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -107579,15 +111194,15 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [384] = 5, - ACTIONS(2412), 1, + [470] = 5, + ACTIONS(2467), 1, anon_sym_else, - STATE(1272), 1, + STATE(1665), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2922), 14, + ACTIONS(3019), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -107600,9 +111215,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2924), 46, + ACTIONS(3021), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -107649,163 +111264,415 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [459] = 28, - ACTIONS(2204), 1, + [545] = 5, + ACTIONS(2511), 1, + anon_sym_else, + STATE(1529), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3025), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2210), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2214), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2220), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3023), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(2224), 1, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(2226), 1, + [620] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3029), 14, + sym__dedent, sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(2400), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3027), 48, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(2402), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2404), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [691] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3029), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(2926), 1, - anon_sym_RBRACK, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(3944), 1, - sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, - sym__named_expression_lhs, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3027), 48, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [762] = 5, + ACTIONS(2511), 1, + anon_sym_else, + STATE(1604), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, + ACTIONS(3033), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2202), 3, + ACTIONS(3031), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(2212), 4, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [837] = 5, + ACTIONS(2511), 1, + anon_sym_else, + STATE(1610), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3037), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3035), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [580] = 27, - ACTIONS(2204), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [912] = 27, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2437), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(2441), 1, anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(2443), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2445), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(2781), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2835), 1, anon_sym_STAR, - ACTIONS(2930), 1, - anon_sym_COLON, - STATE(1967), 1, + STATE(2005), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2096), 1, sym_string, - STATE(2490), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(3903), 1, + STATE(4109), 1, sym_expression, - STATE(5443), 1, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2928), 2, + ACTIONS(2839), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(2202), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -107814,11 +111681,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -107834,71 +111702,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [699] = 28, - ACTIONS(2204), 1, + [1031] = 27, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2299), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2301), 1, anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2309), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2595), 1, + anon_sym_await, + ACTIONS(2728), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(2932), 1, - anon_sym_RBRACK, - STATE(1967), 1, + ACTIONS(2734), 1, + anon_sym_lambda, + STATE(1956), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2051), 1, sym_string, - STATE(2490), 1, + STATE(2326), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(3733), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5492), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + STATE(4226), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2255), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2591), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2375), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -107907,11 +111773,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -107927,71 +111794,279 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [820] = 28, - ACTIONS(2204), 1, + [1150] = 5, + ACTIONS(2511), 1, + anon_sym_else, + STATE(1559), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3041), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2210), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2214), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2220), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3039), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(2224), 1, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(2226), 1, + [1225] = 5, + ACTIONS(2467), 1, + anon_sym_else, + STATE(1435), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3043), 14, sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(2400), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3045), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(2402), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2404), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(2742), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [1300] = 5, + ACTIONS(2511), 1, + anon_sym_else, + STATE(1562), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3043), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3045), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(2878), 1, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [1375] = 27, + ACTIONS(1703), 1, + anon_sym_LPAREN, + ACTIONS(1709), 1, + anon_sym_LBRACK, + ACTIONS(1713), 1, + anon_sym_LBRACE, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, + anon_sym_None, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, + anon_sym_sizeof, + ACTIONS(1727), 1, + sym_string_start, + ACTIONS(2409), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(2934), 1, - anon_sym_RBRACK, - STATE(1967), 1, + ACTIONS(2417), 1, + anon_sym_LT, + ACTIONS(2693), 1, + sym_identifier, + ACTIONS(2701), 1, + anon_sym_await, + ACTIONS(2817), 1, + anon_sym_not, + ACTIONS(2819), 1, + anon_sym_lambda, + ACTIONS(2821), 1, + anon_sym_new, + STATE(1942), 1, sym_primary_expression, - STATE(2110), 1, + STATE(1976), 1, sym_string, - STATE(2490), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(4080), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5493), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(2825), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -108000,11 +112075,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -108020,84 +112096,78 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [941] = 28, - ACTIONS(2204), 1, + [1494] = 22, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(1206), 1, + anon_sym_STAR, + ACTIONS(1214), 1, anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(1216), 1, anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(2936), 1, - anon_sym_RBRACK, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, + STATE(2028), 1, sym_string, - STATE(2490), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3944), 1, - sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, - sym__named_expression_lhs, + STATE(3038), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(1201), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1141), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(1199), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, + ACTIONS(1402), 8, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -108113,164 +112183,279 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1062] = 28, - ACTIONS(2204), 1, + [1603] = 5, + ACTIONS(2511), 1, + anon_sym_else, + STATE(1563), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3049), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2210), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2214), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(2400), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3047), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(2402), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2404), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(2938), 1, - anon_sym_RBRACK, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(3944), 1, - sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [1678] = 5, + ACTIONS(2515), 1, + anon_sym_finally, + STATE(1565), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, + ACTIONS(3053), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2202), 3, + ACTIONS(3051), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(2212), 4, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [1753] = 5, + ACTIONS(2467), 1, + anon_sym_else, + STATE(1679), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3055), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3057), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [1183] = 28, - ACTIONS(2204), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [1828] = 27, + ACTIONS(2187), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2329), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2331), 1, anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(2337), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2339), 1, anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2703), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(2940), 1, - anon_sym_RBRACK, - STATE(1967), 1, + ACTIONS(2709), 1, + anon_sym_lambda, + STATE(1945), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2004), 1, sym_string, - STATE(2490), 1, + STATE(2272), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(3765), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5551), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + STATE(4075), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -108279,11 +112464,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -108299,84 +112485,78 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1304] = 28, - ACTIONS(2204), 1, + [1947] = 22, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(1206), 1, + anon_sym_STAR, + ACTIONS(1214), 1, anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(1216), 1, anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(2942), 1, - anon_sym_RBRACK, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, + STATE(2028), 1, sym_string, - STATE(2490), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3944), 1, - sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, - sym__named_expression_lhs, + STATE(3038), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(565), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1141), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(596), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, + ACTIONS(563), 8, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -108392,70 +112572,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1425] = 27, - ACTIONS(67), 1, + [2056] = 27, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1234), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(79), 1, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1254), 1, anon_sym_new, - ACTIONS(103), 1, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(832), 1, - sym_identifier, - ACTIONS(869), 1, + ACTIONS(1376), 1, + anon_sym_LBRACK, + ACTIONS(1378), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(2159), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2521), 1, + sym_identifier, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(2944), 1, - anon_sym_from, - STATE(1918), 1, + ACTIONS(2805), 1, + anon_sym_lambda, + STATE(1953), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2056), 1, sym_string, - STATE(1985), 1, + STATE(2287), 1, sym_list_splat_pattern, - STATE(3722), 1, + STATE(3775), 1, sym_expression, - STATE(5376), 1, + STATE(5490), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(2814), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(81), 3, + STATE(4145), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -108464,11 +112643,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -108484,71 +112664,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1544] = 28, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, + [2175] = 28, + ACTIONS(1286), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, + ACTIONS(1292), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(1296), 1, anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, + anon_sym_None, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(1310), 1, + anon_sym_sizeof, + ACTIONS(1312), 1, + sym_string_start, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2744), 1, + anon_sym_await, + ACTIONS(2831), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(2946), 1, - anon_sym_RBRACK, - STATE(1967), 1, + ACTIONS(3059), 1, + anon_sym_RPAREN, + STATE(2031), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2152), 1, sym_string, - STATE(2490), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(4052), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5177), 1, + sym_with_item, + STATE(5311), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -108557,11 +112736,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -108577,15 +112757,15 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1665] = 5, - ACTIONS(2416), 1, - anon_sym_finally, - STATE(1379), 1, - sym_finally_clause, + [2296] = 5, + ACTIONS(2467), 1, + anon_sym_else, + STATE(1437), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2948), 14, + ACTIONS(3049), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -108598,9 +112778,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2950), 46, + ACTIONS(3047), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -108647,70 +112827,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [1740] = 27, - ACTIONS(2204), 1, + [2371] = 28, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(2954), 1, + ACTIONS(3061), 1, anon_sym_COLON, - STATE(1967), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2028), 1, sym_string, - STATE(2490), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3946), 1, + STATE(4074), 1, sym_expression, - STATE(5443), 1, + STATE(5039), 1, + sym_with_item, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2952), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2202), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -108719,11 +112899,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -108739,141 +112920,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1859] = 5, - ACTIONS(2452), 1, - anon_sym_finally, - STATE(1314), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2958), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [2492] = 27, + ACTIONS(1232), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2956), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(1234), 1, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1254), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [1934] = 28, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(1376), 1, + anon_sym_LBRACK, + ACTIONS(1378), 1, anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(2159), 1, + anon_sym_LPAREN, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(2960), 1, - anon_sym_RBRACK, - STATE(1967), 1, + ACTIONS(2805), 1, + anon_sym_lambda, + STATE(1953), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2056), 1, sym_string, - STATE(2490), 1, + STATE(2287), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(3822), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5490), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + STATE(4195), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -108882,11 +112991,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -108902,15 +113012,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [2055] = 5, - ACTIONS(2412), 1, - anon_sym_else, - STATE(1364), 1, - sym_else_clause, + [2611] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2962), 14, + ACTIONS(3063), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -108923,9 +113029,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2964), 46, + ACTIONS(3065), 48, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -108938,6 +113044,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -108972,141 +113080,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [2130] = 5, - ACTIONS(2412), 1, - anon_sym_else, - STATE(1298), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2966), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [2682] = 27, + ACTIONS(67), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2968), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(69), 1, anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [2205] = 28, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(2970), 1, - anon_sym_RBRACK, - STATE(1967), 1, + STATE(1927), 1, sym_primary_expression, - STATE(2110), 1, + STATE(1929), 1, sym_string, - STATE(2490), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(3942), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(3067), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -109115,11 +113151,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -109135,71 +113172,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [2326] = 28, - ACTIONS(2204), 1, + [2801] = 27, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2437), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(2441), 1, anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(2443), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2445), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(2781), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2835), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(2972), 1, - anon_sym_RBRACK, - STATE(1967), 1, + STATE(2005), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2096), 1, sym_string, - STATE(2490), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(4083), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(3069), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -109208,11 +113243,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -109228,234 +113264,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [2447] = 5, - ACTIONS(2448), 1, - anon_sym_else, - STATE(1295), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2976), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [2920] = 27, + ACTIONS(67), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2974), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(69), 1, anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [2522] = 28, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(2978), 1, - anon_sym_RBRACK, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(3944), 1, - sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2212), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2390), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [2643] = 28, - ACTIONS(2204), 1, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2843), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(2980), 1, - anon_sym_RBRACK, - STATE(1967), 1, + STATE(1927), 1, sym_primary_expression, - STATE(2110), 1, + STATE(1929), 1, sym_string, - STATE(2490), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(3942), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(3071), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -109464,11 +113335,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -109484,11 +113356,15 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [2764] = 3, + [3039] = 5, + ACTIONS(2471), 1, + anon_sym_finally, + STATE(1452), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2914), 14, + ACTIONS(3053), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -109501,9 +113377,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2912), 48, + ACTIONS(3051), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -109516,8 +113392,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -109552,257 +113426,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [2835] = 28, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, + [3114] = 27, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(2982), 1, - anon_sym_RBRACK, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(3944), 1, - sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2212), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2390), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [2956] = 28, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(2984), 1, - anon_sym_RBRACK, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(3944), 1, - sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2212), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2390), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [3077] = 28, - ACTIONS(2204), 1, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2843), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(2986), 1, - anon_sym_RBRACK, - STATE(1967), 1, + STATE(1927), 1, sym_primary_expression, - STATE(2110), 1, + STATE(1929), 1, sym_string, - STATE(2490), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(3728), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(3073), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -109811,11 +113497,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -109831,71 +113518,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [3198] = 28, - ACTIONS(2204), 1, + [3233] = 27, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2437), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(2441), 1, anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(2443), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2445), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(2781), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2835), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(2988), 1, - anon_sym_RBRACK, - STATE(1967), 1, + STATE(2005), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2096), 1, sym_string, - STATE(2490), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(4047), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(3075), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -109904,11 +113589,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -109924,71 +113610,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [3319] = 28, - ACTIONS(2204), 1, + [3352] = 27, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2437), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(2441), 1, anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(2443), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2445), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(2781), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2835), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(2990), 1, - anon_sym_RBRACK, - STATE(1967), 1, + STATE(2005), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2096), 1, sym_string, - STATE(2490), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(4109), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(2825), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -109997,11 +113681,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -110017,17 +113702,17 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [3440] = 5, - ACTIONS(2448), 1, - anon_sym_else, - STATE(1330), 1, - sym_else_clause, + [3471] = 5, + ACTIONS(2471), 1, + anon_sym_finally, + STATE(1684), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2994), 14, - sym__dedent, + ACTIONS(3077), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -110038,9 +113723,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2992), 46, + ACTIONS(3079), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -110087,201 +113772,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [3515] = 28, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(2996), 1, - anon_sym_RBRACK, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(3944), 1, - sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2212), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2390), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [3636] = 28, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(2998), 1, - anon_sym_RBRACK, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(3944), 1, - sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2212), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2390), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [3757] = 5, - ACTIONS(2412), 1, + [3546] = 5, + ACTIONS(2467), 1, anon_sym_else, - STATE(1281), 1, + STATE(1361), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3000), 14, + ACTIONS(3081), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -110294,9 +113793,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3002), 46, + ACTIONS(3083), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -110343,15 +113842,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [3832] = 5, - ACTIONS(2412), 1, + [3621] = 5, + ACTIONS(2467), 1, anon_sym_else, - STATE(1293), 1, + STATE(1307), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3004), 14, + ACTIONS(3033), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -110364,9 +113863,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3006), 46, + ACTIONS(3031), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -110413,87 +113912,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [3907] = 5, - ACTIONS(2448), 1, - anon_sym_else, - STATE(1332), 1, - sym_else_clause, + [3696] = 27, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, + anon_sym_LBRACE, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, + anon_sym_None, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, + anon_sym_sizeof, + ACTIONS(2253), 1, + sym_string_start, + ACTIONS(2437), 1, + anon_sym_not, + ACTIONS(2439), 1, + anon_sym_LT, + ACTIONS(2441), 1, + anon_sym_lambda, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2445), 1, + anon_sym_new, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, + anon_sym_STAR, + STATE(2005), 1, + sym_primary_expression, + STATE(2096), 1, + sym_string, + STATE(2477), 1, + sym_list_splat_pattern, + STATE(4099), 1, + sym_expression, + STATE(5456), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2966), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2893), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2227), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2237), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2968), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2431), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [3982] = 5, - ACTIONS(2412), 1, + STATE(2496), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2523), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [3815] = 5, + ACTIONS(2511), 1, anon_sym_else, - STATE(1346), 1, + STATE(1579), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3008), 14, + ACTIONS(3019), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -110504,9 +114025,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3010), 46, + ACTIONS(3021), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -110553,70 +114074,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [4057] = 27, - ACTIONS(2204), 1, + [3890] = 27, + ACTIONS(2187), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2329), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2331), 1, anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(2337), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2339), 1, anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2703), 1, anon_sym_STAR, - ACTIONS(3014), 1, - anon_sym_COLON, - STATE(1967), 1, + ACTIONS(2709), 1, + anon_sym_lambda, + STATE(1945), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2004), 1, sym_string, - STATE(2490), 1, + STATE(2272), 1, sym_list_splat_pattern, - STATE(3994), 1, + STATE(3735), 1, sym_expression, - STATE(5443), 1, + STATE(5551), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(3012), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2202), 3, + STATE(4189), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -110625,11 +114145,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -110645,17 +114166,17 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [4176] = 5, - ACTIONS(2448), 1, + [4009] = 5, + ACTIONS(2467), 1, anon_sym_else, - STATE(1357), 1, + STATE(1325), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3008), 14, - sym__dedent, + ACTIONS(3085), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -110666,9 +114187,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3010), 46, + ACTIONS(3087), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -110715,71 +114236,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [4251] = 28, - ACTIONS(2204), 1, + [4084] = 27, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2299), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2301), 1, anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2309), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2595), 1, + anon_sym_await, + ACTIONS(2728), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(3016), 1, - anon_sym_RBRACK, - STATE(1967), 1, + ACTIONS(2734), 1, + anon_sym_lambda, + STATE(1956), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2051), 1, sym_string, - STATE(2490), 1, + STATE(2326), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(3733), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5492), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + STATE(4119), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2255), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2591), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2375), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -110788,11 +114307,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -110808,71 +114328,138 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [4372] = 28, - ACTIONS(2204), 1, + [4203] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3063), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2210), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2214), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2220), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3065), 48, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(2224), 1, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, + [4274] = 28, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(3018), 1, - anon_sym_RBRACK, - STATE(1967), 1, + ACTIONS(3089), 1, + anon_sym_LPAREN, + STATE(1963), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2028), 1, sym_string, - STATE(2490), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(4074), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(4769), 1, + sym_with_item, + STATE(5197), 1, sym__named_expression_lhs, + STATE(5268), 1, + sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -110881,11 +114468,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -110901,71 +114489,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [4493] = 28, - ACTIONS(2204), 1, + [4395] = 27, + ACTIONS(2187), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2329), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2331), 1, anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(2337), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2339), 1, anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2703), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(3020), 1, - anon_sym_RBRACK, - STATE(1967), 1, + ACTIONS(2709), 1, + anon_sym_lambda, + STATE(1945), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2004), 1, sym_string, - STATE(2490), 1, + STATE(2272), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(3741), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5551), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + STATE(4243), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -110974,11 +114560,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -110994,71 +114581,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [4614] = 28, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, + [4514] = 28, + ACTIONS(1286), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, + ACTIONS(1292), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(1296), 1, anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, + anon_sym_None, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(1310), 1, + anon_sym_sizeof, + ACTIONS(1312), 1, + sym_string_start, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2744), 1, + anon_sym_await, + ACTIONS(2831), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(3022), 1, - anon_sym_RBRACK, - STATE(1967), 1, + ACTIONS(3091), 1, + anon_sym_RPAREN, + STATE(2031), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2152), 1, sym_string, - STATE(2490), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(4052), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5177), 1, + sym_with_item, + STATE(5311), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -111067,11 +114653,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -111087,17 +114674,17 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [4735] = 5, - ACTIONS(2412), 1, + [4635] = 5, + ACTIONS(2511), 1, anon_sym_else, - STATE(1274), 1, + STATE(1583), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2994), 14, + ACTIONS(3055), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -111108,9 +114695,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2992), 46, + ACTIONS(3057), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -111157,141 +114744,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [4810] = 5, - ACTIONS(2448), 1, - anon_sym_else, - STATE(1317), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3004), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, + [4710] = 28, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1123), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1127), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, + ACTIONS(1129), 1, + anon_sym_not, + ACTIONS(1135), 1, + anon_sym_lambda, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, sym_float, - ACTIONS(3006), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1145), 1, anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, + ACTIONS(1147), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1149), 1, anon_sym_sizeof, - [4885] = 28, - ACTIONS(2204), 1, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(3089), 1, + anon_sym_LPAREN, + STATE(1963), 1, + sym_primary_expression, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(4074), 1, + sym_expression, + STATE(4769), 1, + sym_with_item, + STATE(5197), 1, + sym__named_expression_lhs, + STATE(5455), 1, + sym_with_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1131), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1121), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2946), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [4831] = 28, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2437), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(2441), 1, anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(2443), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2445), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(2781), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2835), 1, anon_sym_STAR, - ACTIONS(2908), 1, + ACTIONS(2887), 1, anon_sym_COLON, - ACTIONS(3024), 1, - anon_sym_RBRACK, - STATE(1967), 1, + STATE(2005), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2096), 1, sym_string, - STATE(2490), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(3811), 1, sym_expression, - STATE(5044), 1, + STATE(4919), 1, sym_slice, - STATE(5443), 1, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, + ACTIONS(2227), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2237), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2431), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2496), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2523), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [4952] = 27, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, + anon_sym_LBRACE, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, + anon_sym_None, + ACTIONS(2247), 1, sym_float, - ACTIONS(2202), 3, + ACTIONS(2251), 1, + anon_sym_sizeof, + ACTIONS(2253), 1, + sym_string_start, + ACTIONS(2437), 1, + anon_sym_not, + ACTIONS(2439), 1, + anon_sym_LT, + ACTIONS(2441), 1, + anon_sym_lambda, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2445), 1, + anon_sym_new, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, + anon_sym_STAR, + STATE(2005), 1, + sym_primary_expression, + STATE(2096), 1, + sym_string, + STATE(2477), 1, + sym_list_splat_pattern, + STATE(4061), 1, + sym_expression, + STATE(5456), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3093), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -111300,11 +115001,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -111320,17 +115022,87 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5006] = 5, - ACTIONS(2448), 1, + [5071] = 5, + ACTIONS(2515), 1, + anon_sym_finally, + STATE(1588), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3077), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3079), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [5146] = 5, + ACTIONS(2467), 1, anon_sym_else, - STATE(1319), 1, + STATE(1326), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3028), 14, - sym__dedent, + ACTIONS(3025), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -111341,9 +115113,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3026), 46, + ACTIONS(3023), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -111390,71 +115162,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [5081] = 28, - ACTIONS(2204), 1, + [5221] = 27, + ACTIONS(2187), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2329), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2331), 1, anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(2337), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2339), 1, anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2703), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(3030), 1, - anon_sym_RBRACK, - STATE(1967), 1, + ACTIONS(2709), 1, + anon_sym_lambda, + STATE(1945), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2004), 1, sym_string, - STATE(2490), 1, + STATE(2272), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(3765), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5551), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, + STATE(4209), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2185), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2195), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2323), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2171), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2168), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [5340] = 27, + ACTIONS(1232), 1, + anon_sym_LBRACE, + ACTIONS(1234), 1, + anon_sym_not, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, + anon_sym_None, + ACTIONS(1248), 1, sym_float, - ACTIONS(2202), 3, + ACTIONS(1254), 1, + anon_sym_new, + ACTIONS(1264), 1, + anon_sym_sizeof, + ACTIONS(1266), 1, + sym_string_start, + ACTIONS(1376), 1, + anon_sym_LBRACK, + ACTIONS(1378), 1, + anon_sym_await, + ACTIONS(2159), 1, + anon_sym_LPAREN, + ACTIONS(2521), 1, + sym_identifier, + ACTIONS(2803), 1, + anon_sym_STAR, + ACTIONS(2805), 1, + anon_sym_lambda, + STATE(1953), 1, + sym_primary_expression, + STATE(2056), 1, + sym_string, + STATE(2287), 1, + sym_list_splat_pattern, + STATE(3812), 1, + sym_expression, + STATE(5490), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4216), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -111463,11 +115325,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -111483,71 +115346,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5202] = 28, - ACTIONS(2204), 1, + [5459] = 27, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2299), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2301), 1, anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2309), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2595), 1, + anon_sym_await, + ACTIONS(2728), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(3032), 1, - anon_sym_RBRACK, - STATE(1967), 1, + ACTIONS(2734), 1, + anon_sym_lambda, + STATE(1956), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2051), 1, sym_string, - STATE(2490), 1, + STATE(2326), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(3814), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5492), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + STATE(4299), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2255), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2591), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2375), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -111556,11 +115417,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -111576,71 +115438,205 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5323] = 28, - ACTIONS(2204), 1, + [5578] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3095), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2210), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2214), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2220), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3097), 48, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(2224), 1, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(2226), 1, + [5649] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3095), 14, + sym__dedent, sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(2400), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3097), 48, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(2402), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2404), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [5720] = 27, + ACTIONS(1232), 1, + anon_sym_LBRACE, + ACTIONS(1234), 1, + anon_sym_not, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, + anon_sym_None, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1254), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(1264), 1, + anon_sym_sizeof, + ACTIONS(1266), 1, + sym_string_start, + ACTIONS(1376), 1, + anon_sym_LBRACK, + ACTIONS(1378), 1, + anon_sym_await, + ACTIONS(2159), 1, + anon_sym_LPAREN, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(3034), 1, - anon_sym_RBRACK, - STATE(1967), 1, + ACTIONS(2805), 1, + anon_sym_lambda, + STATE(1953), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2056), 1, sym_string, - STATE(2490), 1, + STATE(2287), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(3812), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5490), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + STATE(4113), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -111649,11 +115645,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -111669,17 +115666,17 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5444] = 5, - ACTIONS(2448), 1, + [5839] = 5, + ACTIONS(2467), 1, anon_sym_else, - STATE(1282), 1, + STATE(1311), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3000), 14, - sym__dedent, + ACTIONS(3037), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -111690,9 +115687,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3002), 46, + ACTIONS(3035), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -111739,71 +115736,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [5519] = 28, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, + [5914] = 27, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(1234), 1, + anon_sym_not, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1254), 1, + anon_sym_new, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(1376), 1, + anon_sym_LBRACK, + ACTIONS(1378), 1, + anon_sym_await, + ACTIONS(2159), 1, + anon_sym_LPAREN, + ACTIONS(2521), 1, + sym_identifier, + ACTIONS(2803), 1, + anon_sym_STAR, + ACTIONS(2805), 1, + anon_sym_lambda, + STATE(1953), 1, + sym_primary_expression, + STATE(2056), 1, + sym_string, + STATE(2287), 1, + sym_list_splat_pattern, + STATE(3812), 1, + sym_expression, + STATE(5490), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4062), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(1246), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1230), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1374), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2303), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2302), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [6033] = 27, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(561), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(3036), 1, - anon_sym_RBRACK, - STATE(1967), 1, + STATE(1927), 1, sym_primary_expression, - STATE(2110), 1, + STATE(1929), 1, sym_string, - STATE(2490), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(3728), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(3099), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -111812,11 +115899,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -111832,71 +115920,140 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5640] = 28, - ACTIONS(2204), 1, + [6152] = 5, + ACTIONS(2467), 1, + anon_sym_else, + STATE(1432), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3041), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2210), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2214), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2220), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3039), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(2224), 1, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, + [6227] = 28, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(2908), 1, + ACTIONS(3101), 1, anon_sym_COLON, - ACTIONS(3038), 1, - anon_sym_RBRACK, - STATE(1967), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2028), 1, sym_string, - STATE(2490), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(4074), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5039), 1, + sym_with_item, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -111905,11 +116062,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -111925,71 +116083,157 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5761] = 28, - ACTIONS(2204), 1, + [6348] = 23, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(1206), 1, + anon_sym_STAR, + ACTIONS(1214), 1, anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(1216), 1, anon_sym_await, - ACTIONS(2404), 1, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(3038), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(565), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(3105), 2, + anon_sym_not, + anon_sym_or, + ACTIONS(3103), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1141), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1212), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1208), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + ACTIONS(563), 8, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [6459] = 27, + ACTIONS(2257), 1, + anon_sym_LPAREN, + ACTIONS(2263), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, + anon_sym_LBRACE, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, + anon_sym_None, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, + anon_sym_sizeof, + ACTIONS(2281), 1, + sym_string_start, + ACTIONS(2299), 1, + anon_sym_not, + ACTIONS(2301), 1, + anon_sym_LT, + ACTIONS(2309), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2595), 1, + anon_sym_await, + ACTIONS(2728), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(3040), 1, - anon_sym_RBRACK, - STATE(1967), 1, + ACTIONS(2734), 1, + anon_sym_lambda, + STATE(1956), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2051), 1, sym_string, - STATE(2490), 1, + STATE(2326), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(3781), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5492), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + STATE(4222), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2255), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2591), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2375), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -111998,11 +116242,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -112018,71 +116263,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5882] = 28, - ACTIONS(2204), 1, + [6578] = 27, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2437), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(2441), 1, anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(2443), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2445), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(2781), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2835), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - ACTIONS(3042), 1, - anon_sym_RBRACK, - STATE(1967), 1, + STATE(2005), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2096), 1, sym_string, - STATE(2490), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(4045), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(3107), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -112091,11 +116334,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -112111,71 +116355,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [6003] = 28, - ACTIONS(2204), 1, + [6697] = 28, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2437), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(2441), 1, anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(2443), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2445), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(2781), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2835), 1, anon_sym_STAR, - ACTIONS(2908), 1, + ACTIONS(2887), 1, anon_sym_COLON, - ACTIONS(3044), 1, - anon_sym_RBRACK, - STATE(1967), 1, + STATE(2005), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2096), 1, sym_string, - STATE(2490), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(3791), 1, sym_expression, - STATE(5044), 1, + STATE(4766), 1, sym_slice, - STATE(5443), 1, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -112184,11 +116427,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -112204,70 +116448,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [6124] = 27, - ACTIONS(67), 1, + [6818] = 27, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1292), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1296), 1, anon_sym_lambda, - ACTIONS(79), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, anon_sym_new, - ACTIONS(103), 1, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(2744), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(2031), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2152), 1, sym_string, - STATE(1985), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(3761), 1, + STATE(4067), 1, sym_expression, - STATE(4983), 1, - sym_expression_list, - STATE(5376), 1, + STATE(5311), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(3046), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(81), 3, + ACTIONS(2839), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -112276,11 +116519,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -112296,70 +116540,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [6243] = 27, - ACTIONS(67), 1, + [6937] = 28, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, + anon_sym_None, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, + anon_sym_sizeof, + ACTIONS(2253), 1, + sym_string_start, + ACTIONS(2437), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(2441), 1, anon_sym_lambda, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(97), 1, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2445), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, + ACTIONS(2781), 1, sym_identifier, - ACTIONS(869), 1, - anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2835), 1, anon_sym_STAR, - ACTIONS(3048), 1, - anon_sym_from, - STATE(1918), 1, + ACTIONS(2887), 1, + anon_sym_COLON, + STATE(2005), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2096), 1, sym_string, - STATE(1985), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(3722), 1, + STATE(3808), 1, sym_expression, - STATE(5376), 1, + STATE(4849), 1, + sym_slice, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(2888), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(81), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -112368,11 +116612,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -112388,138 +116633,163 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [6362] = 3, + [7058] = 28, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, + anon_sym_LBRACE, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, + anon_sym_None, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, + anon_sym_sizeof, + ACTIONS(2253), 1, + sym_string_start, + ACTIONS(2437), 1, + anon_sym_not, + ACTIONS(2439), 1, + anon_sym_LT, + ACTIONS(2441), 1, + anon_sym_lambda, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2445), 1, + anon_sym_new, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, + anon_sym_STAR, + ACTIONS(2887), 1, + anon_sym_COLON, + STATE(2005), 1, + sym_primary_expression, + STATE(2096), 1, + sym_string, + STATE(2477), 1, + sym_list_splat_pattern, + STATE(3745), 1, + sym_expression, + STATE(4608), 1, + sym_slice, + STATE(5456), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2916), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2227), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2237), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2918), 48, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2431), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [6433] = 27, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, + STATE(2496), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2523), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [7179] = 28, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(1114), 1, - anon_sym_STAR, - ACTIONS(1118), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2278), 1, - anon_sym_STAR_STAR, - ACTIONS(2466), 1, + ACTIONS(2437), 1, + anon_sym_not, + ACTIONS(2439), 1, anon_sym_LT, - STATE(1958), 1, + ACTIONS(2441), 1, + anon_sym_lambda, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2445), 1, + anon_sym_new, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, + anon_sym_STAR, + ACTIONS(2887), 1, + anon_sym_COLON, + STATE(2005), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2096), 1, sym_string, - STATE(2402), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(4281), 1, + STATE(3749), 1, sym_expression, - STATE(5331), 1, + STATE(4659), 1, + sym_slice, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(5105), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(1136), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -112528,11 +116798,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -112548,85 +116819,1292 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [6552] = 3, + [7300] = 28, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, + anon_sym_LBRACE, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, + anon_sym_None, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, + anon_sym_sizeof, + ACTIONS(2253), 1, + sym_string_start, + ACTIONS(2437), 1, + anon_sym_not, + ACTIONS(2439), 1, + anon_sym_LT, + ACTIONS(2441), 1, + anon_sym_lambda, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2445), 1, + anon_sym_new, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, + anon_sym_STAR, + ACTIONS(2887), 1, + anon_sym_COLON, + STATE(2005), 1, + sym_primary_expression, + STATE(2096), 1, + sym_string, + STATE(2477), 1, + sym_list_splat_pattern, + STATE(3754), 1, + sym_expression, + STATE(4689), 1, + sym_slice, + STATE(5456), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3052), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2227), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2237), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3050), 48, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2431), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, + STATE(2496), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2523), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [7421] = 28, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, + anon_sym_LBRACE, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, + anon_sym_None, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, + anon_sym_sizeof, + ACTIONS(2253), 1, + sym_string_start, + ACTIONS(2437), 1, + anon_sym_not, + ACTIONS(2439), 1, + anon_sym_LT, + ACTIONS(2441), 1, + anon_sym_lambda, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2445), 1, + anon_sym_new, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, + anon_sym_STAR, + ACTIONS(2887), 1, + anon_sym_COLON, + STATE(2005), 1, + sym_primary_expression, + STATE(2096), 1, + sym_string, + STATE(2477), 1, + sym_list_splat_pattern, + STATE(3759), 1, + sym_expression, + STATE(4715), 1, + sym_slice, + STATE(5456), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2227), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2237), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2431), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2496), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2523), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [7542] = 28, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, + anon_sym_LBRACE, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, + anon_sym_None, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, + anon_sym_sizeof, + ACTIONS(2253), 1, + sym_string_start, + ACTIONS(2437), 1, + anon_sym_not, + ACTIONS(2439), 1, + anon_sym_LT, + ACTIONS(2441), 1, + anon_sym_lambda, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2445), 1, + anon_sym_new, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, + anon_sym_STAR, + ACTIONS(2887), 1, + anon_sym_COLON, + STATE(2005), 1, + sym_primary_expression, + STATE(2096), 1, + sym_string, + STATE(2477), 1, + sym_list_splat_pattern, + STATE(3767), 1, + sym_expression, + STATE(4741), 1, + sym_slice, + STATE(5456), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2227), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2237), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2431), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2496), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2523), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [7663] = 28, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, + anon_sym_LBRACE, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, + anon_sym_None, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, + anon_sym_sizeof, + ACTIONS(2253), 1, + sym_string_start, + ACTIONS(2437), 1, + anon_sym_not, + ACTIONS(2439), 1, + anon_sym_LT, + ACTIONS(2441), 1, + anon_sym_lambda, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2445), 1, + anon_sym_new, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, + anon_sym_STAR, + ACTIONS(2887), 1, + anon_sym_COLON, + STATE(2005), 1, + sym_primary_expression, + STATE(2096), 1, + sym_string, + STATE(2477), 1, + sym_list_splat_pattern, + STATE(3772), 1, + sym_expression, + STATE(4763), 1, + sym_slice, + STATE(5456), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2227), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2237), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2431), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2496), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2523), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [7784] = 28, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, + anon_sym_LBRACE, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, + anon_sym_None, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, + anon_sym_sizeof, + ACTIONS(2253), 1, + sym_string_start, + ACTIONS(2437), 1, + anon_sym_not, + ACTIONS(2439), 1, + anon_sym_LT, + ACTIONS(2441), 1, + anon_sym_lambda, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2445), 1, + anon_sym_new, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, + anon_sym_STAR, + ACTIONS(2887), 1, + anon_sym_COLON, + STATE(2005), 1, + sym_primary_expression, + STATE(2096), 1, + sym_string, + STATE(2477), 1, + sym_list_splat_pattern, + STATE(3776), 1, + sym_expression, + STATE(4774), 1, + sym_slice, + STATE(5456), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2227), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2237), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2431), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2496), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2523), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [7905] = 28, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, + anon_sym_LBRACE, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, + anon_sym_None, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, + anon_sym_sizeof, + ACTIONS(2253), 1, + sym_string_start, + ACTIONS(2437), 1, + anon_sym_not, + ACTIONS(2439), 1, + anon_sym_LT, + ACTIONS(2441), 1, + anon_sym_lambda, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2445), 1, + anon_sym_new, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, + anon_sym_STAR, + ACTIONS(2887), 1, + anon_sym_COLON, + STATE(2005), 1, + sym_primary_expression, + STATE(2096), 1, + sym_string, + STATE(2477), 1, + sym_list_splat_pattern, + STATE(3829), 1, + sym_expression, + STATE(4789), 1, + sym_slice, + STATE(5456), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2227), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2237), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2431), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2496), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2523), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [8026] = 28, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, + anon_sym_LBRACE, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, + anon_sym_None, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, + anon_sym_sizeof, + ACTIONS(2253), 1, + sym_string_start, + ACTIONS(2437), 1, + anon_sym_not, + ACTIONS(2439), 1, + anon_sym_LT, + ACTIONS(2441), 1, + anon_sym_lambda, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2445), 1, + anon_sym_new, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, + anon_sym_STAR, + ACTIONS(2887), 1, + anon_sym_COLON, + STATE(2005), 1, + sym_primary_expression, + STATE(2096), 1, + sym_string, + STATE(2477), 1, + sym_list_splat_pattern, + STATE(3784), 1, + sym_expression, + STATE(4798), 1, + sym_slice, + STATE(5456), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2227), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2237), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2431), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2496), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2523), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [8147] = 28, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1129), 1, + anon_sym_not, + ACTIONS(1135), 1, + anon_sym_lambda, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1147), 1, + anon_sym_new, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(3089), 1, + anon_sym_LPAREN, + STATE(1963), 1, + sym_primary_expression, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(4074), 1, + sym_expression, + STATE(4769), 1, + sym_with_item, + STATE(5197), 1, + sym__named_expression_lhs, + STATE(5421), 1, + sym_with_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1131), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1121), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2946), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [8268] = 27, + ACTIONS(2257), 1, + anon_sym_LPAREN, + ACTIONS(2263), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, + anon_sym_LBRACE, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, + anon_sym_None, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, + anon_sym_sizeof, + ACTIONS(2281), 1, + sym_string_start, + ACTIONS(2299), 1, + anon_sym_not, + ACTIONS(2301), 1, + anon_sym_LT, + ACTIONS(2309), 1, + anon_sym_new, + ACTIONS(2587), 1, + sym_identifier, + ACTIONS(2595), 1, + anon_sym_await, + ACTIONS(2728), 1, + anon_sym_STAR, + ACTIONS(2734), 1, + anon_sym_lambda, + STATE(1956), 1, + sym_primary_expression, + STATE(2051), 1, + sym_string, + STATE(2326), 1, + sym_list_splat_pattern, + STATE(3733), 1, + sym_expression, + STATE(5492), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4034), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2255), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2265), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2591), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2375), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2374), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [8387] = 28, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1129), 1, + anon_sym_not, + ACTIONS(1135), 1, + anon_sym_lambda, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1147), 1, + anon_sym_new, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(3089), 1, + anon_sym_LPAREN, + STATE(1963), 1, + sym_primary_expression, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(4074), 1, + sym_expression, + STATE(4769), 1, + sym_with_item, + STATE(5197), 1, + sym__named_expression_lhs, + STATE(5457), 1, + sym_with_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1131), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1121), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2946), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [8508] = 5, + ACTIONS(2511), 1, + anon_sym_else, + STATE(1527), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3085), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3087), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, anon_sym_ctypedef, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [6623] = 5, - ACTIONS(2412), 1, + [8583] = 27, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, + sym_primary_expression, + STATE(1929), 1, + sym_string, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(3942), 1, + sym_expression, + STATE(5367), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3109), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(576), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3283), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2021), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [8702] = 27, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, + sym_primary_expression, + STATE(1929), 1, + sym_string, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(3942), 1, + sym_expression, + STATE(5367), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3111), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(576), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3283), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2021), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [8821] = 27, + ACTIONS(1703), 1, + anon_sym_LPAREN, + ACTIONS(1709), 1, + anon_sym_LBRACK, + ACTIONS(1713), 1, + anon_sym_LBRACE, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, + anon_sym_None, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, + anon_sym_sizeof, + ACTIONS(1727), 1, + sym_string_start, + ACTIONS(2409), 1, + anon_sym_STAR, + ACTIONS(2417), 1, + anon_sym_LT, + ACTIONS(2693), 1, + sym_identifier, + ACTIONS(2701), 1, + anon_sym_await, + ACTIONS(2817), 1, + anon_sym_not, + ACTIONS(2819), 1, + anon_sym_lambda, + ACTIONS(2821), 1, + anon_sym_new, + STATE(1942), 1, + sym_primary_expression, + STATE(1976), 1, + sym_string, + STATE(2212), 1, + sym_list_splat_pattern, + STATE(4080), 1, + sym_expression, + STATE(5493), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2839), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1701), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1711), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2697), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3724), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2175), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [8940] = 5, + ACTIONS(2511), 1, anon_sym_else, - STATE(1383), 1, + STATE(1688), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3054), 14, + ACTIONS(3081), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -112637,9 +118115,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3056), 46, + ACTIONS(3083), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -112686,13 +118164,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [6698] = 3, + [9015] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3052), 14, + ACTIONS(2053), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -112703,9 +118182,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3050), 48, + ACTIONS(2051), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -112718,8 +118197,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -112754,17 +118231,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [6769] = 5, - ACTIONS(2412), 1, - anon_sym_else, - STATE(1300), 1, - sym_else_clause, + [9085] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2976), 14, + ACTIONS(1779), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -112775,9 +118249,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2974), 46, + ACTIONS(1777), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -112824,17 +118298,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [6844] = 5, - ACTIONS(2448), 1, - anon_sym_else, - STATE(1261), 1, - sym_else_clause, + [9155] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2922), 14, - sym__dedent, + ACTIONS(1783), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -112845,9 +118316,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2924), 46, + ACTIONS(1781), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -112894,17 +118365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [6919] = 5, - ACTIONS(2448), 1, - anon_sym_else, - STATE(1280), 1, - sym_else_clause, + [9225] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2962), 14, - sym__dedent, + ACTIONS(1747), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -112915,9 +118383,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2964), 46, + ACTIONS(1745), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -112964,17 +118432,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [6994] = 5, - ACTIONS(2448), 1, - anon_sym_else, - STATE(1284), 1, - sym_else_clause, + [9295] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3054), 14, - sym__dedent, + ACTIONS(1885), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -112985,9 +118450,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3056), 46, + ACTIONS(1883), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -113034,17 +118499,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [7069] = 5, - ACTIONS(2452), 1, - anon_sym_finally, - STATE(1302), 1, - sym_finally_clause, + [9365] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2948), 14, - sym__dedent, + ACTIONS(1787), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -113055,9 +118517,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2950), 46, + ACTIONS(1785), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -113104,71 +118566,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [7144] = 28, - ACTIONS(2204), 1, + [9435] = 27, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(2908), 1, + ACTIONS(3113), 1, anon_sym_COLON, - ACTIONS(3058), 1, - anon_sym_RBRACK, - STATE(1967), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2028), 1, sym_string, - STATE(2490), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3944), 1, + STATE(4115), 1, sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -113177,11 +118636,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -113197,17 +118657,14 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7265] = 5, - ACTIONS(2412), 1, - anon_sym_else, - STATE(1393), 1, - sym_else_clause, + [9553] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3028), 14, + ACTIONS(1791), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -113218,9 +118675,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3026), 46, + ACTIONS(1789), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -113267,17 +118724,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [7340] = 5, - ACTIONS(2416), 1, - anon_sym_finally, - STATE(1372), 1, - sym_finally_clause, + [9623] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2958), 14, + ACTIONS(1795), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -113288,9 +118742,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2956), 46, + ACTIONS(1793), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -113337,11 +118791,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [7415] = 3, + [9693] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1910), 15, + ACTIONS(1623), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -113355,9 +118809,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1908), 46, + ACTIONS(1621), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -113404,11 +118858,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [7485] = 3, + [9763] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1966), 15, + ACTIONS(1981), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -113422,9 +118876,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1964), 46, + ACTIONS(1979), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -113471,11 +118925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [7555] = 3, + [9833] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1404), 15, + ACTIONS(1985), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -113489,9 +118943,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1402), 46, + ACTIONS(1983), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -113538,11 +118992,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [7625] = 3, + [9903] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1966), 15, + ACTIONS(2001), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -113556,9 +119010,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1964), 46, + ACTIONS(1999), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -113605,11 +119059,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [7695] = 3, + [9973] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1408), 15, + ACTIONS(2005), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -113623,9 +119077,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1406), 46, + ACTIONS(2003), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -113672,11 +119126,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [7765] = 3, + [10043] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 15, + ACTIONS(1905), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -113690,9 +119144,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1410), 46, + ACTIONS(1903), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -113739,462 +119193,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [7835] = 26, - ACTIONS(2230), 1, - anon_sym_LPAREN, - ACTIONS(2236), 1, - anon_sym_LBRACK, - ACTIONS(2240), 1, - anon_sym_LBRACE, - ACTIONS(2246), 1, - anon_sym_None, - ACTIONS(2250), 1, - anon_sym_sizeof, - ACTIONS(2252), 1, - sym_string_start, - ACTIONS(2308), 1, - anon_sym_not, - ACTIONS(2310), 1, - anon_sym_LT, - ACTIONS(2318), 1, - anon_sym_new, - ACTIONS(2570), 1, - sym_identifier, - ACTIONS(2578), 1, - anon_sym_await, - ACTIONS(2750), 1, - anon_sym_STAR, - ACTIONS(2756), 1, - anon_sym_lambda, - STATE(1962), 1, - sym_primary_expression, - STATE(2061), 1, - sym_string, - STATE(2307), 1, - sym_list_splat_pattern, - STATE(3762), 1, - sym_expression, - STATE(5519), 1, - sym__named_expression_lhs, + [10113] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - STATE(4026), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2228), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2238), 4, + ACTIONS(1917), 15, + sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2574), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1915), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2314), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2310), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [7951] = 26, - ACTIONS(1225), 1, - anon_sym_LBRACE, - ACTIONS(1227), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1229), 1, - anon_sym_LT, - ACTIONS(1237), 1, - anon_sym_None, - ACTIONS(1245), 1, - anon_sym_new, - ACTIONS(1255), 1, - anon_sym_sizeof, - ACTIONS(1257), 1, - sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(1367), 1, - anon_sym_await, - ACTIONS(2190), 1, - anon_sym_LPAREN, - ACTIONS(2514), 1, - sym_identifier, - ACTIONS(2760), 1, - anon_sym_STAR, - ACTIONS(2764), 1, anon_sym_lambda, - STATE(1953), 1, - sym_primary_expression, - STATE(2028), 1, - sym_string, - STATE(2426), 1, - sym_list_splat_pattern, - STATE(3739), 1, - sym_expression, - STATE(5528), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - STATE(4307), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(1239), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1223), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1363), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2406), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2403), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [8067] = 26, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(4112), 1, - sym_expression, - STATE(5443), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(3060), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2202), 3, sym_integer, - sym_true, - sym_false, - ACTIONS(2212), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2390), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [8183] = 27, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(3944), 1, - sym_expression, - STATE(5044), 1, - sym_slice, - STATE(5443), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2212), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2390), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [8301] = 26, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(4024), 1, - sym_expression, - STATE(5443), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2952), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2202), 3, - sym_integer, + anon_sym_api, sym_true, sym_false, - ACTIONS(2212), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2390), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [8417] = 3, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [10183] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1982), 15, + ACTIONS(1921), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -114208,9 +119278,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1980), 46, + ACTIONS(1919), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -114257,11 +119327,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [8487] = 3, + [10253] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1990), 15, + ACTIONS(2085), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -114275,9 +119345,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1988), 46, + ACTIONS(2083), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -114324,11 +119394,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [8557] = 3, + [10323] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1838), 15, + ACTIONS(2009), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -114342,9 +119412,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1836), 46, + ACTIONS(2007), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -114391,11 +119461,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [8627] = 3, + [10393] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1866), 15, + ACTIONS(2005), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -114409,9 +119479,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1864), 46, + ACTIONS(2003), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -114458,11 +119528,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [8697] = 3, + [10463] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1416), 15, + ACTIONS(2005), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -114476,9 +119546,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1414), 46, + ACTIONS(2003), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -114525,11 +119595,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [8767] = 3, + [10533] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1420), 15, + ACTIONS(2089), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -114543,9 +119613,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1418), 46, + ACTIONS(2087), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -114592,11 +119662,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [8837] = 3, + [10603] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1424), 15, + ACTIONS(1997), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -114610,9 +119680,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1422), 46, + ACTIONS(1995), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -114659,11 +119729,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [8907] = 3, + [10673] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1428), 15, + ACTIONS(1687), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -114677,9 +119747,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1426), 46, + ACTIONS(1685), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -114726,11 +119796,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [8977] = 3, + [10743] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1432), 15, + ACTIONS(2013), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -114744,9 +119814,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1430), 46, + ACTIONS(2011), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -114793,101 +119863,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [9047] = 26, - ACTIONS(1225), 1, - anon_sym_LBRACE, - ACTIONS(1227), 1, - anon_sym_not, - ACTIONS(1229), 1, - anon_sym_LT, - ACTIONS(1237), 1, - anon_sym_None, - ACTIONS(1245), 1, - anon_sym_new, - ACTIONS(1255), 1, - anon_sym_sizeof, - ACTIONS(1257), 1, - sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(1367), 1, - anon_sym_await, - ACTIONS(2190), 1, - anon_sym_LPAREN, - ACTIONS(2514), 1, - sym_identifier, - ACTIONS(2760), 1, - anon_sym_STAR, - ACTIONS(2764), 1, - anon_sym_lambda, - STATE(1953), 1, - sym_primary_expression, - STATE(2028), 1, - sym_string, - STATE(2426), 1, - sym_list_splat_pattern, - STATE(3739), 1, - sym_expression, - STATE(5528), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - STATE(4050), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(1239), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1223), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1363), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2406), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2403), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [9163] = 3, + [10813] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1870), 15, + ACTIONS(2033), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -114901,9 +119881,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1868), 46, + ACTIONS(2031), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -114950,101 +119930,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [9233] = 26, - ACTIONS(2230), 1, - anon_sym_LPAREN, - ACTIONS(2236), 1, - anon_sym_LBRACK, - ACTIONS(2240), 1, - anon_sym_LBRACE, - ACTIONS(2246), 1, - anon_sym_None, - ACTIONS(2250), 1, - anon_sym_sizeof, - ACTIONS(2252), 1, - sym_string_start, - ACTIONS(2308), 1, - anon_sym_not, - ACTIONS(2310), 1, - anon_sym_LT, - ACTIONS(2318), 1, - anon_sym_new, - ACTIONS(2570), 1, - sym_identifier, - ACTIONS(2578), 1, - anon_sym_await, - ACTIONS(2750), 1, - anon_sym_STAR, - ACTIONS(2756), 1, - anon_sym_lambda, - STATE(1962), 1, - sym_primary_expression, - STATE(2061), 1, - sym_string, - STATE(2307), 1, - sym_list_splat_pattern, - STATE(3778), 1, - sym_expression, - STATE(5519), 1, - sym__named_expression_lhs, + [10883] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - STATE(4270), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2228), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2238), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2574), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2314), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2310), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [9349] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1874), 15, + ACTIONS(2093), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -115058,9 +119948,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1872), 46, + ACTIONS(2091), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -115107,11 +119997,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [9419] = 3, + [10953] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2002), 15, + ACTIONS(2097), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -115125,9 +120015,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2000), 46, + ACTIONS(2095), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -115174,11 +120064,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [9489] = 3, + [11023] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1890), 15, + ACTIONS(2101), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -115192,9 +120082,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1888), 46, + ACTIONS(2099), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -115241,11 +120131,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [9559] = 3, + [11093] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1894), 15, + ACTIONS(2105), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -115259,9 +120149,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1892), 46, + ACTIONS(2103), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -115308,11 +120198,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [9629] = 3, + [11163] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1902), 15, + ACTIONS(2117), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -115326,9 +120216,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1900), 46, + ACTIONS(2115), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -115375,11 +120265,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [9699] = 3, + [11233] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2010), 15, + ACTIONS(2121), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -115393,9 +120283,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2008), 46, + ACTIONS(2119), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -115442,11 +120332,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [9769] = 3, + [11303] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1436), 15, + ACTIONS(2021), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -115460,9 +120350,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1434), 46, + ACTIONS(2019), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -115509,11 +120399,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [9839] = 3, + [11373] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1484), 15, + ACTIONS(2029), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -115527,9 +120417,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1482), 46, + ACTIONS(2027), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -115576,11 +120466,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [9909] = 3, + [11443] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1444), 15, + ACTIONS(2085), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -115594,9 +120484,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1442), 46, + ACTIONS(2083), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -115643,11 +120533,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [9979] = 3, + [11513] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1448), 15, + ACTIONS(2125), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -115661,9 +120551,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1446), 46, + ACTIONS(2123), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -115710,11 +120600,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10049] = 3, + [11583] = 23, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(1206), 1, + anon_sym_STAR, + ACTIONS(1214), 1, + anon_sym_LT, + ACTIONS(1216), 1, + anon_sym_await, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(3038), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(565), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(3103), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3105), 2, + anon_sym_not, + anon_sym_or, + ACTIONS(1141), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1212), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1208), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + ACTIONS(563), 8, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [11693] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1452), 15, + ACTIONS(2129), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -115728,9 +120705,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1450), 46, + ACTIONS(2127), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -115777,11 +120754,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10119] = 3, + [11763] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1456), 15, + ACTIONS(1611), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -115795,9 +120772,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1454), 46, + ACTIONS(1609), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -115844,11 +120821,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10189] = 3, + [11833] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1460), 15, + ACTIONS(2093), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -115862,9 +120839,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1458), 46, + ACTIONS(2091), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -115911,11 +120888,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10259] = 3, + [11903] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 15, + ACTIONS(2109), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -115929,9 +120906,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1462), 46, + ACTIONS(2107), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -115978,11 +120955,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10329] = 3, + [11973] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1468), 15, + ACTIONS(1575), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -115996,9 +120973,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1466), 46, + ACTIONS(1573), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -116045,11 +121022,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10399] = 3, + [12043] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1472), 15, + ACTIONS(1451), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -116063,9 +121040,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1470), 46, + ACTIONS(1449), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -116112,11 +121089,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10469] = 3, + [12113] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1476), 15, + ACTIONS(1925), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -116130,9 +121107,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1474), 46, + ACTIONS(1923), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -116179,11 +121156,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10539] = 3, + [12183] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1480), 15, + ACTIONS(1751), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -116197,9 +121174,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1478), 46, + ACTIONS(1749), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -116246,11 +121223,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10609] = 3, + [12253] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1484), 15, + ACTIONS(1837), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -116264,9 +121241,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1482), 46, + ACTIONS(1835), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -116313,101 +121290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10679] = 26, - ACTIONS(2230), 1, - anon_sym_LPAREN, - ACTIONS(2236), 1, - anon_sym_LBRACK, - ACTIONS(2240), 1, - anon_sym_LBRACE, - ACTIONS(2246), 1, - anon_sym_None, - ACTIONS(2250), 1, - anon_sym_sizeof, - ACTIONS(2252), 1, - sym_string_start, - ACTIONS(2308), 1, - anon_sym_not, - ACTIONS(2310), 1, - anon_sym_LT, - ACTIONS(2318), 1, - anon_sym_new, - ACTIONS(2570), 1, - sym_identifier, - ACTIONS(2578), 1, - anon_sym_await, - ACTIONS(2750), 1, - anon_sym_STAR, - ACTIONS(2756), 1, - anon_sym_lambda, - STATE(1962), 1, - sym_primary_expression, - STATE(2061), 1, - sym_string, - STATE(2307), 1, - sym_list_splat_pattern, - STATE(3748), 1, - sym_expression, - STATE(5519), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - STATE(4147), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2228), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2238), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2574), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2314), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2310), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [10795] = 3, + [12323] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1488), 15, + ACTIONS(2133), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -116421,9 +121308,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1486), 46, + ACTIONS(2131), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -116470,11 +121357,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10865] = 3, + [12393] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1492), 15, + ACTIONS(1937), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -116488,9 +121375,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1490), 46, + ACTIONS(1935), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -116537,11 +121424,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10935] = 3, + [12463] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1496), 15, + ACTIONS(2101), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -116555,9 +121442,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1494), 46, + ACTIONS(2099), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -116604,11 +121491,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11005] = 3, + [12533] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1500), 15, + ACTIONS(2137), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -116622,9 +121509,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1498), 46, + ACTIONS(2135), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -116671,11 +121558,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11075] = 3, + [12603] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1878), 15, + ACTIONS(2037), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -116689,9 +121576,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1876), 46, + ACTIONS(2035), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -116738,11 +121625,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11145] = 3, + [12673] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1504), 15, + ACTIONS(2041), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -116756,9 +121643,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1502), 46, + ACTIONS(2039), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -116805,11 +121692,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11215] = 3, + [12743] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1508), 15, + ACTIONS(2045), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -116823,9 +121710,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1506), 46, + ACTIONS(2043), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -116872,11 +121759,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11285] = 3, + [12813] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1906), 15, + ACTIONS(1631), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -116890,9 +121777,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1904), 46, + ACTIONS(1629), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -116939,15 +121826,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11355] = 4, - ACTIONS(3062), 1, - anon_sym_SEMI, + [12883] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1778), 14, + ACTIONS(2049), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -116958,9 +121844,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1774), 46, + ACTIONS(2047), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -117007,101 +121893,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11427] = 26, - ACTIONS(2230), 1, - anon_sym_LPAREN, - ACTIONS(2236), 1, - anon_sym_LBRACK, - ACTIONS(2240), 1, - anon_sym_LBRACE, - ACTIONS(2246), 1, - anon_sym_None, - ACTIONS(2250), 1, - anon_sym_sizeof, - ACTIONS(2252), 1, - sym_string_start, - ACTIONS(2308), 1, - anon_sym_not, - ACTIONS(2310), 1, - anon_sym_LT, - ACTIONS(2318), 1, - anon_sym_new, - ACTIONS(2570), 1, - sym_identifier, - ACTIONS(2578), 1, - anon_sym_await, - ACTIONS(2750), 1, - anon_sym_STAR, - ACTIONS(2756), 1, - anon_sym_lambda, - STATE(1962), 1, - sym_primary_expression, - STATE(2061), 1, - sym_string, - STATE(2307), 1, - sym_list_splat_pattern, - STATE(3762), 1, - sym_expression, - STATE(5519), 1, - sym__named_expression_lhs, + [12953] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - STATE(4273), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2228), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2238), 4, + ACTIONS(2057), 15, + sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2574), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2055), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - STATE(2314), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2310), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [11543] = 3, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [13023] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1926), 15, + ACTIONS(1647), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -117115,9 +121978,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1924), 46, + ACTIONS(1645), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -117164,11 +122027,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11613] = 3, + [13093] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1512), 15, + ACTIONS(2081), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -117182,9 +122045,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1510), 46, + ACTIONS(2079), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -117231,11 +122094,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11683] = 3, + [13163] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1516), 15, + ACTIONS(2061), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -117249,9 +122112,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1514), 46, + ACTIONS(2059), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -117298,11 +122161,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11753] = 3, + [13233] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1520), 15, + ACTIONS(1567), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -117316,9 +122179,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1518), 46, + ACTIONS(1565), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -117365,11 +122228,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11823] = 3, + [13303] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 15, + ACTIONS(1579), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -117383,9 +122246,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1522), 46, + ACTIONS(1577), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -117432,11 +122295,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11893] = 3, + [13373] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1528), 15, + ACTIONS(1659), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -117450,9 +122313,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1526), 46, + ACTIONS(1657), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -117499,11 +122362,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11963] = 3, + [13443] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1532), 15, + ACTIONS(1639), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -117517,9 +122380,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1530), 46, + ACTIONS(1637), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -117566,11 +122429,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12033] = 3, + [13513] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1536), 15, + ACTIONS(1427), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -117584,9 +122447,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1534), 46, + ACTIONS(1425), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -117633,11 +122496,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12103] = 3, + [13583] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1540), 15, + ACTIONS(1755), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -117651,9 +122514,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1538), 46, + ACTIONS(1753), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -117700,11 +122563,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12173] = 3, + [13653] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 15, + ACTIONS(1431), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -117718,9 +122581,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1542), 46, + ACTIONS(1429), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -117767,11 +122630,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12243] = 3, + [13723] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1548), 15, + ACTIONS(1435), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -117785,9 +122648,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1546), 46, + ACTIONS(1433), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -117834,11 +122697,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12313] = 3, + [13793] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 15, + ACTIONS(1439), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -117852,9 +122715,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1550), 46, + ACTIONS(1437), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -117901,11 +122764,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12383] = 3, + [13863] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1556), 15, + ACTIONS(1663), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -117919,9 +122782,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1554), 46, + ACTIONS(1661), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -117968,11 +122831,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12453] = 3, + [13933] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 15, + ACTIONS(1667), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -117986,9 +122849,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1558), 46, + ACTIONS(1665), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -118035,11 +122898,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12523] = 3, + [14003] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1564), 15, + ACTIONS(1443), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -118053,9 +122916,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1562), 46, + ACTIONS(1441), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -118102,101 +122965,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12593] = 26, - ACTIONS(1225), 1, - anon_sym_LBRACE, - ACTIONS(1227), 1, - anon_sym_not, - ACTIONS(1229), 1, - anon_sym_LT, - ACTIONS(1237), 1, - anon_sym_None, - ACTIONS(1245), 1, - anon_sym_new, - ACTIONS(1255), 1, - anon_sym_sizeof, - ACTIONS(1257), 1, - sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(1367), 1, - anon_sym_await, - ACTIONS(2190), 1, - anon_sym_LPAREN, - ACTIONS(2514), 1, - sym_identifier, - ACTIONS(2760), 1, - anon_sym_STAR, - ACTIONS(2764), 1, - anon_sym_lambda, - STATE(1953), 1, - sym_primary_expression, - STATE(2028), 1, - sym_string, - STATE(2426), 1, - sym_list_splat_pattern, - STATE(3791), 1, - sym_expression, - STATE(5528), 1, - sym__named_expression_lhs, + [14073] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - STATE(4301), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(1239), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1223), 4, + ACTIONS(1811), 15, + sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1363), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1809), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - STATE(2406), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2403), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [12709] = 3, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [14143] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1568), 15, + ACTIONS(1671), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -118210,9 +123050,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1566), 46, + ACTIONS(1669), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -118259,11 +123099,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12779] = 3, + [14213] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1950), 15, + ACTIONS(1687), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -118277,9 +123117,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1948), 46, + ACTIONS(1685), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -118326,13 +123166,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12849] = 3, + [14283] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3064), 14, + ACTIONS(1687), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -118343,9 +123184,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3066), 47, + ACTIONS(1685), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -118363,7 +123204,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -118393,11 +123233,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12919] = 3, + [14353] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1882), 15, + ACTIONS(1909), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -118411,9 +123251,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1880), 46, + ACTIONS(1907), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -118460,11 +123300,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12989] = 3, + [14423] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1798), 15, + ACTIONS(1913), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -118478,9 +123318,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1796), 46, + ACTIONS(1911), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -118527,11 +123367,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13059] = 3, + [14493] = 27, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1129), 1, + anon_sym_not, + ACTIONS(1135), 1, + anon_sym_lambda, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1147), 1, + anon_sym_new, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2839), 1, + anon_sym_COLON, + STATE(1963), 1, + sym_primary_expression, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(4110), 1, + sym_expression, + STATE(5197), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1131), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1121), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2946), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [14611] = 27, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1129), 1, + anon_sym_not, + ACTIONS(1135), 1, + anon_sym_lambda, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1147), 1, + anon_sym_new, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(3115), 1, + anon_sym_COLON, + STATE(1963), 1, + sym_primary_expression, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(4070), 1, + sym_expression, + STATE(5197), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1954), 15, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1131), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1121), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2946), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [14729] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1929), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -118545,9 +123567,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1952), 46, + ACTIONS(1927), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -118594,11 +123616,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13129] = 3, + [14799] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1572), 15, + ACTIONS(1897), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -118612,9 +123634,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1570), 46, + ACTIONS(1895), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -118661,11 +123683,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13199] = 3, + [14869] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1576), 15, + ACTIONS(2077), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -118679,9 +123701,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1574), 46, + ACTIONS(2075), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -118728,11 +123750,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13269] = 3, + [14939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1580), 15, + ACTIONS(1989), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -118746,9 +123768,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1987), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [15009] = 27, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1129), 1, + anon_sym_not, + ACTIONS(1135), 1, + anon_sym_lambda, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1147), 1, + anon_sym_new, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(3117), 1, + anon_sym_COLON, + STATE(1963), 1, + sym_primary_expression, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(4070), 1, + sym_expression, + STATE(5197), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1131), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1121), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2946), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [15127] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1933), 15, + sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1578), 46, + ACTIONS(1931), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -118795,11 +123975,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13339] = 3, + [15197] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1584), 15, + ACTIONS(1941), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -118813,9 +123993,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1582), 46, + ACTIONS(1939), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -118862,11 +124042,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13409] = 3, + [15267] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1588), 15, + ACTIONS(3119), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3121), 47, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [15337] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1651), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -118880,9 +124127,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1586), 46, + ACTIONS(1649), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -118929,11 +124176,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13479] = 3, + [15407] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1592), 15, + ACTIONS(1447), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -118947,9 +124194,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1590), 46, + ACTIONS(1445), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -118996,11 +124243,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13549] = 3, + [15477] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1596), 15, + ACTIONS(1495), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -119014,9 +124261,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1594), 46, + ACTIONS(1493), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -119063,11 +124310,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13619] = 3, + [15547] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1958), 15, + ACTIONS(1675), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -119081,9 +124328,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1956), 46, + ACTIONS(1673), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -119130,11 +124377,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13689] = 3, + [15617] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1974), 15, + ACTIONS(3123), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3125), 47, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [15687] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1455), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -119148,9 +124462,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1972), 46, + ACTIONS(1453), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -119197,102 +124511,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13759] = 27, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - ACTIONS(3068), 1, - anon_sym_COLON, - STATE(1958), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(4032), 1, - sym_expression, - STATE(5157), 1, - sym_with_item, - STATE(5331), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1126), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1116), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2935), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [13877] = 3, + [15757] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1600), 15, + ACTIONS(1459), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -119306,9 +124529,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1598), 46, + ACTIONS(1457), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -119355,102 +124578,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13947] = 27, - ACTIONS(1277), 1, - anon_sym_LBRACK, - ACTIONS(1281), 1, - anon_sym_LBRACE, - ACTIONS(1283), 1, - anon_sym_not, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1287), 1, - anon_sym_lambda, - ACTIONS(1291), 1, - anon_sym_None, - ACTIONS(1297), 1, - anon_sym_new, - ACTIONS(1299), 1, - anon_sym_sizeof, - ACTIONS(1301), 1, - sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, - sym_identifier, - ACTIONS(2786), 1, - anon_sym_await, - ACTIONS(2886), 1, - anon_sym_STAR, - ACTIONS(3070), 1, - anon_sym_RPAREN, - STATE(2043), 1, - sym_primary_expression, - STATE(2171), 1, - sym_string, - STATE(2556), 1, - sym_list_splat_pattern, - STATE(4028), 1, - sym_expression, - STATE(4975), 1, - sym_with_item, - STATE(5288), 1, - sym__named_expression_lhs, + [15827] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1279), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2784), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2524), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2521), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [14065] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2070), 15, + ACTIONS(1463), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -119464,9 +124596,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2068), 46, + ACTIONS(1461), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -119513,191 +124645,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14135] = 26, - ACTIONS(2166), 1, - anon_sym_LPAREN, - ACTIONS(2172), 1, - anon_sym_LBRACK, - ACTIONS(2176), 1, - anon_sym_LBRACE, - ACTIONS(2182), 1, - anon_sym_None, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2188), 1, - sym_string_start, - ACTIONS(2268), 1, - sym_identifier, - ACTIONS(2282), 1, - anon_sym_not, - ACTIONS(2284), 1, - anon_sym_LT, - ACTIONS(2290), 1, - anon_sym_await, - ACTIONS(2292), 1, - anon_sym_new, - ACTIONS(2731), 1, - anon_sym_STAR, - ACTIONS(2737), 1, - anon_sym_lambda, - STATE(1944), 1, - sym_primary_expression, - STATE(1984), 1, - sym_string, - STATE(2133), 1, - sym_list_splat_pattern, - STATE(3812), 1, - sym_expression, - STATE(5551), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - STATE(4129), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2164), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2174), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2276), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2255), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2246), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [14251] = 26, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(4110), 1, - sym_expression, - STATE(5443), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(3072), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2202), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2212), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2390), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [14367] = 3, + [15897] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1440), 15, + ACTIONS(1467), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -119711,9 +124663,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1438), 46, + ACTIONS(1465), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -119760,82 +124712,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14437] = 27, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, + [15967] = 23, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(1206), 1, anon_sym_STAR, - ACTIONS(3074), 1, - anon_sym_COLON, - STATE(1958), 1, - sym_primary_expression, - STATE(2037), 1, + ACTIONS(1214), 1, + anon_sym_LT, + ACTIONS(1216), 1, + anon_sym_await, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4032), 1, - sym_expression, - STATE(5157), 1, - sym_with_item, - STATE(5331), 1, - sym__named_expression_lhs, + STATE(3038), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(565), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1199), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1204), 2, + anon_sym_not, + anon_sym_or, + ACTIONS(1141), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, + ACTIONS(563), 8, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -119851,11 +124799,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [14555] = 3, + [16077] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2026), 15, + ACTIONS(1471), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -119869,9 +124817,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2024), 46, + ACTIONS(1469), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -119918,101 +124866,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14625] = 26, - ACTIONS(2166), 1, - anon_sym_LPAREN, - ACTIONS(2172), 1, - anon_sym_LBRACK, - ACTIONS(2176), 1, - anon_sym_LBRACE, - ACTIONS(2182), 1, - anon_sym_None, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2188), 1, - sym_string_start, - ACTIONS(2268), 1, - sym_identifier, - ACTIONS(2282), 1, - anon_sym_not, - ACTIONS(2284), 1, - anon_sym_LT, - ACTIONS(2290), 1, - anon_sym_await, - ACTIONS(2292), 1, - anon_sym_new, - ACTIONS(2731), 1, - anon_sym_STAR, - ACTIONS(2737), 1, - anon_sym_lambda, - STATE(1944), 1, - sym_primary_expression, - STATE(1984), 1, - sym_string, - STATE(2133), 1, - sym_list_splat_pattern, - STATE(3812), 1, - sym_expression, - STATE(5551), 1, - sym__named_expression_lhs, + [16147] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - STATE(4033), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2164), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2174), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2276), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2255), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2246), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [14741] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1886), 15, + ACTIONS(1475), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -120026,9 +124884,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1884), 46, + ACTIONS(1473), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -120075,281 +124933,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14811] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, - sym_identifier, - ACTIONS(869), 1, - anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, - anon_sym_STAR, - STATE(1918), 1, - sym_primary_expression, - STATE(1933), 1, - sym_string, - STATE(1985), 1, - sym_list_splat_pattern, - STATE(3722), 1, - sym_expression, - STATE(5376), 1, - sym__named_expression_lhs, + [16217] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(3076), 2, - sym__newline, + ACTIONS(2017), 15, + sym_string_start, + ts_builtin_sym_end, anon_sym_SEMI, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2015), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(3273), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(1981), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [14927] = 27, - ACTIONS(1277), 1, - anon_sym_LBRACK, - ACTIONS(1281), 1, - anon_sym_LBRACE, - ACTIONS(1283), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1287), 1, anon_sym_lambda, - ACTIONS(1291), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1297), 1, - anon_sym_new, - ACTIONS(1299), 1, - anon_sym_sizeof, - ACTIONS(1301), 1, - sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + sym_integer, sym_identifier, - ACTIONS(2786), 1, anon_sym_await, - ACTIONS(2886), 1, - anon_sym_STAR, - ACTIONS(3078), 1, - anon_sym_RPAREN, - STATE(2043), 1, - sym_primary_expression, - STATE(2171), 1, - sym_string, - STATE(2556), 1, - sym_list_splat_pattern, - STATE(4028), 1, - sym_expression, - STATE(4975), 1, - sym_with_item, - STATE(5288), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1279), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2784), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, anon_sym_api, - STATE(2524), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2521), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [15045] = 22, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(1199), 1, - anon_sym_STAR, - ACTIONS(1207), 1, - anon_sym_LT, - ACTIONS(1209), 1, - anon_sym_await, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3025), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(836), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(3082), 2, - anon_sym_not, - anon_sym_or, - ACTIONS(3080), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1136), 4, - sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1205), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1201), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - ACTIONS(834), 8, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [15153] = 3, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [16287] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1810), 15, + ACTIONS(3123), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -120360,9 +125017,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1808), 46, + ACTIONS(3125), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -120380,6 +125037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -120409,11 +125067,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15223] = 3, + [16357] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2074), 15, + ACTIONS(1655), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -120427,9 +125085,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2072), 46, + ACTIONS(1653), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -120476,11 +125134,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15293] = 3, + [16427] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1604), 15, + ACTIONS(1479), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -120494,9 +125152,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1602), 46, + ACTIONS(1477), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -120543,11 +125201,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15363] = 3, + [16497] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1608), 15, + ACTIONS(1483), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -120561,9 +125219,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1606), 46, + ACTIONS(1481), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -120610,101 +125268,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15433] = 26, - ACTIONS(2166), 1, - anon_sym_LPAREN, - ACTIONS(2172), 1, - anon_sym_LBRACK, - ACTIONS(2176), 1, - anon_sym_LBRACE, - ACTIONS(2182), 1, - anon_sym_None, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2188), 1, - sym_string_start, - ACTIONS(2268), 1, - sym_identifier, - ACTIONS(2282), 1, - anon_sym_not, - ACTIONS(2284), 1, - anon_sym_LT, - ACTIONS(2290), 1, - anon_sym_await, - ACTIONS(2292), 1, - anon_sym_new, - ACTIONS(2731), 1, - anon_sym_STAR, - ACTIONS(2737), 1, - anon_sym_lambda, - STATE(1944), 1, - sym_primary_expression, - STATE(1984), 1, - sym_string, - STATE(2133), 1, - sym_list_splat_pattern, - STATE(3795), 1, - sym_expression, - STATE(5551), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - STATE(4309), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2164), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2174), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2276), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2255), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2246), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [15549] = 3, + [16567] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2094), 15, + ACTIONS(1487), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -120718,9 +125286,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2092), 46, + ACTIONS(1485), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -120767,11 +125335,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15619] = 3, + [16637] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1688), 15, + ACTIONS(1491), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -120785,9 +125353,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1686), 46, + ACTIONS(1489), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -120834,11 +125402,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15689] = 3, + [16707] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1760), 15, + ACTIONS(1495), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -120852,9 +125420,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1758), 46, + ACTIONS(1493), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -120901,11 +125469,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15759] = 3, + [16777] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1764), 15, + ACTIONS(1635), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -120919,9 +125487,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1762), 46, + ACTIONS(1633), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -120968,11 +125536,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15829] = 3, + [16847] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1768), 15, + ACTIONS(1679), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -120986,9 +125554,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1766), 46, + ACTIONS(1677), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121035,101 +125603,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15899] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, - sym_identifier, - ACTIONS(869), 1, - anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, - anon_sym_STAR, - STATE(1918), 1, - sym_primary_expression, - STATE(1933), 1, - sym_string, - STATE(1985), 1, - sym_list_splat_pattern, - STATE(3722), 1, - sym_expression, - STATE(5376), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(3084), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(847), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3273), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(1981), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [16015] = 3, + [16917] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1850), 15, + ACTIONS(1683), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -121143,9 +125621,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1848), 46, + ACTIONS(1681), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121192,11 +125670,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16085] = 3, + [16987] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1772), 15, + ACTIONS(1415), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -121210,9 +125688,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1770), 46, + ACTIONS(1413), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121259,101 +125737,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16155] = 26, - ACTIONS(2166), 1, - anon_sym_LPAREN, - ACTIONS(2172), 1, - anon_sym_LBRACK, - ACTIONS(2176), 1, - anon_sym_LBRACE, - ACTIONS(2182), 1, - anon_sym_None, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2188), 1, - sym_string_start, - ACTIONS(2268), 1, - sym_identifier, - ACTIONS(2282), 1, - anon_sym_not, - ACTIONS(2284), 1, - anon_sym_LT, - ACTIONS(2290), 1, - anon_sym_await, - ACTIONS(2292), 1, - anon_sym_new, - ACTIONS(2731), 1, - anon_sym_STAR, - ACTIONS(2737), 1, - anon_sym_lambda, - STATE(1944), 1, - sym_primary_expression, - STATE(1984), 1, - sym_string, - STATE(2133), 1, - sym_list_splat_pattern, - STATE(3790), 1, - sym_expression, - STATE(5551), 1, - sym__named_expression_lhs, + [17057] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - STATE(4250), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2164), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2174), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2276), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2255), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2246), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [16271] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1830), 15, + ACTIONS(1901), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -121367,9 +125755,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1828), 46, + ACTIONS(1899), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121416,11 +125804,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16341] = 3, + [17127] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1898), 15, + ACTIONS(1643), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -121434,9 +125822,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1896), 46, + ACTIONS(1641), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121483,11 +125871,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16411] = 3, + [17197] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1782), 15, + ACTIONS(1499), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -121501,9 +125889,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1780), 46, + ACTIONS(1497), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121550,68 +125938,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16481] = 26, - ACTIONS(2166), 1, - anon_sym_LPAREN, - ACTIONS(2172), 1, - anon_sym_LBRACK, - ACTIONS(2176), 1, + [17267] = 28, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2186), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2268), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(2282), 1, - anon_sym_not, - ACTIONS(2284), 1, - anon_sym_LT, - ACTIONS(2290), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(2292), 1, - anon_sym_new, - ACTIONS(2731), 1, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(3127), 1, anon_sym_STAR, - ACTIONS(2737), 1, - anon_sym_lambda, - STATE(1944), 1, + ACTIONS(3129), 1, + anon_sym_PLUS, + ACTIONS(3131), 1, + anon_sym_QMARK, + STATE(1927), 1, sym_primary_expression, - STATE(1984), 1, + STATE(1929), 1, sym_string, - STATE(2133), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3812), 1, + STATE(3758), 1, sym_expression, - STATE(5551), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - STATE(4313), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2164), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2174), 4, + ACTIONS(65), 3, anon_sym_DASH, - anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2276), 5, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -121620,11 +126009,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2246), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -121640,11 +126030,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [16597] = 3, + [17387] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1786), 15, + ACTIONS(1615), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -121658,9 +126048,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1784), 46, + ACTIONS(1613), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121707,11 +126097,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16667] = 3, + [17457] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 15, + ACTIONS(1857), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -121725,9 +126115,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1792), 46, + ACTIONS(1855), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121774,11 +126164,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16737] = 3, + [17527] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1854), 15, + ACTIONS(1503), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -121792,9 +126182,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1852), 46, + ACTIONS(1501), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121841,69 +126231,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16807] = 27, - ACTIONS(2204), 1, + [17597] = 27, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(2908), 1, + ACTIONS(2825), 1, anon_sym_COLON, - STATE(1967), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2028), 1, sym_string, - STATE(2490), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3753), 1, + STATE(4110), 1, sym_expression, - STATE(4856), 1, - sym_slice, - STATE(5443), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -121912,11 +126301,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -121932,11 +126322,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [16925] = 3, + [17715] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1858), 15, + ACTIONS(1993), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -121950,9 +126340,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1856), 46, + ACTIONS(1991), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121999,11 +126389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16995] = 3, + [17785] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1862), 15, + ACTIONS(1873), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -122017,9 +126407,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1860), 46, + ACTIONS(1871), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -122066,11 +126456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17065] = 3, + [17855] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1790), 15, + ACTIONS(1507), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -122084,9 +126474,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1788), 46, + ACTIONS(1505), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -122133,11 +126523,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17135] = 3, + [17925] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1806), 15, + ACTIONS(1849), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -122151,9 +126541,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1804), 46, + ACTIONS(1847), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -122200,11 +126590,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17205] = 3, + [17995] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 15, + ACTIONS(1821), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -122218,9 +126608,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1674), 46, + ACTIONS(1819), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -122267,11 +126657,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17275] = 3, + [18065] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 15, + ACTIONS(1511), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -122285,9 +126675,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1690), 46, + ACTIONS(1509), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -122334,11 +126724,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17345] = 3, + [18135] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 15, + ACTIONS(1845), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -122352,9 +126742,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1702), 46, + ACTIONS(1843), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -122401,11 +126791,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17415] = 3, + [18205] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1708), 15, + ACTIONS(1583), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -122419,9 +126809,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1706), 46, + ACTIONS(1581), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -122468,136 +126858,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17485] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1712), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, + [18275] = 27, + ACTIONS(1286), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1290), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(1710), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(1292), 1, anon_sym_not, + ACTIONS(1294), 1, + anon_sym_LT, + ACTIONS(1296), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1310), 1, anon_sym_sizeof, - [17555] = 27, - ACTIONS(1110), 1, + ACTIONS(1312), 1, + sym_string_start, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(2744), 1, anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2831), 1, anon_sym_STAR, - ACTIONS(3086), 1, - anon_sym_LPAREN, - STATE(1958), 1, + STATE(2031), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2152), 1, sym_string, - STATE(2402), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(4032), 1, + STATE(4052), 1, sym_expression, - STATE(4557), 1, + STATE(5177), 1, sym_with_item, - STATE(5331), 1, + STATE(5311), 1, sym__named_expression_lhs, - STATE(5374), 1, - sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -122606,11 +126928,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -122626,11 +126949,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [17673] = 3, + [18393] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1716), 15, + ACTIONS(1627), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -122644,9 +126967,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1714), 46, + ACTIONS(1625), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -122693,11 +127016,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17743] = 3, + [18463] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 15, + ACTIONS(1731), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -122711,9 +127034,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1674), 46, + ACTIONS(1729), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -122760,11 +127083,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17813] = 3, + [18533] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1978), 15, + ACTIONS(1833), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -122778,9 +127101,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1976), 46, + ACTIONS(1831), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -122827,145 +127150,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17883] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1704), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, + [18603] = 27, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1123), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1127), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(1702), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(1129), 1, anon_sym_not, + ACTIONS(1135), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, + ACTIONS(1147), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1149), 1, anon_sym_sizeof, - [17953] = 3, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, + anon_sym_STAR, + STATE(1963), 1, + sym_primary_expression, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(4074), 1, + sym_expression, + STATE(5039), 1, + sym_with_item, + STATE(5197), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1986), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1131), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(1984), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1121), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [18023] = 3, + STATE(2946), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [18721] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 15, + ACTIONS(1861), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -122979,9 +127259,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1674), 46, + ACTIONS(1859), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -123028,11 +127308,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18093] = 3, + [18791] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1994), 15, + ACTIONS(1691), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -123046,9 +127326,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1992), 46, + ACTIONS(1689), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -123095,11 +127375,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18163] = 3, + [18861] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1612), 15, + ACTIONS(1829), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -123113,9 +127393,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1610), 46, + ACTIONS(1827), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -123162,11 +127442,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18233] = 3, + [18931] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1998), 15, + ACTIONS(1695), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -123180,9 +127460,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1996), 46, + ACTIONS(1693), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -123229,68 +127509,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18303] = 26, - ACTIONS(1277), 1, + [19001] = 27, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1283), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1287), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1291), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1297), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1299), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, - sym_identifier, - ACTIONS(2786), 1, - anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(2043), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2028), 1, sym_string, - STATE(2556), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4080), 1, + STATE(3851), 1, sym_expression, - STATE(5288), 1, + STATE(5197), 1, sym__named_expression_lhs, + STATE(5554), 1, + sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(2888), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1293), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -123299,11 +127579,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -123319,191 +127600,78 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [18419] = 26, - ACTIONS(1225), 1, - anon_sym_LBRACE, - ACTIONS(1227), 1, - anon_sym_not, - ACTIONS(1229), 1, - anon_sym_LT, - ACTIONS(1237), 1, - anon_sym_None, - ACTIONS(1245), 1, - anon_sym_new, - ACTIONS(1255), 1, - anon_sym_sizeof, - ACTIONS(1257), 1, - sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(1367), 1, - anon_sym_await, - ACTIONS(2190), 1, - anon_sym_LPAREN, - ACTIONS(2514), 1, - sym_identifier, - ACTIONS(2760), 1, - anon_sym_STAR, - ACTIONS(2764), 1, - anon_sym_lambda, - STATE(1953), 1, - sym_primary_expression, - STATE(2028), 1, - sym_string, - STATE(2426), 1, - sym_list_splat_pattern, - STATE(3739), 1, - sym_expression, - STATE(5528), 1, - sym__named_expression_lhs, + [19119] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - STATE(4121), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(1239), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1223), 4, + ACTIONS(2065), 15, + sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1363), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2063), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2406), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2403), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [18535] = 26, - ACTIONS(1277), 1, - anon_sym_LBRACK, - ACTIONS(1281), 1, - anon_sym_LBRACE, - ACTIONS(1283), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1287), 1, anon_sym_lambda, - ACTIONS(1291), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1297), 1, - anon_sym_new, - ACTIONS(1299), 1, - anon_sym_sizeof, - ACTIONS(1301), 1, - sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + sym_integer, sym_identifier, - ACTIONS(2786), 1, anon_sym_await, - ACTIONS(2886), 1, - anon_sym_STAR, - STATE(2043), 1, - sym_primary_expression, - STATE(2171), 1, - sym_string, - STATE(2556), 1, - sym_list_splat_pattern, - STATE(4080), 1, - sym_expression, - STATE(5288), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(2814), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1293), 3, - sym_integer, + anon_sym_api, sym_true, sym_false, - ACTIONS(1279), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2784), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2524), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2521), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [18651] = 3, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [19189] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2006), 15, + ACTIONS(1619), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -123517,9 +127685,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2004), 46, + ACTIONS(1617), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -123566,14 +127734,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18721] = 3, + [19259] = 4, + ACTIONS(3133), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2014), 15, + ACTIONS(1817), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -123584,9 +127753,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2012), 46, + ACTIONS(1813), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -123633,11 +127802,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18791] = 3, + [19331] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2018), 15, + ACTIONS(1407), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -123651,9 +127820,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2016), 46, + ACTIONS(1405), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -123700,276 +127869,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18861] = 26, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(4067), 1, - sym_expression, - STATE(5443), 1, - sym__named_expression_lhs, + [19401] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2888), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2202), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2212), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2390), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [18977] = 21, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1587), 15, sym_string_start, - ACTIONS(1199), 1, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(1207), 1, - anon_sym_LT, - ACTIONS(1209), 1, - anon_sym_await, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3025), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(836), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1205), 4, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(867), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1201), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1585), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - ACTIONS(834), 8, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [19083] = 26, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(4067), 1, - sym_expression, - STATE(5443), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2814), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2202), 3, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(2212), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2390), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [19199] = 3, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [19471] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2022), 15, + ACTIONS(1515), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -123983,9 +127954,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2020), 46, + ACTIONS(1513), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124032,248 +128003,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19269] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, - sym_identifier, - ACTIONS(869), 1, - anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, - anon_sym_STAR, - STATE(1918), 1, - sym_primary_expression, - STATE(1933), 1, - sym_string, - STATE(1985), 1, - sym_list_splat_pattern, - STATE(3901), 1, - sym_expression, - STATE(5376), 1, - sym__named_expression_lhs, + [19541] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(3088), 2, - sym__newline, + ACTIONS(1519), 15, + sym_string_start, + ts_builtin_sym_end, anon_sym_SEMI, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1517), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(3273), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(1981), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [19385] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(79), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(97), 1, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(103), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, + [19611] = 27, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(869), 1, - anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, - anon_sym_STAR, - STATE(1918), 1, - sym_primary_expression, - STATE(1933), 1, - sym_string, - STATE(1985), 1, - sym_list_splat_pattern, - STATE(3901), 1, - sym_expression, - STATE(5376), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(3090), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(847), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3273), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(1981), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [19501] = 26, - ACTIONS(1225), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1227), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1229), 1, - anon_sym_LT, - ACTIONS(1237), 1, + ACTIONS(1135), 1, + anon_sym_lambda, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1245), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1255), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(1367), 1, - anon_sym_await, - ACTIONS(2190), 1, - anon_sym_LPAREN, - ACTIONS(2514), 1, - sym_identifier, - ACTIONS(2760), 1, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(2764), 1, - anon_sym_lambda, - STATE(1953), 1, + ACTIONS(3135), 1, + anon_sym_COLON, + STATE(1963), 1, sym_primary_expression, STATE(2028), 1, sym_string, - STATE(2426), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3741), 1, + STATE(4070), 1, sym_expression, - STATE(5528), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - STATE(4229), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(1239), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1223), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1363), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2406), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -124282,11 +128140,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2403), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -124302,11 +128161,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [19617] = 3, + [19729] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1914), 15, + ACTIONS(1945), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -124320,9 +128179,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1912), 46, + ACTIONS(1943), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124369,11 +128228,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19687] = 3, + [19799] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 15, + ACTIONS(1889), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -124387,9 +128246,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1394), 46, + ACTIONS(1887), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124436,11 +128295,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19757] = 3, + [19869] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1918), 15, + ACTIONS(1591), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -124454,9 +128313,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1916), 46, + ACTIONS(1589), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124503,13 +128362,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19827] = 3, + [19939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3092), 14, + ACTIONS(1953), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -124520,9 +128380,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3094), 47, + ACTIONS(1951), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124540,7 +128400,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -124570,11 +128429,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19897] = 3, + [20009] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1922), 15, + ACTIONS(1949), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -124588,9 +128447,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1920), 46, + ACTIONS(1947), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124637,11 +128496,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19967] = 3, + [20079] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1930), 15, + ACTIONS(1743), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -124655,9 +128514,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1928), 46, + ACTIONS(1741), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124704,11 +128563,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20037] = 3, + [20149] = 27, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1129), 1, + anon_sym_not, + ACTIONS(1135), 1, + anon_sym_lambda, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1147), 1, + anon_sym_new, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, + anon_sym_STAR, + STATE(1963), 1, + sym_primary_expression, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(3871), 1, + sym_expression, + STATE(5197), 1, + sym__named_expression_lhs, + STATE(5446), 1, + sym_expression_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1131), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1121), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2946), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [20267] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1934), 15, + ACTIONS(1877), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -124722,9 +128672,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1932), 46, + ACTIONS(1875), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124771,11 +128721,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20107] = 3, + [20337] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1938), 15, + ACTIONS(1957), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -124789,9 +128739,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1936), 46, + ACTIONS(1955), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124838,11 +128788,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20177] = 3, + [20407] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1616), 15, + ACTIONS(1961), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -124856,9 +128806,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1614), 46, + ACTIONS(1959), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124905,13 +128855,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20247] = 3, + [20477] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3092), 14, - sym__dedent, + ACTIONS(1969), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -124922,9 +128873,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3094), 47, + ACTIONS(1967), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124942,7 +128893,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -124972,330 +128922,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20317] = 26, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, + [20547] = 27, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(4109), 1, - sym_expression, - STATE(5443), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(3096), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2202), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2212), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2390), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [20433] = 22, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(1199), 1, - anon_sym_STAR, - ACTIONS(1207), 1, - anon_sym_LT, - ACTIONS(1209), 1, - anon_sym_await, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3025), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(836), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1132), 2, - sym_ellipsis, + ACTIONS(83), 1, sym_float, - ACTIONS(1197), 2, - anon_sym_not, - anon_sym_or, - ACTIONS(1192), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1136), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1205), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1201), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - ACTIONS(834), 8, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [20541] = 21, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(1199), 1, - anon_sym_STAR, - ACTIONS(1207), 1, - anon_sym_LT, - ACTIONS(1209), 1, - anon_sym_await, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3025), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1194), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1136), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1205), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1192), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1201), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - ACTIONS(1391), 8, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [20647] = 27, - ACTIONS(1110), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - ACTIONS(3086), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - STATE(1958), 1, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, sym_primary_expression, - STATE(2037), 1, + STATE(1929), 1, sym_string, - STATE(2402), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(4032), 1, + STATE(3793), 1, sym_expression, - STATE(4557), 1, - sym_with_item, - STATE(5331), 1, + STATE(5094), 1, + sym_expression_list, + STATE(5367), 1, sym__named_expression_lhs, - STATE(5539), 1, - sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -125304,11 +128992,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -125324,11 +129013,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [20765] = 3, + [20665] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 15, + ACTIONS(1973), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -125342,9 +129031,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1694), 46, + ACTIONS(1971), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -125391,11 +129080,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20835] = 3, + [20735] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 15, + ACTIONS(1869), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -125409,9 +129098,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1698), 46, + ACTIONS(1867), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -125458,11 +129147,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20905] = 3, + [20805] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 15, + ACTIONS(1825), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -125476,9 +129165,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1718), 46, + ACTIONS(1823), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -125525,11 +129214,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20975] = 3, + [20875] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1724), 15, + ACTIONS(2073), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -125543,9 +129232,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1722), 46, + ACTIONS(2071), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -125592,11 +129281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21045] = 3, + [20945] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 15, + ACTIONS(1419), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -125610,9 +129299,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1726), 46, + ACTIONS(1417), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -125659,11 +129348,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21115] = 3, + [21015] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 15, + ACTIONS(1977), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -125677,9 +129366,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1730), 46, + ACTIONS(1975), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -125726,78 +129415,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21185] = 3, + [21085] = 27, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1129), 1, + anon_sym_not, + ACTIONS(1135), 1, + anon_sym_lambda, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1147), 1, + anon_sym_new, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(3137), 1, + anon_sym_COLON, + STATE(1963), 1, + sym_primary_expression, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(4070), 1, + sym_expression, + STATE(5197), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1620), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1131), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(1618), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1121), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [21255] = 3, + STATE(2946), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [21203] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1624), 15, + ACTIONS(1865), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -125811,9 +129524,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1622), 46, + ACTIONS(1863), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -125860,11 +129573,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21325] = 3, + [21273] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 15, + ACTIONS(1893), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -125878,9 +129591,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1626), 46, + ACTIONS(1891), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -125927,11 +129640,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21395] = 3, + [21343] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1736), 15, + ACTIONS(2069), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -125945,9 +129658,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1734), 46, + ACTIONS(2067), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -125994,78 +129707,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21465] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1632), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, + [21413] = 27, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1123), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1127), 1, anon_sym_LBRACE, + ACTIONS(1129), 1, + anon_sym_not, + ACTIONS(1135), 1, + anon_sym_lambda, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1147), 1, + anon_sym_new, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(3139), 1, + anon_sym_COLON, + STATE(1963), 1, + sym_primary_expression, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(4092), 1, + sym_expression, + STATE(5197), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1131), 4, + anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(1630), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1121), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [21535] = 3, + STATE(2946), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [21531] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2030), 15, + ACTIONS(1423), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -126079,9 +129816,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2028), 46, + ACTIONS(1421), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -126128,11 +129865,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21605] = 3, + [21601] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2034), 15, + ACTIONS(1965), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -126146,9 +129883,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2032), 46, + ACTIONS(1963), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -126195,11 +129932,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21675] = 3, + [21671] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1740), 15, + ACTIONS(2025), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -126213,9 +129950,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1738), 46, + ACTIONS(2023), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -126262,11 +129999,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21745] = 3, + [21741] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2038), 15, + ACTIONS(1595), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -126280,9 +130017,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2036), 46, + ACTIONS(1593), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -126329,14 +130066,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21815] = 3, + [21811] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1636), 15, + ACTIONS(3119), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -126347,9 +130083,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1634), 46, + ACTIONS(3121), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -126367,6 +130103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -126396,11 +130133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21885] = 3, + [21881] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2042), 15, + ACTIONS(1571), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -126414,9 +130151,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2040), 46, + ACTIONS(1569), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -126463,11 +130200,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21955] = 3, + [21951] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1744), 15, + ACTIONS(1599), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -126481,9 +130218,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1742), 46, + ACTIONS(1597), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -126530,101 +130267,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22025] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, - sym_identifier, - ACTIONS(869), 1, - anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, - anon_sym_STAR, - STATE(1918), 1, - sym_primary_expression, - STATE(1933), 1, - sym_string, - STATE(1985), 1, - sym_list_splat_pattern, - STATE(3901), 1, - sym_expression, - STATE(5376), 1, - sym__named_expression_lhs, + [22021] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(3098), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(847), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3273), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(1981), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [22141] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1814), 15, + ACTIONS(1603), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -126638,9 +130285,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1812), 46, + ACTIONS(1601), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -126687,11 +130334,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22211] = 3, + [22091] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1818), 15, + ACTIONS(1881), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -126705,9 +130352,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1816), 46, + ACTIONS(1879), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -126754,11 +130401,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22281] = 3, + [22161] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1640), 15, + ACTIONS(1841), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -126772,9 +130419,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1638), 46, + ACTIONS(1839), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -126821,11 +130468,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22351] = 3, + [22231] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1822), 15, + ACTIONS(1735), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -126839,9 +130486,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1820), 46, + ACTIONS(1733), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -126888,11 +130535,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22421] = 3, + [22301] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1644), 15, + ACTIONS(1523), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -126906,9 +130553,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1642), 46, + ACTIONS(1521), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -126955,11 +130602,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22491] = 3, + [22371] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1826), 15, + ACTIONS(1527), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -126973,9 +130620,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1824), 46, + ACTIONS(1525), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -127022,11 +130669,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22561] = 3, + [22441] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1842), 15, + ACTIONS(1739), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -127040,9 +130687,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1840), 46, + ACTIONS(1737), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -127089,101 +130736,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22631] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, - sym_identifier, - ACTIONS(869), 1, - anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, - anon_sym_STAR, - STATE(1918), 1, - sym_primary_expression, - STATE(1933), 1, - sym_string, - STATE(1985), 1, - sym_list_splat_pattern, - STATE(3901), 1, - sym_expression, - STATE(5376), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(3100), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(847), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3273), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(1981), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [22747] = 3, + [22511] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1834), 15, + ACTIONS(1759), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -127197,9 +130754,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1832), 46, + ACTIONS(1757), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -127246,11 +130803,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22817] = 3, + [22581] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1748), 15, + ACTIONS(1763), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -127264,9 +130821,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1746), 46, + ACTIONS(1761), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -127313,68 +130870,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22887] = 26, - ACTIONS(2204), 1, + [22651] = 27, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1967), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2028), 1, sym_string, - STATE(2490), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4081), 1, + STATE(3980), 1, sym_expression, - STATE(5443), 1, + STATE(5197), 1, sym__named_expression_lhs, + STATE(5515), 1, + sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(3102), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2202), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -127383,11 +130940,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -127403,11 +130961,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [23003] = 3, + [22769] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1752), 15, + ACTIONS(1531), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -127421,9 +130979,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1750), 46, + ACTIONS(1529), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -127470,11 +131028,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23073] = 3, + [22839] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1846), 15, + ACTIONS(1535), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -127488,9 +131046,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1844), 46, + ACTIONS(1533), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -127537,11 +131095,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23143] = 3, + [22909] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1756), 15, + ACTIONS(1767), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -127555,9 +131113,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1754), 46, + ACTIONS(1765), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -127604,68 +131162,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23213] = 26, - ACTIONS(2230), 1, + [22979] = 27, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2236), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(1129), 1, + anon_sym_not, + ACTIONS(1135), 1, + anon_sym_lambda, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2250), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1147), 1, + anon_sym_new, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2308), 1, - anon_sym_not, - ACTIONS(2310), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2318), 1, - anon_sym_new, - ACTIONS(2570), 1, - sym_identifier, - ACTIONS(2578), 1, - anon_sym_await, ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(2756), 1, - anon_sym_lambda, - STATE(1962), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2061), 1, + STATE(2028), 1, sym_string, - STATE(2307), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3762), 1, + STATE(3981), 1, sym_expression, - STATE(5519), 1, + STATE(5197), 1, sym__named_expression_lhs, + STATE(5200), 1, + sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - STATE(4012), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2228), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2574), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2314), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -127674,11 +131232,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2310), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -127694,11 +131253,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [23329] = 3, + [23097] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2046), 15, + ACTIONS(1539), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -127712,9 +131271,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2044), 46, + ACTIONS(1537), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -127761,11 +131320,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23399] = 3, + [23167] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2050), 15, + ACTIONS(1771), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -127779,9 +131338,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2048), 46, + ACTIONS(1769), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -127828,11 +131387,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23469] = 3, + [23237] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2054), 15, + ACTIONS(2113), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -127846,9 +131405,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2052), 46, + ACTIONS(2111), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -127895,11 +131454,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23539] = 3, + [23307] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2058), 15, + ACTIONS(1543), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -127913,9 +131472,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2056), 46, + ACTIONS(1541), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -127962,11 +131521,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23609] = 3, + [23377] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2062), 15, + ACTIONS(1547), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -127980,9 +131539,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2060), 46, + ACTIONS(1545), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128029,11 +131588,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23679] = 3, + [23447] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2066), 15, + ACTIONS(1607), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -128047,9 +131606,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2064), 46, + ACTIONS(1605), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128096,11 +131655,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23749] = 3, + [23517] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 15, + ACTIONS(1551), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -128114,9 +131673,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1646), 46, + ACTIONS(1549), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128163,11 +131722,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23819] = 3, + [23587] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 15, + ACTIONS(1743), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -128181,9 +131740,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1650), 46, + ACTIONS(1741), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128230,11 +131789,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23889] = 3, + [23657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 15, + ACTIONS(1775), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -128248,9 +131807,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1654), 46, + ACTIONS(1773), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128297,102 +131856,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23959] = 27, - ACTIONS(2204), 1, + [23727] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1555), 15, + sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2210), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2214), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(2400), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1553), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(2402), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2404), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(3807), 1, - sym_expression, - STATE(4781), 1, - sym_slice, - STATE(5443), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [23797] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, + ACTIONS(1411), 15, + sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2202), 3, + ACTIONS(1409), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(2212), 4, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [23867] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1699), 15, + sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1697), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [24077] = 3, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [23937] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1660), 15, + ACTIONS(1799), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -128406,9 +132075,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1658), 46, + ACTIONS(1797), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128455,11 +132124,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24147] = 3, + [24007] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 15, + ACTIONS(1803), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -128473,9 +132142,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1662), 46, + ACTIONS(1801), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128522,102 +132191,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24217] = 27, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(3799), 1, - sym_expression, - STATE(4737), 1, - sym_slice, - STATE(5443), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2212), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2390), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [24335] = 3, + [24077] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2078), 15, + ACTIONS(1807), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -128631,9 +132209,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2076), 46, + ACTIONS(1805), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128680,433 +132258,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24405] = 27, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(3755), 1, - sym_expression, - STATE(4596), 1, - sym_slice, - STATE(5443), 1, - sym__named_expression_lhs, + [24147] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2212), 4, + ACTIONS(1559), 15, + sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1557), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [24523] = 27, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, anon_sym_lambda, - ACTIONS(2402), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2404), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(3784), 1, - sym_expression, - STATE(4649), 1, - sym_slice, - STATE(5443), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [24217] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2212), 4, + ACTIONS(1563), 15, + sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1561), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [24641] = 27, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, anon_sym_lambda, - ACTIONS(2402), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2404), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(3794), 1, - sym_expression, - STATE(4680), 1, - sym_slice, - STATE(5443), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [24287] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2212), 4, + ACTIONS(1853), 15, + sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1851), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [24759] = 27, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(3820), 1, - sym_expression, - STATE(4706), 1, - sym_slice, - STATE(5443), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(2212), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2390), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [24877] = 27, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [24357] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2479), 1, anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(2481), 1, anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2483), 1, anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2843), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - STATE(1967), 1, + STATE(1927), 1, sym_primary_expression, - STATE(2110), 1, + STATE(1929), 1, sym_string, - STATE(2490), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3723), 1, + STATE(3570), 1, sym_expression, - STATE(4733), 1, - sym_slice, - STATE(5443), 1, + STATE(5556), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -129115,11 +132527,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -129135,69 +132548,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [24995] = 27, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, + [24472] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2479), 1, anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(2481), 1, anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2483), 1, anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2843), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - STATE(1967), 1, + STATE(1927), 1, sym_primary_expression, - STATE(2110), 1, + STATE(1929), 1, sym_string, - STATE(2490), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3729), 1, + STATE(3271), 1, sym_expression, - STATE(4748), 1, - sym_slice, - STATE(5443), 1, + STATE(5556), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -129206,11 +132616,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -129226,69 +132637,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [25113] = 27, - ACTIONS(2204), 1, + [24587] = 26, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2437), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(2441), 1, anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(2443), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2445), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(2781), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2835), 1, anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - STATE(1967), 1, + STATE(2005), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2096), 1, sym_string, - STATE(2490), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(3733), 1, + STATE(4026), 1, sym_expression, - STATE(4763), 1, - sym_slice, - STATE(5443), 1, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -129297,11 +132705,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -129317,196 +132726,79 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [25231] = 27, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(3735), 1, - sym_expression, - STATE(4778), 1, - sym_slice, - STATE(5443), 1, - sym__named_expression_lhs, + [24702] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2212), 4, + ACTIONS(2215), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2213), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [25349] = 27, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(2908), 1, - anon_sym_COLON, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(3737), 1, - sym_expression, - STATE(4791), 1, - sym_slice, - STATE(5443), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(2212), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2390), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [25467] = 3, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [24771] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 15, + ACTIONS(3143), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -129517,9 +132809,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1666), 46, + ACTIONS(3141), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129566,14 +132858,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25537] = 3, + [24840] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2082), 15, + ACTIONS(2173), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -129584,9 +132875,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2080), 46, + ACTIONS(2171), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129633,69 +132924,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25607] = 27, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1118), 1, + [24909] = 26, + ACTIONS(1286), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1292), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1294), 1, + anon_sym_LT, + ACTIONS(1296), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - ACTIONS(3086), 1, + ACTIONS(2217), 1, anon_sym_LPAREN, - STATE(1958), 1, + ACTIONS(2736), 1, + sym_identifier, + ACTIONS(2744), 1, + anon_sym_await, + ACTIONS(3145), 1, + anon_sym_STAR, + STATE(2031), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2152), 1, sym_string, - STATE(2402), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(4032), 1, + STATE(4111), 1, sym_expression, - STATE(4557), 1, - sym_with_item, - STATE(5331), 1, + STATE(5311), 1, sym__named_expression_lhs, - STATE(5388), 1, - sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -129704,11 +132992,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -129724,136 +133013,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [25725] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2046), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, + [25024] = 26, + ACTIONS(1286), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1290), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2044), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(1292), 1, anon_sym_not, + ACTIONS(1294), 1, + anon_sym_LT, + ACTIONS(1296), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1310), 1, anon_sym_sizeof, - [25795] = 27, - ACTIONS(1110), 1, + ACTIONS(1312), 1, + sym_string_start, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(2744), 1, anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(3147), 1, anon_sym_STAR, - ACTIONS(3086), 1, - anon_sym_LPAREN, - STATE(1958), 1, + STATE(2031), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2152), 1, sym_string, - STATE(2402), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(4032), 1, + STATE(3853), 1, sym_expression, - STATE(4557), 1, - sym_with_item, - STATE(5331), 1, + STATE(5311), 1, sym__named_expression_lhs, - STATE(5431), 1, - sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -129862,11 +133081,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -129882,14 +133102,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [25913] = 3, + [25139] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2086), 15, + ACTIONS(2145), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -129900,9 +133119,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2084), 46, + ACTIONS(2143), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129949,14 +133168,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25983] = 3, + [25208] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2090), 15, + ACTIONS(3149), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -129967,9 +133185,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2088), 46, + ACTIONS(3151), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130016,14 +133234,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26053] = 3, + [25277] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 15, + ACTIONS(3153), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -130034,9 +133251,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1670), 46, + ACTIONS(3155), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130083,470 +133300,422 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26123] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2054), 15, + [25346] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1191), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, + sym_primary_expression, + STATE(1929), 1, + sym_string, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(4009), 1, + sym_expression, + STATE(5367), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2052), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(576), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_api, + STATE(3283), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2021), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [25461] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(105), 1, anon_sym_sizeof, - [26193] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2098), 15, + ACTIONS(107), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1191), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, + sym_primary_expression, + STATE(1929), 1, + sym_string, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(3962), 1, + sym_expression, + STATE(5367), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2096), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(576), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_api, + STATE(3283), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2021), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [25576] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(105), 1, anon_sym_sizeof, - [26263] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2062), 15, + ACTIONS(107), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1191), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, + sym_primary_expression, + STATE(1929), 1, + sym_string, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(3854), 1, + sym_expression, + STATE(5367), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2060), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(576), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [26333] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1400), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, + STATE(3283), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2021), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [25691] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1123), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1127), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(1398), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(1129), 1, anon_sym_not, + ACTIONS(1135), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, + ACTIONS(1147), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1149), 1, anon_sym_sizeof, - [26403] = 3, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, + anon_sym_STAR, + STATE(1963), 1, + sym_primary_expression, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(3671), 1, + sym_expression, + STATE(5197), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1942), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(1940), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, + ACTIONS(1141), 3, sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, sym_true, sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [26473] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1946), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1131), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(1944), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1121), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_api, + STATE(2946), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [25806] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [26543] = 26, - ACTIONS(2102), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_LBRACK, - ACTIONS(2112), 1, - anon_sym_LBRACE, - ACTIONS(2118), 1, - anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, - anon_sym_LT, - ACTIONS(2554), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(2562), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(2796), 1, - anon_sym_not, - ACTIONS(2798), 1, - anon_sym_lambda, - ACTIONS(2800), 1, - anon_sym_new, - STATE(1950), 1, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, sym_primary_expression, - STATE(1968), 1, + STATE(1929), 1, sym_string, - STATE(2230), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(4133), 1, + STATE(3857), 1, sym_expression, - STATE(5485), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2888), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2100), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3682), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -130555,11 +133724,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -130575,68 +133745,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [26659] = 26, - ACTIONS(2102), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_LBRACK, - ACTIONS(2112), 1, + [25921] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, - anon_sym_LT, - ACTIONS(2554), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(2562), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(2796), 1, - anon_sym_not, - ACTIONS(2798), 1, - anon_sym_lambda, - ACTIONS(2800), 1, - anon_sym_new, - STATE(1950), 1, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, sym_primary_expression, - STATE(1968), 1, + STATE(1929), 1, sym_string, - STATE(2230), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(4133), 1, + STATE(3860), 1, sym_expression, - STATE(5485), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2814), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2100), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3682), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -130645,11 +133813,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -130665,668 +133834,333 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [26775] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1962), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, + [26036] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1123), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1127), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(1960), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(1129), 1, anon_sym_not, + ACTIONS(1135), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, + ACTIONS(1147), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1149), 1, anon_sym_sizeof, - [26845] = 3, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, + anon_sym_STAR, + STATE(1963), 1, + sym_primary_expression, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(3673), 1, + sym_expression, + STATE(5197), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1680), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(1678), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, + ACTIONS(1141), 3, sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, sym_true, sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [26915] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1684), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1131), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(1682), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1121), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [26985] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1966), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, + STATE(2946), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [26151] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1123), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1127), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(1964), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(1129), 1, anon_sym_not, + ACTIONS(1135), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, + ACTIONS(1147), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1149), 1, anon_sym_sizeof, - [27055] = 3, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, + anon_sym_STAR, + STATE(1963), 1, + sym_primary_expression, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(3675), 1, + sym_expression, + STATE(5197), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3064), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3066), 47, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, + ACTIONS(1141), 3, sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, sym_true, sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [27125] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1970), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1131), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(1968), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1121), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [27195] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1802), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, + STATE(2946), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [26266] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1123), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1127), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(1800), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(1129), 1, anon_sym_not, + ACTIONS(1135), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, + ACTIONS(1147), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1149), 1, anon_sym_sizeof, - [27265] = 3, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, + anon_sym_STAR, + STATE(1963), 1, + sym_primary_expression, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(2943), 1, + sym_expression, + STATE(5197), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3106), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3104), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, + ACTIONS(1141), 3, sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, sym_true, sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [27334] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3108), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1131), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3110), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1121), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [27403] = 26, - ACTIONS(1110), 1, + STATE(2946), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [26381] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4032), 1, + STATE(3676), 1, sym_expression, - STATE(5157), 1, - sym_with_item, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -131335,11 +134169,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -131355,67 +134190,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [27518] = 26, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, + [26496] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, anon_sym_STAR, - ACTIONS(3112), 1, - anon_sym_COLON, - STATE(1958), 1, + STATE(1927), 1, sym_primary_expression, - STATE(2037), 1, + STATE(1929), 1, sym_string, - STATE(2402), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(4039), 1, + STATE(3966), 1, sym_expression, - STATE(5331), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -131424,11 +134258,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -131444,79 +134279,280 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [27633] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3114), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [26611] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3116), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, + sym_primary_expression, + STATE(1929), 1, + sym_string, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(3861), 1, + sym_expression, + STATE(5367), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(576), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_api, + STATE(3283), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2021), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [26726] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1129), 1, anon_sym_not, + ACTIONS(1135), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - anon_sym_api, + ACTIONS(1147), 1, + anon_sym_new, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, + anon_sym_STAR, + STATE(1963), 1, + sym_primary_expression, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(4284), 1, + sym_expression, + STATE(5197), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1141), 3, + sym_integer, sym_true, sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, + ACTIONS(1131), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1121), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2946), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [26841] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(105), 1, anon_sym_sizeof, - [27702] = 3, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, + sym_primary_expression, + STATE(1929), 1, + sym_string, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(3864), 1, + sym_expression, + STATE(5367), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3120), 14, - sym__dedent, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(576), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3283), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2021), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [26956] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3157), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -131527,9 +134563,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3118), 46, + ACTIONS(3159), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131576,11 +134612,809 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [27771] = 3, + [27025] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(3161), 1, + anon_sym_not, + ACTIONS(3163), 1, + anon_sym_lambda, + ACTIONS(3165), 1, + anon_sym_new, + STATE(2028), 1, + sym_string, + STATE(2157), 1, + sym_primary_expression, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(2988), 1, + sym_expression, + STATE(5404), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1131), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1121), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2946), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [27140] = 23, + ACTIONS(596), 1, + anon_sym_COMMA, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(1206), 1, + anon_sym_STAR, + ACTIONS(1214), 1, + anon_sym_LT, + ACTIONS(1216), 1, + anon_sym_await, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(3038), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(565), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(582), 2, + anon_sym_from, + anon_sym_in, + ACTIONS(1141), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1212), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1208), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + ACTIONS(563), 8, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [27249] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1129), 1, + anon_sym_not, + ACTIONS(1135), 1, + anon_sym_lambda, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1147), 1, + anon_sym_new, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, + anon_sym_STAR, + STATE(1963), 1, + sym_primary_expression, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(3677), 1, + sym_expression, + STATE(5197), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1131), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1121), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2946), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [27364] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, + sym_primary_expression, + STATE(1929), 1, + sym_string, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(3355), 1, + sym_expression, + STATE(5367), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(576), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3283), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2021), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [27479] = 26, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, + anon_sym_LBRACE, + ACTIONS(1292), 1, + anon_sym_not, + ACTIONS(1294), 1, + anon_sym_LT, + ACTIONS(1296), 1, + anon_sym_lambda, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, + anon_sym_None, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, + anon_sym_new, + ACTIONS(1310), 1, + anon_sym_sizeof, + ACTIONS(1312), 1, + sym_string_start, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, + sym_identifier, + ACTIONS(2744), 1, + anon_sym_await, + ACTIONS(2831), 1, + anon_sym_STAR, + STATE(2031), 1, + sym_primary_expression, + STATE(2152), 1, + sym_string, + STATE(2614), 1, + sym_list_splat_pattern, + STATE(4091), 1, + sym_expression, + STATE(5311), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1302), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1288), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2742), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2557), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2540), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [27594] = 26, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, + anon_sym_LBRACE, + ACTIONS(1292), 1, + anon_sym_not, + ACTIONS(1294), 1, + anon_sym_LT, + ACTIONS(1296), 1, + anon_sym_lambda, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, + anon_sym_None, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, + anon_sym_new, + ACTIONS(1310), 1, + anon_sym_sizeof, + ACTIONS(1312), 1, + sym_string_start, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, + sym_identifier, + ACTIONS(2744), 1, + anon_sym_await, + ACTIONS(2831), 1, + anon_sym_STAR, + STATE(2031), 1, + sym_primary_expression, + STATE(2152), 1, + sym_string, + STATE(2614), 1, + sym_list_splat_pattern, + STATE(4093), 1, + sym_expression, + STATE(5311), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1302), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1288), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2742), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2557), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2540), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [27709] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(3161), 1, + anon_sym_not, + ACTIONS(3163), 1, + anon_sym_lambda, + ACTIONS(3165), 1, + anon_sym_new, + STATE(2028), 1, + sym_string, + STATE(2157), 1, + sym_primary_expression, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(2996), 1, + sym_expression, + STATE(5404), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1131), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1121), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2946), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [27824] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, + sym_primary_expression, + STATE(1929), 1, + sym_string, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(3778), 1, + sym_expression, + STATE(5367), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(576), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3283), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2021), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [27939] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1129), 1, + anon_sym_not, + ACTIONS(1135), 1, + anon_sym_lambda, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1147), 1, + anon_sym_new, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, + anon_sym_STAR, + STATE(1963), 1, + sym_primary_expression, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(3679), 1, + sym_expression, + STATE(5197), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1131), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1121), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2946), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [28054] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3122), 14, + ACTIONS(3167), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -131593,9 +135427,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3124), 46, + ACTIONS(3169), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131642,13 +135476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [27840] = 3, + [28123] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3128), 14, - sym__dedent, + ACTIONS(3171), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -131659,9 +135493,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3126), 46, + ACTIONS(3173), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131708,11 +135542,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [27909] = 3, + [28192] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2446), 14, + ACTIONS(3175), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -131725,9 +135559,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2444), 46, + ACTIONS(3177), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131774,11 +135608,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [27978] = 3, + [28261] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, + sym_primary_expression, + STATE(1929), 1, + sym_string, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(3942), 1, + sym_expression, + STATE(5367), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(576), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3283), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2021), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [28376] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3130), 14, + ACTIONS(3179), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -131791,9 +135714,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3132), 46, + ACTIONS(3181), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131840,67 +135763,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28047] = 26, - ACTIONS(1110), 1, + [28445] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(2814), 1, - anon_sym_COLON, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4073), 1, + STATE(4297), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -131909,11 +135831,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -131929,13 +135852,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [28162] = 3, + [28560] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3136), 14, - sym__dedent, + ACTIONS(3183), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -131946,9 +135869,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3134), 46, + ACTIONS(3185), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131995,13 +135918,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28231] = 3, + [28629] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3140), 14, - sym__dedent, + ACTIONS(3187), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -132012,9 +135935,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3189), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [28698] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3191), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3138), 46, + ACTIONS(3193), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132061,7 +136050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28300] = 26, + [28767] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -132070,42 +136059,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3810), 1, + STATE(3728), 1, sym_expression, - STATE(5002), 1, - sym_expression_list, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -132115,13 +136103,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -132130,11 +136118,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -132150,11 +136139,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [28415] = 3, + [28882] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3142), 14, + ACTIONS(3195), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -132167,9 +136156,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3144), 46, + ACTIONS(3197), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132216,13 +136205,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28484] = 3, + [28951] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3148), 14, - sym__dedent, + ACTIONS(3199), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -132233,9 +136222,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3146), 46, + ACTIONS(3201), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132282,13 +136271,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28553] = 3, + [29020] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3152), 14, - sym__dedent, + ACTIONS(3203), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -132299,9 +136288,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3150), 46, + ACTIONS(3205), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132348,209 +136337,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28622] = 3, + [29089] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1129), 1, + anon_sym_not, + ACTIONS(1135), 1, + anon_sym_lambda, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1147), 1, + anon_sym_new, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, + anon_sym_STAR, + STATE(1963), 1, + sym_primary_expression, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(4070), 1, + sym_expression, + STATE(5197), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3154), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1131), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3156), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1121), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_api, + STATE(2946), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [29204] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(105), 1, anon_sym_sizeof, - [28691] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3128), 14, + ACTIONS(107), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1191), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, + sym_primary_expression, + STATE(1929), 1, + sym_string, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(4200), 1, + sym_expression, + STATE(5367), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3126), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(576), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_api, + STATE(3283), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2021), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [29319] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(105), 1, anon_sym_sizeof, - [28760] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3158), 14, + ACTIONS(107), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1191), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, + sym_primary_expression, + STATE(1929), 1, + sym_string, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(4073), 1, + sym_expression, + STATE(5367), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3160), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(576), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [28829] = 3, + STATE(3283), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2021), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [29434] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3162), 14, + ACTIONS(3207), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -132563,9 +136621,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3164), 46, + ACTIONS(3209), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132612,143 +136670,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28898] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3168), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, + [29503] = 27, + ACTIONS(1286), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1290), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3166), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(1292), 1, anon_sym_not, + ACTIONS(1294), 1, + anon_sym_LT, + ACTIONS(1296), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1310), 1, anon_sym_sizeof, - [28967] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2446), 14, - sym__dedent, + ACTIONS(1312), 1, sym_string_start, + ACTIONS(2217), 1, anon_sym_LPAREN, + ACTIONS(2831), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3211), 1, + sym_identifier, + ACTIONS(3215), 1, + anon_sym_await, + STATE(2066), 1, + sym_primary_expression, + STATE(2152), 1, + sym_string, + STATE(2614), 1, + sym_list_splat_pattern, + STATE(4018), 1, + sym_expression, + STATE(5311), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2308), 2, + sym_attribute, + sym_subscript, + ACTIONS(1302), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1288), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2444), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(3213), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [29036] = 3, + STATE(2557), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2540), 18, + sym_binary_operator, + sym_unary_operator, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [29620] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3170), 14, + ACTIONS(3217), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -132761,9 +136777,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3172), 46, + ACTIONS(3219), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132810,11 +136826,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [29105] = 3, + [29689] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3174), 14, + ACTIONS(3221), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -132827,9 +136843,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3176), 46, + ACTIONS(3223), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132876,79 +136892,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [29174] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3180), 14, - sym__dedent, + [29758] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1191), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, + sym_primary_expression, + STATE(1929), 1, + sym_string, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(3271), 1, + sym_expression, + STATE(5367), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3178), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(576), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [29243] = 3, + STATE(3283), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2021), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [29873] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3184), 14, - sym__dedent, + ACTIONS(3053), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -132959,9 +136998,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3182), 46, + ACTIONS(3051), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133008,79 +137047,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [29312] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3186), 14, + [29942] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1191), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, + sym_primary_expression, + STATE(1929), 1, + sym_string, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(3742), 1, + sym_expression, + STATE(5367), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3188), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(576), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [29381] = 3, + STATE(3283), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2021), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [30057] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3186), 14, - sym__dedent, + ACTIONS(2463), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -133091,9 +137153,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3188), 46, + ACTIONS(2465), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133140,79 +137202,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [29450] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3192), 14, - sym__dedent, + [30126] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1191), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, + sym_primary_expression, + STATE(1929), 1, + sym_string, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(3901), 1, + sym_expression, + STATE(5367), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3190), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(576), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [29519] = 3, + STATE(3283), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2021), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [30241] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3196), 14, - sym__dedent, + ACTIONS(3225), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -133223,9 +137308,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3194), 46, + ACTIONS(3227), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133272,143 +137357,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [29588] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3200), 14, - sym__dedent, + [30310] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1191), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, + sym_primary_expression, + STATE(1929), 1, + sym_string, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(3953), 1, + sym_expression, + STATE(5367), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3198), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(576), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_api, + STATE(3283), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2021), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [30425] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(105), 1, anon_sym_sizeof, - [29657] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3202), 14, + ACTIONS(107), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1191), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, + sym_primary_expression, + STATE(1929), 1, + sym_string, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(3909), 1, + sym_expression, + STATE(5367), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3204), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(576), 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_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [29726] = 3, + STATE(3283), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2021), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [30540] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3136), 14, + ACTIONS(3229), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -133421,9 +137552,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3134), 46, + ACTIONS(3231), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133470,8294 +137601,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [29795] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3208), 14, - sym__dedent, + [30609] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1191), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, + sym_primary_expression, + STATE(1929), 1, + sym_string, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(4130), 1, + sym_expression, + STATE(5367), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3206), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [29864] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3210), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3212), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [29933] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3214), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3216), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [30002] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3130), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3132), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [30071] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3142), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3144), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [30140] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3218), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3220), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [30209] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3148), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3146), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [30278] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3224), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3222), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [30347] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3152), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3150), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [30416] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3168), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3166), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [30485] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3226), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3228), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [30554] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3214), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3216), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [30623] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3224), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3222), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [30692] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3232), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3230), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [30761] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3236), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3234), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [30830] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2148), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2146), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [30899] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2958), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2956), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [30968] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2160), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2158), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [31037] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3240), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3238), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [31106] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3200), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3198), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [31175] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3192), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3190), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [31244] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2132), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2130), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [31313] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3244), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3242), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [31382] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3248), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3246), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [31451] = 26, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - ACTIONS(3250), 1, - anon_sym_COLON, - STATE(1958), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(4101), 1, - sym_expression, - STATE(5331), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1126), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1116), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2935), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [31566] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3254), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3252), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [31635] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3258), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3256), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [31704] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3262), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3260), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [31773] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3266), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3264), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [31842] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3218), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3220), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [31911] = 26, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - ACTIONS(3268), 1, - anon_sym_COLON, - STATE(1958), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(4101), 1, - sym_expression, - STATE(5331), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1126), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1116), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2935), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [32026] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3272), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3270), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [32095] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2128), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2126), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [32164] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2136), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2134), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [32233] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3244), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3242), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [32302] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2948), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2950), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [32371] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3140), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3138), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [32440] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3108), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3110), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [32509] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3274), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3276), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [32578] = 26, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - ACTIONS(3278), 1, - anon_sym_COLON, - STATE(1958), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(4101), 1, - sym_expression, - STATE(5331), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1126), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1116), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2935), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [32693] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3248), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3246), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [32762] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2408), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2410), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [32831] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3162), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3164), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [32900] = 27, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, - sym_identifier, - ACTIONS(869), 1, - anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(3280), 1, - anon_sym_STAR, - ACTIONS(3282), 1, - anon_sym_PLUS, - ACTIONS(3284), 1, - anon_sym_QMARK, - STATE(1918), 1, - sym_primary_expression, - STATE(1933), 1, - sym_string, - STATE(1985), 1, - sym_list_splat_pattern, - STATE(3756), 1, - sym_expression, - STATE(5376), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(847), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3273), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(1981), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [33017] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3226), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3228), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [33086] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3202), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3204), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [33155] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3286), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3288), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [33224] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2140), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2138), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [33293] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3122), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3124), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [33362] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3106), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3104), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [33431] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3254), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3252), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [33500] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3290), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3292), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [33569] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3240), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3238), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [33638] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3296), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3294), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [33707] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3300), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3298), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [33776] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3296), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3294), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [33845] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3304), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3302), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [33914] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2152), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2150), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [33983] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3306), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3308), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [34052] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3300), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3298), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [34121] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3304), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3302), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [34190] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3310), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3312), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [34259] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3310), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3312), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [34328] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3170), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3172), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [34397] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3174), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3176), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [34466] = 26, - ACTIONS(1277), 1, - anon_sym_LBRACK, - ACTIONS(1281), 1, - anon_sym_LBRACE, - ACTIONS(1283), 1, - anon_sym_not, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1287), 1, - anon_sym_lambda, - ACTIONS(1291), 1, - anon_sym_None, - ACTIONS(1297), 1, - anon_sym_new, - ACTIONS(1299), 1, - anon_sym_sizeof, - ACTIONS(1301), 1, - sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, - sym_identifier, - ACTIONS(2786), 1, - anon_sym_await, - ACTIONS(2886), 1, - anon_sym_STAR, - STATE(2043), 1, - sym_primary_expression, - STATE(2171), 1, - sym_string, - STATE(2556), 1, - sym_list_splat_pattern, - STATE(4028), 1, - sym_expression, - STATE(4975), 1, - sym_with_item, - STATE(5288), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1279), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2784), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2524), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2521), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [34581] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3290), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3292), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [34650] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3266), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3264), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [34719] = 26, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - ACTIONS(3314), 1, - anon_sym_COLON, - STATE(1958), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(4101), 1, - sym_expression, - STATE(5331), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1126), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1116), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2935), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [34834] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3306), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3308), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [34903] = 26, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - STATE(1958), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3991), 1, - sym_expression, - STATE(5331), 1, - sym__named_expression_lhs, - STATE(5338), 1, - sym_expression_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1126), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1116), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2935), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [35018] = 26, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - STATE(1958), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3864), 1, - sym_expression, - STATE(5252), 1, - sym_expression_list, - STATE(5331), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1126), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1116), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2935), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [35133] = 26, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - ACTIONS(3316), 1, - anon_sym_COLON, - STATE(1958), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(4102), 1, - sym_expression, - STATE(5331), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1126), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1116), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2935), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [35248] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3318), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3320), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [35317] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3208), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3206), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [35386] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2948), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2950), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [35455] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3184), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3182), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [35524] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3210), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3212), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [35593] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3324), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3322), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [35662] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3328), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3326), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [35731] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2408), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2410), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [35800] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3114), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3116), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [35869] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3330), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3332), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [35938] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3158), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3160), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [36007] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3258), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3256), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [36076] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3330), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3332), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [36145] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3336), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3334), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [36214] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3274), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3276), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [36283] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3336), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3334), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [36352] = 26, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - STATE(1958), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3975), 1, - sym_expression, - STATE(5331), 1, - sym__named_expression_lhs, - STATE(5507), 1, - sym_expression_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1126), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1116), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2935), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [36467] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3180), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3178), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [36536] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3236), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3234), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [36605] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3120), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3118), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [36674] = 26, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - STATE(1958), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3985), 1, - sym_expression, - STATE(5192), 1, - sym_expression_list, - STATE(5331), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1126), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1116), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2935), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [36789] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2144), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2142), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [36858] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3196), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3194), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [36927] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3318), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3320), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [36996] = 22, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(1199), 1, - anon_sym_STAR, - ACTIONS(1207), 1, - anon_sym_LT, - ACTIONS(1209), 1, - anon_sym_await, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3025), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(836), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1192), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1197), 2, - anon_sym_not, - anon_sym_or, - ACTIONS(1136), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1205), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1201), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - ACTIONS(834), 8, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [37103] = 26, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - ACTIONS(2888), 1, - anon_sym_COLON, - STATE(1958), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(4073), 1, - sym_expression, - STATE(5331), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1126), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1116), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2935), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [37218] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2156), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2154), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [37287] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3328), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3326), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [37356] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3340), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3338), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [37425] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3344), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3342), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [37494] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3340), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3338), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [37563] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3344), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3342), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [37632] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3272), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3270), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [37701] = 22, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(1199), 1, - anon_sym_STAR, - ACTIONS(1207), 1, - anon_sym_LT, - ACTIONS(1209), 1, - anon_sym_await, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3025), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(836), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(3080), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3082), 2, - anon_sym_not, - anon_sym_or, - ACTIONS(1136), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1205), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1201), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - ACTIONS(834), 8, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [37808] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2958), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(2956), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [37877] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3324), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3322), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [37946] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3262), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3260), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [38015] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3232), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3230), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [38084] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3286), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - ACTIONS(3288), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [38153] = 25, - ACTIONS(2102), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_LBRACK, - ACTIONS(2112), 1, - anon_sym_LBRACE, - ACTIONS(2118), 1, - anon_sym_None, - ACTIONS(2122), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, - anon_sym_LT, - ACTIONS(2554), 1, - sym_identifier, - ACTIONS(2562), 1, - anon_sym_await, - ACTIONS(2796), 1, - anon_sym_not, - ACTIONS(2798), 1, - anon_sym_lambda, - ACTIONS(2800), 1, - anon_sym_new, - STATE(1950), 1, - sym_primary_expression, - STATE(1968), 1, - sym_string, - STATE(2230), 1, - sym_list_splat_pattern, - STATE(4127), 1, - sym_expression, - STATE(5485), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2110), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2558), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3682), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2179), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [38265] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - STATE(1958), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(4297), 1, - sym_expression, - STATE(5331), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1126), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1116), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2935), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [38377] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - STATE(1958), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(4082), 1, - sym_expression, - STATE(5331), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1126), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1116), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2935), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [38489] = 25, - ACTIONS(2166), 1, - anon_sym_LPAREN, - ACTIONS(2172), 1, - anon_sym_LBRACK, - ACTIONS(2176), 1, - anon_sym_LBRACE, - ACTIONS(2182), 1, - anon_sym_None, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2188), 1, - sym_string_start, - ACTIONS(2268), 1, - sym_identifier, - ACTIONS(2284), 1, - anon_sym_LT, - ACTIONS(2290), 1, - anon_sym_await, - ACTIONS(2731), 1, - anon_sym_STAR, - ACTIONS(3346), 1, - anon_sym_not, - ACTIONS(3348), 1, - anon_sym_lambda, - ACTIONS(3350), 1, - anon_sym_new, - STATE(1947), 1, - sym_primary_expression, - STATE(1984), 1, - sym_string, - STATE(2129), 1, - sym_expression, - STATE(2133), 1, - sym_list_splat_pattern, - STATE(5276), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2174), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2276), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2255), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2246), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [38601] = 25, - ACTIONS(2166), 1, - anon_sym_LPAREN, - ACTIONS(2172), 1, - anon_sym_LBRACK, - ACTIONS(2176), 1, - anon_sym_LBRACE, - ACTIONS(2182), 1, - anon_sym_None, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2188), 1, - sym_string_start, - ACTIONS(2268), 1, - sym_identifier, - ACTIONS(2282), 1, - anon_sym_not, - ACTIONS(2284), 1, - anon_sym_LT, - ACTIONS(2286), 1, - anon_sym_lambda, - ACTIONS(2290), 1, - anon_sym_await, - ACTIONS(2292), 1, - anon_sym_new, - ACTIONS(2731), 1, - anon_sym_STAR, - STATE(1944), 1, - sym_primary_expression, - STATE(1984), 1, - sym_string, - STATE(2133), 1, - sym_list_splat_pattern, - STATE(3642), 1, - sym_expression, - STATE(5551), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2174), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2276), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2255), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2246), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [38713] = 25, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, - sym_identifier, - ACTIONS(869), 1, - anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, - anon_sym_STAR, - STATE(1918), 1, - sym_primary_expression, - STATE(1933), 1, - sym_string, - STATE(1985), 1, - sym_list_splat_pattern, - STATE(3361), 1, - sym_expression, - STATE(5376), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(847), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3273), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(1981), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [38825] = 25, - ACTIONS(2166), 1, - anon_sym_LPAREN, - ACTIONS(2172), 1, - anon_sym_LBRACK, - ACTIONS(2176), 1, - anon_sym_LBRACE, - ACTIONS(2182), 1, - anon_sym_None, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2188), 1, - sym_string_start, - ACTIONS(2268), 1, - sym_identifier, - ACTIONS(2284), 1, - anon_sym_LT, - ACTIONS(2290), 1, - anon_sym_await, - ACTIONS(2731), 1, - anon_sym_STAR, - ACTIONS(3346), 1, - anon_sym_not, - ACTIONS(3348), 1, - anon_sym_lambda, - ACTIONS(3350), 1, - anon_sym_new, - STATE(1947), 1, - sym_primary_expression, - STATE(1984), 1, - sym_string, - STATE(2133), 1, - sym_list_splat_pattern, - STATE(2150), 1, - sym_expression, - STATE(5276), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2174), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2276), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -141766,98 +137669,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2246), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [38937] = 25, - ACTIONS(2166), 1, - anon_sym_LPAREN, - ACTIONS(2172), 1, - anon_sym_LBRACK, - ACTIONS(2176), 1, - anon_sym_LBRACE, - ACTIONS(2182), 1, - anon_sym_None, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2188), 1, - sym_string_start, - ACTIONS(2268), 1, - sym_identifier, - ACTIONS(2282), 1, - anon_sym_not, - ACTIONS(2284), 1, - anon_sym_LT, - ACTIONS(2286), 1, - anon_sym_lambda, - ACTIONS(2290), 1, - anon_sym_await, - ACTIONS(2292), 1, - anon_sym_new, - ACTIONS(2731), 1, - anon_sym_STAR, - STATE(1944), 1, - sym_primary_expression, - STATE(1984), 1, - sym_string, - STATE(2133), 1, - sym_list_splat_pattern, - STATE(3677), 1, - sym_expression, - STATE(5551), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2180), 2, sym_ellipsis, - sym_float, - ACTIONS(2164), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2174), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2276), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2255), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2246), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -141873,7 +137690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [39049] = 25, + [30724] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -141882,127 +137699,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, - sym_identifier, - ACTIONS(869), 1, - anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, - anon_sym_STAR, - STATE(1918), 1, - sym_primary_expression, - STATE(1933), 1, - sym_string, - STATE(1985), 1, - sym_list_splat_pattern, - STATE(3353), 1, - sym_expression, - STATE(5376), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, + ACTIONS(83), 1, sym_float, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(847), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3273), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(1981), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [39161] = 25, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(97), 1, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3901), 1, + STATE(3910), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -142012,13 +137743,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -142027,98 +137758,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [39273] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - STATE(1958), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(4236), 1, - sym_expression, - STATE(5331), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1132), 2, sym_ellipsis, - sym_float, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1126), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1116), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2935), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -142134,7 +137779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [39385] = 25, + [30839] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -142143,40 +137788,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3868), 1, + STATE(3911), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -142186,13 +137832,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -142201,98 +137847,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [39497] = 25, - ACTIONS(2102), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_LBRACK, - ACTIONS(2112), 1, - anon_sym_LBRACE, - ACTIONS(2118), 1, - anon_sym_None, - ACTIONS(2122), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2432), 1, - anon_sym_not, - ACTIONS(2434), 1, - anon_sym_LT, - ACTIONS(2436), 1, - anon_sym_lambda, - ACTIONS(2442), 1, - anon_sym_new, - ACTIONS(2554), 1, - sym_identifier, - ACTIONS(2562), 1, - anon_sym_await, - STATE(1950), 1, - sym_primary_expression, - STATE(1968), 1, - sym_string, - STATE(2230), 1, - sym_list_splat_pattern, - STATE(3668), 1, - sym_expression, - STATE(5332), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2116), 2, sym_ellipsis, - sym_float, - ACTIONS(2100), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2110), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2558), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3682), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2179), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -142308,413 +137868,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [39609] = 25, - ACTIONS(2102), 1, + [30954] = 26, + ACTIONS(2187), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(2122), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2432), 1, - anon_sym_not, - ACTIONS(2434), 1, - anon_sym_LT, - ACTIONS(2436), 1, - anon_sym_lambda, - ACTIONS(2442), 1, - anon_sym_new, - ACTIONS(2554), 1, - sym_identifier, - ACTIONS(2562), 1, - anon_sym_await, - STATE(1950), 1, - sym_primary_expression, - STATE(1968), 1, - sym_string, - STATE(2230), 1, - sym_list_splat_pattern, - STATE(3683), 1, - sym_expression, - STATE(5332), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, + ACTIONS(2205), 1, sym_float, - ACTIONS(2100), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2110), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2558), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3682), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2179), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [39721] = 25, - ACTIONS(2102), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_LBRACK, - ACTIONS(2112), 1, - anon_sym_LBRACE, - ACTIONS(2118), 1, - anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2432), 1, - anon_sym_not, - ACTIONS(2434), 1, - anon_sym_LT, - ACTIONS(2436), 1, - anon_sym_lambda, - ACTIONS(2442), 1, - anon_sym_new, - ACTIONS(2554), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2562), 1, - anon_sym_await, - STATE(1950), 1, - sym_primary_expression, - STATE(1968), 1, - sym_string, - STATE(2230), 1, - sym_list_splat_pattern, - STATE(3651), 1, - sym_expression, - STATE(5332), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2110), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2558), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3682), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2179), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [39833] = 25, - ACTIONS(2102), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_LBRACK, - ACTIONS(2112), 1, - anon_sym_LBRACE, - ACTIONS(2118), 1, - anon_sym_None, - ACTIONS(2122), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2432), 1, + ACTIONS(2329), 1, anon_sym_not, - ACTIONS(2434), 1, + ACTIONS(2331), 1, anon_sym_LT, - ACTIONS(2436), 1, + ACTIONS(2333), 1, anon_sym_lambda, - ACTIONS(2442), 1, - anon_sym_new, - ACTIONS(2554), 1, - sym_identifier, - ACTIONS(2562), 1, + ACTIONS(2337), 1, anon_sym_await, - STATE(1950), 1, - sym_primary_expression, - STATE(1968), 1, - sym_string, - STATE(2230), 1, - sym_list_splat_pattern, - STATE(3657), 1, - sym_expression, - STATE(5332), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2110), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2558), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3682), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2179), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [39945] = 25, - ACTIONS(2102), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_LBRACK, - ACTIONS(2112), 1, - anon_sym_LBRACE, - ACTIONS(2118), 1, - anon_sym_None, - ACTIONS(2122), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2432), 1, - anon_sym_not, - ACTIONS(2434), 1, - anon_sym_LT, - ACTIONS(2436), 1, - anon_sym_lambda, - ACTIONS(2442), 1, + ACTIONS(2339), 1, anon_sym_new, - ACTIONS(2554), 1, - sym_identifier, - ACTIONS(2562), 1, - anon_sym_await, - STATE(1950), 1, - sym_primary_expression, - STATE(1968), 1, - sym_string, - STATE(2230), 1, - sym_list_splat_pattern, - STATE(3666), 1, - sym_expression, - STATE(5332), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2110), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2558), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3682), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2179), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [40057] = 25, - ACTIONS(2102), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_LBRACK, - ACTIONS(2112), 1, - anon_sym_LBRACE, - ACTIONS(2118), 1, - anon_sym_None, - ACTIONS(2122), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - sym_string_start, - ACTIONS(2426), 1, + ACTIONS(2703), 1, anon_sym_STAR, - ACTIONS(2434), 1, - anon_sym_LT, - ACTIONS(2554), 1, - sym_identifier, - ACTIONS(2562), 1, - anon_sym_await, - ACTIONS(3352), 1, - anon_sym_not, - ACTIONS(3354), 1, - anon_sym_lambda, - ACTIONS(3356), 1, - anon_sym_new, - STATE(1938), 1, + STATE(1945), 1, sym_primary_expression, - STATE(1968), 1, + STATE(2004), 1, sym_string, - STATE(2230), 1, + STATE(2272), 1, sym_list_splat_pattern, - STATE(2277), 1, + STATE(3764), 1, sym_expression, - STATE(5292), 1, + STATE(5551), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2276), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -142723,98 +137936,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [40169] = 25, - ACTIONS(2102), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_LBRACK, - ACTIONS(2112), 1, - anon_sym_LBRACE, - ACTIONS(2118), 1, - anon_sym_None, - ACTIONS(2122), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2432), 1, - anon_sym_not, - ACTIONS(2434), 1, - anon_sym_LT, - ACTIONS(2436), 1, - anon_sym_lambda, - ACTIONS(2442), 1, - anon_sym_new, - ACTIONS(2554), 1, - sym_identifier, - ACTIONS(2562), 1, - anon_sym_await, - STATE(1950), 1, - sym_primary_expression, - STATE(1968), 1, - sym_string, - STATE(2230), 1, - sym_list_splat_pattern, - STATE(3669), 1, - sym_expression, - STATE(5332), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2116), 2, sym_ellipsis, - sym_float, - ACTIONS(2100), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2110), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2558), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3682), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2179), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -142830,239 +137957,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [40281] = 25, - ACTIONS(2102), 1, + [31069] = 26, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(2122), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, - anon_sym_LT, - ACTIONS(2554), 1, - sym_identifier, - ACTIONS(2562), 1, - anon_sym_await, - ACTIONS(3352), 1, - anon_sym_not, - ACTIONS(3354), 1, - anon_sym_lambda, - ACTIONS(3356), 1, - anon_sym_new, - STATE(1938), 1, - sym_primary_expression, - STATE(1968), 1, - sym_string, - STATE(2218), 1, - sym_expression, - STATE(2230), 1, - sym_list_splat_pattern, - STATE(5292), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, + ACTIONS(2275), 1, sym_float, - ACTIONS(2100), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2110), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2558), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2276), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2179), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [40393] = 25, - ACTIONS(2102), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_LBRACK, - ACTIONS(2112), 1, - anon_sym_LBRACE, - ACTIONS(2118), 1, - anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2432), 1, - anon_sym_not, - ACTIONS(2434), 1, - anon_sym_LT, - ACTIONS(2436), 1, - anon_sym_lambda, - ACTIONS(2442), 1, - anon_sym_new, - ACTIONS(2554), 1, - sym_identifier, - ACTIONS(2562), 1, - anon_sym_await, - STATE(1950), 1, - sym_primary_expression, - STATE(1968), 1, - sym_string, - STATE(2230), 1, - sym_list_splat_pattern, - STATE(3673), 1, - sym_expression, - STATE(5332), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2110), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2558), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3682), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2179), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [40505] = 25, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(2299), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(2301), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(2303), 1, anon_sym_lambda, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(97), 1, + ACTIONS(2309), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2728), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1956), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2051), 1, sym_string, - STATE(1985), 1, + STATE(2326), 1, sym_list_splat_pattern, - STATE(4194), 1, + STATE(3768), 1, sym_expression, - STATE(5376), 1, + STATE(5492), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(2255), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2591), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2375), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -143071,98 +138025,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [40617] = 25, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, - sym_identifier, - ACTIONS(869), 1, - anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, - anon_sym_STAR, - STATE(1918), 1, - sym_primary_expression, - STATE(1933), 1, - sym_string, - STATE(1985), 1, - sym_list_splat_pattern, - STATE(3873), 1, - sym_expression, - STATE(5376), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(77), 2, sym_ellipsis, - sym_float, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(847), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3273), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(1981), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -143178,152 +138046,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [40729] = 25, - ACTIONS(1277), 1, + [31184] = 26, + ACTIONS(2257), 1, + anon_sym_LPAREN, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(1283), 1, - anon_sym_not, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1287), 1, - anon_sym_lambda, - ACTIONS(1291), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(1297), 1, - anon_sym_new, - ACTIONS(1299), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, - sym_identifier, - ACTIONS(2786), 1, - anon_sym_await, - ACTIONS(2886), 1, - anon_sym_STAR, - STATE(2043), 1, - sym_primary_expression, - STATE(2171), 1, - sym_string, - STATE(2556), 1, - sym_list_splat_pattern, - STATE(4000), 1, - sym_expression, - STATE(5288), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1279), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2784), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2524), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2521), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [40841] = 25, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(2299), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(2301), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(2303), 1, anon_sym_lambda, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(97), 1, + ACTIONS(2309), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2728), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1956), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2051), 1, sym_string, - STATE(1985), 1, + STATE(2326), 1, sym_list_splat_pattern, - STATE(4036), 1, + STATE(3769), 1, sym_expression, - STATE(5376), 1, + STATE(5492), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(2255), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2591), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2375), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -143332,11 +138114,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -143352,65 +138135,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [40953] = 25, - ACTIONS(1277), 1, + [31299] = 26, + ACTIONS(2257), 1, + anon_sym_LPAREN, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(1283), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, + anon_sym_None, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, + anon_sym_sizeof, + ACTIONS(2281), 1, + sym_string_start, + ACTIONS(2299), 1, anon_sym_not, - ACTIONS(1285), 1, + ACTIONS(2301), 1, anon_sym_LT, - ACTIONS(1287), 1, + ACTIONS(2303), 1, anon_sym_lambda, - ACTIONS(1291), 1, - anon_sym_None, - ACTIONS(1297), 1, + ACTIONS(2309), 1, anon_sym_new, - ACTIONS(1299), 1, - anon_sym_sizeof, - ACTIONS(1301), 1, - sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2728), 1, anon_sym_STAR, - STATE(2043), 1, + STATE(1956), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2051), 1, sym_string, - STATE(2556), 1, + STATE(2326), 1, sym_list_splat_pattern, - STATE(4001), 1, + STATE(3770), 1, sym_expression, - STATE(5288), 1, + STATE(5492), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(2255), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(2591), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2375), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -143419,11 +138203,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -143439,65 +138224,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [41065] = 25, - ACTIONS(1277), 1, + [31414] = 26, + ACTIONS(2257), 1, + anon_sym_LPAREN, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(1283), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, + anon_sym_None, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, + anon_sym_sizeof, + ACTIONS(2281), 1, + sym_string_start, + ACTIONS(2299), 1, anon_sym_not, - ACTIONS(1285), 1, + ACTIONS(2301), 1, anon_sym_LT, - ACTIONS(1287), 1, + ACTIONS(2303), 1, anon_sym_lambda, - ACTIONS(1291), 1, - anon_sym_None, - ACTIONS(1297), 1, + ACTIONS(2309), 1, anon_sym_new, - ACTIONS(1299), 1, - anon_sym_sizeof, - ACTIONS(1301), 1, - sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2728), 1, anon_sym_STAR, - STATE(2043), 1, + STATE(1956), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2051), 1, sym_string, - STATE(2556), 1, + STATE(2326), 1, sym_list_splat_pattern, - STATE(4002), 1, + STATE(2414), 1, sym_expression, - STATE(5288), 1, + STATE(5492), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(2255), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(2591), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2375), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -143506,11 +138292,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -143526,65 +138313,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [41177] = 25, - ACTIONS(1277), 1, + [31529] = 26, + ACTIONS(2257), 1, + anon_sym_LPAREN, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(1283), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, + anon_sym_None, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, + anon_sym_sizeof, + ACTIONS(2281), 1, + sym_string_start, + ACTIONS(2299), 1, anon_sym_not, - ACTIONS(1285), 1, + ACTIONS(2301), 1, anon_sym_LT, - ACTIONS(1287), 1, + ACTIONS(2303), 1, anon_sym_lambda, - ACTIONS(1291), 1, - anon_sym_None, - ACTIONS(1297), 1, + ACTIONS(2309), 1, anon_sym_new, - ACTIONS(1299), 1, - anon_sym_sizeof, - ACTIONS(1301), 1, - sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2728), 1, anon_sym_STAR, - STATE(2043), 1, + STATE(1956), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2051), 1, sym_string, - STATE(2541), 1, - sym_expression, - STATE(2556), 1, + STATE(2326), 1, sym_list_splat_pattern, - STATE(5288), 1, + STATE(3771), 1, + sym_expression, + STATE(5492), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(2255), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(2591), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2375), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -143593,11 +138381,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -143613,65 +138402,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [41289] = 25, - ACTIONS(1277), 1, + [31644] = 26, + ACTIONS(1286), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1283), 1, + ACTIONS(1292), 1, anon_sym_not, - ACTIONS(1285), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(1287), 1, + ACTIONS(1296), 1, anon_sym_lambda, - ACTIONS(1291), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1297), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, anon_sym_new, - ACTIONS(1299), 1, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(2254), 1, + ACTIONS(2217), 1, anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(2744), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(2043), 1, + STATE(2031), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2152), 1, sym_string, - STATE(2556), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(4004), 1, + STATE(4067), 1, sym_expression, - STATE(5288), 1, + STATE(5311), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -143680,11 +138470,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -143700,65 +138491,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [41401] = 25, - ACTIONS(1277), 1, + [31759] = 26, + ACTIONS(2257), 1, + anon_sym_LPAREN, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1291), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(1299), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(2301), 1, + anon_sym_LT, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2728), 1, anon_sym_STAR, - ACTIONS(3358), 1, + ACTIONS(3233), 1, anon_sym_not, - ACTIONS(3360), 1, + ACTIONS(3235), 1, anon_sym_lambda, - ACTIONS(3362), 1, + ACTIONS(3237), 1, anon_sym_new, - STATE(2054), 1, + STATE(1957), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2051), 1, sym_string, - STATE(2556), 1, - sym_list_splat_pattern, - STATE(2564), 1, + STATE(2309), 1, sym_expression, - STATE(5310), 1, + STATE(2326), 1, + sym_list_splat_pattern, + STATE(5282), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(2255), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(2591), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2375), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -143767,11 +138559,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -143787,65 +138580,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [41513] = 25, - ACTIONS(1277), 1, + [31874] = 26, + ACTIONS(2257), 1, + anon_sym_LPAREN, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(1283), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, + anon_sym_None, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, + anon_sym_sizeof, + ACTIONS(2281), 1, + sym_string_start, + ACTIONS(2299), 1, anon_sym_not, - ACTIONS(1285), 1, + ACTIONS(2301), 1, anon_sym_LT, - ACTIONS(1287), 1, + ACTIONS(2303), 1, anon_sym_lambda, - ACTIONS(1291), 1, - anon_sym_None, - ACTIONS(1297), 1, + ACTIONS(2309), 1, anon_sym_new, - ACTIONS(1299), 1, - anon_sym_sizeof, - ACTIONS(1301), 1, - sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2728), 1, anon_sym_STAR, - STATE(2043), 1, + STATE(1956), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2051), 1, sym_string, - STATE(2556), 1, + STATE(2326), 1, sym_list_splat_pattern, - STATE(4008), 1, + STATE(3783), 1, sym_expression, - STATE(5288), 1, + STATE(5492), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(2255), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(2591), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2375), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -143854,11 +138648,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -143874,65 +138669,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [41625] = 25, - ACTIONS(1277), 1, + [31989] = 26, + ACTIONS(2257), 1, + anon_sym_LPAREN, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1291), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(1299), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(2301), 1, + anon_sym_LT, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2728), 1, anon_sym_STAR, - ACTIONS(3358), 1, + ACTIONS(3233), 1, anon_sym_not, - ACTIONS(3360), 1, + ACTIONS(3235), 1, anon_sym_lambda, - ACTIONS(3362), 1, + ACTIONS(3237), 1, anon_sym_new, - STATE(2054), 1, + STATE(1957), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2051), 1, sym_string, - STATE(2556), 1, - sym_list_splat_pattern, - STATE(2580), 1, + STATE(2317), 1, sym_expression, - STATE(5310), 1, + STATE(2326), 1, + sym_list_splat_pattern, + STATE(5282), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(2255), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(2591), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2375), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -143941,11 +138737,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -143961,65 +138758,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [41737] = 25, - ACTIONS(67), 1, + [32104] = 26, + ACTIONS(2257), 1, + anon_sym_LPAREN, + ACTIONS(2263), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, + anon_sym_None, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, + anon_sym_sizeof, + ACTIONS(2281), 1, + sym_string_start, + ACTIONS(2299), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(2301), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(2303), 1, anon_sym_lambda, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(97), 1, + ACTIONS(2309), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2728), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1956), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2051), 1, sym_string, - STATE(1985), 1, + STATE(2326), 1, sym_list_splat_pattern, - STATE(3874), 1, + STATE(3788), 1, sym_expression, - STATE(5376), 1, + STATE(5492), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(2255), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2591), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2375), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -144028,11 +138826,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -144048,65 +138847,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [41849] = 25, - ACTIONS(1277), 1, + [32219] = 26, + ACTIONS(2187), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(1283), 1, - anon_sym_not, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1287), 1, - anon_sym_lambda, - ACTIONS(1291), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(1297), 1, - anon_sym_new, - ACTIONS(1299), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(2329), 1, + anon_sym_not, + ACTIONS(2331), 1, + anon_sym_LT, + ACTIONS(2333), 1, + anon_sym_lambda, + ACTIONS(2337), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2339), 1, + anon_sym_new, + ACTIONS(2703), 1, anon_sym_STAR, - STATE(2043), 1, + STATE(1945), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2004), 1, sym_string, - STATE(2556), 1, + STATE(2272), 1, sym_list_splat_pattern, - STATE(4010), 1, + STATE(3717), 1, sym_expression, - STATE(5288), 1, + STATE(5551), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -144115,11 +138915,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -144135,65 +138936,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [41961] = 25, - ACTIONS(67), 1, + [32334] = 26, + ACTIONS(2187), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, + anon_sym_LBRACK, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(79), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(2329), 1, + anon_sym_not, + ACTIONS(2331), 1, + anon_sym_LT, + ACTIONS(2333), 1, + anon_sym_lambda, + ACTIONS(2337), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2339), 1, + anon_sym_new, + ACTIONS(2703), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1945), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2004), 1, sym_string, - STATE(1985), 1, + STATE(2272), 1, sym_list_splat_pattern, - STATE(3877), 1, + STATE(3718), 1, sym_expression, - STATE(5376), 1, + STATE(5551), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -144202,11 +139004,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -144222,65 +139025,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [42073] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, + [32449] = 26, + ACTIONS(2187), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2329), 1, + anon_sym_not, + ACTIONS(2331), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2333), 1, + anon_sym_lambda, + ACTIONS(2337), 1, + anon_sym_await, + ACTIONS(2339), 1, + anon_sym_new, + ACTIONS(2703), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1945), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2004), 1, sym_string, - STATE(2402), 1, + STATE(2272), 1, sym_list_splat_pattern, - STATE(4101), 1, + STATE(3719), 1, sym_expression, - STATE(5331), 1, + STATE(5551), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -144289,11 +139093,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -144309,65 +139114,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [42185] = 25, - ACTIONS(2204), 1, + [32564] = 26, + ACTIONS(2187), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2329), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2331), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(2333), 1, anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(2337), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2339), 1, anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2703), 1, anon_sym_STAR, - STATE(1967), 1, + STATE(1945), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2004), 1, sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(3693), 1, + STATE(2248), 1, sym_expression, - STATE(5443), 1, + STATE(2272), 1, + sym_list_splat_pattern, + STATE(5551), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -144376,11 +139182,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -144396,65 +139203,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [42297] = 25, - ACTIONS(67), 1, + [32679] = 26, + ACTIONS(2187), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, + anon_sym_LBRACK, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(79), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(2329), 1, + anon_sym_not, + ACTIONS(2331), 1, + anon_sym_LT, + ACTIONS(2333), 1, + anon_sym_lambda, + ACTIONS(2337), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2339), 1, + anon_sym_new, + ACTIONS(2703), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1945), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2004), 1, sym_string, - STATE(1985), 1, + STATE(2272), 1, sym_list_splat_pattern, - STATE(3858), 1, + STATE(3720), 1, sym_expression, - STATE(5376), 1, + STATE(5551), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -144463,11 +139271,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -144483,65 +139292,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [42409] = 25, - ACTIONS(2204), 1, + [32794] = 26, + ACTIONS(2187), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2331), 1, anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(2337), 1, anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2703), 1, anon_sym_STAR, - STATE(1967), 1, + ACTIONS(3239), 1, + anon_sym_not, + ACTIONS(3241), 1, + anon_sym_lambda, + ACTIONS(3243), 1, + anon_sym_new, + STATE(1952), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2004), 1, sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(3702), 1, + STATE(2244), 1, sym_expression, - STATE(5443), 1, + STATE(2272), 1, + sym_list_splat_pattern, + STATE(5320), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -144550,11 +139360,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -144570,65 +139381,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [42521] = 25, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, + [32909] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, + anon_sym_STAR, + ACTIONS(3245), 1, anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(3247), 1, anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(3249), 1, anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - STATE(1967), 1, + STATE(1921), 1, sym_primary_expression, - STATE(2110), 1, + STATE(1929), 1, sym_string, - STATE(2490), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3706), 1, + STATE(2015), 1, sym_expression, - STATE(5443), 1, + STATE(5399), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(1985), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -144637,11 +139449,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -144657,65 +139470,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [42633] = 25, - ACTIONS(2204), 1, + [33024] = 26, + ACTIONS(2187), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2329), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2331), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(2333), 1, anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(2337), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2339), 1, anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2703), 1, anon_sym_STAR, - STATE(1967), 1, + STATE(1945), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2004), 1, sym_string, - STATE(2484), 1, - sym_expression, - STATE(2490), 1, + STATE(2272), 1, sym_list_splat_pattern, - STATE(5443), 1, + STATE(3721), 1, + sym_expression, + STATE(5551), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -144724,11 +139538,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -144744,65 +139559,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [42745] = 25, - ACTIONS(2204), 1, + [33139] = 26, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2437), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(2441), 1, anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(2443), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2445), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(2781), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(1967), 1, + STATE(2005), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2096), 1, sym_string, - STATE(2490), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(3707), 1, + STATE(3977), 1, sym_expression, - STATE(5443), 1, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -144811,11 +139627,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -144831,65 +139648,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [42857] = 25, - ACTIONS(2204), 1, + [33254] = 26, + ACTIONS(2187), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2398), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2331), 1, anon_sym_LT, - ACTIONS(2402), 1, + ACTIONS(2337), 1, anon_sym_await, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2703), 1, anon_sym_STAR, - ACTIONS(3364), 1, + ACTIONS(3239), 1, anon_sym_not, - ACTIONS(3366), 1, + ACTIONS(3241), 1, anon_sym_lambda, - ACTIONS(3368), 1, + ACTIONS(3243), 1, anon_sym_new, - STATE(1989), 1, + STATE(1952), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2004), 1, sym_string, - STATE(2479), 1, + STATE(2137), 1, sym_expression, - STATE(2490), 1, + STATE(2272), 1, sym_list_splat_pattern, - STATE(5334), 1, + STATE(5320), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -144898,11 +139716,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -144918,65 +139737,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [42969] = 25, - ACTIONS(2204), 1, + [33369] = 26, + ACTIONS(2187), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2329), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2331), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(2333), 1, anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(2337), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2339), 1, anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2703), 1, anon_sym_STAR, - STATE(1967), 1, + STATE(1945), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2004), 1, sym_string, - STATE(2490), 1, + STATE(2272), 1, sym_list_splat_pattern, - STATE(3713), 1, + STATE(3722), 1, sym_expression, - STATE(5443), 1, + STATE(5551), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -144985,11 +139805,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -145005,65 +139826,264 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [43081] = 25, - ACTIONS(67), 1, + [33484] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3251), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(69), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3253), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(71), 1, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [33553] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3255), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(73), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3257), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(79), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(97), 1, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(103), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(105), 1, + [33622] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3259), 14, sym_string_start, - ACTIONS(832), 1, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3261), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(869), 1, anon_sym_await, - ACTIONS(1178), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [33691] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(1713), 1, + anon_sym_LBRACE, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, + anon_sym_None, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, + anon_sym_sizeof, + ACTIONS(1727), 1, + sym_string_start, + ACTIONS(2409), 1, anon_sym_STAR, - STATE(1918), 1, + ACTIONS(2415), 1, + anon_sym_not, + ACTIONS(2417), 1, + anon_sym_LT, + ACTIONS(2419), 1, + anon_sym_lambda, + ACTIONS(2425), 1, + anon_sym_new, + ACTIONS(2693), 1, + sym_identifier, + ACTIONS(2701), 1, + anon_sym_await, + STATE(1942), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1976), 1, sym_string, - STATE(1985), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(4061), 1, + STATE(3649), 1, sym_expression, - STATE(5376), 1, + STATE(5368), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -145072,11 +140092,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -145092,65 +140113,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [43193] = 25, - ACTIONS(2204), 1, + [33806] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2409), 1, anon_sym_STAR, - ACTIONS(3364), 1, + ACTIONS(2415), 1, anon_sym_not, - ACTIONS(3366), 1, + ACTIONS(2417), 1, + anon_sym_LT, + ACTIONS(2419), 1, anon_sym_lambda, - ACTIONS(3368), 1, + ACTIONS(2425), 1, anon_sym_new, - STATE(1989), 1, + ACTIONS(2693), 1, + sym_identifier, + ACTIONS(2701), 1, + anon_sym_await, + STATE(1942), 1, sym_primary_expression, - STATE(2110), 1, + STATE(1976), 1, sym_string, - STATE(2485), 1, - sym_expression, - STATE(2490), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(5334), 1, + STATE(3653), 1, + sym_expression, + STATE(5368), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -145159,11 +140181,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -145179,65 +140202,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [43305] = 25, - ACTIONS(2204), 1, + [33921] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2409), 1, + anon_sym_STAR, + ACTIONS(2415), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(2419), 1, anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2425), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - STATE(1967), 1, + ACTIONS(2701), 1, + anon_sym_await, + STATE(1942), 1, sym_primary_expression, - STATE(2110), 1, + STATE(1976), 1, sym_string, - STATE(2490), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(3680), 1, + STATE(3657), 1, sym_expression, - STATE(5443), 1, + STATE(5368), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -145246,11 +140270,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -145266,65 +140291,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [43417] = 25, - ACTIONS(67), 1, + [34036] = 26, + ACTIONS(1703), 1, + anon_sym_LPAREN, + ACTIONS(1709), 1, + anon_sym_LBRACK, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, + anon_sym_None, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, + anon_sym_sizeof, + ACTIONS(1727), 1, + sym_string_start, + ACTIONS(2409), 1, + anon_sym_STAR, + ACTIONS(2415), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(2419), 1, anon_sym_lambda, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(97), 1, + ACTIONS(2425), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(2701), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, - anon_sym_STAR, - STATE(1918), 1, + STATE(1942), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1976), 1, sym_string, - STATE(1985), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(3307), 1, + STATE(3658), 1, sym_expression, - STATE(5376), 1, + STATE(5368), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -145333,11 +140359,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -145353,65 +140380,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [43529] = 25, - ACTIONS(1225), 1, + [34151] = 26, + ACTIONS(1703), 1, + anon_sym_LPAREN, + ACTIONS(1709), 1, + anon_sym_LBRACK, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(1227), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, + anon_sym_None, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, + anon_sym_sizeof, + ACTIONS(1727), 1, + sym_string_start, + ACTIONS(2409), 1, + anon_sym_STAR, + ACTIONS(2415), 1, anon_sym_not, - ACTIONS(1229), 1, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(1231), 1, + ACTIONS(2419), 1, anon_sym_lambda, - ACTIONS(1237), 1, - anon_sym_None, - ACTIONS(1245), 1, + ACTIONS(2425), 1, anon_sym_new, - ACTIONS(1255), 1, - anon_sym_sizeof, - ACTIONS(1257), 1, - sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(1367), 1, - anon_sym_await, - ACTIONS(2190), 1, - anon_sym_LPAREN, - ACTIONS(2514), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(2760), 1, - anon_sym_STAR, - STATE(1953), 1, + ACTIONS(2701), 1, + anon_sym_await, + STATE(1942), 1, sym_primary_expression, - STATE(2028), 1, + STATE(1976), 1, sym_string, - STATE(2420), 1, - sym_expression, - STATE(2426), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(5528), 1, + STATE(3661), 1, + sym_expression, + STATE(5368), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1239), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(1223), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1363), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2406), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -145420,11 +140448,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2403), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -145440,68 +140469,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [43641] = 26, - ACTIONS(2204), 1, + [34266] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2878), 1, + ACTIONS(2409), 1, anon_sym_STAR, - ACTIONS(3370), 1, + ACTIONS(2417), 1, + anon_sym_LT, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(3374), 1, + ACTIONS(2701), 1, anon_sym_await, - STATE(2065), 1, + ACTIONS(3263), 1, + anon_sym_not, + ACTIONS(3265), 1, + anon_sym_lambda, + ACTIONS(3267), 1, + anon_sym_new, + STATE(1938), 1, sym_primary_expression, - STATE(2110), 1, + STATE(1976), 1, sym_string, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(4045), 1, + STATE(2195), 1, sym_expression, - STATE(5443), 1, + STATE(2212), 1, + sym_list_splat_pattern, + STATE(5337), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - STATE(2424), 2, - sym_attribute, - sym_subscript, - ACTIONS(2202), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3372), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2251), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -145510,9 +140537,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 17, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -145528,65 +140558,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [43755] = 25, - ACTIONS(67), 1, + [34381] = 26, + ACTIONS(1703), 1, + anon_sym_LPAREN, + ACTIONS(1709), 1, + anon_sym_LBRACK, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, + anon_sym_None, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, + anon_sym_sizeof, + ACTIONS(1727), 1, + sym_string_start, + ACTIONS(2409), 1, + anon_sym_STAR, + ACTIONS(2415), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(2419), 1, anon_sym_lambda, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(97), 1, + ACTIONS(2425), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(2701), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, - anon_sym_STAR, - STATE(1918), 1, + STATE(1942), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1976), 1, sym_string, - STATE(1985), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(4075), 1, + STATE(3650), 1, sym_expression, - STATE(5376), 1, + STATE(5368), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -145595,11 +140626,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -145615,65 +140647,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [43867] = 25, - ACTIONS(1277), 1, + [34496] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1283), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1287), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1291), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1297), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1299), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, - sym_identifier, - ACTIONS(2786), 1, - anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(2043), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2028), 1, sym_string, - STATE(2556), 1, + STATE(2340), 1, sym_list_splat_pattern, STATE(4055), 1, sym_expression, - STATE(5288), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -145682,11 +140715,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -145702,65 +140736,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [43979] = 25, - ACTIONS(67), 1, + [34611] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3269), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(73), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3271), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(79), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, + sym_integer, sym_identifier, - ACTIONS(869), 1, anon_sym_await, - ACTIONS(1178), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [34680] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(1713), 1, + anon_sym_LBRACE, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, + anon_sym_None, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, + anon_sym_sizeof, + ACTIONS(1727), 1, + sym_string_start, + ACTIONS(2409), 1, anon_sym_STAR, - STATE(1918), 1, + ACTIONS(2417), 1, + anon_sym_LT, + ACTIONS(2693), 1, + sym_identifier, + ACTIONS(2701), 1, + anon_sym_await, + ACTIONS(3263), 1, + anon_sym_not, + ACTIONS(3265), 1, + anon_sym_lambda, + ACTIONS(3267), 1, + anon_sym_new, + STATE(1938), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1976), 1, sym_string, - STATE(1985), 1, - sym_list_splat_pattern, - STATE(3860), 1, + STATE(2201), 1, sym_expression, - STATE(5376), 1, + STATE(2212), 1, + sym_list_splat_pattern, + STATE(5337), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2251), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -145769,11 +140870,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -145789,65 +140891,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44091] = 25, - ACTIONS(67), 1, + [34795] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3273), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(71), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(79), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3275), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, + sym_integer, sym_identifier, - ACTIONS(869), 1, anon_sym_await, - ACTIONS(1178), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [34864] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(1713), 1, + anon_sym_LBRACE, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, + anon_sym_None, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, + anon_sym_sizeof, + ACTIONS(1727), 1, + sym_string_start, + ACTIONS(2409), 1, anon_sym_STAR, - ACTIONS(3376), 1, + ACTIONS(2415), 1, anon_sym_not, - ACTIONS(3378), 1, + ACTIONS(2417), 1, + anon_sym_LT, + ACTIONS(2419), 1, anon_sym_lambda, - ACTIONS(3380), 1, + ACTIONS(2425), 1, anon_sym_new, - STATE(1926), 1, + ACTIONS(2693), 1, + sym_identifier, + ACTIONS(2701), 1, + anon_sym_await, + STATE(1942), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1976), 1, sym_string, - STATE(1973), 1, - sym_expression, - STATE(1985), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(5366), 1, + STATE(3663), 1, + sym_expression, + STATE(5368), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(1997), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -145856,11 +141025,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -145876,65 +141046,198 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44203] = 25, - ACTIONS(67), 1, + [34979] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3277), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(71), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(79), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3279), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(103), 1, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(105), 1, + [35048] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3281), 14, sym_string_start, - ACTIONS(832), 1, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3283), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(869), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [35117] = 26, + ACTIONS(1286), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, - anon_sym_STAR, - ACTIONS(3376), 1, + ACTIONS(1290), 1, + anon_sym_LBRACE, + ACTIONS(1292), 1, anon_sym_not, - ACTIONS(3378), 1, + ACTIONS(1294), 1, + anon_sym_LT, + ACTIONS(1296), 1, anon_sym_lambda, - ACTIONS(3380), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, + anon_sym_None, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, anon_sym_new, - STATE(1926), 1, + ACTIONS(1310), 1, + anon_sym_sizeof, + ACTIONS(1312), 1, + sym_string_start, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, + sym_identifier, + ACTIONS(2744), 1, + anon_sym_await, + ACTIONS(2831), 1, + anon_sym_STAR, + STATE(2031), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2152), 1, sym_string, - STATE(1985), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(2017), 1, + STATE(4006), 1, sym_expression, - STATE(5366), 1, + STATE(5311), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(1997), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -145943,11 +141246,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -145963,65 +141267,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44315] = 25, - ACTIONS(67), 1, + [35232] = 26, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1292), 1, + anon_sym_not, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(79), 1, + ACTIONS(1296), 1, + anon_sym_lambda, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(103), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, + anon_sym_new, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(2744), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2831), 1, anon_sym_STAR, - ACTIONS(3376), 1, - anon_sym_not, - ACTIONS(3378), 1, - anon_sym_lambda, - ACTIONS(3380), 1, - anon_sym_new, - STATE(1926), 1, + STATE(2031), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2152), 1, sym_string, - STATE(1965), 1, - sym_expression, - STATE(1985), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(5366), 1, + STATE(4031), 1, + sym_expression, + STATE(5311), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(1997), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146030,11 +141335,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -146050,65 +141356,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44427] = 25, - ACTIONS(67), 1, + [35347] = 26, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1292), 1, + anon_sym_not, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(79), 1, + ACTIONS(1296), 1, + anon_sym_lambda, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(103), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, + anon_sym_new, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(2744), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2831), 1, anon_sym_STAR, - ACTIONS(3376), 1, - anon_sym_not, - ACTIONS(3378), 1, - anon_sym_lambda, - ACTIONS(3380), 1, - anon_sym_new, - STATE(1926), 1, + STATE(2031), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2152), 1, sym_string, - STATE(1966), 1, - sym_expression, - STATE(1985), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(5366), 1, + STATE(4033), 1, + sym_expression, + STATE(5311), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(1997), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146117,11 +141424,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -146137,65 +141445,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44539] = 25, - ACTIONS(67), 1, + [35462] = 26, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1292), 1, + anon_sym_not, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(79), 1, + ACTIONS(1296), 1, + anon_sym_lambda, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(103), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, + anon_sym_new, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(2744), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2831), 1, anon_sym_STAR, - ACTIONS(3376), 1, - anon_sym_not, - ACTIONS(3378), 1, - anon_sym_lambda, - ACTIONS(3380), 1, - anon_sym_new, - STATE(1926), 1, + STATE(2031), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2152), 1, sym_string, - STATE(1969), 1, + STATE(2566), 1, sym_expression, - STATE(1985), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(5366), 1, + STATE(5311), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(1997), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146204,11 +141513,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -146224,65 +141534,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44651] = 25, - ACTIONS(67), 1, + [35577] = 26, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1292), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1296), 1, anon_sym_lambda, - ACTIONS(79), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, anon_sym_new, - ACTIONS(103), 1, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(2744), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(2031), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2152), 1, sym_string, - STATE(1985), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(3818), 1, + STATE(4050), 1, sym_expression, - STATE(5376), 1, + STATE(5311), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146291,11 +141602,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -146311,65 +141623,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44763] = 25, - ACTIONS(67), 1, + [35692] = 26, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(79), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(2744), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(1918), 1, + ACTIONS(3285), 1, + anon_sym_not, + ACTIONS(3287), 1, + anon_sym_lambda, + ACTIONS(3289), 1, + anon_sym_new, + STATE(2058), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2152), 1, sym_string, - STATE(1985), 1, - sym_list_splat_pattern, - STATE(3958), 1, + STATE(2561), 1, sym_expression, - STATE(5376), 1, + STATE(2614), 1, + sym_list_splat_pattern, + STATE(5351), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146378,11 +141691,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -146398,65 +141712,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44875] = 25, - ACTIONS(67), 1, + [35807] = 26, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1292), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1296), 1, anon_sym_lambda, - ACTIONS(79), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, anon_sym_new, - ACTIONS(103), 1, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(2744), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(2031), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2152), 1, sym_string, - STATE(1985), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(3968), 1, + STATE(4051), 1, sym_expression, - STATE(5376), 1, + STATE(5311), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146465,11 +141780,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -146485,65 +141801,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44987] = 25, - ACTIONS(2102), 1, + [35922] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(1129), 1, + anon_sym_not, + ACTIONS(1135), 1, + anon_sym_lambda, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1147), 1, + anon_sym_new, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2554), 1, - sym_identifier, - ACTIONS(2562), 1, - anon_sym_await, - ACTIONS(2796), 1, - anon_sym_not, - ACTIONS(2798), 1, - anon_sym_lambda, - ACTIONS(2800), 1, - anon_sym_new, - STATE(1950), 1, + ACTIONS(2750), 1, + anon_sym_STAR, + STATE(1963), 1, sym_primary_expression, - STATE(1968), 1, + STATE(2028), 1, sym_string, - STATE(2230), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4096), 1, + STATE(4314), 1, sym_expression, - STATE(5485), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3682), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146552,11 +141869,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -146572,65 +141890,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45099] = 25, - ACTIONS(1277), 1, + [36037] = 26, + ACTIONS(1286), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1283), 1, - anon_sym_not, - ACTIONS(1285), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(1287), 1, - anon_sym_lambda, - ACTIONS(1291), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1297), 1, - anon_sym_new, - ACTIONS(1299), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(2254), 1, + ACTIONS(2217), 1, anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(2744), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(2043), 1, + ACTIONS(3285), 1, + anon_sym_not, + ACTIONS(3287), 1, + anon_sym_lambda, + ACTIONS(3289), 1, + anon_sym_new, + STATE(2058), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2152), 1, sym_string, - STATE(2556), 1, - sym_list_splat_pattern, - STATE(4107), 1, + STATE(2609), 1, sym_expression, - STATE(5288), 1, + STATE(2614), 1, + sym_list_splat_pattern, + STATE(5351), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146639,11 +141958,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -146659,65 +141979,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45211] = 25, - ACTIONS(67), 1, + [36152] = 26, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1292), 1, + anon_sym_not, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(79), 1, + ACTIONS(1296), 1, + anon_sym_lambda, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(103), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, + anon_sym_new, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(2744), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2831), 1, anon_sym_STAR, - ACTIONS(3376), 1, - anon_sym_not, - ACTIONS(3378), 1, - anon_sym_lambda, - ACTIONS(3380), 1, - anon_sym_new, - STATE(1926), 1, + STATE(2031), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2152), 1, sym_string, - STATE(1985), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(2008), 1, + STATE(4120), 1, sym_expression, - STATE(5366), 1, + STATE(5311), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(1997), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146726,11 +142047,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -146746,65 +142068,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45323] = 25, - ACTIONS(2230), 1, + [36267] = 26, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2236), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2250), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2308), 1, + ACTIONS(2437), 1, anon_sym_not, - ACTIONS(2310), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2312), 1, + ACTIONS(2441), 1, anon_sym_lambda, - ACTIONS(2318), 1, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2445), 1, anon_sym_new, - ACTIONS(2570), 1, + ACTIONS(2781), 1, sym_identifier, - ACTIONS(2578), 1, - anon_sym_await, - ACTIONS(2750), 1, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(1962), 1, + STATE(2005), 1, sym_primary_expression, - STATE(2061), 1, + STATE(2096), 1, sym_string, - STATE(2307), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(3894), 1, + STATE(3681), 1, sym_expression, - STATE(5519), 1, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2574), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2314), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146813,11 +142136,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2310), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -146833,65 +142157,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45435] = 25, - ACTIONS(1277), 1, + [36382] = 26, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(1283), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, + anon_sym_None, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, + anon_sym_sizeof, + ACTIONS(2253), 1, + sym_string_start, + ACTIONS(2437), 1, anon_sym_not, - ACTIONS(1285), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(1287), 1, + ACTIONS(2441), 1, anon_sym_lambda, - ACTIONS(1291), 1, - anon_sym_None, - ACTIONS(1297), 1, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2445), 1, anon_sym_new, - ACTIONS(1299), 1, - anon_sym_sizeof, - ACTIONS(1301), 1, - sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(2781), 1, sym_identifier, - ACTIONS(2786), 1, - anon_sym_await, - ACTIONS(3382), 1, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(2043), 1, + STATE(2005), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2096), 1, sym_string, - STATE(2556), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(4007), 1, + STATE(3684), 1, sym_expression, - STATE(5288), 1, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146900,11 +142225,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -146920,65 +142246,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45547] = 25, - ACTIONS(1225), 1, + [36497] = 26, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(1227), 1, - anon_sym_not, - ACTIONS(1229), 1, - anon_sym_LT, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1237), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(1245), 1, - anon_sym_new, - ACTIONS(1255), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(2437), 1, + anon_sym_not, + ACTIONS(2439), 1, + anon_sym_LT, + ACTIONS(2441), 1, + anon_sym_lambda, + ACTIONS(2443), 1, anon_sym_await, - ACTIONS(2190), 1, - anon_sym_LPAREN, - ACTIONS(2514), 1, + ACTIONS(2445), 1, + anon_sym_new, + ACTIONS(2781), 1, sym_identifier, - ACTIONS(2760), 1, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(1953), 1, + STATE(2005), 1, sym_primary_expression, - STATE(2028), 1, + STATE(2096), 1, sym_string, - STATE(2426), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(3825), 1, + STATE(3685), 1, sym_expression, - STATE(5528), 1, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1239), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(1223), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1363), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2406), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146987,11 +142314,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2403), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -147007,65 +142335,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45659] = 25, - ACTIONS(1277), 1, + [36612] = 26, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(1283), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, + anon_sym_None, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, + anon_sym_sizeof, + ACTIONS(2253), 1, + sym_string_start, + ACTIONS(2437), 1, anon_sym_not, - ACTIONS(1285), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(1287), 1, + ACTIONS(2441), 1, anon_sym_lambda, - ACTIONS(1291), 1, - anon_sym_None, - ACTIONS(1297), 1, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2445), 1, anon_sym_new, - ACTIONS(1299), 1, - anon_sym_sizeof, - ACTIONS(1301), 1, - sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(2781), 1, sym_identifier, - ACTIONS(2786), 1, - anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(2043), 1, + STATE(2005), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2096), 1, sym_string, - STATE(2556), 1, - sym_list_splat_pattern, - STATE(4003), 1, + STATE(2475), 1, sym_expression, - STATE(5288), 1, + STATE(2477), 1, + sym_list_splat_pattern, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147074,11 +142403,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -147094,65 +142424,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45771] = 25, - ACTIONS(67), 1, + [36727] = 26, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, + anon_sym_None, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, + anon_sym_sizeof, + ACTIONS(2253), 1, + sym_string_start, + ACTIONS(2437), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(2441), 1, anon_sym_lambda, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(97), 1, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2445), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, + ACTIONS(2781), 1, sym_identifier, - ACTIONS(869), 1, - anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(2005), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2096), 1, sym_string, - STATE(1985), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(4293), 1, + STATE(3686), 1, sym_expression, - STATE(5376), 1, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147161,11 +142492,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -147181,65 +142513,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45883] = 25, - ACTIONS(67), 1, + [36842] = 26, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(79), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(832), 1, - sym_identifier, - ACTIONS(869), 1, + ACTIONS(2439), 1, + anon_sym_LT, + ACTIONS(2443), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(1918), 1, + ACTIONS(3291), 1, + anon_sym_not, + ACTIONS(3293), 1, + anon_sym_lambda, + ACTIONS(3295), 1, + anon_sym_new, + STATE(2023), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2096), 1, sym_string, - STATE(1985), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(3313), 1, + STATE(2501), 1, sym_expression, - STATE(5376), 1, + STATE(5369), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147248,11 +142581,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -147268,65 +142602,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45995] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, + [36957] = 26, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2437), 1, + anon_sym_not, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2441), 1, + anon_sym_lambda, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2445), 1, + anon_sym_new, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(2005), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2096), 1, sym_string, - STATE(2402), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(4196), 1, + STATE(3696), 1, sym_expression, - STATE(5331), 1, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147335,11 +142670,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -147355,65 +142691,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46107] = 25, - ACTIONS(67), 1, + [37072] = 26, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1292), 1, + anon_sym_not, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(79), 1, + ACTIONS(1296), 1, + anon_sym_lambda, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(103), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, + anon_sym_new, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(2744), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(3297), 1, anon_sym_STAR, - ACTIONS(3376), 1, - anon_sym_not, - ACTIONS(3378), 1, - anon_sym_lambda, - ACTIONS(3380), 1, - anon_sym_new, - STATE(1926), 1, + STATE(2031), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2152), 1, sym_string, - STATE(1985), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(2013), 1, + STATE(4036), 1, sym_expression, - STATE(5366), 1, + STATE(5311), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(1997), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147422,11 +142759,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -147442,65 +142780,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46219] = 25, - ACTIONS(67), 1, + [37187] = 26, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(79), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(832), 1, - sym_identifier, - ACTIONS(869), 1, + ACTIONS(2439), 1, + anon_sym_LT, + ACTIONS(2443), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(1918), 1, + ACTIONS(3291), 1, + anon_sym_not, + ACTIONS(3293), 1, + anon_sym_lambda, + ACTIONS(3295), 1, + anon_sym_new, + STATE(2023), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2096), 1, sym_string, - STATE(1985), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(3276), 1, + STATE(2504), 1, sym_expression, - STATE(5376), 1, + STATE(5369), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147509,11 +142848,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -147529,65 +142869,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46331] = 25, - ACTIONS(67), 1, + [37302] = 26, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, + anon_sym_None, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, + anon_sym_sizeof, + ACTIONS(2253), 1, + sym_string_start, + ACTIONS(2437), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(2441), 1, anon_sym_lambda, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(97), 1, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2445), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, + ACTIONS(2781), 1, sym_identifier, - ACTIONS(869), 1, - anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(2005), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2096), 1, sym_string, - STATE(1985), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(3315), 1, + STATE(3727), 1, sym_expression, - STATE(5376), 1, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147596,11 +142937,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -147616,68 +142958,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46443] = 26, - ACTIONS(1277), 1, + [37417] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1283), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1287), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1291), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1297), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1299), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2886), 1, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(3384), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_await, - STATE(2046), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2028), 1, sym_string, - STATE(2556), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4009), 1, + STATE(4117), 1, sym_expression, - STATE(5288), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - STATE(2413), 2, - sym_attribute, - sym_subscript, - ACTIONS(1293), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3386), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147686,9 +143026,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 17, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -147704,7 +143047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46557] = 25, + [37532] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -147713,40 +143056,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3989), 1, + STATE(3351), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -147756,13 +143100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147771,11 +143115,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -147791,65 +143136,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46669] = 25, - ACTIONS(2204), 1, + [37647] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2181), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2210), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2214), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2220), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2179), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(2224), 1, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, + [37716] = 26, + ACTIONS(1232), 1, + anon_sym_LBRACE, + ACTIONS(1234), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(1238), 1, anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, + anon_sym_None, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1254), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(1264), 1, + anon_sym_sizeof, + ACTIONS(1266), 1, + sym_string_start, + ACTIONS(1376), 1, + anon_sym_LBRACK, + ACTIONS(1378), 1, + anon_sym_await, + ACTIONS(2159), 1, + anon_sym_LPAREN, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2803), 1, anon_sym_STAR, - STATE(1967), 1, + STATE(1953), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2056), 1, sym_string, - STATE(2490), 1, + STATE(2287), 1, sym_list_splat_pattern, - STATE(3906), 1, + STATE(2315), 1, sym_expression, - STATE(5443), 1, + STATE(5490), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147858,11 +143270,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -147878,65 +143291,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46781] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, + [37831] = 27, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2437), 1, + anon_sym_not, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2441), 1, + anon_sym_lambda, + ACTIONS(2445), 1, + anon_sym_new, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(1958), 1, + ACTIONS(3299), 1, + sym_identifier, + ACTIONS(3303), 1, + anon_sym_await, + STATE(2026), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2096), 1, sym_string, - STATE(2402), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(4083), 1, + STATE(4088), 1, sym_expression, - STATE(5331), 1, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + STATE(2286), 2, + sym_attribute, + sym_subscript, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(3301), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147945,11 +143362,10 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2523), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -147965,65 +143381,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46893] = 25, - ACTIONS(1277), 1, + [37948] = 26, + ACTIONS(1286), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1283), 1, + ACTIONS(1292), 1, anon_sym_not, - ACTIONS(1285), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(1287), 1, + ACTIONS(1296), 1, anon_sym_lambda, - ACTIONS(1291), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1297), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, anon_sym_new, - ACTIONS(1299), 1, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(2254), 1, + ACTIONS(2217), 1, anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(2744), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(3305), 1, anon_sym_STAR, - STATE(2043), 1, + STATE(2031), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2152), 1, sym_string, - STATE(2556), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(4019), 1, + STATE(3858), 1, sym_expression, - STATE(5288), 1, + STATE(5311), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148032,11 +143449,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -148052,65 +143470,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47005] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, + [38063] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1927), 1, sym_primary_expression, - STATE(2037), 1, + STATE(1929), 1, sym_string, - STATE(2402), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(4176), 1, + STATE(4023), 1, sym_expression, - STATE(5331), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148119,11 +143538,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -148139,65 +143559,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47117] = 25, - ACTIONS(1277), 1, + [38178] = 26, + ACTIONS(1286), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1283), 1, + ACTIONS(1292), 1, anon_sym_not, - ACTIONS(1285), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(1287), 1, + ACTIONS(1296), 1, anon_sym_lambda, - ACTIONS(1291), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1297), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, anon_sym_new, - ACTIONS(1299), 1, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(2254), 1, + ACTIONS(2217), 1, anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(2744), 1, anon_sym_await, - ACTIONS(3390), 1, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(2043), 1, + STATE(2031), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2152), 1, sym_string, - STATE(2556), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(3987), 1, + STATE(4100), 1, sym_expression, - STATE(5288), 1, + STATE(5311), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148206,11 +143627,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -148226,49 +143648,50 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47229] = 25, + [38293] = 26, ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, ACTIONS(71), 1, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, + ACTIONS(83), 1, + sym_float, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + ACTIONS(3245), 1, + anon_sym_not, + ACTIONS(3247), 1, + anon_sym_lambda, + ACTIONS(3249), 1, + anon_sym_new, + STATE(1921), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, - sym_list_splat_pattern, - STATE(4089), 1, + STATE(1966), 1, sym_expression, - STATE(5376), 1, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(5399), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -148278,13 +143701,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(1985), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148293,11 +143716,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -148313,65 +143737,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47341] = 25, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, + [38408] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(561), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1967), 1, + STATE(1927), 1, sym_primary_expression, - STATE(2110), 1, + STATE(1929), 1, sym_string, - STATE(2490), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(4069), 1, + STATE(3927), 1, sym_expression, - STATE(5443), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148380,11 +143805,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -148400,49 +143826,50 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47453] = 25, + [38523] = 26, ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, ACTIONS(71), 1, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, + ACTIONS(83), 1, + sym_float, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + ACTIONS(3245), 1, + anon_sym_not, + ACTIONS(3247), 1, + anon_sym_lambda, + ACTIONS(3249), 1, + anon_sym_new, + STATE(1921), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, - sym_list_splat_pattern, - STATE(3259), 1, + STATE(1968), 1, sym_expression, - STATE(5376), 1, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(5399), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -148452,13 +143879,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(1985), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148467,11 +143894,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -148487,49 +143915,50 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47565] = 25, + [38638] = 26, ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, ACTIONS(71), 1, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, + ACTIONS(83), 1, + sym_float, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + ACTIONS(3245), 1, + anon_sym_not, + ACTIONS(3247), 1, + anon_sym_lambda, + ACTIONS(3249), 1, + anon_sym_new, + STATE(1921), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, - sym_list_splat_pattern, - STATE(3734), 1, + STATE(1970), 1, sym_expression, - STATE(5376), 1, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(5399), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -148539,13 +143968,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(1985), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148554,11 +143983,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -148574,65 +144004,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47677] = 25, - ACTIONS(1277), 1, - anon_sym_LBRACK, - ACTIONS(1281), 1, + [38753] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1283), 1, - anon_sym_not, - ACTIONS(1285), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1287), 1, - anon_sym_lambda, - ACTIONS(1291), 1, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1297), 1, - anon_sym_new, - ACTIONS(1299), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(3392), 1, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(2043), 1, + ACTIONS(3245), 1, + anon_sym_not, + ACTIONS(3247), 1, + anon_sym_lambda, + ACTIONS(3249), 1, + anon_sym_new, + STATE(1921), 1, sym_primary_expression, - STATE(2171), 1, + STATE(1929), 1, sym_string, - STATE(2556), 1, - sym_list_splat_pattern, - STATE(4134), 1, + STATE(1971), 1, sym_expression, - STATE(5288), 1, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(5399), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(1985), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148641,11 +144072,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -148661,65 +144093,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47789] = 25, - ACTIONS(1277), 1, - anon_sym_LBRACK, - ACTIONS(1281), 1, + [38868] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1283), 1, - anon_sym_not, - ACTIONS(1285), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1287), 1, - anon_sym_lambda, - ACTIONS(1291), 1, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1297), 1, - anon_sym_new, - ACTIONS(1299), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(3394), 1, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(2043), 1, + ACTIONS(3245), 1, + anon_sym_not, + ACTIONS(3247), 1, + anon_sym_lambda, + ACTIONS(3249), 1, + anon_sym_new, + STATE(1921), 1, sym_primary_expression, - STATE(2171), 1, + STATE(1929), 1, sym_string, - STATE(2556), 1, - sym_list_splat_pattern, - STATE(3867), 1, + STATE(1974), 1, sym_expression, - STATE(5288), 1, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(5399), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(1985), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148728,11 +144161,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -148748,7 +144182,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47901] = 25, + [38983] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3307), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3309), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [39052] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -148757,40 +144257,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3957), 1, + STATE(4204), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -148800,13 +144301,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148815,11 +144316,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -148835,7 +144337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48013] = 25, + [39167] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -148844,40 +144346,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3976), 1, + STATE(3787), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -148887,13 +144390,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148902,11 +144405,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -148922,65 +144426,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48125] = 25, - ACTIONS(67), 1, + [39282] = 26, + ACTIONS(1703), 1, + anon_sym_LPAREN, + ACTIONS(1709), 1, + anon_sym_LBRACK, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(79), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(2409), 1, + anon_sym_STAR, + ACTIONS(2417), 1, + anon_sym_LT, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(2701), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, - anon_sym_STAR, - STATE(1918), 1, + ACTIONS(2817), 1, + anon_sym_not, + ACTIONS(2819), 1, + anon_sym_lambda, + ACTIONS(2821), 1, + anon_sym_new, + STATE(1942), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1976), 1, sym_string, - STATE(1985), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(4077), 1, + STATE(4141), 1, sym_expression, - STATE(5376), 1, + STATE(5493), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148989,11 +144494,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -149009,65 +144515,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48237] = 25, - ACTIONS(67), 1, + [39397] = 26, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1292), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1296), 1, anon_sym_lambda, - ACTIONS(79), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, anon_sym_new, - ACTIONS(103), 1, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(2744), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(2031), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2152), 1, sym_string, - STATE(1985), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(3923), 1, + STATE(4069), 1, sym_expression, - STATE(5376), 1, + STATE(5311), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149076,11 +144583,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -149096,49 +144604,50 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48349] = 25, + [39512] = 26, ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, ACTIONS(71), 1, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, + ACTIONS(83), 1, + sym_float, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + ACTIONS(3245), 1, + anon_sym_not, + ACTIONS(3247), 1, + anon_sym_lambda, + ACTIONS(3249), 1, + anon_sym_new, + STATE(1921), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3951), 1, + STATE(1977), 1, sym_expression, - STATE(5376), 1, + STATE(5399), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -149148,13 +144657,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(1985), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149163,11 +144672,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -149183,65 +144693,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48461] = 25, - ACTIONS(67), 1, + [39627] = 26, + ACTIONS(2257), 1, + anon_sym_LPAREN, + ACTIONS(2263), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, + anon_sym_None, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, + anon_sym_sizeof, + ACTIONS(2281), 1, + sym_string_start, + ACTIONS(2299), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(2301), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(2303), 1, anon_sym_lambda, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(97), 1, + ACTIONS(2309), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2728), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1956), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2051), 1, sym_string, - STATE(1985), 1, + STATE(2326), 1, sym_list_splat_pattern, - STATE(3969), 1, + STATE(3867), 1, sym_expression, - STATE(5376), 1, + STATE(5492), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(2255), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2591), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2375), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149250,11 +144761,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -149270,149 +144782,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48573] = 22, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(1192), 1, - anon_sym_COMMA, - ACTIONS(1199), 1, - anon_sym_STAR, - ACTIONS(1207), 1, - anon_sym_LT, - ACTIONS(1209), 1, - anon_sym_await, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3025), 1, - sym_primary_expression, + [39742] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1194), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1197), 2, - anon_sym_from, - anon_sym_in, - ACTIONS(1136), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1205), 4, + ACTIONS(3143), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1201), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3141), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - ACTIONS(1391), 8, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [48679] = 25, - ACTIONS(1225), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [39811] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1227), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1229), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1231), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1237), 1, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1245), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(1255), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(2190), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(2514), 1, - sym_identifier, - ACTIONS(2760), 1, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1953), 1, + STATE(1927), 1, sym_primary_expression, - STATE(2028), 1, + STATE(1929), 1, sym_string, - STATE(2426), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3783), 1, + STATE(3919), 1, sym_expression, - STATE(5528), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1239), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1223), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1363), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2406), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149421,11 +144916,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2403), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -149441,65 +144937,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48791] = 25, - ACTIONS(1277), 1, - anon_sym_LBRACK, - ACTIONS(1281), 1, + [39926] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1283), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1285), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1287), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1291), 1, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1297), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(1299), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(2043), 1, + STATE(1927), 1, sym_primary_expression, - STATE(2171), 1, + STATE(1929), 1, sym_string, - STATE(2556), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(4070), 1, + STATE(3925), 1, sym_expression, - STATE(5288), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149508,11 +145005,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -149528,65 +145026,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48903] = 25, - ACTIONS(67), 1, + [40041] = 26, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1292), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1296), 1, anon_sym_lambda, - ACTIONS(79), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, anon_sym_new, - ACTIONS(103), 1, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(2744), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(2031), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2152), 1, sym_string, - STATE(1985), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(3850), 1, + STATE(4024), 1, sym_expression, - STATE(5376), 1, + STATE(5311), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149595,11 +145094,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -149615,49 +145115,50 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49015] = 25, + [40156] = 26, ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, ACTIONS(71), 1, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, + ACTIONS(83), 1, + sym_float, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + ACTIONS(3245), 1, + anon_sym_not, + ACTIONS(3247), 1, + anon_sym_lambda, + ACTIONS(3249), 1, + anon_sym_new, + STATE(1921), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3823), 1, + STATE(1979), 1, sym_expression, - STATE(5376), 1, + STATE(5399), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -149667,13 +145168,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(1985), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149682,11 +145183,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -149702,65 +145204,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49127] = 25, - ACTIONS(1225), 1, + [40271] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1227), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1229), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1231), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1237), 1, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1245), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(1255), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(2190), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(2514), 1, - sym_identifier, - ACTIONS(2760), 1, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1953), 1, + STATE(1927), 1, sym_primary_expression, - STATE(2028), 1, + STATE(1929), 1, sym_string, - STATE(2426), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3728), 1, + STATE(3879), 1, sym_expression, - STATE(5528), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1239), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1223), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1363), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2406), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149769,11 +145272,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2403), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -149789,65 +145293,264 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49239] = 25, - ACTIONS(1225), 1, + [40386] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2157), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1227), 1, - anon_sym_not, - ACTIONS(1229), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(1231), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2155), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(1237), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1245), 1, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(1255), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1257), 1, + [40455] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3311), 14, sym_string_start, - ACTIONS(1365), 1, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1367), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3313), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2190), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [40524] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3315), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2514), 1, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3317), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(2760), 1, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [40593] = 26, + ACTIONS(1703), 1, + anon_sym_LPAREN, + ACTIONS(1709), 1, + anon_sym_LBRACK, + ACTIONS(1713), 1, + anon_sym_LBRACE, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, + anon_sym_None, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, + anon_sym_sizeof, + ACTIONS(1727), 1, + sym_string_start, + ACTIONS(2409), 1, anon_sym_STAR, - STATE(1953), 1, + ACTIONS(2417), 1, + anon_sym_LT, + ACTIONS(2693), 1, + sym_identifier, + ACTIONS(2701), 1, + anon_sym_await, + ACTIONS(2817), 1, + anon_sym_not, + ACTIONS(2819), 1, + anon_sym_lambda, + ACTIONS(2821), 1, + anon_sym_new, + STATE(1942), 1, sym_primary_expression, - STATE(2028), 1, + STATE(1976), 1, sym_string, - STATE(2426), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(3738), 1, + STATE(4029), 1, sym_expression, - STATE(5528), 1, + STATE(5493), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, - sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1239), 3, + sym_line_continuation, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(1223), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1363), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2406), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149856,11 +145559,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2403), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -149876,65 +145580,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49351] = 25, - ACTIONS(1225), 1, + [40708] = 26, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1227), 1, + ACTIONS(1292), 1, anon_sym_not, - ACTIONS(1229), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(1231), 1, + ACTIONS(1296), 1, anon_sym_lambda, - ACTIONS(1237), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1245), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, anon_sym_new, - ACTIONS(1255), 1, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(1367), 1, - anon_sym_await, - ACTIONS(2190), 1, + ACTIONS(2217), 1, anon_sym_LPAREN, - ACTIONS(2514), 1, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(2760), 1, + ACTIONS(2744), 1, + anon_sym_await, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(1953), 1, + STATE(2031), 1, sym_primary_expression, - STATE(2028), 1, + STATE(2152), 1, sym_string, - STATE(2386), 1, - sym_expression, - STATE(2426), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(5528), 1, + STATE(4039), 1, + sym_expression, + STATE(5311), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1239), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(1223), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1363), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2406), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149943,11 +145648,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2403), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -149963,252 +145669,473 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49463] = 25, - ACTIONS(1225), 1, + [40823] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3319), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1227), 1, - anon_sym_not, - ACTIONS(1229), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(1231), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3321), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(1237), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1245), 1, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(1255), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1257), 1, - sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(1367), 1, - anon_sym_await, - ACTIONS(2190), 1, - anon_sym_LPAREN, - ACTIONS(2514), 1, - sym_identifier, - ACTIONS(2760), 1, - anon_sym_STAR, - STATE(1953), 1, - sym_primary_expression, - STATE(2028), 1, - sym_string, - STATE(2426), 1, - sym_list_splat_pattern, - STATE(3740), 1, - sym_expression, - STATE(5528), 1, - sym__named_expression_lhs, + [40892] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, + ACTIONS(3323), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1239), 3, + ACTIONS(3325), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(1223), 4, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [40961] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3327), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1363), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3329), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2406), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2403), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [49575] = 25, - ACTIONS(1225), 1, - anon_sym_LBRACE, - ACTIONS(1229), 1, - anon_sym_LT, - ACTIONS(1237), 1, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(1255), 1, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1257), 1, + [41030] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3331), 14, sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(1367), 1, - anon_sym_await, - ACTIONS(2190), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2514), 1, - sym_identifier, - ACTIONS(2760), 1, anon_sym_STAR, - ACTIONS(3396), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3333), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(3398), 1, anon_sym_lambda, - ACTIONS(3400), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - STATE(1961), 1, - sym_primary_expression, - STATE(2028), 1, - sym_string, - STATE(2426), 1, - sym_list_splat_pattern, - STATE(2440), 1, - sym_expression, - STATE(5281), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [41099] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, + ACTIONS(3335), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1239), 3, + ACTIONS(3337), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(1223), 4, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [41168] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3339), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1363), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3341), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - STATE(2406), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2403), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [49687] = 25, - ACTIONS(2204), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [41237] = 23, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(1199), 1, + anon_sym_COMMA, + ACTIONS(1206), 1, + anon_sym_STAR, + ACTIONS(1214), 1, anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(1216), 1, anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, + STATE(2028), 1, sym_string, - STATE(2490), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4098), 1, - sym_expression, - STATE(5443), 1, - sym__named_expression_lhs, + STATE(3038), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(1201), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1204), 2, + anon_sym_from, + anon_sym_in, + ACTIONS(1141), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, + ACTIONS(1402), 8, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -150224,65 +146151,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49799] = 25, - ACTIONS(1225), 1, + [41346] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3343), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3345), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [41415] = 26, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1234), 1, + anon_sym_not, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(1237), 1, + ACTIONS(1238), 1, + anon_sym_lambda, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(1255), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1254), 1, + anon_sym_new, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(1365), 1, + ACTIONS(1376), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1378), 1, anon_sym_await, - ACTIONS(2190), 1, + ACTIONS(2159), 1, anon_sym_LPAREN, - ACTIONS(2514), 1, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2760), 1, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(3396), 1, - anon_sym_not, - ACTIONS(3398), 1, - anon_sym_lambda, - ACTIONS(3400), 1, - anon_sym_new, - STATE(1961), 1, + STATE(1953), 1, sym_primary_expression, - STATE(2028), 1, + STATE(2056), 1, sym_string, - STATE(2426), 1, + STATE(2287), 1, sym_list_splat_pattern, - STATE(2441), 1, + STATE(3795), 1, sym_expression, - STATE(5281), 1, + STATE(5490), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1239), 3, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(1223), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1363), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2406), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150291,11 +146285,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2403), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -150311,65 +146306,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49911] = 25, - ACTIONS(1225), 1, + [41530] = 26, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1292), 1, + anon_sym_not, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(1237), 1, + ACTIONS(1296), 1, + anon_sym_lambda, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1255), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, + anon_sym_new, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(1367), 1, - anon_sym_await, - ACTIONS(2190), 1, + ACTIONS(2217), 1, anon_sym_LPAREN, - ACTIONS(2514), 1, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(2760), 1, + ACTIONS(2744), 1, + anon_sym_await, + ACTIONS(2831), 1, anon_sym_STAR, - ACTIONS(3396), 1, - anon_sym_not, - ACTIONS(3398), 1, - anon_sym_lambda, - ACTIONS(3400), 1, - anon_sym_new, - STATE(1961), 1, + STATE(2031), 1, sym_primary_expression, - STATE(2028), 1, + STATE(2152), 1, sym_string, - STATE(2426), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(2442), 1, + STATE(4104), 1, sym_expression, - STATE(5281), 1, + STATE(5311), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1239), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(1223), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1363), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2406), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150378,11 +146374,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2403), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -150398,65 +146395,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50023] = 25, - ACTIONS(1225), 1, + [41645] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3349), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3347), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [41714] = 26, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1234), 1, + anon_sym_not, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(1237), 1, + ACTIONS(1238), 1, + anon_sym_lambda, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(1255), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1254), 1, + anon_sym_new, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(1365), 1, + ACTIONS(1376), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1378), 1, anon_sym_await, - ACTIONS(2190), 1, + ACTIONS(2159), 1, anon_sym_LPAREN, - ACTIONS(2514), 1, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2760), 1, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(3396), 1, - anon_sym_not, - ACTIONS(3398), 1, - anon_sym_lambda, - ACTIONS(3400), 1, - anon_sym_new, - STATE(1961), 1, + STATE(1953), 1, sym_primary_expression, - STATE(2028), 1, + STATE(2056), 1, sym_string, - STATE(2386), 1, - sym_expression, - STATE(2426), 1, + STATE(2287), 1, sym_list_splat_pattern, - STATE(5281), 1, + STATE(3807), 1, + sym_expression, + STATE(5490), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1239), 3, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(1223), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1363), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2406), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150465,11 +146529,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2403), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -150485,65 +146550,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50135] = 25, - ACTIONS(1225), 1, + [41829] = 26, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1234), 1, + anon_sym_not, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(1237), 1, + ACTIONS(1238), 1, + anon_sym_lambda, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(1255), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1254), 1, + anon_sym_new, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(1365), 1, + ACTIONS(1376), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1378), 1, anon_sym_await, - ACTIONS(2190), 1, + ACTIONS(2159), 1, anon_sym_LPAREN, - ACTIONS(2514), 1, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2760), 1, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(3396), 1, - anon_sym_not, - ACTIONS(3398), 1, - anon_sym_lambda, - ACTIONS(3400), 1, - anon_sym_new, - STATE(1961), 1, + STATE(1953), 1, sym_primary_expression, - STATE(2028), 1, + STATE(2056), 1, sym_string, - STATE(2426), 1, + STATE(2287), 1, sym_list_splat_pattern, - STATE(2443), 1, + STATE(3809), 1, sym_expression, - STATE(5281), 1, + STATE(5490), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1239), 3, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(1223), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1363), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2406), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150552,11 +146618,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2403), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -150572,65 +146639,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50247] = 25, - ACTIONS(1225), 1, + [41944] = 26, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1234), 1, + anon_sym_not, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(1237), 1, + ACTIONS(1238), 1, + anon_sym_lambda, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(1255), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1254), 1, + anon_sym_new, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(1365), 1, + ACTIONS(1376), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1378), 1, anon_sym_await, - ACTIONS(2190), 1, + ACTIONS(2159), 1, anon_sym_LPAREN, - ACTIONS(2514), 1, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2760), 1, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(3396), 1, - anon_sym_not, - ACTIONS(3398), 1, - anon_sym_lambda, - ACTIONS(3400), 1, - anon_sym_new, - STATE(1961), 1, + STATE(1953), 1, sym_primary_expression, - STATE(2028), 1, + STATE(2056), 1, sym_string, - STATE(2426), 1, + STATE(2287), 1, sym_list_splat_pattern, - STATE(2444), 1, + STATE(2351), 1, sym_expression, - STATE(5281), 1, + STATE(5490), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1239), 3, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(1223), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1363), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2406), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150639,11 +146707,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2403), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -150659,65 +146728,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50359] = 25, - ACTIONS(1225), 1, + [42059] = 26, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1234), 1, + anon_sym_not, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(1237), 1, + ACTIONS(1238), 1, + anon_sym_lambda, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(1255), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1254), 1, + anon_sym_new, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(1365), 1, + ACTIONS(1376), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1378), 1, anon_sym_await, - ACTIONS(2190), 1, + ACTIONS(2159), 1, anon_sym_LPAREN, - ACTIONS(2514), 1, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2760), 1, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(3396), 1, - anon_sym_not, - ACTIONS(3398), 1, - anon_sym_lambda, - ACTIONS(3400), 1, - anon_sym_new, - STATE(1961), 1, + STATE(1953), 1, sym_primary_expression, - STATE(2028), 1, + STATE(2056), 1, sym_string, - STATE(2426), 1, + STATE(2287), 1, sym_list_splat_pattern, - STATE(2445), 1, + STATE(3810), 1, sym_expression, - STATE(5281), 1, + STATE(5490), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1239), 3, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(1223), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1363), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2406), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150726,11 +146796,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2403), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -150746,65 +146817,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50471] = 25, - ACTIONS(1110), 1, + [42174] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3157), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3159), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [42243] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1129), 1, + anon_sym_not, + ACTIONS(1135), 1, + anon_sym_lambda, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1142), 1, + ACTIONS(1147), 1, + anon_sym_new, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(3402), 1, - anon_sym_not, - ACTIONS(3404), 1, - anon_sym_lambda, - ACTIONS(3406), 1, - anon_sym_new, - STATE(2037), 1, - sym_string, - STATE(2273), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2402), 1, + STATE(2028), 1, + sym_string, + STATE(2340), 1, sym_list_splat_pattern, - STATE(2987), 1, + STATE(4278), 1, sym_expression, - STATE(5304), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150813,11 +146951,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -150833,65 +146972,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50583] = 25, - ACTIONS(1110), 1, + [42358] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1129), 1, + anon_sym_not, + ACTIONS(1135), 1, + anon_sym_lambda, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1142), 1, + ACTIONS(1147), 1, + anon_sym_new, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(3402), 1, - anon_sym_not, - ACTIONS(3404), 1, - anon_sym_lambda, - ACTIONS(3406), 1, - anon_sym_new, - STATE(2037), 1, - sym_string, - STATE(2273), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2402), 1, + STATE(2028), 1, + sym_string, + STATE(2340), 1, sym_list_splat_pattern, - STATE(2990), 1, + STATE(4105), 1, sym_expression, - STATE(5304), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150900,11 +147040,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -150920,65 +147061,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50695] = 25, - ACTIONS(1110), 1, + [42473] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1129), 1, + anon_sym_not, + ACTIONS(1135), 1, + anon_sym_lambda, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1142), 1, + ACTIONS(1147), 1, + anon_sym_new, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(3402), 1, - anon_sym_not, - ACTIONS(3404), 1, - anon_sym_lambda, - ACTIONS(3406), 1, - anon_sym_new, - STATE(2037), 1, - sym_string, - STATE(2273), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2402), 1, + STATE(2028), 1, + sym_string, + STATE(2340), 1, sym_list_splat_pattern, - STATE(2988), 1, + STATE(4110), 1, sym_expression, - STATE(5304), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150987,11 +147129,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -151007,65 +147150,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50807] = 25, - ACTIONS(1110), 1, + [42588] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1129), 1, + anon_sym_not, + ACTIONS(1135), 1, + anon_sym_lambda, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1142), 1, + ACTIONS(1147), 1, + anon_sym_new, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(3402), 1, - anon_sym_not, - ACTIONS(3404), 1, - anon_sym_lambda, - ACTIONS(3406), 1, - anon_sym_new, - STATE(2037), 1, - sym_string, - STATE(2273), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2402), 1, + STATE(2028), 1, + sym_string, + STATE(2340), 1, sym_list_splat_pattern, - STATE(2937), 1, + STATE(4289), 1, sym_expression, - STATE(5304), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151074,11 +147218,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -151094,65 +147239,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50919] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, + [42703] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3351), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1118), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1122), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1134), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3353), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(1138), 1, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1142), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, + [42772] = 26, + ACTIONS(1232), 1, + anon_sym_LBRACE, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, + anon_sym_None, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1264), 1, + anon_sym_sizeof, + ACTIONS(1266), 1, + sym_string_start, + ACTIONS(1376), 1, + anon_sym_LBRACK, + ACTIONS(1378), 1, + anon_sym_await, + ACTIONS(2159), 1, + anon_sym_LPAREN, + ACTIONS(2521), 1, + sym_identifier, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(3402), 1, + ACTIONS(3355), 1, anon_sym_not, - ACTIONS(3404), 1, + ACTIONS(3357), 1, anon_sym_lambda, - ACTIONS(3406), 1, + ACTIONS(3359), 1, anon_sym_new, - STATE(2037), 1, - sym_string, - STATE(2273), 1, + STATE(1954), 1, sym_primary_expression, - STATE(2402), 1, + STATE(2056), 1, + sym_string, + STATE(2287), 1, sym_list_splat_pattern, - STATE(2978), 1, + STATE(2365), 1, sym_expression, - STATE(5304), 1, + STATE(5307), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151161,11 +147373,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -151181,65 +147394,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51031] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, + [42887] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3361), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1118), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1122), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1134), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3363), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(1138), 1, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1142), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - ACTIONS(3408), 1, + [42956] = 26, + ACTIONS(1232), 1, + anon_sym_LBRACE, + ACTIONS(1234), 1, anon_sym_not, - ACTIONS(3410), 1, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1238), 1, anon_sym_lambda, - ACTIONS(3412), 1, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, + anon_sym_None, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1254), 1, anon_sym_new, - STATE(1959), 1, + ACTIONS(1264), 1, + anon_sym_sizeof, + ACTIONS(1266), 1, + sym_string_start, + ACTIONS(1376), 1, + anon_sym_LBRACK, + ACTIONS(1378), 1, + anon_sym_await, + ACTIONS(2159), 1, + anon_sym_LPAREN, + ACTIONS(2521), 1, + sym_identifier, + ACTIONS(2803), 1, + anon_sym_STAR, + STATE(1953), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2056), 1, sym_string, - STATE(2363), 1, - sym_expression, - STATE(2402), 1, + STATE(2287), 1, sym_list_splat_pattern, - STATE(5534), 1, + STATE(3779), 1, + sym_expression, + STATE(5490), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2405), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151248,11 +147528,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -151268,65 +147549,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51143] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, + [43071] = 26, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1142), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(1376), 1, + anon_sym_LBRACK, + ACTIONS(1378), 1, + anon_sym_await, + ACTIONS(2159), 1, + anon_sym_LPAREN, + ACTIONS(2521), 1, + sym_identifier, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(3402), 1, + ACTIONS(3355), 1, anon_sym_not, - ACTIONS(3404), 1, + ACTIONS(3357), 1, anon_sym_lambda, - ACTIONS(3406), 1, + ACTIONS(3359), 1, anon_sym_new, - STATE(2037), 1, - sym_string, - STATE(2273), 1, + STATE(1954), 1, sym_primary_expression, - STATE(2402), 1, + STATE(2056), 1, + sym_string, + STATE(2287), 1, sym_list_splat_pattern, - STATE(2989), 1, + STATE(2333), 1, sym_expression, - STATE(5304), 1, + STATE(5307), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151335,11 +147617,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -151355,65 +147638,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51255] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, + [43186] = 26, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1142), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - ACTIONS(3408), 1, + ACTIONS(2437), 1, anon_sym_not, - ACTIONS(3410), 1, + ACTIONS(2439), 1, + anon_sym_LT, + ACTIONS(2441), 1, anon_sym_lambda, - ACTIONS(3412), 1, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2445), 1, anon_sym_new, - STATE(1959), 1, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, + anon_sym_STAR, + STATE(2005), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2096), 1, sym_string, - STATE(2374), 1, - sym_expression, - STATE(2402), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(5534), 1, + STATE(4140), 1, + sym_expression, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2405), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151422,98 +147706,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [51367] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - ACTIONS(3402), 1, - anon_sym_not, - ACTIONS(3404), 1, - anon_sym_lambda, - ACTIONS(3406), 1, - anon_sym_new, - STATE(2037), 1, - sym_string, - STATE(2273), 1, - sym_primary_expression, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(2980), 1, - sym_expression, - STATE(5304), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1132), 2, sym_ellipsis, - sym_float, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1126), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1116), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2935), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -151529,65 +147727,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51479] = 25, - ACTIONS(2230), 1, - anon_sym_LPAREN, - ACTIONS(2236), 1, - anon_sym_LBRACK, - ACTIONS(2240), 1, + [43301] = 26, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(2250), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(2310), 1, - anon_sym_LT, - ACTIONS(2570), 1, - sym_identifier, - ACTIONS(2578), 1, + ACTIONS(1376), 1, + anon_sym_LBRACK, + ACTIONS(1378), 1, anon_sym_await, - ACTIONS(2750), 1, + ACTIONS(2159), 1, + anon_sym_LPAREN, + ACTIONS(2521), 1, + sym_identifier, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(3414), 1, + ACTIONS(3355), 1, anon_sym_not, - ACTIONS(3416), 1, + ACTIONS(3357), 1, anon_sym_lambda, - ACTIONS(3418), 1, + ACTIONS(3359), 1, anon_sym_new, - STATE(1955), 1, + STATE(1954), 1, sym_primary_expression, - STATE(2061), 1, + STATE(2056), 1, sym_string, - STATE(2291), 1, - sym_expression, - STATE(2307), 1, + STATE(2287), 1, sym_list_splat_pattern, - STATE(5246), 1, + STATE(2335), 1, + sym_expression, + STATE(5307), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 3, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2574), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2314), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151596,11 +147795,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2310), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -151616,65 +147816,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51591] = 25, - ACTIONS(2230), 1, - anon_sym_LPAREN, - ACTIONS(2236), 1, - anon_sym_LBRACK, - ACTIONS(2240), 1, + [43416] = 26, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(2250), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(2310), 1, - anon_sym_LT, - ACTIONS(2570), 1, - sym_identifier, - ACTIONS(2578), 1, + ACTIONS(1376), 1, + anon_sym_LBRACK, + ACTIONS(1378), 1, anon_sym_await, - ACTIONS(2750), 1, + ACTIONS(2159), 1, + anon_sym_LPAREN, + ACTIONS(2521), 1, + sym_identifier, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(3414), 1, + ACTIONS(3355), 1, anon_sym_not, - ACTIONS(3416), 1, + ACTIONS(3357), 1, anon_sym_lambda, - ACTIONS(3418), 1, + ACTIONS(3359), 1, anon_sym_new, - STATE(1955), 1, + STATE(1954), 1, sym_primary_expression, - STATE(2061), 1, + STATE(2056), 1, sym_string, - STATE(2307), 1, + STATE(2287), 1, sym_list_splat_pattern, - STATE(2328), 1, + STATE(2336), 1, sym_expression, - STATE(5246), 1, + STATE(5307), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 3, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2574), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2314), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151683,11 +147884,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2310), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -151703,65 +147905,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51703] = 25, - ACTIONS(2230), 1, - anon_sym_LPAREN, - ACTIONS(2236), 1, - anon_sym_LBRACK, - ACTIONS(2240), 1, + [43531] = 26, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(2250), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(2310), 1, - anon_sym_LT, - ACTIONS(2570), 1, - sym_identifier, - ACTIONS(2578), 1, + ACTIONS(1376), 1, + anon_sym_LBRACK, + ACTIONS(1378), 1, anon_sym_await, - ACTIONS(2750), 1, + ACTIONS(2159), 1, + anon_sym_LPAREN, + ACTIONS(2521), 1, + sym_identifier, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(3414), 1, + ACTIONS(3355), 1, anon_sym_not, - ACTIONS(3416), 1, + ACTIONS(3357), 1, anon_sym_lambda, - ACTIONS(3418), 1, + ACTIONS(3359), 1, anon_sym_new, - STATE(1955), 1, + STATE(1954), 1, sym_primary_expression, - STATE(2061), 1, + STATE(2056), 1, sym_string, - STATE(2307), 1, + STATE(2287), 1, sym_list_splat_pattern, - STATE(2333), 1, + STATE(2351), 1, sym_expression, - STATE(5246), 1, + STATE(5307), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 3, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2574), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2314), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151770,11 +147973,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2310), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -151790,65 +147994,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51815] = 25, - ACTIONS(2230), 1, - anon_sym_LPAREN, - ACTIONS(2236), 1, - anon_sym_LBRACK, - ACTIONS(2240), 1, + [43646] = 26, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(2250), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(2310), 1, - anon_sym_LT, - ACTIONS(2570), 1, - sym_identifier, - ACTIONS(2578), 1, + ACTIONS(1376), 1, + anon_sym_LBRACK, + ACTIONS(1378), 1, anon_sym_await, - ACTIONS(2750), 1, + ACTIONS(2159), 1, + anon_sym_LPAREN, + ACTIONS(2521), 1, + sym_identifier, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(3414), 1, + ACTIONS(3355), 1, anon_sym_not, - ACTIONS(3416), 1, + ACTIONS(3357), 1, anon_sym_lambda, - ACTIONS(3418), 1, + ACTIONS(3359), 1, anon_sym_new, - STATE(1955), 1, + STATE(1954), 1, sym_primary_expression, - STATE(2061), 1, + STATE(2056), 1, sym_string, - STATE(2307), 1, + STATE(2287), 1, sym_list_splat_pattern, - STATE(2351), 1, + STATE(2337), 1, sym_expression, - STATE(5246), 1, + STATE(5307), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 3, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2574), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2314), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151857,11 +148062,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2310), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -151877,65 +148083,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51927] = 25, - ACTIONS(2230), 1, - anon_sym_LPAREN, - ACTIONS(2236), 1, - anon_sym_LBRACK, - ACTIONS(2240), 1, + [43761] = 26, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(2250), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(2310), 1, - anon_sym_LT, - ACTIONS(2570), 1, - sym_identifier, - ACTIONS(2578), 1, + ACTIONS(1376), 1, + anon_sym_LBRACK, + ACTIONS(1378), 1, anon_sym_await, - ACTIONS(2750), 1, + ACTIONS(2159), 1, + anon_sym_LPAREN, + ACTIONS(2521), 1, + sym_identifier, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(3414), 1, + ACTIONS(3355), 1, anon_sym_not, - ACTIONS(3416), 1, + ACTIONS(3357), 1, anon_sym_lambda, - ACTIONS(3418), 1, + ACTIONS(3359), 1, anon_sym_new, - STATE(1955), 1, + STATE(1954), 1, sym_primary_expression, - STATE(2061), 1, + STATE(2056), 1, sym_string, - STATE(2307), 1, + STATE(2287), 1, sym_list_splat_pattern, - STATE(2365), 1, + STATE(2338), 1, sym_expression, - STATE(5246), 1, + STATE(5307), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 3, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2574), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2314), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151944,11 +148151,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2310), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -151964,65 +148172,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52039] = 25, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, + [43876] = 26, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2400), 1, - anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(1376), 1, + anon_sym_LBRACK, + ACTIONS(1378), 1, anon_sym_await, - ACTIONS(2404), 1, - anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(2159), 1, + anon_sym_LPAREN, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2803), 1, anon_sym_STAR, - STATE(1967), 1, + ACTIONS(3355), 1, + anon_sym_not, + ACTIONS(3357), 1, + anon_sym_lambda, + ACTIONS(3359), 1, + anon_sym_new, + STATE(1954), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2056), 1, sym_string, - STATE(2490), 1, + STATE(2287), 1, sym_list_splat_pattern, - STATE(4067), 1, + STATE(2339), 1, sym_expression, - STATE(5443), 1, + STATE(5307), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152031,11 +148240,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -152051,65 +148261,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52151] = 25, - ACTIONS(2230), 1, + [43991] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2236), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2250), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2310), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2570), 1, - sym_identifier, - ACTIONS(2578), 1, - anon_sym_await, ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(3414), 1, + ACTIONS(3161), 1, anon_sym_not, - ACTIONS(3416), 1, + ACTIONS(3163), 1, anon_sym_lambda, - ACTIONS(3418), 1, + ACTIONS(3165), 1, anon_sym_new, - STATE(1955), 1, - sym_primary_expression, - STATE(2061), 1, + STATE(2028), 1, sym_string, - STATE(2307), 1, + STATE(2157), 1, + sym_primary_expression, + STATE(2340), 1, sym_list_splat_pattern, - STATE(2390), 1, + STATE(2997), 1, sym_expression, - STATE(5246), 1, + STATE(5404), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2574), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2314), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152118,11 +148329,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2310), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -152138,65 +148350,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52263] = 25, - ACTIONS(2230), 1, + [44106] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2236), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2250), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2310), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2570), 1, - sym_identifier, - ACTIONS(2578), 1, - anon_sym_await, ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(3414), 1, + ACTIONS(3161), 1, anon_sym_not, - ACTIONS(3416), 1, + ACTIONS(3163), 1, anon_sym_lambda, - ACTIONS(3418), 1, + ACTIONS(3165), 1, anon_sym_new, - STATE(1955), 1, - sym_primary_expression, - STATE(2061), 1, + STATE(2028), 1, sym_string, - STATE(2307), 1, + STATE(2157), 1, + sym_primary_expression, + STATE(2340), 1, sym_list_splat_pattern, - STATE(2393), 1, + STATE(2986), 1, sym_expression, - STATE(5246), 1, + STATE(5404), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2574), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2314), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152205,11 +148418,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2310), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -152225,65 +148439,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52375] = 25, - ACTIONS(2166), 1, + [44221] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2186), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2268), 1, - sym_identifier, - ACTIONS(2284), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2290), 1, - anon_sym_await, - ACTIONS(2731), 1, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(3346), 1, + ACTIONS(3161), 1, anon_sym_not, - ACTIONS(3348), 1, + ACTIONS(3163), 1, anon_sym_lambda, - ACTIONS(3350), 1, + ACTIONS(3165), 1, anon_sym_new, - STATE(1947), 1, - sym_primary_expression, - STATE(1984), 1, + STATE(2028), 1, sym_string, - STATE(2133), 1, + STATE(2157), 1, + sym_primary_expression, + STATE(2340), 1, sym_list_splat_pattern, - STATE(2170), 1, + STATE(2994), 1, sym_expression, - STATE(5276), 1, + STATE(5404), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2276), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152292,11 +148507,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2246), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -152312,65 +148528,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52487] = 25, - ACTIONS(2166), 1, + [44336] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2186), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2268), 1, - sym_identifier, - ACTIONS(2284), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2290), 1, - anon_sym_await, - ACTIONS(2731), 1, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(3346), 1, + ACTIONS(3161), 1, anon_sym_not, - ACTIONS(3348), 1, + ACTIONS(3163), 1, anon_sym_lambda, - ACTIONS(3350), 1, + ACTIONS(3165), 1, anon_sym_new, - STATE(1947), 1, - sym_primary_expression, - STATE(1984), 1, + STATE(2028), 1, sym_string, - STATE(2133), 1, + STATE(2157), 1, + sym_primary_expression, + STATE(2340), 1, sym_list_splat_pattern, - STATE(2173), 1, + STATE(2943), 1, sym_expression, - STATE(5276), 1, + STATE(5404), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2276), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152379,11 +148596,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2246), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -152399,65 +148617,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52599] = 25, - ACTIONS(2166), 1, + [44451] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2186), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2268), 1, - sym_identifier, - ACTIONS(2284), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2290), 1, - anon_sym_await, - ACTIONS(2731), 1, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(3346), 1, + ACTIONS(3161), 1, anon_sym_not, - ACTIONS(3348), 1, + ACTIONS(3163), 1, anon_sym_lambda, - ACTIONS(3350), 1, + ACTIONS(3165), 1, anon_sym_new, - STATE(1947), 1, - sym_primary_expression, - STATE(1984), 1, + STATE(2028), 1, sym_string, - STATE(2133), 1, + STATE(2157), 1, + sym_primary_expression, + STATE(2340), 1, sym_list_splat_pattern, - STATE(2175), 1, + STATE(2998), 1, sym_expression, - STATE(5276), 1, + STATE(5404), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2276), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152466,11 +148685,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2246), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -152486,65 +148706,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52711] = 25, - ACTIONS(2166), 1, + [44566] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2186), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2268), 1, - sym_identifier, - ACTIONS(2284), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2290), 1, - anon_sym_await, - ACTIONS(2731), 1, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(3346), 1, + ACTIONS(3365), 1, anon_sym_not, - ACTIONS(3348), 1, + ACTIONS(3367), 1, anon_sym_lambda, - ACTIONS(3350), 1, + ACTIONS(3369), 1, anon_sym_new, - STATE(1947), 1, + STATE(1960), 1, sym_primary_expression, - STATE(1984), 1, + STATE(2028), 1, sym_string, - STATE(2133), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(2178), 1, + STATE(2425), 1, sym_expression, - STATE(5276), 1, + STATE(5209), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2276), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 8, + STATE(2427), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152553,11 +148774,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2246), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -152573,65 +148795,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52823] = 25, - ACTIONS(2166), 1, + [44681] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2186), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2268), 1, - sym_identifier, - ACTIONS(2284), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2290), 1, - anon_sym_await, - ACTIONS(2731), 1, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(3346), 1, + ACTIONS(3161), 1, anon_sym_not, - ACTIONS(3348), 1, + ACTIONS(3163), 1, anon_sym_lambda, - ACTIONS(3350), 1, + ACTIONS(3165), 1, anon_sym_new, - STATE(1947), 1, - sym_primary_expression, - STATE(1984), 1, + STATE(2028), 1, sym_string, - STATE(2133), 1, + STATE(2157), 1, + sym_primary_expression, + STATE(2340), 1, sym_list_splat_pattern, - STATE(2184), 1, + STATE(2990), 1, sym_expression, - STATE(5276), 1, + STATE(5404), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2276), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152640,11 +148863,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2246), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -152660,65 +148884,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52935] = 25, - ACTIONS(2166), 1, + [44796] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2186), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2268), 1, - sym_identifier, - ACTIONS(2284), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2290), 1, - anon_sym_await, - ACTIONS(2731), 1, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(3346), 1, + ACTIONS(3365), 1, anon_sym_not, - ACTIONS(3348), 1, + ACTIONS(3367), 1, anon_sym_lambda, - ACTIONS(3350), 1, + ACTIONS(3369), 1, anon_sym_new, - STATE(1947), 1, + STATE(1960), 1, sym_primary_expression, - STATE(1984), 1, + STATE(2028), 1, sym_string, - STATE(2133), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(2193), 1, + STATE(2444), 1, sym_expression, - STATE(5276), 1, + STATE(5209), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1131), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1121), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2427), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2295), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [44911] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, sym_float, - ACTIONS(2164), 3, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(3161), 1, + anon_sym_not, + ACTIONS(3163), 1, + anon_sym_lambda, + ACTIONS(3165), 1, + anon_sym_new, + STATE(2028), 1, + sym_string, + STATE(2157), 1, + sym_primary_expression, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(2989), 1, + sym_expression, + STATE(5404), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2276), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152727,11 +149041,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2246), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -152747,65 +149062,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [53047] = 25, - ACTIONS(2102), 1, + [45026] = 26, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2301), 1, anon_sym_LT, - ACTIONS(2554), 1, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(2562), 1, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(3352), 1, + ACTIONS(2728), 1, + anon_sym_STAR, + ACTIONS(3233), 1, anon_sym_not, - ACTIONS(3354), 1, + ACTIONS(3235), 1, anon_sym_lambda, - ACTIONS(3356), 1, + ACTIONS(3237), 1, anon_sym_new, - STATE(1938), 1, + STATE(1957), 1, sym_primary_expression, - STATE(1968), 1, + STATE(2051), 1, sym_string, - STATE(2161), 1, - sym_expression, - STATE(2230), 1, + STATE(2326), 1, sym_list_splat_pattern, - STATE(5292), 1, + STATE(2343), 1, + sym_expression, + STATE(5282), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, + ACTIONS(2255), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(2591), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2276), 8, + STATE(2375), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152814,11 +149130,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -152834,65 +149151,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [53159] = 25, - ACTIONS(2102), 1, + [45141] = 26, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2301), 1, anon_sym_LT, - ACTIONS(2554), 1, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(2562), 1, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(3352), 1, + ACTIONS(2728), 1, + anon_sym_STAR, + ACTIONS(3233), 1, anon_sym_not, - ACTIONS(3354), 1, + ACTIONS(3235), 1, anon_sym_lambda, - ACTIONS(3356), 1, + ACTIONS(3237), 1, anon_sym_new, - STATE(1938), 1, + STATE(1957), 1, sym_primary_expression, - STATE(1968), 1, + STATE(2051), 1, sym_string, - STATE(2163), 1, - sym_expression, - STATE(2230), 1, + STATE(2326), 1, sym_list_splat_pattern, - STATE(5292), 1, + STATE(2345), 1, + sym_expression, + STATE(5282), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, + ACTIONS(2255), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(2591), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2276), 8, + STATE(2375), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152901,11 +149219,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -152921,65 +149240,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [53271] = 25, - ACTIONS(2102), 1, + [45256] = 26, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2301), 1, anon_sym_LT, - ACTIONS(2554), 1, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(2562), 1, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(3352), 1, + ACTIONS(2728), 1, + anon_sym_STAR, + ACTIONS(3233), 1, anon_sym_not, - ACTIONS(3354), 1, + ACTIONS(3235), 1, anon_sym_lambda, - ACTIONS(3356), 1, + ACTIONS(3237), 1, anon_sym_new, - STATE(1938), 1, + STATE(1957), 1, sym_primary_expression, - STATE(1968), 1, + STATE(2051), 1, sym_string, - STATE(2168), 1, - sym_expression, - STATE(2230), 1, + STATE(2326), 1, sym_list_splat_pattern, - STATE(5292), 1, + STATE(2346), 1, + sym_expression, + STATE(5282), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, + ACTIONS(2255), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(2591), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2276), 8, + STATE(2375), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152988,11 +149308,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -153008,65 +149329,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [53383] = 25, - ACTIONS(2102), 1, + [45371] = 26, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2301), 1, anon_sym_LT, - ACTIONS(2554), 1, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(2562), 1, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(3352), 1, + ACTIONS(2728), 1, + anon_sym_STAR, + ACTIONS(3233), 1, anon_sym_not, - ACTIONS(3354), 1, + ACTIONS(3235), 1, anon_sym_lambda, - ACTIONS(3356), 1, + ACTIONS(3237), 1, anon_sym_new, - STATE(1938), 1, + STATE(1957), 1, sym_primary_expression, - STATE(1968), 1, + STATE(2051), 1, sym_string, - STATE(2172), 1, - sym_expression, - STATE(2230), 1, + STATE(2326), 1, sym_list_splat_pattern, - STATE(5292), 1, + STATE(2414), 1, + sym_expression, + STATE(5282), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, + ACTIONS(2255), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(2591), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2276), 8, + STATE(2375), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -153075,11 +149397,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -153095,65 +149418,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [53495] = 25, - ACTIONS(2102), 1, + [45486] = 26, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2301), 1, anon_sym_LT, - ACTIONS(2554), 1, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(2562), 1, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(3352), 1, + ACTIONS(2728), 1, + anon_sym_STAR, + ACTIONS(3233), 1, anon_sym_not, - ACTIONS(3354), 1, + ACTIONS(3235), 1, anon_sym_lambda, - ACTIONS(3356), 1, + ACTIONS(3237), 1, anon_sym_new, - STATE(1938), 1, + STATE(1957), 1, sym_primary_expression, - STATE(1968), 1, + STATE(2051), 1, sym_string, - STATE(2191), 1, - sym_expression, - STATE(2230), 1, + STATE(2326), 1, sym_list_splat_pattern, - STATE(5292), 1, + STATE(2347), 1, + sym_expression, + STATE(5282), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, + ACTIONS(2255), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2265), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2591), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2375), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2374), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [45601] = 26, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, + anon_sym_LBRACE, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, + anon_sym_None, + ACTIONS(2247), 1, sym_float, - ACTIONS(2100), 3, + ACTIONS(2251), 1, + anon_sym_sizeof, + ACTIONS(2253), 1, + sym_string_start, + ACTIONS(2437), 1, + anon_sym_not, + ACTIONS(2439), 1, + anon_sym_LT, + ACTIONS(2441), 1, + anon_sym_lambda, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2445), 1, + anon_sym_new, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, + anon_sym_STAR, + STATE(2005), 1, + sym_primary_expression, + STATE(2096), 1, + sym_string, + STATE(2477), 1, + sym_list_splat_pattern, + STATE(4109), 1, + sym_expression, + STATE(5456), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2276), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -153162,11 +149575,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -153182,65 +149596,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [53607] = 25, - ACTIONS(2102), 1, + [45716] = 26, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2301), 1, anon_sym_LT, - ACTIONS(2554), 1, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(2562), 1, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(3352), 1, + ACTIONS(2728), 1, + anon_sym_STAR, + ACTIONS(3233), 1, anon_sym_not, - ACTIONS(3354), 1, + ACTIONS(3235), 1, anon_sym_lambda, - ACTIONS(3356), 1, + ACTIONS(3237), 1, anon_sym_new, - STATE(1938), 1, + STATE(1957), 1, sym_primary_expression, - STATE(1968), 1, + STATE(2051), 1, sym_string, - STATE(2215), 1, - sym_expression, - STATE(2230), 1, + STATE(2326), 1, sym_list_splat_pattern, - STATE(5292), 1, + STATE(2348), 1, + sym_expression, + STATE(5282), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, + ACTIONS(2255), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(2591), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2276), 8, + STATE(2375), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -153249,11 +149664,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -153269,65 +149685,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [53719] = 25, - ACTIONS(2102), 1, + [45831] = 26, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2301), 1, anon_sym_LT, - ACTIONS(2554), 1, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(2562), 1, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(3352), 1, + ACTIONS(2728), 1, + anon_sym_STAR, + ACTIONS(3233), 1, anon_sym_not, - ACTIONS(3354), 1, + ACTIONS(3235), 1, anon_sym_lambda, - ACTIONS(3356), 1, + ACTIONS(3237), 1, anon_sym_new, - STATE(1938), 1, + STATE(1957), 1, sym_primary_expression, - STATE(1968), 1, + STATE(2051), 1, sym_string, - STATE(2225), 1, - sym_expression, - STATE(2230), 1, + STATE(2326), 1, sym_list_splat_pattern, - STATE(5292), 1, + STATE(2349), 1, + sym_expression, + STATE(5282), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, + ACTIONS(2255), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(2591), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2276), 8, + STATE(2375), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -153336,11 +149753,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -153356,65 +149774,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [53831] = 25, - ACTIONS(1277), 1, + [45946] = 26, + ACTIONS(2187), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1291), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(1299), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(2331), 1, + anon_sym_LT, + ACTIONS(2337), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2703), 1, anon_sym_STAR, - ACTIONS(3358), 1, + ACTIONS(3239), 1, anon_sym_not, - ACTIONS(3360), 1, + ACTIONS(3241), 1, anon_sym_lambda, - ACTIONS(3362), 1, + ACTIONS(3243), 1, anon_sym_new, - STATE(2054), 1, + STATE(1952), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2004), 1, sym_string, - STATE(2531), 1, + STATE(2221), 1, sym_expression, - STATE(2556), 1, + STATE(2272), 1, sym_list_splat_pattern, - STATE(5310), 1, + STATE(5320), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -153423,11 +149842,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -153443,65 +149863,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [53943] = 25, - ACTIONS(1277), 1, + [46061] = 26, + ACTIONS(2187), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1291), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(1299), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(2331), 1, + anon_sym_LT, + ACTIONS(2337), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2703), 1, anon_sym_STAR, - ACTIONS(3358), 1, + ACTIONS(3239), 1, anon_sym_not, - ACTIONS(3360), 1, + ACTIONS(3241), 1, anon_sym_lambda, - ACTIONS(3362), 1, + ACTIONS(3243), 1, anon_sym_new, - STATE(2054), 1, + STATE(1952), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2004), 1, sym_string, - STATE(2556), 1, - sym_list_splat_pattern, - STATE(2595), 1, + STATE(2224), 1, sym_expression, - STATE(5310), 1, + STATE(2272), 1, + sym_list_splat_pattern, + STATE(5320), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -153510,11 +149931,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -153530,65 +149952,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54055] = 25, - ACTIONS(1277), 1, + [46176] = 26, + ACTIONS(2187), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1291), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(1299), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(2331), 1, + anon_sym_LT, + ACTIONS(2337), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2703), 1, anon_sym_STAR, - ACTIONS(3358), 1, + ACTIONS(3239), 1, anon_sym_not, - ACTIONS(3360), 1, + ACTIONS(3241), 1, anon_sym_lambda, - ACTIONS(3362), 1, + ACTIONS(3243), 1, anon_sym_new, - STATE(2054), 1, + STATE(1952), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2004), 1, sym_string, - STATE(2556), 1, - sym_list_splat_pattern, - STATE(2597), 1, + STATE(2226), 1, sym_expression, - STATE(5310), 1, + STATE(2272), 1, + sym_list_splat_pattern, + STATE(5320), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -153597,11 +150020,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -153617,65 +150041,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54167] = 25, - ACTIONS(1277), 1, + [46291] = 26, + ACTIONS(2187), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1291), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(1299), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(2331), 1, + anon_sym_LT, + ACTIONS(2337), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2703), 1, anon_sym_STAR, - ACTIONS(3358), 1, + ACTIONS(3239), 1, anon_sym_not, - ACTIONS(3360), 1, + ACTIONS(3241), 1, anon_sym_lambda, - ACTIONS(3362), 1, + ACTIONS(3243), 1, anon_sym_new, - STATE(2054), 1, + STATE(1952), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2004), 1, sym_string, - STATE(2541), 1, + STATE(2248), 1, sym_expression, - STATE(2556), 1, + STATE(2272), 1, sym_list_splat_pattern, - STATE(5310), 1, + STATE(5320), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -153684,11 +150109,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -153704,65 +150130,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54279] = 25, - ACTIONS(1277), 1, + [46406] = 26, + ACTIONS(2187), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1291), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(1299), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(2331), 1, + anon_sym_LT, + ACTIONS(2337), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2703), 1, anon_sym_STAR, - ACTIONS(3358), 1, + ACTIONS(3239), 1, anon_sym_not, - ACTIONS(3360), 1, + ACTIONS(3241), 1, anon_sym_lambda, - ACTIONS(3362), 1, + ACTIONS(3243), 1, anon_sym_new, - STATE(2054), 1, + STATE(1952), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2004), 1, sym_string, - STATE(2530), 1, + STATE(2227), 1, sym_expression, - STATE(2556), 1, + STATE(2272), 1, sym_list_splat_pattern, - STATE(5310), 1, + STATE(5320), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -153771,11 +150198,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -153791,65 +150219,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54391] = 25, - ACTIONS(1277), 1, + [46521] = 26, + ACTIONS(2187), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1291), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(1299), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(2331), 1, + anon_sym_LT, + ACTIONS(2337), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2703), 1, anon_sym_STAR, - ACTIONS(3358), 1, + ACTIONS(3239), 1, anon_sym_not, - ACTIONS(3360), 1, + ACTIONS(3241), 1, anon_sym_lambda, - ACTIONS(3362), 1, + ACTIONS(3243), 1, anon_sym_new, - STATE(2054), 1, + STATE(1952), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2004), 1, sym_string, - STATE(2539), 1, + STATE(2228), 1, sym_expression, - STATE(2556), 1, + STATE(2272), 1, sym_list_splat_pattern, - STATE(5310), 1, + STATE(5320), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -153858,11 +150287,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -153878,65 +150308,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54503] = 25, - ACTIONS(1277), 1, + [46636] = 26, + ACTIONS(2187), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1291), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(1299), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(2331), 1, + anon_sym_LT, + ACTIONS(2337), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2703), 1, anon_sym_STAR, - ACTIONS(3358), 1, + ACTIONS(3239), 1, anon_sym_not, - ACTIONS(3360), 1, + ACTIONS(3241), 1, anon_sym_lambda, - ACTIONS(3362), 1, + ACTIONS(3243), 1, anon_sym_new, - STATE(2054), 1, + STATE(1952), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2004), 1, sym_string, - STATE(2522), 1, + STATE(2231), 1, sym_expression, - STATE(2556), 1, + STATE(2272), 1, sym_list_splat_pattern, - STATE(5310), 1, + STATE(5320), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -153945,11 +150376,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -153965,65 +150397,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54615] = 25, - ACTIONS(2204), 1, + [46751] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2398), 1, + ACTIONS(2409), 1, + anon_sym_STAR, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2742), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(3364), 1, + ACTIONS(2701), 1, + anon_sym_await, + ACTIONS(3263), 1, anon_sym_not, - ACTIONS(3366), 1, + ACTIONS(3265), 1, anon_sym_lambda, - ACTIONS(3368), 1, + ACTIONS(3267), 1, anon_sym_new, - STATE(1989), 1, + STATE(1938), 1, sym_primary_expression, - STATE(2110), 1, + STATE(1976), 1, sym_string, - STATE(2490), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(2514), 1, + STATE(2262), 1, sym_expression, - STATE(5334), 1, + STATE(5337), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2251), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154032,11 +150465,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -154052,65 +150486,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54727] = 25, - ACTIONS(2204), 1, + [46866] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2398), 1, + ACTIONS(2409), 1, + anon_sym_STAR, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2742), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(3364), 1, + ACTIONS(2701), 1, + anon_sym_await, + ACTIONS(3263), 1, anon_sym_not, - ACTIONS(3366), 1, + ACTIONS(3265), 1, anon_sym_lambda, - ACTIONS(3368), 1, + ACTIONS(3267), 1, anon_sym_new, - STATE(1989), 1, + STATE(1938), 1, sym_primary_expression, - STATE(2110), 1, + STATE(1976), 1, sym_string, - STATE(2462), 1, - sym_expression, - STATE(2490), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(5334), 1, + STATE(2264), 1, + sym_expression, + STATE(5337), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2251), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154119,11 +150554,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -154139,65 +150575,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54839] = 25, - ACTIONS(2204), 1, + [46981] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2398), 1, + ACTIONS(2409), 1, + anon_sym_STAR, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2742), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(3364), 1, + ACTIONS(2701), 1, + anon_sym_await, + ACTIONS(3263), 1, anon_sym_not, - ACTIONS(3366), 1, + ACTIONS(3265), 1, anon_sym_lambda, - ACTIONS(3368), 1, + ACTIONS(3267), 1, anon_sym_new, - STATE(1989), 1, + STATE(1938), 1, sym_primary_expression, - STATE(2110), 1, + STATE(1976), 1, sym_string, - STATE(2476), 1, + STATE(2124), 1, sym_expression, - STATE(2490), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(5334), 1, + STATE(5337), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2251), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154206,11 +150643,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -154226,65 +150664,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54951] = 25, - ACTIONS(2204), 1, + [47096] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2398), 1, + ACTIONS(2409), 1, + anon_sym_STAR, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2742), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(3364), 1, + ACTIONS(2701), 1, + anon_sym_await, + ACTIONS(3263), 1, anon_sym_not, - ACTIONS(3366), 1, + ACTIONS(3265), 1, anon_sym_lambda, - ACTIONS(3368), 1, + ACTIONS(3267), 1, anon_sym_new, - STATE(1989), 1, + STATE(1938), 1, sym_primary_expression, - STATE(2110), 1, + STATE(1976), 1, sym_string, - STATE(2484), 1, - sym_expression, - STATE(2490), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(5334), 1, + STATE(2267), 1, + sym_expression, + STATE(5337), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2251), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154293,11 +150732,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -154313,65 +150753,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55063] = 25, - ACTIONS(2204), 1, + [47211] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2398), 1, + ACTIONS(2409), 1, + anon_sym_STAR, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2742), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(3364), 1, + ACTIONS(2701), 1, + anon_sym_await, + ACTIONS(3263), 1, anon_sym_not, - ACTIONS(3366), 1, + ACTIONS(3265), 1, anon_sym_lambda, - ACTIONS(3368), 1, + ACTIONS(3267), 1, anon_sym_new, - STATE(1989), 1, + STATE(1938), 1, sym_primary_expression, - STATE(2110), 1, + STATE(1976), 1, sym_string, - STATE(2480), 1, - sym_expression, - STATE(2490), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(5334), 1, + STATE(2269), 1, + sym_expression, + STATE(5337), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2251), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154380,11 +150821,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -154400,65 +150842,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55175] = 25, - ACTIONS(2204), 1, + [47326] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2398), 1, + ACTIONS(2409), 1, + anon_sym_STAR, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2742), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(3364), 1, + ACTIONS(2701), 1, + anon_sym_await, + ACTIONS(3263), 1, anon_sym_not, - ACTIONS(3366), 1, + ACTIONS(3265), 1, anon_sym_lambda, - ACTIONS(3368), 1, + ACTIONS(3267), 1, anon_sym_new, - STATE(1989), 1, + STATE(1938), 1, sym_primary_expression, - STATE(2110), 1, + STATE(1976), 1, sym_string, - STATE(2490), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(2493), 1, + STATE(2250), 1, sym_expression, - STATE(5334), 1, + STATE(5337), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2251), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154467,11 +150910,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -154487,65 +150931,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55287] = 25, - ACTIONS(2204), 1, + [47441] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2398), 1, + ACTIONS(2409), 1, + anon_sym_STAR, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2742), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(3364), 1, + ACTIONS(2701), 1, + anon_sym_await, + ACTIONS(3263), 1, anon_sym_not, - ACTIONS(3366), 1, + ACTIONS(3265), 1, anon_sym_lambda, - ACTIONS(3368), 1, + ACTIONS(3267), 1, anon_sym_new, - STATE(1989), 1, + STATE(1938), 1, sym_primary_expression, - STATE(2110), 1, + STATE(1976), 1, sym_string, - STATE(2465), 1, + STATE(2136), 1, sym_expression, - STATE(2490), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(5334), 1, + STATE(5337), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2251), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154554,11 +150999,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -154574,65 +151020,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55399] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, + [47556] = 26, + ACTIONS(1286), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1294), 1, + anon_sym_LT, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, + sym_identifier, + ACTIONS(2744), 1, + anon_sym_await, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(1958), 1, + ACTIONS(3285), 1, + anon_sym_not, + ACTIONS(3287), 1, + anon_sym_lambda, + ACTIONS(3289), 1, + anon_sym_new, + STATE(2058), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2152), 1, sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(2936), 1, + STATE(2568), 1, sym_expression, - STATE(5331), 1, + STATE(2614), 1, + sym_list_splat_pattern, + STATE(5351), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154641,11 +151088,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -154661,68 +151109,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55511] = 26, - ACTIONS(2102), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, + [47671] = 26, + ACTIONS(1286), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(1294), 1, + anon_sym_LT, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(2426), 1, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, + sym_identifier, + ACTIONS(2744), 1, + anon_sym_await, + ACTIONS(2831), 1, anon_sym_STAR, - ACTIONS(2434), 1, - anon_sym_LT, - ACTIONS(2796), 1, + ACTIONS(3285), 1, anon_sym_not, - ACTIONS(2798), 1, + ACTIONS(3287), 1, anon_sym_lambda, - ACTIONS(2800), 1, + ACTIONS(3289), 1, anon_sym_new, - ACTIONS(3420), 1, - sym_identifier, - ACTIONS(3424), 1, - anon_sym_await, - STATE(1968), 1, - sym_string, - STATE(2029), 1, + STATE(2058), 1, sym_primary_expression, - STATE(2230), 1, - sym_list_splat_pattern, - STATE(4090), 1, + STATE(2152), 1, + sym_string, + STATE(2569), 1, sym_expression, - STATE(5485), 1, + STATE(2614), 1, + sym_list_splat_pattern, + STATE(5351), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - STATE(2186), 2, - sym_attribute, - sym_subscript, - ACTIONS(2100), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3422), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3682), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154731,9 +151177,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 17, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -154749,65 +151198,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55625] = 25, - ACTIONS(67), 1, + [47786] = 26, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(79), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(2744), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(1918), 1, + ACTIONS(3285), 1, + anon_sym_not, + ACTIONS(3287), 1, + anon_sym_lambda, + ACTIONS(3289), 1, + anon_sym_new, + STATE(2058), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2152), 1, sym_string, - STATE(1985), 1, - sym_list_splat_pattern, - STATE(3722), 1, + STATE(2571), 1, sym_expression, - STATE(5376), 1, + STATE(2614), 1, + sym_list_splat_pattern, + STATE(5351), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154816,11 +151266,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -154836,65 +151287,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55737] = 25, - ACTIONS(2166), 1, - anon_sym_LPAREN, - ACTIONS(2172), 1, + [47901] = 26, + ACTIONS(1286), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(1294), 1, + anon_sym_LT, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(2186), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(2268), 1, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(2282), 1, + ACTIONS(2744), 1, + anon_sym_await, + ACTIONS(2831), 1, + anon_sym_STAR, + ACTIONS(3285), 1, anon_sym_not, - ACTIONS(2284), 1, - anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(3287), 1, anon_sym_lambda, - ACTIONS(2290), 1, - anon_sym_await, - ACTIONS(2292), 1, + ACTIONS(3289), 1, anon_sym_new, - ACTIONS(2731), 1, - anon_sym_STAR, - STATE(1944), 1, + STATE(2058), 1, sym_primary_expression, - STATE(1984), 1, + STATE(2152), 1, sym_string, - STATE(2133), 1, - sym_list_splat_pattern, - STATE(3927), 1, + STATE(2566), 1, sym_expression, - STATE(5551), 1, + STATE(2614), 1, + sym_list_splat_pattern, + STATE(5351), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2276), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154903,11 +151355,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2246), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -154923,65 +151376,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55849] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, + [48016] = 26, + ACTIONS(1286), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1294), 1, + anon_sym_LT, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, + sym_identifier, + ACTIONS(2744), 1, + anon_sym_await, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(1958), 1, + ACTIONS(3285), 1, + anon_sym_not, + ACTIONS(3287), 1, + anon_sym_lambda, + ACTIONS(3289), 1, + anon_sym_new, + STATE(2058), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2152), 1, sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3698), 1, + STATE(2578), 1, sym_expression, - STATE(5331), 1, + STATE(2614), 1, + sym_list_splat_pattern, + STATE(5351), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154990,11 +151444,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -155010,65 +151465,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55961] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, + [48131] = 26, + ACTIONS(1286), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1294), 1, + anon_sym_LT, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, + sym_identifier, + ACTIONS(2744), 1, + anon_sym_await, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(1958), 1, + ACTIONS(3285), 1, + anon_sym_not, + ACTIONS(3287), 1, + anon_sym_lambda, + ACTIONS(3289), 1, + anon_sym_new, + STATE(2058), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2152), 1, sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3708), 1, + STATE(2580), 1, sym_expression, - STATE(5331), 1, + STATE(2614), 1, + sym_list_splat_pattern, + STATE(5351), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -155077,11 +151533,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -155097,65 +151554,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56073] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, + [48246] = 26, + ACTIONS(1286), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1294), 1, + anon_sym_LT, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, + sym_identifier, + ACTIONS(2744), 1, + anon_sym_await, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(1958), 1, + ACTIONS(3285), 1, + anon_sym_not, + ACTIONS(3287), 1, + anon_sym_lambda, + ACTIONS(3289), 1, + anon_sym_new, + STATE(2058), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2152), 1, sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3710), 1, + STATE(2588), 1, sym_expression, - STATE(5331), 1, + STATE(2614), 1, + sym_list_splat_pattern, + STATE(5351), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -155164,11 +151622,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -155184,65 +151643,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56185] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, + [48361] = 26, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(1958), 1, + ACTIONS(3291), 1, + anon_sym_not, + ACTIONS(3293), 1, + anon_sym_lambda, + ACTIONS(3295), 1, + anon_sym_new, + STATE(2023), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2096), 1, sym_string, - STATE(2402), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(2937), 1, + STATE(2513), 1, sym_expression, - STATE(5331), 1, + STATE(5369), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -155251,11 +151711,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -155271,65 +151732,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56297] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, + [48476] = 26, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(1958), 1, + ACTIONS(3291), 1, + anon_sym_not, + ACTIONS(3293), 1, + anon_sym_lambda, + ACTIONS(3295), 1, + anon_sym_new, + STATE(2023), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2096), 1, sym_string, - STATE(2402), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(3711), 1, + STATE(2514), 1, sym_expression, - STATE(5331), 1, + STATE(5369), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -155338,11 +151800,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -155358,65 +151821,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56409] = 25, - ACTIONS(67), 1, + [48591] = 26, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(79), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(103), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(832), 1, - sym_identifier, - ACTIONS(869), 1, + ACTIONS(2439), 1, + anon_sym_LT, + ACTIONS(2443), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, anon_sym_STAR, - ACTIONS(3376), 1, + ACTIONS(3291), 1, anon_sym_not, - ACTIONS(3378), 1, + ACTIONS(3293), 1, anon_sym_lambda, - ACTIONS(3380), 1, + ACTIONS(3295), 1, anon_sym_new, - STATE(1926), 1, + STATE(2023), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2096), 1, sym_string, - STATE(1974), 1, - sym_expression, - STATE(1985), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(5366), 1, + STATE(2515), 1, + sym_expression, + STATE(5369), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(1997), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -155425,11 +151889,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -155445,65 +151910,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56521] = 25, - ACTIONS(2102), 1, + [48706] = 26, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2426), 1, + ACTIONS(2439), 1, + anon_sym_LT, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, anon_sym_STAR, - ACTIONS(2432), 1, + ACTIONS(3291), 1, anon_sym_not, - ACTIONS(2434), 1, - anon_sym_LT, - ACTIONS(2436), 1, + ACTIONS(3293), 1, anon_sym_lambda, - ACTIONS(2442), 1, + ACTIONS(3295), 1, anon_sym_new, - ACTIONS(2554), 1, - sym_identifier, - ACTIONS(2562), 1, - anon_sym_await, - STATE(1950), 1, + STATE(2023), 1, sym_primary_expression, - STATE(1968), 1, + STATE(2096), 1, sym_string, - STATE(2230), 1, - sym_list_splat_pattern, - STATE(3709), 1, + STATE(2475), 1, sym_expression, - STATE(5332), 1, + STATE(2477), 1, + sym_list_splat_pattern, + STATE(5369), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3682), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -155512,11 +151978,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -155532,65 +151999,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56633] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, + [48821] = 26, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1142), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, anon_sym_STAR, - ACTIONS(3402), 1, + ACTIONS(3291), 1, anon_sym_not, - ACTIONS(3404), 1, + ACTIONS(3293), 1, anon_sym_lambda, - ACTIONS(3406), 1, + ACTIONS(3295), 1, anon_sym_new, - STATE(2037), 1, - sym_string, - STATE(2273), 1, + STATE(2023), 1, sym_primary_expression, - STATE(2402), 1, + STATE(2096), 1, + sym_string, + STATE(2477), 1, sym_list_splat_pattern, - STATE(2983), 1, + STATE(2516), 1, sym_expression, - STATE(5304), 1, + STATE(5369), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -155599,11 +152067,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -155619,75 +152088,80 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56745] = 22, - ACTIONS(867), 1, - anon_sym_COMMA, - ACTIONS(1112), 1, + [48936] = 26, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(1199), 1, - anon_sym_STAR, - ACTIONS(1207), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(1209), 1, + ACTIONS(2443), 1, anon_sym_await, - STATE(2037), 1, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, + anon_sym_STAR, + ACTIONS(3291), 1, + anon_sym_not, + ACTIONS(3293), 1, + anon_sym_lambda, + ACTIONS(3295), 1, + anon_sym_new, + STATE(2023), 1, + sym_primary_expression, + STATE(2096), 1, sym_string, - STATE(2402), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(3025), 1, - sym_primary_expression, + STATE(2517), 1, + sym_expression, + STATE(5369), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(853), 2, - anon_sym_from, - anon_sym_in, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 4, + ACTIONS(2227), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1201), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(834), 8, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(2436), 19, + STATE(2496), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -155703,65 +152177,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56851] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, + [49051] = 26, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(1958), 1, + ACTIONS(3291), 1, + anon_sym_not, + ACTIONS(3293), 1, + anon_sym_lambda, + ACTIONS(3295), 1, + anon_sym_new, + STATE(2023), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2096), 1, sym_string, - STATE(2402), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(3664), 1, + STATE(2518), 1, sym_expression, - STATE(5331), 1, + STATE(5369), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -155770,11 +152245,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -155790,65 +152266,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56963] = 25, - ACTIONS(1110), 1, + [49166] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4073), 1, + STATE(2940), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -155857,11 +152334,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -155877,65 +152355,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57075] = 25, - ACTIONS(67), 1, + [49281] = 27, + ACTIONS(1703), 1, + anon_sym_LPAREN, + ACTIONS(1709), 1, + anon_sym_LBRACK, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(79), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(2409), 1, + anon_sym_STAR, + ACTIONS(2417), 1, + anon_sym_LT, + ACTIONS(2817), 1, + anon_sym_not, + ACTIONS(2819), 1, + anon_sym_lambda, + ACTIONS(2821), 1, + anon_sym_new, + ACTIONS(3371), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(3375), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, - anon_sym_STAR, - STATE(1918), 1, - sym_primary_expression, - STATE(1933), 1, + STATE(1976), 1, sym_string, - STATE(1985), 1, + STATE(2030), 1, + sym_primary_expression, + STATE(2212), 1, sym_list_splat_pattern, - STATE(3846), 1, + STATE(4084), 1, sym_expression, - STATE(5376), 1, + STATE(5493), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + STATE(2192), 2, + sym_attribute, + sym_subscript, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(3373), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -155944,11 +152426,10 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2175), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -155964,65 +152445,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57187] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, + [49398] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3077), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1118), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1122), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1134), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3079), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(1138), 1, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1142), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1144), 1, + [49467] = 26, + ACTIONS(2187), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, + anon_sym_LBRACK, + ACTIONS(2197), 1, + anon_sym_LBRACE, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, + anon_sym_None, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, + anon_sym_sizeof, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - ACTIONS(3402), 1, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2329), 1, anon_sym_not, - ACTIONS(3404), 1, + ACTIONS(2331), 1, + anon_sym_LT, + ACTIONS(2333), 1, anon_sym_lambda, - ACTIONS(3406), 1, + ACTIONS(2337), 1, + anon_sym_await, + ACTIONS(2339), 1, anon_sym_new, - STATE(2037), 1, - sym_string, - STATE(2273), 1, + ACTIONS(2703), 1, + anon_sym_STAR, + STATE(1945), 1, sym_primary_expression, - STATE(2402), 1, + STATE(2004), 1, + sym_string, + STATE(2272), 1, sym_list_splat_pattern, - STATE(2985), 1, + STATE(3855), 1, sym_expression, - STATE(5304), 1, + STATE(5551), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -156031,11 +152579,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -156051,152 +152600,462 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57299] = 25, - ACTIONS(1110), 1, + [49582] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3377), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3379), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(1112), 1, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [49651] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3381), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1118), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1122), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1124), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3383), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1130), 1, anon_sym_lambda, - ACTIONS(1134), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1138), 1, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1140), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(1142), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1144), 1, + [49720] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3387), 14, + sym__dedent, sym_string_start, - ACTIONS(2466), 1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(2806), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3385), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [49789] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3391), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, anon_sym_STAR, - STATE(1958), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(4085), 1, - sym_expression, - STATE(5331), 1, - sym__named_expression_lhs, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3389), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [49858] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, + ACTIONS(2485), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1136), 3, + ACTIONS(2487), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(1126), 4, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [49927] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3395), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3393), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - STATE(2935), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [57411] = 25, - ACTIONS(1225), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [49996] = 26, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(1237), 1, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(1255), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(1365), 1, + ACTIONS(1376), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1378), 1, anon_sym_await, - ACTIONS(2190), 1, + ACTIONS(2159), 1, anon_sym_LPAREN, - ACTIONS(2514), 1, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2760), 1, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(3396), 1, + ACTIONS(3355), 1, anon_sym_not, - ACTIONS(3398), 1, + ACTIONS(3357), 1, anon_sym_lambda, - ACTIONS(3400), 1, + ACTIONS(3359), 1, anon_sym_new, - STATE(1961), 1, + STATE(1954), 1, sym_primary_expression, - STATE(2028), 1, + STATE(2056), 1, sym_string, - STATE(2289), 1, - sym_expression, - STATE(2426), 1, + STATE(2287), 1, sym_list_splat_pattern, - STATE(5281), 1, + STATE(2371), 1, + sym_expression, + STATE(5307), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1239), 3, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(1223), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1363), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2406), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -156205,11 +153064,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2403), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -156225,152 +153085,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57523] = 25, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, - sym_identifier, - ACTIONS(869), 1, - anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, - anon_sym_STAR, - STATE(1918), 1, - sym_primary_expression, - STATE(1933), 1, - sym_string, - STATE(1985), 1, - sym_list_splat_pattern, - STATE(4074), 1, - sym_expression, - STATE(5376), 1, - sym__named_expression_lhs, + [50111] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(3399), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3397), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - STATE(3273), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(1981), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [57635] = 25, - ACTIONS(1225), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [50180] = 26, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(1227), 1, + ACTIONS(1234), 1, anon_sym_not, - ACTIONS(1229), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(1231), 1, + ACTIONS(1238), 1, anon_sym_lambda, - ACTIONS(1237), 1, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(1245), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1254), 1, anon_sym_new, - ACTIONS(1255), 1, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(1365), 1, + ACTIONS(1376), 1, anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(1378), 1, anon_sym_await, - ACTIONS(2190), 1, + ACTIONS(2159), 1, anon_sym_LPAREN, - ACTIONS(2514), 1, + ACTIONS(2521), 1, sym_identifier, - ACTIONS(2760), 1, + ACTIONS(2803), 1, anon_sym_STAR, STATE(1953), 1, sym_primary_expression, - STATE(2028), 1, + STATE(2056), 1, sym_string, - STATE(2426), 1, + STATE(2287), 1, sym_list_splat_pattern, - STATE(3769), 1, + STATE(3763), 1, sym_expression, - STATE(5528), 1, + STATE(5490), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1239), 3, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(1223), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1363), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2406), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -156379,11 +153219,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2403), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -156399,65 +153240,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57747] = 25, - ACTIONS(1110), 1, + [50295] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3183), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3185), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [50364] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3701), 1, + STATE(4287), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -156466,11 +153374,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -156486,413 +153395,858 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57859] = 25, - ACTIONS(2102), 1, + [50479] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3195), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2108), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2112), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2118), 1, - anon_sym_None, - ACTIONS(2122), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(2554), 1, - sym_identifier, - ACTIONS(2562), 1, - anon_sym_await, - ACTIONS(2796), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3197), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2798), 1, anon_sym_lambda, - ACTIONS(2800), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - STATE(1950), 1, - sym_primary_expression, - STATE(1968), 1, - sym_string, - STATE(2230), 1, - sym_list_splat_pattern, - STATE(4076), 1, - sym_expression, - STATE(5485), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [50548] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2110), 4, + ACTIONS(3199), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3201), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(3682), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2179), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [57971] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1134), 1, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(1138), 1, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1142), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1144), 1, + [50617] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3203), 14, + sym__dedent, sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(3408), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3205), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(3410), 1, anon_sym_lambda, - ACTIONS(3412), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - STATE(1959), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2297), 1, - sym_expression, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(5534), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [50686] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1126), 4, + ACTIONS(3401), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3403), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2405), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [58083] = 25, - ACTIONS(1110), 1, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(1112), 1, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [50755] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3207), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1118), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1122), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1134), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3209), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(1138), 1, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1142), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1144), 1, + [50824] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3217), 14, + sym__dedent, sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(3408), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3219), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(3410), 1, anon_sym_lambda, - ACTIONS(3412), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - STATE(1959), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2304), 1, - sym_expression, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(5534), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [50893] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, + ACTIONS(3405), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1136), 3, + ACTIONS(3407), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(1126), 4, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [50962] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3221), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3223), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2405), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [58195] = 25, - ACTIONS(1110), 1, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(1112), 1, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [51031] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3053), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1118), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1122), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1134), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3051), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(1138), 1, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1142), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1144), 1, + [51100] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2463), 14, + sym__dedent, sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(3408), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2465), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(3410), 1, anon_sym_lambda, - ACTIONS(3412), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - STATE(1959), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2320), 1, - sym_expression, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(5534), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [51169] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, + ACTIONS(3225), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1136), 3, + ACTIONS(3227), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(1126), 4, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [51238] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3229), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3231), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2405), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [58307] = 25, - ACTIONS(1110), 1, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [51307] = 26, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1234), 1, + anon_sym_not, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1238), 1, + anon_sym_lambda, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1142), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1254), 1, + anon_sym_new, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(1376), 1, + anon_sym_LBRACK, + ACTIONS(1378), 1, + anon_sym_await, + ACTIONS(2159), 1, + anon_sym_LPAREN, + ACTIONS(2521), 1, + sym_identifier, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(3408), 1, - anon_sym_not, - ACTIONS(3410), 1, - anon_sym_lambda, - ACTIONS(3412), 1, - anon_sym_new, - STATE(1959), 1, + STATE(1953), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2056), 1, sym_string, - STATE(2321), 1, - sym_expression, - STATE(2402), 1, + STATE(2287), 1, sym_list_splat_pattern, - STATE(5534), 1, + STATE(3862), 1, + sym_expression, + STATE(5490), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2405), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -156901,11 +154255,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -156921,65 +154276,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [58419] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, + [51422] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1142), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, anon_sym_STAR, - ACTIONS(3408), 1, - anon_sym_not, - ACTIONS(3410), 1, - anon_sym_lambda, - ACTIONS(3412), 1, - anon_sym_new, - STATE(1959), 1, + STATE(1927), 1, sym_primary_expression, - STATE(2037), 1, + STATE(1929), 1, sym_string, - STATE(2322), 1, - sym_expression, - STATE(2402), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(5534), 1, + STATE(3317), 1, + sym_expression, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2405), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -156988,11 +154344,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -157008,239 +154365,264 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [58531] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, + [51537] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3269), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1118), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1122), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - ACTIONS(3408), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3271), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(3410), 1, anon_sym_lambda, - ACTIONS(3412), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - STATE(1959), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2323), 1, - sym_expression, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(5534), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [51606] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1126), 4, + ACTIONS(3277), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3279), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2405), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [58643] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - ACTIONS(3408), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(3410), 1, anon_sym_lambda, - ACTIONS(3412), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - STATE(1959), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2329), 1, - sym_expression, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(5534), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [51675] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1126), 4, + ACTIONS(3281), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3283), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - STATE(2405), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [58755] = 25, - ACTIONS(2230), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [51744] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2236), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2250), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2308), 1, - anon_sym_not, - ACTIONS(2310), 1, + ACTIONS(2409), 1, + anon_sym_STAR, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(2312), 1, - anon_sym_lambda, - ACTIONS(2318), 1, - anon_sym_new, - ACTIONS(2570), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(2578), 1, + ACTIONS(2701), 1, anon_sym_await, - ACTIONS(2750), 1, - anon_sym_STAR, - STATE(1962), 1, + ACTIONS(2817), 1, + anon_sym_not, + ACTIONS(2819), 1, + anon_sym_lambda, + ACTIONS(2821), 1, + anon_sym_new, + STATE(1942), 1, sym_primary_expression, - STATE(2061), 1, + STATE(1976), 1, sym_string, - STATE(2307), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(2327), 1, + STATE(4065), 1, sym_expression, - STATE(5519), 1, + STATE(5493), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2574), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2314), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -157249,11 +154631,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2310), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -157269,68 +154652,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [58867] = 26, - ACTIONS(1277), 1, + [51859] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1283), 1, - anon_sym_not, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1287), 1, - anon_sym_lambda, - ACTIONS(1291), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1297), 1, - anon_sym_new, - ACTIONS(1299), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2886), 1, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(3388), 1, - anon_sym_await, - ACTIONS(3426), 1, - sym_identifier, - STATE(2043), 1, + ACTIONS(3365), 1, + anon_sym_not, + ACTIONS(3367), 1, + anon_sym_lambda, + ACTIONS(3369), 1, + anon_sym_new, + STATE(1960), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2028), 1, sym_string, - STATE(2556), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4009), 1, + STATE(2434), 1, sym_expression, - STATE(5288), 1, + STATE(5209), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - STATE(2526), 2, - sym_attribute, - sym_subscript, - ACTIONS(1293), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3428), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2427), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -157339,9 +154720,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 17, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -157357,65 +154741,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [58981] = 25, - ACTIONS(67), 1, + [51974] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(79), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(832), 1, - sym_identifier, - ACTIONS(869), 1, - anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1918), 1, + ACTIONS(3365), 1, + anon_sym_not, + ACTIONS(3367), 1, + anon_sym_lambda, + ACTIONS(3369), 1, + anon_sym_new, + STATE(1960), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2028), 1, sym_string, - STATE(1985), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4025), 1, + STATE(2436), 1, sym_expression, - STATE(5376), 1, + STATE(5209), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2427), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -157424,11 +154809,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -157444,65 +154830,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59093] = 25, - ACTIONS(1110), 1, + [52089] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + ACTIONS(3365), 1, + anon_sym_not, + ACTIONS(3367), 1, + anon_sym_lambda, + ACTIONS(3369), 1, + anon_sym_new, + STATE(1960), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4225), 1, + STATE(2437), 1, sym_expression, - STATE(5331), 1, + STATE(5209), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2427), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -157511,11 +154898,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -157531,65 +154919,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59205] = 25, - ACTIONS(1110), 1, + [52204] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, - anon_sym_not, - ACTIONS(1130), 1, - anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, - anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + ACTIONS(3365), 1, + anon_sym_not, + ACTIONS(3367), 1, + anon_sym_lambda, + ACTIONS(3369), 1, + anon_sym_new, + STATE(1960), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4257), 1, + STATE(2438), 1, sym_expression, - STATE(5331), 1, + STATE(5209), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2427), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -157598,11 +154987,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -157618,65 +155008,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59317] = 25, - ACTIONS(67), 1, + [52319] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(79), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(832), 1, - sym_identifier, - ACTIONS(869), 1, - anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1918), 1, + ACTIONS(3365), 1, + anon_sym_not, + ACTIONS(3367), 1, + anon_sym_lambda, + ACTIONS(3369), 1, + anon_sym_new, + STATE(1960), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2028), 1, sym_string, - STATE(1985), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3774), 1, + STATE(2439), 1, sym_expression, - STATE(5376), 1, + STATE(5209), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2427), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -157685,11 +155076,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -157705,65 +155097,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59429] = 25, - ACTIONS(2166), 1, + [52434] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2186), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2268), 1, - sym_identifier, - ACTIONS(2282), 1, - anon_sym_not, - ACTIONS(2284), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(3365), 1, + anon_sym_not, + ACTIONS(3367), 1, anon_sym_lambda, - ACTIONS(2290), 1, - anon_sym_await, - ACTIONS(2292), 1, + ACTIONS(3369), 1, anon_sym_new, - ACTIONS(2731), 1, - anon_sym_STAR, - STATE(1944), 1, + STATE(1960), 1, sym_primary_expression, - STATE(1984), 1, + STATE(2028), 1, sym_string, - STATE(2133), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(2269), 1, + STATE(2441), 1, sym_expression, - STATE(5551), 1, + STATE(5209), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2276), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 8, + STATE(2427), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -157772,11 +155165,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2246), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -157792,68 +155186,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59541] = 26, - ACTIONS(2204), 1, + [52549] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(3365), 1, + anon_sym_not, + ACTIONS(3367), 1, anon_sym_lambda, - ACTIONS(2404), 1, + ACTIONS(3369), 1, anon_sym_new, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(3374), 1, - anon_sym_await, - ACTIONS(3430), 1, - sym_identifier, - STATE(1967), 1, + STATE(1960), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2028), 1, sym_string, - STATE(2490), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4045), 1, + STATE(2442), 1, sym_expression, - STATE(5443), 1, + STATE(5209), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - STATE(2558), 2, - sym_attribute, - sym_subscript, - ACTIONS(2202), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3432), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2427), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -157862,9 +155254,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 17, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -157880,65 +155275,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59655] = 25, - ACTIONS(1225), 1, + [52664] = 26, + ACTIONS(2257), 1, + anon_sym_LPAREN, + ACTIONS(2263), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, - anon_sym_LT, - ACTIONS(1237), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(1255), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(1367), 1, - anon_sym_await, - ACTIONS(2190), 1, - anon_sym_LPAREN, - ACTIONS(2514), 1, - sym_identifier, - ACTIONS(2760), 1, - anon_sym_STAR, - ACTIONS(3396), 1, + ACTIONS(2299), 1, anon_sym_not, - ACTIONS(3398), 1, + ACTIONS(2301), 1, + anon_sym_LT, + ACTIONS(2303), 1, anon_sym_lambda, - ACTIONS(3400), 1, + ACTIONS(2309), 1, anon_sym_new, - STATE(1961), 1, + ACTIONS(2587), 1, + sym_identifier, + ACTIONS(2595), 1, + anon_sym_await, + ACTIONS(2728), 1, + anon_sym_STAR, + STATE(1956), 1, sym_primary_expression, - STATE(2028), 1, + STATE(2051), 1, sym_string, - STATE(2392), 1, - sym_expression, - STATE(2426), 1, + STATE(2326), 1, sym_list_splat_pattern, - STATE(5281), 1, + STATE(2385), 1, + sym_expression, + STATE(5492), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1239), 3, + ACTIONS(2255), 3, sym_integer, sym_true, sym_false, - ACTIONS(1223), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1363), 5, + ACTIONS(2591), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2406), 8, + STATE(2375), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -157947,11 +155343,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2403), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -157967,65 +155364,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59767] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, + [52779] = 27, + ACTIONS(1286), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1292), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1294), 1, + anon_sym_LT, + ACTIONS(1296), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(1958), 1, + ACTIONS(3215), 1, + anon_sym_await, + ACTIONS(3409), 1, + sym_identifier, + STATE(2031), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2152), 1, sym_string, - STATE(2402), 1, + STATE(2614), 1, sym_list_splat_pattern, - STATE(4234), 1, + STATE(4018), 1, sym_expression, - STATE(5331), 1, + STATE(5311), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + STATE(2605), 2, + sym_attribute, + sym_subscript, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(3411), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -158034,11 +155435,10 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2540), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -158054,152 +155454,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59879] = 25, - ACTIONS(1225), 1, - anon_sym_LBRACE, - ACTIONS(1227), 1, - anon_sym_not, - ACTIONS(1229), 1, - anon_sym_LT, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1237), 1, - anon_sym_None, - ACTIONS(1245), 1, - anon_sym_new, - ACTIONS(1255), 1, - anon_sym_sizeof, - ACTIONS(1257), 1, - sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(1367), 1, - anon_sym_await, - ACTIONS(2190), 1, - anon_sym_LPAREN, - ACTIONS(2514), 1, - sym_identifier, - ACTIONS(2760), 1, - anon_sym_STAR, - STATE(1953), 1, - sym_primary_expression, - STATE(2028), 1, - sym_string, - STATE(2426), 1, - sym_list_splat_pattern, - STATE(3757), 1, - sym_expression, - STATE(5528), 1, - sym__named_expression_lhs, + [52896] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1239), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1223), 4, + ACTIONS(2141), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1363), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2139), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - STATE(2406), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2403), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [59991] = 25, - ACTIONS(1110), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [52965] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4246), 1, + STATE(4234), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -158208,11 +155588,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -158228,181 +155609,205 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60103] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, + [53080] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3311), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1118), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1122), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1124), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3313), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1130), 1, anon_sym_lambda, - ACTIONS(1134), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1138), 1, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1140), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(1142), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - STATE(1958), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(4063), 1, - sym_expression, - STATE(5331), 1, - sym__named_expression_lhs, + [53149] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1126), 4, + ACTIONS(2177), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2175), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2935), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [60215] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1124), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1130), 1, anon_sym_lambda, - ACTIONS(1134), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1138), 1, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1140), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(1142), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - STATE(1958), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(4190), 1, - sym_expression, - STATE(5331), 1, - sym__named_expression_lhs, + [53218] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1126), 4, + ACTIONS(3315), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3317), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - STATE(2935), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [60327] = 25, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [53287] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -158411,40 +155816,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3843), 1, + STATE(4012), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -158454,13 +155860,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -158469,11 +155875,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -158489,65 +155896,198 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60439] = 25, - ACTIONS(2102), 1, + [53402] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3319), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2108), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2112), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2118), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3321), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(2122), 1, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(2124), 1, + [53471] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3323), 14, + sym__dedent, sym_string_start, - ACTIONS(2426), 1, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(2432), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3325), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [53540] = 26, + ACTIONS(2187), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, + anon_sym_LBRACK, + ACTIONS(2197), 1, + anon_sym_LBRACE, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, + anon_sym_None, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, + anon_sym_sizeof, + ACTIONS(2211), 1, + sym_string_start, + ACTIONS(2315), 1, + sym_identifier, + ACTIONS(2329), 1, anon_sym_not, - ACTIONS(2434), 1, + ACTIONS(2331), 1, anon_sym_LT, - ACTIONS(2436), 1, + ACTIONS(2333), 1, anon_sym_lambda, - ACTIONS(2442), 1, - anon_sym_new, - ACTIONS(2554), 1, - sym_identifier, - ACTIONS(2562), 1, + ACTIONS(2337), 1, anon_sym_await, - STATE(1950), 1, + ACTIONS(2339), 1, + anon_sym_new, + ACTIONS(2703), 1, + anon_sym_STAR, + STATE(1945), 1, sym_primary_expression, - STATE(1968), 1, + STATE(2004), 1, sym_string, - STATE(2230), 1, - sym_list_splat_pattern, - STATE(3650), 1, + STATE(2223), 1, sym_expression, - STATE(5332), 1, + STATE(2272), 1, + sym_list_splat_pattern, + STATE(5551), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3682), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -158556,11 +156096,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -158576,68 +156117,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60551] = 26, - ACTIONS(2102), 1, + [53655] = 27, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, - anon_sym_LT, - ACTIONS(2796), 1, + ACTIONS(2437), 1, anon_sym_not, - ACTIONS(2798), 1, + ACTIONS(2439), 1, + anon_sym_LT, + ACTIONS(2441), 1, anon_sym_lambda, - ACTIONS(2800), 1, + ACTIONS(2445), 1, anon_sym_new, - ACTIONS(3424), 1, + ACTIONS(2835), 1, + anon_sym_STAR, + ACTIONS(3303), 1, anon_sym_await, - ACTIONS(3434), 1, + ACTIONS(3413), 1, sym_identifier, - STATE(1950), 1, + STATE(2005), 1, sym_primary_expression, - STATE(1968), 1, + STATE(2096), 1, sym_string, - STATE(2230), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(4090), 1, + STATE(4088), 1, sym_expression, - STATE(5485), 1, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - STATE(2567), 2, + STATE(2533), 2, sym_attribute, sym_subscript, - ACTIONS(2100), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3436), 5, + ACTIONS(3415), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3682), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -158646,9 +156188,10 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 17, + STATE(2523), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -158664,181 +156207,469 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60665] = 25, - ACTIONS(67), 1, + [53772] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3327), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(73), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3329), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(79), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, + sym_integer, sym_identifier, - ACTIONS(869), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, - anon_sym_STAR, - STATE(1918), 1, - sym_primary_expression, - STATE(1933), 1, - sym_string, - STATE(1985), 1, - sym_list_splat_pattern, - STATE(3863), 1, - sym_expression, - STATE(5376), 1, - sym__named_expression_lhs, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [53841] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, + ACTIONS(3331), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(81), 3, + ACTIONS(3333), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(65), 4, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [53910] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3335), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3337), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - STATE(3273), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(1981), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [60777] = 25, - ACTIONS(2102), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [53979] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3339), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2108), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2112), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2118), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3341), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(2122), 1, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(2124), 1, + [54048] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3343), 14, + sym__dedent, sym_string_start, - ACTIONS(2426), 1, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(2434), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(2554), 1, - sym_identifier, - ACTIONS(2562), 1, - anon_sym_await, - ACTIONS(2796), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3345), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2798), 1, anon_sym_lambda, - ACTIONS(2800), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - STATE(1950), 1, - sym_primary_expression, - STATE(1968), 1, - sym_string, - STATE(2230), 1, - sym_list_splat_pattern, - STATE(4088), 1, - sym_expression, - STATE(5485), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [54117] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, + ACTIONS(3351), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2100), 3, + ACTIONS(3353), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(2110), 4, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [54186] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3361), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3363), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - STATE(3682), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2179), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [60889] = 25, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [54255] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -158847,40 +156678,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3358), 1, + STATE(4042), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -158890,13 +156722,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -158905,11 +156737,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -158925,239 +156758,396 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [61001] = 25, - ACTIONS(1277), 1, + [54370] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3077), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1281), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1283), 1, - anon_sym_not, - ACTIONS(1285), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(1287), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3079), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(1291), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1297), 1, - anon_sym_new, - ACTIONS(1299), 1, - anon_sym_sizeof, - ACTIONS(1301), 1, - sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + sym_integer, sym_identifier, - ACTIONS(2786), 1, anon_sym_await, - ACTIONS(2886), 1, - anon_sym_STAR, - STATE(2043), 1, - sym_primary_expression, - STATE(2171), 1, - sym_string, - STATE(2556), 1, - sym_list_splat_pattern, - STATE(2571), 1, - sym_expression, - STATE(5288), 1, - sym__named_expression_lhs, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [54439] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1279), 4, + ACTIONS(3377), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3379), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2524), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2521), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [61113] = 25, - ACTIONS(1277), 1, - anon_sym_LBRACK, - ACTIONS(1281), 1, - anon_sym_LBRACE, - ACTIONS(1283), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1287), 1, anon_sym_lambda, - ACTIONS(1291), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1297), 1, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(1299), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1301), 1, + [54508] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3381), 14, + sym__dedent, sym_string_start, - ACTIONS(2254), 1, anon_sym_LPAREN, - ACTIONS(2778), 1, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3383), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(2786), 1, anon_sym_await, - ACTIONS(2886), 1, - anon_sym_STAR, - STATE(2043), 1, - sym_primary_expression, - STATE(2171), 1, - sym_string, - STATE(2556), 1, - sym_list_splat_pattern, - STATE(4021), 1, - sym_expression, - STATE(5288), 1, - sym__named_expression_lhs, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [54577] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, + ACTIONS(3387), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1293), 3, + ACTIONS(3385), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(1279), 4, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [54646] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3391), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3389), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - STATE(2524), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2521), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [61225] = 25, - ACTIONS(1277), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [54715] = 26, + ACTIONS(1703), 1, + anon_sym_LPAREN, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(1283), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, + anon_sym_None, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, + anon_sym_sizeof, + ACTIONS(1727), 1, + sym_string_start, + ACTIONS(2409), 1, + anon_sym_STAR, + ACTIONS(2415), 1, anon_sym_not, - ACTIONS(1285), 1, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(1287), 1, + ACTIONS(2419), 1, anon_sym_lambda, - ACTIONS(1291), 1, - anon_sym_None, - ACTIONS(1297), 1, + ACTIONS(2425), 1, anon_sym_new, - ACTIONS(1299), 1, - anon_sym_sizeof, - ACTIONS(1301), 1, - sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(2701), 1, anon_sym_await, - ACTIONS(2886), 1, - anon_sym_STAR, - STATE(2043), 1, + STATE(1942), 1, sym_primary_expression, - STATE(2171), 1, + STATE(1976), 1, sym_string, - STATE(2556), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(4022), 1, + STATE(3725), 1, sym_expression, - STATE(5288), 1, + STATE(5368), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159166,11 +157156,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -159186,65 +157177,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [61337] = 25, - ACTIONS(2230), 1, + [54830] = 27, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2236), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2250), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2308), 1, - anon_sym_not, - ACTIONS(2310), 1, + ACTIONS(2409), 1, + anon_sym_STAR, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(2312), 1, + ACTIONS(2817), 1, + anon_sym_not, + ACTIONS(2819), 1, anon_sym_lambda, - ACTIONS(2318), 1, + ACTIONS(2821), 1, anon_sym_new, - ACTIONS(2570), 1, - sym_identifier, - ACTIONS(2578), 1, + ACTIONS(3375), 1, anon_sym_await, - ACTIONS(2750), 1, - anon_sym_STAR, - STATE(1962), 1, + ACTIONS(3417), 1, + sym_identifier, + STATE(1942), 1, sym_primary_expression, - STATE(2061), 1, + STATE(1976), 1, sym_string, - STATE(2307), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(3721), 1, + STATE(4084), 1, sym_expression, - STATE(5519), 1, + STATE(5493), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 3, + STATE(2544), 2, + sym_attribute, + sym_subscript, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2574), 5, + ACTIONS(3419), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2314), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159253,11 +157248,10 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2310), 19, + STATE(2175), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -159273,65 +157267,198 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [61449] = 25, - ACTIONS(2230), 1, + [54947] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3401), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3403), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [55016] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3405), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2236), 1, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3407), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [55085] = 26, + ACTIONS(1286), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, - anon_sym_None, - ACTIONS(2250), 1, - anon_sym_sizeof, - ACTIONS(2252), 1, - sym_string_start, - ACTIONS(2308), 1, + ACTIONS(1292), 1, anon_sym_not, - ACTIONS(2310), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(2312), 1, + ACTIONS(1296), 1, anon_sym_lambda, - ACTIONS(2318), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, + anon_sym_None, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1308), 1, anon_sym_new, - ACTIONS(2570), 1, + ACTIONS(1310), 1, + anon_sym_sizeof, + ACTIONS(1312), 1, + sym_string_start, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, sym_identifier, - ACTIONS(2578), 1, + ACTIONS(2744), 1, anon_sym_await, - ACTIONS(2750), 1, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(1962), 1, + STATE(2031), 1, sym_primary_expression, - STATE(2061), 1, + STATE(2152), 1, sym_string, - STATE(2307), 1, - sym_list_splat_pattern, - STATE(3724), 1, + STATE(2553), 1, sym_expression, - STATE(5519), 1, + STATE(2614), 1, + sym_list_splat_pattern, + STATE(5311), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2574), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2314), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159340,11 +157467,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2310), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -159360,239 +157488,330 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [61561] = 25, - ACTIONS(2230), 1, + [55200] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2149), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2236), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2240), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2246), 1, - anon_sym_None, - ACTIONS(2250), 1, - anon_sym_sizeof, - ACTIONS(2252), 1, - sym_string_start, - ACTIONS(2308), 1, - anon_sym_not, - ACTIONS(2310), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(2312), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2147), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(2318), 1, - anon_sym_new, - ACTIONS(2570), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(2578), 1, anon_sym_await, - ACTIONS(2750), 1, - anon_sym_STAR, - STATE(1962), 1, - sym_primary_expression, - STATE(2061), 1, - sym_string, - STATE(2307), 1, - sym_list_splat_pattern, - STATE(3727), 1, - sym_expression, - STATE(5519), 1, - sym__named_expression_lhs, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [55269] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2238), 4, + ACTIONS(3423), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2574), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3421), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2314), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2310), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [61673] = 25, - ACTIONS(2230), 1, - anon_sym_LPAREN, - ACTIONS(2236), 1, - anon_sym_LBRACK, - ACTIONS(2240), 1, - anon_sym_LBRACE, - ACTIONS(2246), 1, - anon_sym_None, - ACTIONS(2250), 1, - anon_sym_sizeof, - ACTIONS(2252), 1, - sym_string_start, - ACTIONS(2308), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2310), 1, - anon_sym_LT, - ACTIONS(2312), 1, anon_sym_lambda, - ACTIONS(2318), 1, - anon_sym_new, - ACTIONS(2570), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(2578), 1, anon_sym_await, - ACTIONS(2750), 1, - anon_sym_STAR, - STATE(1962), 1, - sym_primary_expression, - STATE(2061), 1, - sym_string, - STATE(2307), 1, - sym_list_splat_pattern, - STATE(2351), 1, - sym_expression, - STATE(5519), 1, - sym__named_expression_lhs, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [55338] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, + ACTIONS(3427), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2228), 3, + ACTIONS(3425), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(2238), 4, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [55407] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3431), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2574), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3429), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - STATE(2314), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2310), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [61785] = 25, - ACTIONS(2230), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [55476] = 26, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2236), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2250), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2308), 1, + ACTIONS(2437), 1, anon_sym_not, - ACTIONS(2310), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2312), 1, + ACTIONS(2441), 1, anon_sym_lambda, - ACTIONS(2318), 1, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2445), 1, anon_sym_new, - ACTIONS(2570), 1, + ACTIONS(2781), 1, sym_identifier, - ACTIONS(2578), 1, - anon_sym_await, - ACTIONS(2750), 1, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(1962), 1, + STATE(2005), 1, sym_primary_expression, - STATE(2061), 1, + STATE(2096), 1, sym_string, - STATE(2307), 1, - sym_list_splat_pattern, - STATE(3736), 1, + STATE(2463), 1, sym_expression, - STATE(5519), 1, + STATE(2477), 1, + sym_list_splat_pattern, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2574), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2314), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159601,11 +157820,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2310), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -159621,152 +157841,198 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [61897] = 25, - ACTIONS(2204), 1, + [55591] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3435), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2210), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2214), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, - anon_sym_not, - ACTIONS(2398), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(2400), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3433), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(2402), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2404), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - STATE(1967), 1, - sym_primary_expression, - STATE(2110), 1, - sym_string, - STATE(2459), 1, - sym_expression, - STATE(2490), 1, - sym_list_splat_pattern, - STATE(5443), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [55660] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2212), 4, + ACTIONS(3439), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3437), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - STATE(2512), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2509), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [62009] = 25, - ACTIONS(1277), 1, - anon_sym_LBRACK, - ACTIONS(1281), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [55729] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1283), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1285), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1287), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1291), 1, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1297), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(1299), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(2043), 1, + STATE(1927), 1, sym_primary_expression, - STATE(2171), 1, + STATE(1929), 1, sym_string, - STATE(2556), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(4080), 1, + STATE(4041), 1, sym_expression, - STATE(5288), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159775,11 +158041,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -159795,49 +158062,116 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62121] = 25, + [55844] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3349), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3347), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [55913] = 26, ACTIONS(67), 1, anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, ACTIONS(71), 1, anon_sym_LT, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(103), 1, - anon_sym_sizeof, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, + anon_sym_new, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - ACTIONS(3376), 1, - anon_sym_not, - ACTIONS(3378), 1, - anon_sym_lambda, - ACTIONS(3380), 1, - anon_sym_new, - STATE(1926), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(1991), 1, + STATE(3872), 1, sym_expression, - STATE(5366), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -159847,13 +158181,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(1997), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159862,11 +158196,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -159882,239 +158217,396 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62233] = 25, - ACTIONS(2230), 1, + [56028] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3443), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2236), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2240), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2246), 1, - anon_sym_None, - ACTIONS(2250), 1, - anon_sym_sizeof, - ACTIONS(2252), 1, - sym_string_start, - ACTIONS(2310), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(2570), 1, - sym_identifier, - ACTIONS(2578), 1, - anon_sym_await, - ACTIONS(2750), 1, - anon_sym_STAR, - ACTIONS(3414), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3441), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(3416), 1, anon_sym_lambda, - ACTIONS(3418), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - STATE(1955), 1, - sym_primary_expression, - STATE(2061), 1, - sym_string, - STATE(2307), 1, - sym_list_splat_pattern, - STATE(2345), 1, - sym_expression, - STATE(5246), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [56097] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2238), 4, + ACTIONS(3447), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2574), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3445), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - STATE(2314), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2310), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [62345] = 25, - ACTIONS(2230), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [56166] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3451), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2236), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2240), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2246), 1, - anon_sym_None, - ACTIONS(2250), 1, - anon_sym_sizeof, - ACTIONS(2252), 1, - sym_string_start, - ACTIONS(2308), 1, - anon_sym_not, - ACTIONS(2310), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(2312), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3449), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(2318), 1, - anon_sym_new, - ACTIONS(2570), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(2578), 1, anon_sym_await, - ACTIONS(2750), 1, - anon_sym_STAR, - STATE(1962), 1, - sym_primary_expression, - STATE(2061), 1, - sym_string, - STATE(2307), 1, - sym_list_splat_pattern, - STATE(3785), 1, - sym_expression, - STATE(5519), 1, - sym__named_expression_lhs, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [56235] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, + ACTIONS(3455), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2228), 3, + ACTIONS(3453), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(2238), 4, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [56304] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2153), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2574), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2151), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - STATE(2314), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2310), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [62457] = 25, - ACTIONS(2166), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [56373] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, - anon_sym_None, - ACTIONS(2186), 1, - anon_sym_sizeof, - ACTIONS(2188), 1, - sym_string_start, - ACTIONS(2268), 1, - sym_identifier, - ACTIONS(2282), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(2284), 1, - anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(2290), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(2292), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(2731), 1, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1944), 1, + STATE(1963), 1, sym_primary_expression, - STATE(1984), 1, + STATE(2028), 1, sym_string, - STATE(2133), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3797), 1, + STATE(4302), 1, sym_expression, - STATE(5551), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2276), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160123,11 +158615,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2246), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -160143,65 +158636,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62569] = 25, - ACTIONS(1225), 1, + [56488] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2485), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2487), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [56557] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1237), 1, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1255), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(1367), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(2190), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(2514), 1, - sym_identifier, - ACTIONS(2760), 1, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, anon_sym_STAR, - ACTIONS(3396), 1, - anon_sym_not, - ACTIONS(3398), 1, - anon_sym_lambda, - ACTIONS(3400), 1, - anon_sym_new, - STATE(1961), 1, + STATE(1927), 1, sym_primary_expression, - STATE(2028), 1, + STATE(1929), 1, sym_string, - STATE(2420), 1, - sym_expression, - STATE(2426), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(5281), 1, + STATE(3874), 1, + sym_expression, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1239), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1223), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1363), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2406), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160210,11 +158770,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2403), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -160230,65 +158791,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62681] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, + [56672] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1142), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, anon_sym_STAR, - ACTIONS(3402), 1, + ACTIONS(3245), 1, anon_sym_not, - ACTIONS(3404), 1, + ACTIONS(3247), 1, anon_sym_lambda, - ACTIONS(3406), 1, + ACTIONS(3249), 1, anon_sym_new, - STATE(2037), 1, - sym_string, - STATE(2273), 1, + STATE(1921), 1, sym_primary_expression, - STATE(2402), 1, + STATE(1929), 1, + sym_string, + STATE(1975), 1, sym_list_splat_pattern, - STATE(2936), 1, + STATE(1987), 1, sym_expression, - STATE(5304), 1, + STATE(5399), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(1985), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160297,11 +158859,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -160317,152 +158880,198 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62793] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, + [56787] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3149), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1118), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1122), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(2806), 1, - anon_sym_STAR, - ACTIONS(3408), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3151), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(3410), 1, anon_sym_lambda, - ACTIONS(3412), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - STATE(1959), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2290), 1, - sym_expression, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(5534), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [56856] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1126), 4, + ACTIONS(3153), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3155), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - STATE(2405), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [62905] = 25, - ACTIONS(2230), 1, - anon_sym_LPAREN, - ACTIONS(2236), 1, - anon_sym_LBRACK, - ACTIONS(2240), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [56925] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2250), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2310), 1, - anon_sym_LT, - ACTIONS(2570), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(2578), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(2750), 1, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, anon_sym_STAR, - ACTIONS(3414), 1, - anon_sym_not, - ACTIONS(3416), 1, - anon_sym_lambda, - ACTIONS(3418), 1, - anon_sym_new, - STATE(1955), 1, + STATE(1927), 1, sym_primary_expression, - STATE(2061), 1, + STATE(1929), 1, sym_string, - STATE(2307), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(2335), 1, + STATE(3876), 1, sym_expression, - STATE(5246), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2574), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2314), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160471,11 +159080,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2310), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -160491,65 +159101,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63017] = 25, - ACTIONS(67), 1, + [57040] = 26, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(79), 1, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(103), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(832), 1, - sym_identifier, - ACTIONS(869), 1, + ACTIONS(1376), 1, + anon_sym_LBRACK, + ACTIONS(1378), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(2159), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2521), 1, + sym_identifier, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(3376), 1, + ACTIONS(3355), 1, anon_sym_not, - ACTIONS(3378), 1, + ACTIONS(3357), 1, anon_sym_lambda, - ACTIONS(3380), 1, + ACTIONS(3359), 1, anon_sym_new, - STATE(1926), 1, + STATE(1954), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2056), 1, sym_string, - STATE(1985), 1, + STATE(2287), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(2315), 1, sym_expression, - STATE(5366), 1, + STATE(5307), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1246), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(1374), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(1997), 8, + STATE(2303), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160558,11 +159169,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -160578,65 +159190,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63129] = 25, - ACTIONS(2230), 1, + [57155] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3395), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2236), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2240), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2246), 1, - anon_sym_None, - ACTIONS(2250), 1, - anon_sym_sizeof, - ACTIONS(2252), 1, - sym_string_start, - ACTIONS(2308), 1, - anon_sym_not, - ACTIONS(2310), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(2312), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3393), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(2318), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(2570), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [57224] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(2578), 1, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, ACTIONS(2750), 1, anon_sym_STAR, - STATE(1962), 1, - sym_primary_expression, - STATE(2061), 1, + ACTIONS(3161), 1, + anon_sym_not, + ACTIONS(3163), 1, + anon_sym_lambda, + ACTIONS(3165), 1, + anon_sym_new, + STATE(2028), 1, sym_string, - STATE(2307), 1, + STATE(2157), 1, + sym_primary_expression, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3767), 1, + STATE(2940), 1, sym_expression, - STATE(5519), 1, + STATE(5404), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2574), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2314), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160645,11 +159324,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2310), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -160665,65 +159345,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63241] = 25, - ACTIONS(2230), 1, - anon_sym_LPAREN, - ACTIONS(2236), 1, - anon_sym_LBRACK, - ACTIONS(2240), 1, + [57339] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2250), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2310), 1, - anon_sym_LT, - ACTIONS(2570), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(2578), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(2750), 1, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, anon_sym_STAR, - ACTIONS(3414), 1, - anon_sym_not, - ACTIONS(3416), 1, - anon_sym_lambda, - ACTIONS(3418), 1, - anon_sym_new, - STATE(1955), 1, + STATE(1927), 1, sym_primary_expression, - STATE(2061), 1, + STATE(1929), 1, sym_string, - STATE(2307), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(2327), 1, + STATE(3348), 1, sym_expression, - STATE(5246), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2574), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2314), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160732,11 +159413,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2310), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -160752,65 +159434,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63353] = 25, - ACTIONS(2166), 1, + [57454] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2186), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2268), 1, - sym_identifier, - ACTIONS(2284), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2290), 1, - anon_sym_await, - ACTIONS(2731), 1, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(3346), 1, + ACTIONS(3365), 1, anon_sym_not, - ACTIONS(3348), 1, + ACTIONS(3367), 1, anon_sym_lambda, - ACTIONS(3350), 1, + ACTIONS(3369), 1, anon_sym_new, - STATE(1947), 1, + STATE(1960), 1, sym_primary_expression, - STATE(1984), 1, + STATE(2028), 1, sym_string, - STATE(2133), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(2269), 1, + STATE(2433), 1, sym_expression, - STATE(5276), 1, + STATE(5209), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2276), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 8, + STATE(2427), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160819,11 +159502,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2246), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -160839,65 +159523,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63465] = 25, - ACTIONS(2102), 1, + [57569] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3167), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3169), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [57638] = 26, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2301), 1, anon_sym_LT, - ACTIONS(2554), 1, + ACTIONS(2587), 1, sym_identifier, - ACTIONS(2562), 1, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(3352), 1, + ACTIONS(2728), 1, + anon_sym_STAR, + ACTIONS(3233), 1, anon_sym_not, - ACTIONS(3354), 1, + ACTIONS(3235), 1, anon_sym_lambda, - ACTIONS(3356), 1, + ACTIONS(3237), 1, anon_sym_new, - STATE(1938), 1, + STATE(1957), 1, sym_primary_expression, - STATE(1968), 1, + STATE(2051), 1, sym_string, - STATE(2123), 1, - sym_expression, - STATE(2230), 1, + STATE(2326), 1, sym_list_splat_pattern, - STATE(5292), 1, + STATE(2385), 1, + sym_expression, + STATE(5282), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, + ACTIONS(2255), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(2591), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2276), 8, + STATE(2375), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160906,11 +159657,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -160926,65 +159678,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63577] = 25, - ACTIONS(1277), 1, + [57753] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3171), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1281), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1285), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(1291), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3173), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [57822] = 26, + ACTIONS(2187), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, + anon_sym_LBRACK, + ACTIONS(2197), 1, + anon_sym_LBRACE, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(1299), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, + ACTIONS(2315), 1, sym_identifier, - ACTIONS(2786), 1, + ACTIONS(2331), 1, + anon_sym_LT, + ACTIONS(2337), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2703), 1, anon_sym_STAR, - ACTIONS(3358), 1, + ACTIONS(3239), 1, anon_sym_not, - ACTIONS(3360), 1, + ACTIONS(3241), 1, anon_sym_lambda, - ACTIONS(3362), 1, + ACTIONS(3243), 1, anon_sym_new, - STATE(2054), 1, + STATE(1952), 1, sym_primary_expression, - STATE(2171), 1, + STATE(2004), 1, sym_string, - STATE(2556), 1, - sym_list_splat_pattern, - STATE(2571), 1, + STATE(2223), 1, sym_expression, - STATE(5310), 1, + STATE(2272), 1, + sym_list_splat_pattern, + STATE(5320), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1293), 3, + ACTIONS(2185), 3, sym_integer, sym_true, sym_false, - ACTIONS(1279), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2784), 5, + ACTIONS(2323), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2524), 8, + STATE(2171), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160993,11 +159812,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2521), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -161013,65 +159833,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63689] = 25, - ACTIONS(2204), 1, + [57937] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3175), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3177), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [58006] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2398), 1, + ACTIONS(2409), 1, + anon_sym_STAR, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2742), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(2878), 1, - anon_sym_STAR, - ACTIONS(3364), 1, + ACTIONS(2701), 1, + anon_sym_await, + ACTIONS(3263), 1, anon_sym_not, - ACTIONS(3366), 1, + ACTIONS(3265), 1, anon_sym_lambda, - ACTIONS(3368), 1, + ACTIONS(3267), 1, anon_sym_new, - STATE(1989), 1, + STATE(1938), 1, sym_primary_expression, - STATE(2110), 1, + STATE(1976), 1, sym_string, - STATE(2459), 1, - sym_expression, - STATE(2490), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(5334), 1, + STATE(2253), 1, + sym_expression, + STATE(5337), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2251), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161080,11 +159967,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -161100,65 +159988,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63801] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, + [58121] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3179), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1118), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1122), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1124), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3181), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1130), 1, anon_sym_lambda, - ACTIONS(1134), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1138), 1, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1140), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(1142), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, + [58190] = 26, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, + anon_sym_LBRACE, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, + anon_sym_None, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1310), 1, + anon_sym_sizeof, + ACTIONS(1312), 1, + sym_string_start, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, + sym_identifier, + ACTIONS(2744), 1, + anon_sym_await, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(1958), 1, + ACTIONS(3285), 1, + anon_sym_not, + ACTIONS(3287), 1, + anon_sym_lambda, + ACTIONS(3289), 1, + anon_sym_new, + STATE(2058), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2152), 1, sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(4202), 1, + STATE(2553), 1, sym_expression, - STATE(5331), 1, + STATE(2614), 1, + sym_list_splat_pattern, + STATE(5351), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1302), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(2742), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2557), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161167,11 +160122,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -161187,7 +160143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63913] = 25, + [58305] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -161196,40 +160152,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(4228), 1, + STATE(3352), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -161239,13 +160196,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161254,11 +160211,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -161274,65 +160232,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64025] = 25, - ACTIONS(67), 1, + [58420] = 26, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(79), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(97), 1, - anon_sym_new, - ACTIONS(103), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(832), 1, - sym_identifier, - ACTIONS(869), 1, + ACTIONS(2439), 1, + anon_sym_LT, + ACTIONS(2443), 1, anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2781), 1, + sym_identifier, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(1918), 1, + ACTIONS(3291), 1, + anon_sym_not, + ACTIONS(3293), 1, + anon_sym_lambda, + ACTIONS(3295), 1, + anon_sym_new, + STATE(2023), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2096), 1, sym_string, - STATE(1985), 1, - sym_list_splat_pattern, - STATE(3930), 1, + STATE(2463), 1, sym_expression, - STATE(5376), 1, + STATE(2477), 1, + sym_list_splat_pattern, + STATE(5369), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161341,11 +160300,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -161361,65 +160321,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64137] = 25, - ACTIONS(67), 1, + [58535] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(79), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(103), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(832), 1, - sym_identifier, - ACTIONS(869), 1, - anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1963), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2028), 1, sym_string, - STATE(1985), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3941), 1, + STATE(4232), 1, sym_expression, - STATE(5376), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161428,11 +160389,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -161448,65 +160410,264 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64249] = 25, - ACTIONS(67), 1, + [58650] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3187), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(69), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3189), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(71), 1, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [58719] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3191), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(73), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3193), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(79), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(97), 1, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(103), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(105), 1, + [58788] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3423), 14, sym_string_start, - ACTIONS(832), 1, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3421), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(869), 1, anon_sym_await, - ACTIONS(1178), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [58857] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1129), 1, + anon_sym_not, + ACTIONS(1135), 1, + anon_sym_lambda, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1147), 1, + anon_sym_new, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1963), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2028), 1, sym_string, - STATE(1985), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3972), 1, + STATE(4231), 1, sym_expression, - STATE(5376), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161515,11 +160676,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -161535,65 +160697,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64361] = 25, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, + [58972] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2396), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(2402), 1, - anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(561), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1967), 1, + STATE(1927), 1, sym_primary_expression, - STATE(2110), 1, + STATE(1929), 1, sym_string, - STATE(2490), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3898), 1, + STATE(4252), 1, sym_expression, - STATE(5443), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161602,11 +160765,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -161622,7 +160786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64473] = 25, + [59087] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -161631,40 +160795,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3902), 1, + STATE(3884), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -161674,13 +160839,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161689,11 +160854,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -161709,7 +160875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64585] = 25, + [59202] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -161718,40 +160884,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3836), 1, + STATE(3957), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -161761,13 +160928,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161776,11 +160943,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -161796,7 +160964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64697] = 25, + [59317] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -161805,40 +160973,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3924), 1, + STATE(3958), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -161848,13 +161017,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161863,11 +161032,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -161883,65 +161053,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64809] = 25, - ACTIONS(67), 1, + [59432] = 26, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, + anon_sym_None, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, + anon_sym_sizeof, + ACTIONS(2253), 1, + sym_string_start, + ACTIONS(2437), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(2441), 1, anon_sym_lambda, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(97), 1, + ACTIONS(2443), 1, + anon_sym_await, + ACTIONS(2445), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, + ACTIONS(2781), 1, sym_identifier, - ACTIONS(869), 1, - anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(2005), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2096), 1, sym_string, - STATE(1985), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(3926), 1, + STATE(3979), 1, sym_expression, - STATE(5376), 1, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161950,11 +161121,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -161970,7 +161142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64921] = 25, + [59547] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -161979,40 +161151,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3931), 1, + STATE(3989), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -162022,13 +161195,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162037,11 +161210,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -162057,7 +161231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65033] = 25, + [59662] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -162066,40 +161240,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3839), 1, + STATE(3990), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -162109,13 +161284,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162124,11 +161299,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -162144,7 +161320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65145] = 25, + [59777] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -162153,40 +161329,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3862), 1, + STATE(3831), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -162196,13 +161373,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162211,11 +161388,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -162231,7 +161409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65257] = 25, + [59892] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -162240,40 +161418,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3869), 1, + STATE(3832), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -162283,13 +161462,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162298,11 +161477,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -162318,7 +161498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65369] = 25, + [60007] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -162327,40 +161507,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3872), 1, + STATE(3833), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -162370,13 +161551,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162385,11 +161566,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -162405,7 +161587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65481] = 25, + [60122] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -162414,40 +161596,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3875), 1, + STATE(3839), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(576), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3283), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2021), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [60237] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(83), 1, sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, + sym_primary_expression, + STATE(1929), 1, + sym_string, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(3840), 1, + sym_expression, + STATE(5367), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, ACTIONS(81), 3, sym_integer, sym_true, @@ -162457,13 +161729,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162472,11 +161744,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -162492,7 +161765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65593] = 25, + [60352] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -162501,40 +161774,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3960), 1, + STATE(3841), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(576), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3283), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2021), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [60467] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(83), 1, sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, + sym_primary_expression, + STATE(1929), 1, + sym_string, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(3842), 1, + sym_expression, + STATE(5367), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, ACTIONS(81), 3, sym_integer, sym_true, @@ -162544,13 +161907,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162559,11 +161922,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -162579,7 +161943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65705] = 25, + [60582] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -162588,40 +161952,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3963), 1, + STATE(3843), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(576), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3283), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2021), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [60697] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(83), 1, sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, + sym_primary_expression, + STATE(1929), 1, + sym_string, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(3846), 1, + sym_expression, + STATE(5367), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, ACTIONS(81), 3, sym_integer, sym_true, @@ -162631,13 +162085,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162646,11 +162100,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -162666,7 +162121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65817] = 25, + [60812] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -162675,40 +162130,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3829), 1, + STATE(3847), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -162718,13 +162174,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162733,11 +162189,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -162753,7 +162210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65929] = 25, + [60927] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -162762,40 +162219,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3830), 1, + STATE(3848), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -162805,13 +162263,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162820,11 +162278,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -162840,7 +162299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66041] = 25, + [61042] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -162849,40 +162308,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3835), 1, + STATE(3849), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(576), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3283), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2021), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [61157] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, + anon_sym_None, + ACTIONS(83), 1, sym_float, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, + sym_primary_expression, + STATE(1929), 1, + sym_string, + STATE(1975), 1, + sym_list_splat_pattern, + STATE(3852), 1, + sym_expression, + STATE(5367), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, ACTIONS(81), 3, sym_integer, sym_true, @@ -162892,13 +162441,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162907,11 +162456,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -162927,65 +162477,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66153] = 25, - ACTIONS(1110), 1, + [61272] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4157), 1, + STATE(4207), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162994,11 +162545,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -163014,7 +162566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66265] = 25, + [61387] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -163023,40 +162575,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3981), 1, + STATE(3878), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -163066,13 +162619,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163081,11 +162634,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -163101,7 +162655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66377] = 25, + [61502] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -163110,40 +162664,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3970), 1, + STATE(3886), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -163153,13 +162708,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163168,11 +162723,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -163188,7 +162744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66489] = 25, + [61617] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -163197,40 +162753,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3914), 1, + STATE(3887), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -163240,13 +162797,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163255,11 +162812,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -163275,65 +162833,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66601] = 25, - ACTIONS(2204), 1, + [61732] = 26, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2437), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(2441), 1, anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(2443), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2445), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(2781), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(1967), 1, + STATE(2005), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2096), 1, sym_string, - STATE(2490), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(3955), 1, + STATE(3891), 1, sym_expression, - STATE(5443), 1, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163342,11 +162901,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -163362,7 +162922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66713] = 25, + [61847] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -163371,40 +162931,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3856), 1, + STATE(3893), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -163414,13 +162975,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163429,11 +162990,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -163449,7 +163011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66825] = 25, + [61962] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -163458,40 +163020,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3865), 1, + STATE(3894), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -163501,13 +163064,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163516,11 +163079,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -163536,7 +163100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66937] = 25, + [62077] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -163545,40 +163109,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3907), 1, + STATE(3902), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -163588,13 +163153,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163603,11 +163168,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -163623,7 +163189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67049] = 25, + [62192] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -163632,40 +163198,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3908), 1, + STATE(3903), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -163675,13 +163242,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163690,11 +163257,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -163710,7 +163278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67161] = 25, + [62307] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -163719,40 +163287,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3913), 1, + STATE(3904), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -163762,13 +163331,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163777,11 +163346,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -163797,7 +163367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67273] = 25, + [62422] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -163806,40 +163376,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3978), 1, + STATE(3913), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -163849,13 +163420,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163864,11 +163435,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -163884,7 +163456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67385] = 25, + [62537] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -163893,40 +163465,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3980), 1, + STATE(3914), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -163936,13 +163509,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163951,11 +163524,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -163971,7 +163545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67497] = 25, + [62652] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -163980,40 +163554,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3983), 1, + STATE(3915), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -164023,13 +163598,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164038,11 +163613,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -164058,7 +163634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67609] = 25, + [62767] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -164067,40 +163643,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3984), 1, + STATE(3916), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -164110,13 +163687,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164125,11 +163702,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -164145,7 +163723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67721] = 25, + [62882] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -164154,40 +163732,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3986), 1, + STATE(3917), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -164197,13 +163776,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164212,11 +163791,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -164232,7 +163812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67833] = 25, + [62997] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -164241,40 +163821,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3837), 1, + STATE(3920), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -164284,13 +163865,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164299,11 +163880,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -164319,7 +163901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67945] = 25, + [63112] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -164328,40 +163910,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3838), 1, + STATE(3921), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -164371,13 +163954,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164386,11 +163969,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -164406,7 +163990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68057] = 25, + [63227] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -164415,40 +163999,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3845), 1, + STATE(4003), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -164458,13 +164043,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164473,11 +164058,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -164493,7 +164079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68169] = 25, + [63342] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -164502,40 +164088,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3854), 1, + STATE(3923), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -164545,13 +164132,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164560,11 +164147,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -164580,7 +164168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68281] = 25, + [63457] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -164589,40 +164177,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(73), 1, anon_sym_lambda, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(97), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(103), 1, - anon_sym_sizeof, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3909), 1, + STATE(3924), 1, sym_expression, - STATE(5376), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -164632,13 +164221,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164647,11 +164236,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -164667,65 +164257,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68393] = 25, - ACTIONS(1110), 1, + [63572] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4151), 1, + STATE(4306), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164734,11 +164325,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -164754,65 +164346,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68505] = 25, - ACTIONS(2204), 1, + [63687] = 26, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2224), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2396), 1, + ACTIONS(2437), 1, anon_sym_not, - ACTIONS(2398), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2400), 1, + ACTIONS(2441), 1, anon_sym_lambda, - ACTIONS(2402), 1, + ACTIONS(2443), 1, anon_sym_await, - ACTIONS(2404), 1, + ACTIONS(2445), 1, anon_sym_new, - ACTIONS(2742), 1, + ACTIONS(2781), 1, sym_identifier, - ACTIONS(2878), 1, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(1967), 1, + STATE(2005), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2096), 1, sym_string, - STATE(2490), 1, + STATE(2477), 1, sym_list_splat_pattern, - STATE(3866), 1, + STATE(3929), 1, sym_expression, - STATE(5443), 1, + STATE(5456), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 3, + ACTIONS(2227), 3, sym_integer, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2390), 5, + ACTIONS(2431), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 8, + STATE(2496), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164821,11 +164414,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2509), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -164841,65 +164435,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68617] = 25, - ACTIONS(1110), 1, + [63802] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4169), 1, + STATE(4154), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164908,11 +164503,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -164928,65 +164524,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68729] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, + [63917] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1927), 1, sym_primary_expression, - STATE(2037), 1, + STATE(1929), 1, sym_string, - STATE(2402), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(4174), 1, + STATE(3293), 1, sym_expression, - STATE(5331), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164995,11 +164592,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -165015,65 +164613,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68841] = 25, - ACTIONS(1110), 1, + [64032] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4182), 1, + STATE(4168), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165082,11 +164681,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -165102,65 +164702,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68953] = 25, - ACTIONS(1110), 1, + [64147] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4186), 1, + STATE(4182), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165169,11 +164770,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -165189,65 +164791,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69065] = 25, - ACTIONS(1110), 1, + [64262] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3427), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3425), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [64331] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4192), 1, + STATE(4193), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165256,11 +164925,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -165276,65 +164946,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69177] = 25, - ACTIONS(1110), 1, + [64446] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4199), 1, + STATE(4206), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165343,11 +165014,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -165363,65 +165035,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69289] = 25, - ACTIONS(1110), 1, + [64561] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4203), 1, + STATE(4212), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165430,11 +165103,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -165450,65 +165124,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69401] = 25, - ACTIONS(1110), 1, + [64676] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3431), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3429), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(1112), 1, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [64745] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4206), 1, + STATE(4223), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165517,11 +165258,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -165537,65 +165279,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69513] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, + [64860] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(99), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2466), 1, - anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1927), 1, sym_primary_expression, - STATE(2037), 1, + STATE(1929), 1, sym_string, - STATE(2402), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(4213), 1, + STATE(3357), 1, sym_expression, - STATE(5331), 1, + STATE(5367), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165604,11 +165347,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -165624,65 +165368,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69625] = 25, - ACTIONS(1110), 1, + [64975] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4215), 1, + STATE(4230), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165691,11 +165436,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -165711,65 +165457,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69737] = 25, - ACTIONS(1110), 1, + [65090] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3435), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3433), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(1112), 1, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [65159] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4217), 1, + STATE(4233), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165778,11 +165591,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -165798,65 +165612,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69849] = 25, - ACTIONS(1110), 1, + [65274] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4220), 1, + STATE(4235), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165865,11 +165680,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -165885,65 +165701,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69961] = 25, - ACTIONS(1110), 1, + [65389] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4222), 1, + STATE(4237), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165952,11 +165769,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -165972,65 +165790,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70073] = 25, - ACTIONS(1110), 1, + [65504] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4224), 1, + STATE(4323), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166039,11 +165858,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -166059,65 +165879,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70185] = 25, - ACTIONS(1110), 1, + [65619] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4315), 1, + STATE(4244), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166126,11 +165947,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -166146,65 +165968,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70297] = 25, - ACTIONS(1110), 1, + [65734] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3439), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3437), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(1112), 1, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [65803] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4235), 1, + STATE(4245), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166213,11 +166102,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -166233,65 +166123,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70409] = 25, - ACTIONS(1110), 1, + [65918] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4238), 1, + STATE(4254), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166300,11 +166191,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -166320,65 +166212,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70521] = 25, - ACTIONS(2166), 1, - anon_sym_LPAREN, - ACTIONS(2172), 1, - anon_sym_LBRACK, - ACTIONS(2176), 1, + [66033] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2186), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2268), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(2282), 1, + ACTIONS(598), 1, + anon_sym_await, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2843), 1, + anon_sym_STAR, + ACTIONS(3245), 1, anon_sym_not, - ACTIONS(2284), 1, - anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(3247), 1, anon_sym_lambda, - ACTIONS(2290), 1, - anon_sym_await, - ACTIONS(2292), 1, + ACTIONS(3249), 1, anon_sym_new, - ACTIONS(2731), 1, - anon_sym_STAR, - STATE(1944), 1, + STATE(1921), 1, sym_primary_expression, - STATE(1984), 1, + STATE(1929), 1, sym_string, - STATE(2133), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3689), 1, + STATE(1981), 1, sym_expression, - STATE(5551), 1, + STATE(5399), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2276), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 8, + STATE(1985), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166387,11 +166280,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2246), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -166407,65 +166301,198 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70633] = 25, - ACTIONS(2166), 1, + [66148] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3443), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2172), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2176), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2182), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3441), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(2186), 1, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(2188), 1, + [66217] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3447), 14, sym_string_start, - ACTIONS(2268), 1, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3445), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(2282), 1, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [66286] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(2284), 1, - anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(2290), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(2292), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(2731), 1, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1944), 1, + STATE(1963), 1, sym_primary_expression, - STATE(1984), 1, + STATE(2028), 1, sym_string, - STATE(2133), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3716), 1, + STATE(4257), 1, sym_expression, - STATE(5551), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2276), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166474,11 +166501,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2246), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -166494,65 +166522,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70745] = 25, - ACTIONS(1110), 1, + [66401] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3451), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3449), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [66470] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4240), 1, + STATE(4259), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166561,11 +166656,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -166581,152 +166677,264 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70857] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, + [66585] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3251), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1118), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1122), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2466), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(2508), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3253), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2510), 1, anon_sym_lambda, - ACTIONS(2512), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(2806), 1, - anon_sym_STAR, - STATE(1958), 1, - sym_primary_expression, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3800), 1, - sym_expression, - STATE(5479), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [66654] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, + ACTIONS(3255), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1136), 3, + ACTIONS(3257), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(1126), 4, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [66723] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3259), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3261), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - STATE(2935), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2436), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [70969] = 25, - ACTIONS(1110), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [66792] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1129), 1, + anon_sym_not, + ACTIONS(1135), 1, + anon_sym_lambda, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1142), 1, + ACTIONS(1147), 1, + anon_sym_new, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2508), 1, - anon_sym_not, - ACTIONS(2510), 1, - anon_sym_lambda, - ACTIONS(2512), 1, - anon_sym_new, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3801), 1, + STATE(4261), 1, sym_expression, - STATE(5479), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166735,11 +166943,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -166755,65 +166964,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71081] = 25, - ACTIONS(1110), 1, + [66907] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2508), 1, + ACTIONS(2491), 1, anon_sym_not, - ACTIONS(2510), 1, + ACTIONS(2493), 1, anon_sym_lambda, - ACTIONS(2512), 1, + ACTIONS(2495), 1, anon_sym_new, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3802), 1, + STATE(3817), 1, sym_expression, - STATE(5479), 1, + STATE(5487), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166822,11 +167032,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -166842,65 +167053,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71193] = 25, - ACTIONS(1110), 1, + [67022] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2508), 1, + ACTIONS(2491), 1, anon_sym_not, - ACTIONS(2510), 1, + ACTIONS(2493), 1, anon_sym_lambda, - ACTIONS(2512), 1, + ACTIONS(2495), 1, anon_sym_new, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(2937), 1, + STATE(3818), 1, sym_expression, - STATE(5479), 1, + STATE(5487), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166909,11 +167121,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -166929,65 +167142,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71305] = 25, - ACTIONS(1110), 1, + [67137] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2508), 1, + ACTIONS(2491), 1, anon_sym_not, - ACTIONS(2510), 1, + ACTIONS(2493), 1, anon_sym_lambda, - ACTIONS(2512), 1, + ACTIONS(2495), 1, anon_sym_new, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3803), 1, + STATE(3819), 1, sym_expression, - STATE(5479), 1, + STATE(5487), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166996,11 +167210,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -167016,65 +167231,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71417] = 25, - ACTIONS(2102), 1, + [67252] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2554), 1, - sym_identifier, - ACTIONS(2562), 1, - anon_sym_await, - ACTIONS(2796), 1, + ACTIONS(2491), 1, anon_sym_not, - ACTIONS(2798), 1, + ACTIONS(2493), 1, anon_sym_lambda, - ACTIONS(2800), 1, + ACTIONS(2495), 1, anon_sym_new, - STATE(1950), 1, + ACTIONS(2750), 1, + anon_sym_STAR, + STATE(1963), 1, sym_primary_expression, - STATE(1968), 1, + STATE(2028), 1, sym_string, - STATE(2230), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4133), 1, + STATE(2943), 1, sym_expression, - STATE(5485), 1, + STATE(5487), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3682), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167083,11 +167299,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -167103,65 +167320,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71529] = 25, - ACTIONS(2166), 1, + [67367] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2186), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2268), 1, - sym_identifier, - ACTIONS(2282), 1, - anon_sym_not, - ACTIONS(2284), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2491), 1, + anon_sym_not, + ACTIONS(2493), 1, anon_sym_lambda, - ACTIONS(2290), 1, - anon_sym_await, - ACTIONS(2292), 1, + ACTIONS(2495), 1, anon_sym_new, - ACTIONS(2731), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1944), 1, + STATE(1963), 1, sym_primary_expression, - STATE(1984), 1, + STATE(2028), 1, sym_string, - STATE(2133), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3659), 1, + STATE(3820), 1, sym_expression, - STATE(5551), 1, + STATE(5487), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2276), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167170,11 +167388,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2246), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -167190,65 +167409,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71641] = 25, - ACTIONS(1110), 1, - sym_identifier, - ACTIONS(1112), 1, + [67482] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(1138), 1, - anon_sym_await, - ACTIONS(1142), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2409), 1, + anon_sym_STAR, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(2508), 1, + ACTIONS(2693), 1, + sym_identifier, + ACTIONS(2701), 1, + anon_sym_await, + ACTIONS(2817), 1, anon_sym_not, - ACTIONS(2510), 1, + ACTIONS(2819), 1, anon_sym_lambda, - ACTIONS(2512), 1, + ACTIONS(2821), 1, anon_sym_new, - ACTIONS(2806), 1, - anon_sym_STAR, - STATE(1958), 1, + STATE(1942), 1, sym_primary_expression, - STATE(2037), 1, + STATE(1976), 1, sym_string, - STATE(2402), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(3804), 1, + STATE(4080), 1, sym_expression, - STATE(5479), 1, + STATE(5493), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167257,11 +167477,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -167277,65 +167498,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71753] = 25, - ACTIONS(2166), 1, + [67597] = 26, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2186), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2268), 1, - sym_identifier, - ACTIONS(2282), 1, - anon_sym_not, - ACTIONS(2284), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2491), 1, + anon_sym_not, + ACTIONS(2493), 1, anon_sym_lambda, - ACTIONS(2290), 1, - anon_sym_await, - ACTIONS(2292), 1, + ACTIONS(2495), 1, anon_sym_new, - ACTIONS(2731), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1944), 1, + STATE(1963), 1, sym_primary_expression, - STATE(1984), 1, + STATE(2028), 1, sym_string, - STATE(2133), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(2201), 1, + STATE(3821), 1, sym_expression, - STATE(5551), 1, + STATE(5487), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2276), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167344,11 +167566,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2246), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -167364,65 +167587,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71865] = 25, - ACTIONS(1110), 1, + [67712] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3273), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3275), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [67781] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2508), 1, + ACTIONS(2491), 1, anon_sym_not, - ACTIONS(2510), 1, + ACTIONS(2493), 1, anon_sym_lambda, - ACTIONS(2512), 1, + ACTIONS(2495), 1, anon_sym_new, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3805), 1, + STATE(3823), 1, sym_expression, - STATE(5479), 1, + STATE(5487), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167431,11 +167721,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -167451,65 +167742,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71977] = 25, - ACTIONS(2166), 1, + [67896] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3455), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3453), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [67965] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2186), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2268), 1, + ACTIONS(2409), 1, + anon_sym_STAR, + ACTIONS(2417), 1, + anon_sym_LT, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(2282), 1, + ACTIONS(2701), 1, + anon_sym_await, + ACTIONS(2817), 1, anon_sym_not, - ACTIONS(2284), 1, - anon_sym_LT, - ACTIONS(2286), 1, + ACTIONS(2819), 1, anon_sym_lambda, - ACTIONS(2290), 1, - anon_sym_await, - ACTIONS(2292), 1, + ACTIONS(2821), 1, anon_sym_new, - ACTIONS(2731), 1, - anon_sym_STAR, - STATE(1944), 1, + STATE(1942), 1, sym_primary_expression, - STATE(1984), 1, + STATE(1976), 1, sym_string, - STATE(2133), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(3672), 1, + STATE(4125), 1, sym_expression, - STATE(5551), 1, + STATE(5493), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2276), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167518,11 +167876,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2246), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -167538,65 +167897,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72089] = 25, - ACTIONS(2102), 1, + [68080] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2426), 1, + ACTIONS(2409), 1, anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(2554), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(2562), 1, + ACTIONS(2701), 1, anon_sym_await, - ACTIONS(2796), 1, + ACTIONS(2817), 1, anon_sym_not, - ACTIONS(2798), 1, + ACTIONS(2819), 1, anon_sym_lambda, - ACTIONS(2800), 1, + ACTIONS(2821), 1, anon_sym_new, - STATE(1950), 1, + STATE(1942), 1, sym_primary_expression, - STATE(1968), 1, + STATE(1976), 1, sym_string, - STATE(2230), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(4123), 1, + STATE(4126), 1, sym_expression, - STATE(5485), 1, + STATE(5493), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3682), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167605,11 +167965,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -167625,65 +167986,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72201] = 25, - ACTIONS(2102), 1, + [68195] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2426), 1, + ACTIONS(2409), 1, anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(2554), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(2562), 1, + ACTIONS(2701), 1, anon_sym_await, - ACTIONS(2796), 1, + ACTIONS(2817), 1, anon_sym_not, - ACTIONS(2798), 1, + ACTIONS(2819), 1, anon_sym_lambda, - ACTIONS(2800), 1, + ACTIONS(2821), 1, anon_sym_new, - STATE(1950), 1, + STATE(1942), 1, sym_primary_expression, - STATE(1968), 1, + STATE(1976), 1, sym_string, - STATE(2230), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(4124), 1, + STATE(4127), 1, sym_expression, - STATE(5485), 1, + STATE(5493), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3682), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167692,11 +168054,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -167712,65 +168075,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72313] = 25, - ACTIONS(2102), 1, + [68310] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2426), 1, + ACTIONS(2409), 1, anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(2554), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(2562), 1, + ACTIONS(2701), 1, anon_sym_await, - ACTIONS(2796), 1, + ACTIONS(2817), 1, anon_sym_not, - ACTIONS(2798), 1, + ACTIONS(2819), 1, anon_sym_lambda, - ACTIONS(2800), 1, + ACTIONS(2821), 1, anon_sym_new, - STATE(1950), 1, + STATE(1942), 1, sym_primary_expression, - STATE(1968), 1, + STATE(1976), 1, sym_string, - STATE(2230), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(4125), 1, + STATE(3658), 1, sym_expression, - STATE(5485), 1, + STATE(5493), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3682), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167779,11 +168143,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -167799,65 +168164,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72425] = 25, - ACTIONS(2102), 1, + [68425] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2426), 1, + ACTIONS(2409), 1, anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(2554), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(2562), 1, + ACTIONS(2701), 1, anon_sym_await, - ACTIONS(2796), 1, + ACTIONS(2817), 1, anon_sym_not, - ACTIONS(2798), 1, + ACTIONS(2819), 1, anon_sym_lambda, - ACTIONS(2800), 1, + ACTIONS(2821), 1, anon_sym_new, - STATE(1950), 1, + STATE(1942), 1, sym_primary_expression, - STATE(1968), 1, + STATE(1976), 1, sym_string, - STATE(2230), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(3657), 1, + STATE(4128), 1, sym_expression, - STATE(5485), 1, + STATE(5493), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3682), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167866,11 +168232,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -167886,65 +168253,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72537] = 25, - ACTIONS(2102), 1, + [68540] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2426), 1, + ACTIONS(2409), 1, anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(2554), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(2562), 1, + ACTIONS(2701), 1, anon_sym_await, - ACTIONS(2796), 1, + ACTIONS(2817), 1, anon_sym_not, - ACTIONS(2798), 1, + ACTIONS(2819), 1, anon_sym_lambda, - ACTIONS(2800), 1, + ACTIONS(2821), 1, anon_sym_new, - STATE(1950), 1, + STATE(1942), 1, sym_primary_expression, - STATE(1968), 1, + STATE(1976), 1, sym_string, - STATE(2230), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(4126), 1, + STATE(4129), 1, sym_expression, - STATE(5485), 1, + STATE(5493), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3682), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167953,11 +168321,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -167973,65 +168342,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72649] = 25, - ACTIONS(2102), 1, + [68655] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2426), 1, + ACTIONS(2409), 1, anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(2554), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(2562), 1, + ACTIONS(2701), 1, anon_sym_await, - ACTIONS(2796), 1, + ACTIONS(2817), 1, anon_sym_not, - ACTIONS(2798), 1, + ACTIONS(2819), 1, anon_sym_lambda, - ACTIONS(2800), 1, + ACTIONS(2821), 1, anon_sym_new, - STATE(1950), 1, + STATE(1942), 1, sym_primary_expression, - STATE(1968), 1, + STATE(1976), 1, sym_string, - STATE(2230), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(4128), 1, + STATE(4131), 1, sym_expression, - STATE(5485), 1, + STATE(5493), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3682), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168040,11 +168410,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -168060,65 +168431,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72761] = 25, - ACTIONS(1110), 1, + [68770] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2508), 1, + ACTIONS(2491), 1, anon_sym_not, - ACTIONS(2510), 1, + ACTIONS(2493), 1, anon_sym_lambda, - ACTIONS(2512), 1, + ACTIONS(2495), 1, anon_sym_new, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(2936), 1, + STATE(2940), 1, sym_expression, - STATE(5479), 1, + STATE(5487), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168127,11 +168499,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -168147,65 +168520,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72873] = 25, - ACTIONS(2102), 1, + [68885] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2426), 1, + ACTIONS(2409), 1, anon_sym_STAR, - ACTIONS(2432), 1, + ACTIONS(2415), 1, anon_sym_not, - ACTIONS(2434), 1, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(2436), 1, + ACTIONS(2419), 1, anon_sym_lambda, - ACTIONS(2442), 1, + ACTIONS(2425), 1, anon_sym_new, - ACTIONS(2554), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(2562), 1, + ACTIONS(2701), 1, anon_sym_await, - STATE(1950), 1, + STATE(1942), 1, sym_primary_expression, - STATE(1968), 1, + STATE(1976), 1, sym_string, - STATE(2230), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(3772), 1, + STATE(3744), 1, sym_expression, - STATE(5332), 1, + STATE(5368), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3682), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168214,11 +168588,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -168234,65 +168609,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72985] = 25, - ACTIONS(2102), 1, + [69000] = 26, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2122), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2426), 1, + ACTIONS(2409), 1, anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(2554), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(2562), 1, + ACTIONS(2701), 1, anon_sym_await, - ACTIONS(2796), 1, + ACTIONS(2817), 1, anon_sym_not, - ACTIONS(2798), 1, + ACTIONS(2819), 1, anon_sym_lambda, - ACTIONS(2800), 1, + ACTIONS(2821), 1, anon_sym_new, - STATE(1950), 1, + STATE(1942), 1, sym_primary_expression, - STATE(1968), 1, + STATE(1976), 1, sym_string, - STATE(2230), 1, + STATE(2212), 1, sym_list_splat_pattern, - STATE(3650), 1, + STATE(3725), 1, sym_expression, - STATE(5485), 1, + STATE(5493), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 3, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2558), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3682), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168301,11 +168677,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2179), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -168321,65 +168698,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73097] = 25, - ACTIONS(1110), 1, + [69115] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4296), 1, + STATE(4310), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168388,11 +168766,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -168408,65 +168787,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73209] = 25, - ACTIONS(1110), 1, + [69230] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(1112), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1124), 1, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(1130), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1138), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1958), 1, + STATE(1963), 1, sym_primary_expression, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(4298), 1, + STATE(4311), 1, sym_expression, - STATE(5331), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1116), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2935), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168475,11 +168855,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -168495,65 +168876,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73321] = 25, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, + [69345] = 26, + ACTIONS(1115), 1, sym_identifier, - ACTIONS(869), 1, - anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2474), 1, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1129), 1, anon_sym_not, - ACTIONS(2476), 1, + ACTIONS(1135), 1, anon_sym_lambda, - ACTIONS(2478), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1147), 1, anon_sym_new, - ACTIONS(2822), 1, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1963), 1, sym_primary_expression, - STATE(1933), 1, + STATE(2028), 1, sym_string, - STATE(1985), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3628), 1, + STATE(4037), 1, sym_expression, - STATE(5548), 1, + STATE(5197), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(1121), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(2946), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168562,11 +168944,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -168582,223 +168965,116 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73433] = 25, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, - sym_identifier, - ACTIONS(869), 1, - anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2474), 1, - anon_sym_not, - ACTIONS(2476), 1, - anon_sym_lambda, - ACTIONS(2478), 1, - anon_sym_new, - ACTIONS(2822), 1, - anon_sym_STAR, - STATE(1918), 1, - sym_primary_expression, - STATE(1933), 1, - sym_string, - STATE(1985), 1, - sym_list_splat_pattern, - STATE(3630), 1, - sym_expression, - STATE(5548), 1, - sym__named_expression_lhs, + [69460] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(3399), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3397), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(3273), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(1981), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [73545] = 25, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(832), 1, - sym_identifier, - ACTIONS(869), 1, - anon_sym_await, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(2474), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2476), 1, anon_sym_lambda, - ACTIONS(2478), 1, - anon_sym_new, - ACTIONS(2822), 1, - anon_sym_STAR, - STATE(1918), 1, - sym_primary_expression, - STATE(1933), 1, - sym_string, - STATE(1985), 1, - sym_list_splat_pattern, - STATE(3631), 1, - sym_expression, - STATE(5548), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(81), 3, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(65), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(847), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3273), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(1981), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [73657] = 25, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [69529] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, anon_sym_LT, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(103), 1, - anon_sym_sizeof, + ACTIONS(83), 1, + sym_float, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2474), 1, + ACTIONS(2479), 1, anon_sym_not, - ACTIONS(2476), 1, + ACTIONS(2481), 1, anon_sym_lambda, - ACTIONS(2478), 1, + ACTIONS(2483), 1, anon_sym_new, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3276), 1, + STATE(3639), 1, sym_expression, - STATE(5548), 1, + STATE(5556), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -168808,13 +169084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168823,11 +169099,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -168843,49 +169120,50 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73769] = 25, + [69644] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, anon_sym_LT, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(103), 1, - anon_sym_sizeof, + ACTIONS(83), 1, + sym_float, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2474), 1, + ACTIONS(2479), 1, anon_sym_not, - ACTIONS(2476), 1, + ACTIONS(2481), 1, anon_sym_lambda, - ACTIONS(2478), 1, + ACTIONS(2483), 1, anon_sym_new, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3632), 1, + STATE(3641), 1, sym_expression, - STATE(5548), 1, + STATE(5556), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -168895,13 +169173,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168910,11 +169188,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -168930,49 +169209,50 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73881] = 25, + [69759] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, anon_sym_LT, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(103), 1, - anon_sym_sizeof, + ACTIONS(83), 1, + sym_float, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2474), 1, + ACTIONS(2479), 1, anon_sym_not, - ACTIONS(2476), 1, + ACTIONS(2481), 1, anon_sym_lambda, - ACTIONS(2478), 1, + ACTIONS(2483), 1, anon_sym_new, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3633), 1, + STATE(3293), 1, sym_expression, - STATE(5548), 1, + STATE(5556), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -168982,13 +169262,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168997,11 +169277,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -169017,49 +169298,50 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73993] = 25, + [69874] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, anon_sym_LT, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(103), 1, - anon_sym_sizeof, + ACTIONS(83), 1, + sym_float, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2474), 1, + ACTIONS(2479), 1, anon_sym_not, - ACTIONS(2476), 1, + ACTIONS(2481), 1, anon_sym_lambda, - ACTIONS(2478), 1, + ACTIONS(2483), 1, anon_sym_new, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3635), 1, + STATE(3642), 1, sym_expression, - STATE(5548), 1, + STATE(5556), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -169069,13 +169351,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -169084,11 +169366,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -169104,49 +169387,50 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74105] = 25, + [69989] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, anon_sym_LT, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(103), 1, - anon_sym_sizeof, + ACTIONS(83), 1, + sym_float, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(832), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(869), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(2474), 1, + ACTIONS(2479), 1, anon_sym_not, - ACTIONS(2476), 1, + ACTIONS(2481), 1, anon_sym_lambda, - ACTIONS(2478), 1, + ACTIONS(2483), 1, anon_sym_new, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1918), 1, + STATE(1927), 1, sym_primary_expression, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(3259), 1, + STATE(3643), 1, sym_expression, - STATE(5548), 1, + STATE(5556), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(81), 3, sym_integer, sym_true, @@ -169156,13 +169440,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(847), 5, + ACTIONS(576), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3273), 8, + STATE(3283), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -169171,11 +169455,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -169191,65 +169476,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74217] = 25, - ACTIONS(2166), 1, - anon_sym_LPAREN, - ACTIONS(2172), 1, - anon_sym_LBRACK, - ACTIONS(2176), 1, + [70104] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2186), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2268), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(2284), 1, - anon_sym_LT, - ACTIONS(2290), 1, + ACTIONS(598), 1, anon_sym_await, - ACTIONS(2731), 1, - anon_sym_STAR, - ACTIONS(3346), 1, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(2479), 1, anon_sym_not, - ACTIONS(3348), 1, + ACTIONS(2481), 1, anon_sym_lambda, - ACTIONS(3350), 1, + ACTIONS(2483), 1, anon_sym_new, - STATE(1947), 1, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1927), 1, sym_primary_expression, - STATE(1984), 1, + STATE(1929), 1, sym_string, - STATE(2133), 1, + STATE(1975), 1, sym_list_splat_pattern, - STATE(2201), 1, + STATE(3644), 1, sym_expression, - STATE(5276), 1, + STATE(5556), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(576), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3283), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2021), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [70219] = 26, + ACTIONS(1703), 1, + anon_sym_LPAREN, + ACTIONS(1709), 1, + anon_sym_LBRACK, + ACTIONS(1713), 1, + anon_sym_LBRACE, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, + anon_sym_None, + ACTIONS(1721), 1, sym_float, - ACTIONS(2164), 3, + ACTIONS(1725), 1, + anon_sym_sizeof, + ACTIONS(1727), 1, + sym_string_start, + ACTIONS(2409), 1, + anon_sym_STAR, + ACTIONS(2415), 1, + anon_sym_not, + ACTIONS(2417), 1, + anon_sym_LT, + ACTIONS(2419), 1, + anon_sym_lambda, + ACTIONS(2425), 1, + anon_sym_new, + ACTIONS(2693), 1, + sym_identifier, + ACTIONS(2701), 1, + anon_sym_await, + STATE(1942), 1, + sym_primary_expression, + STATE(1976), 1, + sym_string, + STATE(2212), 1, + sym_list_splat_pattern, + STATE(3674), 1, + sym_expression, + STATE(5368), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1701), 3, sym_integer, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2276), 5, + ACTIONS(2697), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2255), 8, + STATE(3724), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -169258,11 +169633,12 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2246), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -169278,60 +169654,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74329] = 21, - ACTIONS(1112), 1, + [70334] = 22, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(1199), 1, + ACTIONS(1206), 1, anon_sym_STAR, - ACTIONS(1207), 1, + ACTIONS(1214), 1, anon_sym_LT, - ACTIONS(1209), 1, + ACTIONS(1216), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3025), 1, + STATE(3038), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1192), 2, + ACTIONS(1199), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1194), 2, + ACTIONS(1201), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(1136), 4, + ACTIONS(1141), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1201), 5, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(1391), 8, + ACTIONS(1402), 8, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -169340,11 +169717,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_CARET, anon_sym_LT_LT, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -169360,60 +169738,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74432] = 21, - ACTIONS(1112), 1, + [70440] = 22, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(1199), 1, + ACTIONS(1206), 1, anon_sym_STAR, - ACTIONS(1207), 1, + ACTIONS(1214), 1, anon_sym_LT, - ACTIONS(1209), 1, + ACTIONS(1216), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3025), 1, + STATE(3038), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(867), 2, + ACTIONS(596), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 4, + ACTIONS(1141), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1201), 5, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(834), 8, + ACTIONS(563), 8, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -169422,11 +169801,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_CARET, anon_sym_LT_LT, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -169442,60 +169822,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74535] = 21, - ACTIONS(1112), 1, + [70546] = 22, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(1199), 1, + ACTIONS(1206), 1, anon_sym_STAR, - ACTIONS(1207), 1, + ACTIONS(1214), 1, anon_sym_LT, - ACTIONS(1209), 1, + ACTIONS(1216), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3025), 1, + STATE(3038), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(867), 2, + ACTIONS(596), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 4, + ACTIONS(1141), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1201), 5, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(834), 8, + ACTIONS(563), 8, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -169504,11 +169885,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_CARET, anon_sym_LT_LT, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -169524,60 +169906,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74638] = 21, - ACTIONS(1112), 1, + [70652] = 22, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(1199), 1, + ACTIONS(1206), 1, anon_sym_STAR, - ACTIONS(1207), 1, + ACTIONS(1214), 1, anon_sym_LT, - ACTIONS(1209), 1, + ACTIONS(1216), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3025), 1, + STATE(3038), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1192), 2, + ACTIONS(1199), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1194), 2, + ACTIONS(1201), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(1136), 4, + ACTIONS(1141), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1201), 5, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(1391), 8, + ACTIONS(1402), 8, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -169586,11 +169969,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_CARET, anon_sym_LT_LT, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -169606,57 +169990,58 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74741] = 20, - ACTIONS(1112), 1, + [70758] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(1199), 1, + ACTIONS(1206), 1, anon_sym_STAR, - ACTIONS(1207), 1, + ACTIONS(1214), 1, anon_sym_LT, - ACTIONS(1209), 1, + ACTIONS(1216), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3025), 1, + STATE(3038), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 2, + ACTIONS(565), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 4, + ACTIONS(1141), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1201), 5, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(834), 8, + ACTIONS(563), 8, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -169665,11 +170050,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_CARET, anon_sym_LT_LT, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -169685,41 +170071,41 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74840] = 17, - ACTIONS(3440), 1, + [70860] = 17, + ACTIONS(3459), 1, anon_sym_DOT, - ACTIONS(3444), 1, + ACTIONS(3463), 1, anon_sym_COMMA, - ACTIONS(3451), 1, + ACTIONS(3470), 1, anon_sym_COLON_EQ, - ACTIONS(3453), 1, + ACTIONS(3472), 1, anon_sym_COLON, - ACTIONS(3455), 1, + ACTIONS(3474), 1, anon_sym_EQ, - ACTIONS(3457), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(3461), 1, + ACTIONS(3480), 1, anon_sym_complex, - ACTIONS(3463), 1, + ACTIONS(3482), 1, anon_sym___stdcall, - STATE(3261), 1, - sym_type_index, - STATE(3269), 1, + STATE(3287), 1, aux_sym_class_definition_repeat2, + STATE(3294), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3442), 2, + ACTIONS(3461), 2, sym__newline, anon_sym_LPAREN, - STATE(3483), 2, + STATE(3555), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3447), 3, + ACTIONS(3466), 3, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(3449), 12, + ACTIONS(3468), 12, anon_sym_GT_GT, anon_sym_AT, anon_sym_DASH, @@ -169732,7 +170118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 13, + ACTIONS(3457), 13, anon_sym_SEMI, anon_sym_as, anon_sym_if, @@ -169746,7 +170132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(3459), 13, + ACTIONS(3478), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -169760,25 +170146,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [74932] = 8, - ACTIONS(841), 1, + [70952] = 8, + ACTIONS(570), 1, anon_sym_COMMA, - ACTIONS(851), 1, + ACTIONS(580), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(853), 2, + ACTIONS(582), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3465), 6, + ACTIONS(3484), 6, anon_sym_class, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - ACTIONS(867), 13, + ACTIONS(596), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -169792,7 +170178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(834), 16, + ACTIONS(563), 16, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -169809,7 +170195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(836), 16, + ACTIONS(565), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_in, @@ -169826,16 +170212,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - [75006] = 5, - ACTIONS(3473), 1, + [71026] = 24, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2559), 1, + anon_sym_LT, + ACTIONS(3486), 1, + sym_identifier, + ACTIONS(3488), 1, + anon_sym_LPAREN, + ACTIONS(3490), 1, + anon_sym_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3496), 1, + anon_sym_await, + STATE(2028), 1, + sym_string, + STATE(2982), 1, + sym_list_splat_pattern, + STATE(3059), 1, + sym_primary_expression, + STATE(4199), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2983), 2, + sym_attribute, + sym_subscript, + STATE(4149), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1212), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2541), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(3492), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2295), 18, + sym_binary_operator, + sym_unary_operator, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [71131] = 5, + ACTIONS(3504), 1, anon_sym_DQUOTE_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3471), 2, + ACTIONS(3502), 2, anon_sym_new, anon_sym_delete, - ACTIONS(3469), 20, + ACTIONS(3500), 20, anon_sym_STAR, anon_sym_GT_GT, anon_sym_DASH_GT, @@ -169856,7 +170323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_BANG, anon_sym_xor, - ACTIONS(3467), 31, + ACTIONS(3498), 31, anon_sym_COMMA, anon_sym_TILDE, anon_sym_EQ_EQ, @@ -169888,16 +170355,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_not_eq, - [75073] = 5, - ACTIONS(3481), 1, + [71198] = 5, + ACTIONS(3512), 1, anon_sym_DQUOTE_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3479), 2, + ACTIONS(3510), 2, anon_sym_new, anon_sym_delete, - ACTIONS(3477), 20, + ACTIONS(3508), 20, anon_sym_STAR, anon_sym_GT_GT, anon_sym_DASH_GT, @@ -169918,7 +170385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_BANG, anon_sym_xor, - ACTIONS(3475), 31, + ACTIONS(3506), 31, anon_sym_COMMA, anon_sym_TILDE, anon_sym_EQ_EQ, @@ -169950,149 +170417,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_not_eq, - [75140] = 23, - ACTIONS(1122), 1, + [71265] = 24, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2530), 1, - anon_sym_LT, - ACTIONS(3483), 1, - sym_identifier, - ACTIONS(3485), 1, - anon_sym_LPAREN, - ACTIONS(3487), 1, - anon_sym_STAR, - ACTIONS(3491), 1, - anon_sym_LBRACK, - ACTIONS(3493), 1, - anon_sym_await, - STATE(2037), 1, - sym_string, - STATE(2969), 1, - sym_list_splat_pattern, - STATE(3063), 1, - sym_primary_expression, - STATE(4163), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, + ACTIONS(1143), 1, sym_float, - STATE(2971), 2, - sym_attribute, - sym_subscript, - STATE(4259), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1205), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2494), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(3489), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2436), 17, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [75242] = 23, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3483), 1, + ACTIONS(3486), 1, sym_identifier, - ACTIONS(3485), 1, + ACTIONS(3488), 1, anon_sym_LPAREN, - ACTIONS(3487), 1, + ACTIONS(3490), 1, anon_sym_STAR, - ACTIONS(3491), 1, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3493), 1, + ACTIONS(3496), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2969), 1, + STATE(2982), 1, sym_list_splat_pattern, - STATE(3063), 1, + STATE(3059), 1, sym_primary_expression, - STATE(4163), 1, + STATE(4199), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2971), 2, + STATE(2983), 2, sym_attribute, sym_subscript, - STATE(4259), 2, + STATE(4149), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2506), 4, + ACTIONS(2527), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(3489), 5, + ACTIONS(3492), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -170108,24 +170498,24 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75344] = 10, - ACTIONS(841), 1, + [71370] = 10, + ACTIONS(570), 1, anon_sym_COMMA, - ACTIONS(851), 1, + ACTIONS(580), 1, anon_sym_COLON_EQ, - ACTIONS(3495), 1, + ACTIONS(3514), 1, anon_sym_for, - ACTIONS(3497), 1, + ACTIONS(3516), 1, anon_sym_with, - ACTIONS(3499), 1, + ACTIONS(3518), 1, anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(853), 2, + ACTIONS(582), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(867), 13, + ACTIONS(596), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -170139,7 +170529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(836), 15, + ACTIONS(565), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -170155,7 +170545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 17, + ACTIONS(563), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -170173,36 +170563,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75419] = 11, - ACTIONS(841), 1, + [71445] = 10, + ACTIONS(570), 1, anon_sym_COMMA, - ACTIONS(851), 1, + ACTIONS(580), 1, anon_sym_COLON_EQ, - ACTIONS(853), 1, - anon_sym_EQ, - ACTIONS(1011), 1, - anon_sym_COLON, - ACTIONS(3501), 1, - sym_identifier, - ACTIONS(3503), 1, - sym_string_start, - STATE(4821), 1, - sym_string, + ACTIONS(3520), 1, + anon_sym_for, + ACTIONS(3522), 1, + anon_sym_with, + ACTIONS(3524), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(834), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(867), 13, + ACTIONS(582), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(596), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -170216,47 +170594,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(836), 22, - anon_sym_as, + ACTIONS(565), 15, anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, anon_sym_LT, anon_sym_GT, - [75496] = 10, - ACTIONS(841), 1, + ACTIONS(563), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [71520] = 11, + ACTIONS(570), 1, anon_sym_COMMA, - ACTIONS(851), 1, + ACTIONS(580), 1, anon_sym_COLON_EQ, - ACTIONS(3501), 1, + ACTIONS(582), 1, + anon_sym_EQ, + ACTIONS(1016), 1, + anon_sym_COLON, + ACTIONS(3526), 1, sym_identifier, - ACTIONS(3503), 1, + ACTIONS(3528), 1, sym_string_start, - STATE(4821), 1, + STATE(4771), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(853), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(834), 10, + ACTIONS(563), 10, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -170267,7 +170657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(867), 13, + ACTIONS(596), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -170281,7 +170671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(836), 22, + ACTIONS(565), 22, anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, @@ -170304,24 +170694,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_LT, anon_sym_GT, - [75571] = 10, - ACTIONS(841), 1, + [71597] = 10, + ACTIONS(570), 1, anon_sym_COMMA, - ACTIONS(851), 1, + ACTIONS(580), 1, anon_sym_COLON_EQ, - ACTIONS(3505), 1, - anon_sym_for, - ACTIONS(3507), 1, - anon_sym_with, - ACTIONS(3509), 1, - anon_sym_def, + ACTIONS(3526), 1, + sym_identifier, + ACTIONS(3528), 1, + sym_string_start, + STATE(4771), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(853), 2, + ACTIONS(582), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(867), 13, + ACTIONS(563), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(596), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -170335,102 +170736,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(836), 15, + ACTIONS(565), 22, + anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + anon_sym_is, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [75646] = 23, - ACTIONS(1122), 1, + [71672] = 24, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3511), 1, + ACTIONS(3530), 1, sym_identifier, - ACTIONS(3515), 1, + ACTIONS(3534), 1, anon_sym_LPAREN, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3521), 1, + ACTIONS(3540), 1, anon_sym_LBRACK, - ACTIONS(3523), 1, + ACTIONS(3542), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(3017), 1, + STATE(3009), 1, sym_list_splat_pattern, - STATE(3032), 1, - sym_primary_expression, - STATE(3078), 1, + STATE(3055), 1, sym_pattern, + STATE(3072), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(3513), 2, + ACTIONS(3532), 2, anon_sym_from, anon_sym_in, - STATE(3020), 2, + STATE(3012), 2, sym_attribute, sym_subscript, - STATE(3068), 2, + STATE(3042), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3519), 5, + ACTIONS(3538), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -170446,68 +170838,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75746] = 23, - ACTIONS(1122), 1, + [71775] = 24, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3511), 1, + ACTIONS(3530), 1, sym_identifier, - ACTIONS(3515), 1, + ACTIONS(3534), 1, anon_sym_LPAREN, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3521), 1, + ACTIONS(3540), 1, anon_sym_LBRACK, - ACTIONS(3523), 1, + ACTIONS(3542), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(3017), 1, + STATE(3009), 1, sym_list_splat_pattern, - STATE(3032), 1, - sym_primary_expression, - STATE(3078), 1, + STATE(3055), 1, sym_pattern, + STATE(3072), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(3525), 2, + ACTIONS(3544), 2, anon_sym_from, anon_sym_in, - STATE(3020), 2, + STATE(3012), 2, sym_attribute, sym_subscript, - STATE(3068), 2, + STATE(3042), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3519), 5, + ACTIONS(3538), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -170523,67 +170917,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75846] = 23, - ACTIONS(1122), 1, + [71878] = 24, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3511), 1, + ACTIONS(3546), 1, sym_identifier, - ACTIONS(3515), 1, + ACTIONS(3548), 1, anon_sym_LPAREN, - ACTIONS(3517), 1, + ACTIONS(3550), 1, anon_sym_STAR, - ACTIONS(3521), 1, + ACTIONS(3554), 1, anon_sym_LBRACK, - ACTIONS(3523), 1, + ACTIONS(3556), 1, + anon_sym_RBRACK, + ACTIONS(3558), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(3017), 1, - sym_list_splat_pattern, - STATE(3032), 1, + STATE(3053), 1, sym_primary_expression, - STATE(4831), 1, + STATE(3076), 1, + sym_list_splat_pattern, + STATE(5047), 1, sym_pattern, - STATE(5190), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(3020), 2, + STATE(3029), 2, sym_attribute, sym_subscript, - STATE(3068), 2, + STATE(5118), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3519), 5, + ACTIONS(3552), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -170599,67 +170995,68 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75945] = 23, - ACTIONS(1122), 1, + [71980] = 23, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2524), 1, - anon_sym_STAR, - ACTIONS(2528), 1, - anon_sym_LBRACK, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(2532), 1, - anon_sym_await, - ACTIONS(3527), 1, + ACTIONS(3536), 1, + anon_sym_STAR, + ACTIONS(3560), 1, sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, - anon_sym_RPAREN, - STATE(2037), 1, + ACTIONS(3568), 1, + anon_sym_await, + STATE(2028), 1, sym_string, - STATE(3023), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3053), 1, + STATE(3031), 1, sym_primary_expression, - STATE(5032), 1, - sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(3031), 2, + ACTIONS(3564), 2, + sym__newline, + anon_sym_COLON, + ACTIONS(3566), 2, + anon_sym_with, + anon_sym_nogil, + STATE(1998), 2, sym_attribute, sym_subscript, - STATE(5181), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2526), 5, + ACTIONS(3562), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -170675,67 +171072,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [76044] = 23, - ACTIONS(1122), 1, + [72080] = 24, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, - anon_sym_LT, - ACTIONS(3511), 1, - sym_identifier, - ACTIONS(3515), 1, - anon_sym_LPAREN, - ACTIONS(3517), 1, + ACTIONS(2553), 1, anon_sym_STAR, - ACTIONS(3521), 1, + ACTIONS(2557), 1, anon_sym_LBRACK, - ACTIONS(3523), 1, + ACTIONS(2559), 1, + anon_sym_LT, + ACTIONS(2561), 1, anon_sym_await, - STATE(2037), 1, + ACTIONS(3556), 1, + anon_sym_RPAREN, + ACTIONS(3570), 1, + sym_identifier, + ACTIONS(3572), 1, + anon_sym_LPAREN, + STATE(2028), 1, sym_string, - STATE(3017), 1, + STATE(3030), 1, sym_list_splat_pattern, - STATE(3032), 1, + STATE(3044), 1, sym_primary_expression, - STATE(4962), 1, + STATE(5125), 1, sym_pattern, - STATE(5538), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(3020), 2, + STATE(3074), 2, sym_attribute, sym_subscript, - STATE(3068), 2, + STATE(5009), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3519), 5, + ACTIONS(2555), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -170751,67 +171150,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [76143] = 23, - ACTIONS(1122), 1, + [72182] = 24, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3533), 1, + ACTIONS(3530), 1, sym_identifier, - ACTIONS(3535), 1, + ACTIONS(3534), 1, anon_sym_LPAREN, - ACTIONS(3537), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3541), 1, + ACTIONS(3540), 1, anon_sym_LBRACK, - ACTIONS(3543), 1, - anon_sym_RBRACK, - ACTIONS(3545), 1, + ACTIONS(3542), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(3021), 1, + STATE(3009), 1, sym_list_splat_pattern, - STATE(3060), 1, + STATE(3072), 1, sym_primary_expression, - STATE(5042), 1, + STATE(4678), 1, sym_pattern, + STATE(5271), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(3075), 2, + STATE(3012), 2, sym_attribute, sym_subscript, - STATE(5131), 2, + STATE(3042), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3539), 5, + ACTIONS(3538), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -170827,67 +171228,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [76242] = 23, - ACTIONS(1122), 1, + [72284] = 24, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3531), 1, - anon_sym_RBRACK, - ACTIONS(3533), 1, + ACTIONS(3530), 1, sym_identifier, - ACTIONS(3535), 1, + ACTIONS(3534), 1, anon_sym_LPAREN, - ACTIONS(3537), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3541), 1, + ACTIONS(3540), 1, anon_sym_LBRACK, - ACTIONS(3545), 1, + ACTIONS(3542), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(3021), 1, + STATE(3009), 1, sym_list_splat_pattern, - STATE(3060), 1, + STATE(3072), 1, sym_primary_expression, - STATE(5042), 1, + STATE(4806), 1, sym_pattern, + STATE(5225), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(3075), 2, + STATE(3012), 2, sym_attribute, sym_subscript, - STATE(5131), 2, + STATE(3042), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3539), 5, + ACTIONS(3538), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -170903,129 +171306,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [76341] = 10, - ACTIONS(3444), 1, - anon_sym_COMMA, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, - ACTIONS(3455), 1, - anon_sym_EQ, - ACTIONS(3547), 1, - anon_sym_COLON, - ACTIONS(3550), 1, - anon_sym_LBRACK, - STATE(4477), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3459), 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(3449), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3438), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [76414] = 22, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, + [72386] = 24, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3517), 1, - anon_sym_STAR, - ACTIONS(3552), 1, + ACTIONS(3546), 1, sym_identifier, - ACTIONS(3560), 1, + ACTIONS(3548), 1, + anon_sym_LPAREN, + ACTIONS(3550), 1, + anon_sym_STAR, + ACTIONS(3554), 1, + anon_sym_LBRACK, + ACTIONS(3558), 1, anon_sym_await, - STATE(2037), 1, + ACTIONS(3574), 1, + anon_sym_RBRACK, + STATE(2028), 1, sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3048), 1, + STATE(3053), 1, sym_primary_expression, + STATE(3076), 1, + sym_list_splat_pattern, + STATE(5047), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(3556), 2, - sym__newline, - anon_sym_COLON, - ACTIONS(3558), 2, - anon_sym_with, - anon_sym_nogil, - STATE(1998), 2, + STATE(3029), 2, sym_attribute, sym_subscript, - ACTIONS(1136), 3, + STATE(5118), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3554), 5, + ACTIONS(3552), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -171041,43 +171384,44 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [76511] = 21, + [72488] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, anon_sym_LT, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(103), 1, - anon_sym_sizeof, + ACTIONS(83), 1, + sym_float, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(1190), 1, + ACTIONS(1197), 1, anon_sym_await, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - ACTIONS(3562), 1, + ACTIONS(3576), 1, sym_identifier, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1941), 1, + STATE(1950), 1, sym_primary_expression, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(3556), 2, + ACTIONS(3564), 2, sym__newline, anon_sym_COLON, - ACTIONS(3558), 2, + ACTIONS(3566), 2, anon_sym_with, anon_sym_nogil, ACTIONS(81), 3, @@ -171089,17 +171433,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1182), 5, + ACTIONS(1189), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -171115,67 +171460,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [76606] = 23, - ACTIONS(1122), 1, + [72586] = 24, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2524), 1, + ACTIONS(2553), 1, anon_sym_STAR, - ACTIONS(2528), 1, + ACTIONS(2557), 1, anon_sym_LBRACK, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(2532), 1, + ACTIONS(2561), 1, anon_sym_await, - ACTIONS(3527), 1, + ACTIONS(3570), 1, sym_identifier, - ACTIONS(3529), 1, + ACTIONS(3572), 1, anon_sym_LPAREN, - ACTIONS(3543), 1, + ACTIONS(3574), 1, anon_sym_RPAREN, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(3023), 1, + STATE(3030), 1, sym_list_splat_pattern, - STATE(3053), 1, + STATE(3044), 1, sym_primary_expression, - STATE(5032), 1, + STATE(5125), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(3031), 2, + STATE(3074), 2, sym_attribute, sym_subscript, - STATE(5181), 2, + STATE(5009), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2526), 5, + ACTIONS(2555), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -171191,67 +171538,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [76705] = 23, - ACTIONS(1122), 1, + [72688] = 24, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3511), 1, + ACTIONS(3530), 1, sym_identifier, - ACTIONS(3515), 1, + ACTIONS(3534), 1, anon_sym_LPAREN, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3521), 1, + ACTIONS(3540), 1, anon_sym_LBRACK, - ACTIONS(3523), 1, + ACTIONS(3542), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(3017), 1, + STATE(3009), 1, sym_list_splat_pattern, - STATE(3032), 1, + STATE(3072), 1, sym_primary_expression, - STATE(4530), 1, + STATE(4839), 1, sym_pattern, - STATE(5517), 1, + STATE(5506), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(3020), 2, + STATE(3012), 2, sym_attribute, sym_subscript, - STATE(3068), 2, + STATE(3042), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3519), 5, + ACTIONS(3538), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -171267,67 +171616,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [76804] = 23, - ACTIONS(1122), 1, + [72790] = 24, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3511), 1, + ACTIONS(3530), 1, sym_identifier, - ACTIONS(3515), 1, + ACTIONS(3534), 1, anon_sym_LPAREN, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3521), 1, + ACTIONS(3540), 1, anon_sym_LBRACK, - ACTIONS(3523), 1, + ACTIONS(3542), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(3017), 1, + STATE(3009), 1, sym_list_splat_pattern, - STATE(3032), 1, + STATE(3072), 1, sym_primary_expression, - STATE(4827), 1, + STATE(4842), 1, sym_pattern, - STATE(5497), 1, + STATE(5198), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(3020), 2, + STATE(3012), 2, sym_attribute, sym_subscript, - STATE(3068), 2, + STATE(3042), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3519), 5, + ACTIONS(3538), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -171343,67 +171694,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [76903] = 23, - ACTIONS(1122), 1, + [72892] = 24, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3511), 1, + ACTIONS(3530), 1, sym_identifier, - ACTIONS(3515), 1, + ACTIONS(3534), 1, anon_sym_LPAREN, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3521), 1, + ACTIONS(3540), 1, anon_sym_LBRACK, - ACTIONS(3523), 1, + ACTIONS(3542), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(3017), 1, + STATE(3009), 1, sym_list_splat_pattern, - STATE(3032), 1, + STATE(3072), 1, sym_primary_expression, - STATE(4866), 1, + STATE(4867), 1, sym_pattern, - STATE(5289), 1, + STATE(5285), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(3020), 2, + STATE(3012), 2, sym_attribute, sym_subscript, - STATE(3068), 2, + STATE(3042), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3519), 5, + ACTIONS(3538), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -171419,67 +171772,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77002] = 23, - ACTIONS(1122), 1, + [72994] = 24, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3511), 1, + ACTIONS(3530), 1, sym_identifier, - ACTIONS(3515), 1, + ACTIONS(3534), 1, anon_sym_LPAREN, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3521), 1, + ACTIONS(3540), 1, anon_sym_LBRACK, - ACTIONS(3523), 1, + ACTIONS(3542), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(3017), 1, + STATE(3009), 1, sym_list_splat_pattern, - STATE(3032), 1, + STATE(3072), 1, sym_primary_expression, - STATE(4863), 1, + STATE(4870), 1, sym_pattern, - STATE(5277), 1, + STATE(5297), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(3020), 2, + STATE(3012), 2, sym_attribute, sym_subscript, - STATE(3068), 2, + STATE(3042), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3519), 5, + ACTIONS(3538), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -171495,65 +171850,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77101] = 22, - ACTIONS(1122), 1, + [73096] = 23, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(2766), 1, + ACTIONS(2769), 1, sym_identifier, - ACTIONS(2768), 1, + ACTIONS(2771), 1, anon_sym_LPAREN, - ACTIONS(2774), 1, + ACTIONS(2777), 1, anon_sym_LBRACK, - ACTIONS(2776), 1, + ACTIONS(2779), 1, anon_sym_await, - ACTIONS(3564), 1, + ACTIONS(3578), 1, anon_sym_STAR, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2525), 1, + STATE(2558), 1, sym_list_splat_pattern, - STATE(3054), 1, + STATE(3047), 1, sym_primary_expression, - STATE(3078), 1, + STATE(3055), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2578), 2, + STATE(2591), 2, sym_attribute, sym_subscript, - STATE(3068), 2, + STATE(3042), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2772), 5, + ACTIONS(2775), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -171569,66 +171926,144 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77197] = 23, - ACTIONS(1112), 1, + [73195] = 24, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3566), 1, + ACTIONS(3580), 1, sym_identifier, - ACTIONS(3568), 1, + ACTIONS(3582), 1, anon_sym_RPAREN, - ACTIONS(3570), 1, + ACTIONS(3584), 1, anon_sym_COMMA, - ACTIONS(3574), 1, + ACTIONS(3588), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3085), 1, + STATE(3051), 1, sym_primary_expression, - STATE(4931), 1, + STATE(4853), 1, aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, + STATE(2538), 2, + sym_attribute, + sym_subscript, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1212), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(3586), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2295), 18, + sym_binary_operator, + sym_unary_operator, sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [73296] = 23, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, sym_float, - STATE(2604), 2, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2525), 1, + sym_identifier, + ACTIONS(2529), 1, + anon_sym_LPAREN, + ACTIONS(2535), 1, + anon_sym_LBRACK, + ACTIONS(2537), 1, + anon_sym_await, + ACTIONS(2559), 1, + anon_sym_LT, + ACTIONS(3590), 1, + anon_sym_STAR, + STATE(2028), 1, + sym_string, + STATE(2428), 1, + sym_list_splat_pattern, + STATE(3033), 1, + sym_pattern, + STATE(3062), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2429), 2, sym_attribute, sym_subscript, - ACTIONS(1136), 3, + STATE(3093), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3572), 5, + ACTIONS(2533), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -171644,65 +172079,143 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77295] = 22, - ACTIONS(1122), 1, + [73395] = 23, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3483), 1, + ACTIONS(3546), 1, sym_identifier, - ACTIONS(3485), 1, + ACTIONS(3548), 1, anon_sym_LPAREN, - ACTIONS(3487), 1, + ACTIONS(3550), 1, anon_sym_STAR, - ACTIONS(3491), 1, + ACTIONS(3554), 1, anon_sym_LBRACK, - ACTIONS(3493), 1, + ACTIONS(3558), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2969), 1, - sym_list_splat_pattern, - STATE(3063), 1, + STATE(3053), 1, sym_primary_expression, - STATE(4163), 1, + STATE(3076), 1, + sym_list_splat_pattern, + STATE(5047), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, + STATE(3029), 2, + sym_attribute, + sym_subscript, + STATE(5118), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1212), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(3552), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2295), 18, + sym_binary_operator, + sym_unary_operator, sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [73494] = 23, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, sym_float, - STATE(2971), 2, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2559), 1, + anon_sym_LT, + ACTIONS(3486), 1, + sym_identifier, + ACTIONS(3488), 1, + anon_sym_LPAREN, + ACTIONS(3490), 1, + anon_sym_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3496), 1, + anon_sym_await, + STATE(2028), 1, + sym_string, + STATE(2982), 1, + sym_list_splat_pattern, + STATE(3059), 1, + sym_primary_expression, + STATE(4199), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2983), 2, sym_attribute, sym_subscript, - STATE(4259), 2, + STATE(4149), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3489), 5, + ACTIONS(3492), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -171718,65 +172231,357 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77391] = 22, - ACTIONS(1122), 1, + [73593] = 24, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3511), 1, + ACTIONS(3536), 1, + anon_sym_STAR, + ACTIONS(3580), 1, sym_identifier, - ACTIONS(3515), 1, + ACTIONS(3588), 1, + anon_sym_await, + ACTIONS(3592), 1, + anon_sym_RPAREN, + ACTIONS(3594), 1, + anon_sym_COMMA, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(3051), 1, + sym_primary_expression, + STATE(4937), 1, + aux_sym__typedargslist_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2538), 2, + sym_attribute, + sym_subscript, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1212), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(3586), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2295), 18, + sym_binary_operator, + sym_unary_operator, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [73694] = 10, + ACTIONS(3463), 1, + anon_sym_COMMA, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, + ACTIONS(3474), 1, + anon_sym_EQ, + ACTIONS(3596), 1, + anon_sym_COLON, + ACTIONS(3599), 1, + anon_sym_LBRACK, + STATE(4386), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3478), 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(3468), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3457), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(3517), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [73767] = 23, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2553), 1, anon_sym_STAR, - ACTIONS(3521), 1, + ACTIONS(2557), 1, anon_sym_LBRACK, - ACTIONS(3523), 1, + ACTIONS(2559), 1, + anon_sym_LT, + ACTIONS(2561), 1, anon_sym_await, - STATE(2037), 1, + ACTIONS(3570), 1, + sym_identifier, + ACTIONS(3572), 1, + anon_sym_LPAREN, + STATE(2028), 1, sym_string, - STATE(3017), 1, + STATE(3030), 1, sym_list_splat_pattern, - STATE(3032), 1, + STATE(3044), 1, sym_primary_expression, - STATE(3078), 1, + STATE(5125), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, + STATE(3074), 2, + sym_attribute, + sym_subscript, + STATE(5009), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1212), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2555), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2295), 18, + sym_binary_operator, + sym_unary_operator, sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [73866] = 23, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, sym_float, - STATE(3020), 2, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2559), 1, + anon_sym_LT, + ACTIONS(3530), 1, + sym_identifier, + ACTIONS(3534), 1, + anon_sym_LPAREN, + ACTIONS(3536), 1, + anon_sym_STAR, + ACTIONS(3540), 1, + anon_sym_LBRACK, + ACTIONS(3542), 1, + anon_sym_await, + STATE(2028), 1, + sym_string, + STATE(3009), 1, + sym_list_splat_pattern, + STATE(3055), 1, + sym_pattern, + STATE(3072), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3012), 2, sym_attribute, sym_subscript, - STATE(3068), 2, + STATE(3042), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1136), 3, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1212), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(3538), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2295), 18, + sym_binary_operator, + sym_unary_operator, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [73965] = 22, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2559), 1, + anon_sym_LT, + ACTIONS(3536), 1, + anon_sym_STAR, + ACTIONS(3601), 1, + sym_identifier, + ACTIONS(3607), 1, + anon_sym_await, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(3072), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3603), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2987), 2, + sym_attribute, + sym_subscript, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3519), 5, + ACTIONS(3605), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -171792,18 +172597,18 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77487] = 7, - ACTIONS(841), 1, + [74061] = 7, + ACTIONS(570), 1, anon_sym_COMMA, - ACTIONS(851), 1, + ACTIONS(580), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(853), 2, + ACTIONS(582), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(867), 13, + ACTIONS(596), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -171817,7 +172622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(836), 15, + ACTIONS(565), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -171833,7 +172638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 17, + ACTIONS(563), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -171851,18 +172656,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77553] = 7, - ACTIONS(3444), 1, + [74127] = 7, + ACTIONS(3463), 1, anon_sym_COMMA, - ACTIONS(3451), 1, + ACTIONS(3470), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3455), 2, + ACTIONS(3474), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3459), 13, + ACTIONS(3478), 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(3468), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3457), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [74193] = 8, + ACTIONS(570), 1, + anon_sym_COMMA, + ACTIONS(580), 1, + anon_sym_COLON_EQ, + ACTIONS(582), 1, + anon_sym_EQ, + ACTIONS(1016), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(596), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -171876,7 +172741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(3449), 15, + ACTIONS(565), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -171892,7 +172757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 17, + ACTIONS(563), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -171910,65 +172775,411 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77619] = 22, - ACTIONS(1122), 1, + [74261] = 22, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2559), 1, + anon_sym_LT, + ACTIONS(3536), 1, + anon_sym_STAR, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3613), 1, + anon_sym_await, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(3044), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3603), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2962), 2, + sym_attribute, + sym_subscript, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1212), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(3611), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2295), 18, + sym_binary_operator, + sym_unary_operator, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [74357] = 22, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2559), 1, + anon_sym_LT, + ACTIONS(3536), 1, + anon_sym_STAR, + ACTIONS(3580), 1, + sym_identifier, + ACTIONS(3588), 1, + anon_sym_await, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(3051), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3615), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2538), 2, + sym_attribute, + sym_subscript, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1212), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(3586), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2295), 18, + sym_binary_operator, + sym_unary_operator, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [74453] = 22, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2559), 1, + anon_sym_LT, + ACTIONS(3536), 1, + anon_sym_STAR, + ACTIONS(3580), 1, + sym_identifier, + ACTIONS(3588), 1, + anon_sym_await, + STATE(2028), 1, + sym_string, + STATE(2340), 1, + sym_list_splat_pattern, + STATE(3051), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3617), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2538), 2, + sym_attribute, + sym_subscript, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1212), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(3586), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2295), 18, + sym_binary_operator, + sym_unary_operator, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [74549] = 20, + ACTIONS(1703), 1, + anon_sym_LPAREN, + ACTIONS(1709), 1, + anon_sym_LBRACK, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1723), 1, + anon_sym_await, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2409), 1, + anon_sym_STAR, + ACTIONS(2417), 1, anon_sym_LT, - ACTIONS(3533), 1, + ACTIONS(3619), 1, + anon_sym_not, + STATE(1976), 1, + sym_string, + STATE(2042), 1, + sym_primary_expression, + STATE(2212), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1701), 4, + sym_integer, sym_identifier, - ACTIONS(3535), 1, + sym_true, + sym_false, + ACTIONS(1711), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1707), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2175), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [74640] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1204), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1402), 3, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(3537), 1, + anon_sym_LBRACK, + ACTIONS(1201), 13, anon_sym_STAR, - ACTIONS(3541), 1, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1199), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [74701] = 20, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(3545), 1, + ACTIONS(1127), 1, + anon_sym_LBRACE, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, + anon_sym_sizeof, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(2183), 1, anon_sym_await, - STATE(2037), 1, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(3619), 1, + anon_sym_not, + STATE(2028), 1, sym_string, - STATE(3021), 1, - sym_list_splat_pattern, - STATE(3060), 1, + STATE(2070), 1, sym_primary_expression, - STATE(5042), 1, - sym_pattern, + STATE(2340), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(3075), 2, - sym_attribute, - sym_subscript, - STATE(5131), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1205), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3539), 5, + ACTIONS(1141), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -171984,36 +173195,15 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77715] = 8, - ACTIONS(841), 1, - anon_sym_COMMA, - ACTIONS(851), 1, - anon_sym_COLON_EQ, - ACTIONS(853), 1, - anon_sym_EQ, - ACTIONS(1011), 1, - anon_sym_COLON, + [74792] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(867), 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(836), 15, + ACTIONS(3623), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -172026,13 +173216,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 17, + ACTIONS(3621), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -172044,66 +173236,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77783] = 23, - ACTIONS(1112), 1, + 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, + [74849] = 20, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2277), 1, + anon_sym_await, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2301), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(2728), 1, anon_sym_STAR, - ACTIONS(3566), 1, - sym_identifier, - ACTIONS(3574), 1, - anon_sym_await, - ACTIONS(3576), 1, - anon_sym_RPAREN, - ACTIONS(3578), 1, - anon_sym_COMMA, - STATE(2037), 1, + ACTIONS(3619), 1, + anon_sym_not, + STATE(2051), 1, sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3085), 1, + STATE(2108), 1, sym_primary_expression, - STATE(4503), 1, - aux_sym__typedargslist_repeat1, + STATE(2326), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2604), 2, - sym_attribute, - sym_subscript, - ACTIONS(1136), 3, + ACTIONS(2255), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3572), 5, + ACTIONS(2261), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -172119,65 +173320,120 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77881] = 22, - ACTIONS(1122), 1, + [74940] = 7, + ACTIONS(3637), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3627), 2, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(3629), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3635), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3632), 12, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(3625), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [75005] = 20, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(2524), 1, - anon_sym_STAR, - ACTIONS(2528), 1, + ACTIONS(1376), 1, anon_sym_LBRACK, - ACTIONS(2530), 1, - anon_sym_LT, - ACTIONS(2532), 1, - anon_sym_await, - ACTIONS(3527), 1, - sym_identifier, - ACTIONS(3529), 1, + ACTIONS(2159), 1, anon_sym_LPAREN, - STATE(2037), 1, + ACTIONS(2169), 1, + anon_sym_await, + ACTIONS(2803), 1, + anon_sym_STAR, + ACTIONS(3619), 1, + anon_sym_not, + STATE(2056), 1, sym_string, - STATE(3023), 1, - sym_list_splat_pattern, - STATE(3053), 1, + STATE(2076), 1, sym_primary_expression, - STATE(5032), 1, - sym_pattern, + STATE(2287), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(3031), 2, - sym_attribute, - sym_subscript, - STATE(5181), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1205), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2526), 5, + ACTIONS(1246), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2163), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -172193,65 +173449,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77977] = 22, - ACTIONS(1122), 1, + [75096] = 20, + ACTIONS(2187), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, + anon_sym_LBRACK, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2207), 1, + anon_sym_await, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2492), 1, - sym_identifier, - ACTIONS(2496), 1, - anon_sym_LPAREN, - ACTIONS(2502), 1, - anon_sym_LBRACK, - ACTIONS(2504), 1, - anon_sym_await, - ACTIONS(2530), 1, + ACTIONS(2331), 1, anon_sym_LT, - ACTIONS(3580), 1, + ACTIONS(2703), 1, anon_sym_STAR, - STATE(2037), 1, + ACTIONS(3619), 1, + anon_sym_not, + STATE(2004), 1, sym_string, - STATE(2409), 1, - sym_list_splat_pattern, - STATE(3065), 1, + STATE(2032), 1, sym_primary_expression, - STATE(3073), 1, - sym_pattern, + STATE(2272), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2415), 2, - sym_attribute, - sym_subscript, - STATE(3071), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1136), 3, + ACTIONS(2185), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2500), 5, + ACTIONS(2191), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -172267,73 +173520,16 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [78073] = 6, - ACTIONS(3455), 1, + [75187] = 6, + ACTIONS(3474), 1, anon_sym_EQ, - ACTIONS(3584), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3459), 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(3587), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3582), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [78136] = 6, - ACTIONS(3444), 1, + ACTIONS(3641), 2, anon_sym_COMMA, - ACTIONS(3455), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3459), 14, anon_sym_COLON, + ACTIONS(3478), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -172347,7 +173543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(3449), 15, + ACTIONS(3644), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -172363,7 +173559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 17, + ACTIONS(3639), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -172381,11 +173577,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78199] = 3, + [75250] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3591), 16, + ACTIONS(3648), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -172402,7 +173598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3589), 32, + ACTIONS(3646), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -172435,16 +173631,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [78256] = 6, - ACTIONS(3455), 1, + [75307] = 6, + ACTIONS(3474), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3444), 2, + ACTIONS(3463), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3459), 13, + ACTIONS(3478), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -172458,7 +173654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(3449), 15, + ACTIONS(3468), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -172474,7 +173670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 17, + ACTIONS(3457), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -172492,177 +173688,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78319] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3595), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3601), 3, + [75370] = 6, + ACTIONS(3657), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3598), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3593), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [78380] = 21, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2530), 1, - anon_sym_LT, - ACTIONS(3517), 1, - anon_sym_STAR, - ACTIONS(3566), 1, - sym_identifier, - ACTIONS(3574), 1, - anon_sym_await, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3085), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(3603), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2604), 2, - sym_attribute, - sym_subscript, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1205), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(3572), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2436), 17, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [78473] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1197), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1391), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1194), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1192), 29, - sym__newline, - anon_sym_SEMI, + ACTIONS(3652), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, + ACTIONS(3659), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -172676,15 +173711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [78534] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3607), 16, + ACTIONS(3655), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -172697,15 +173727,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3605), 32, + ACTIONS(3650), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -172717,29 +173745,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [78591] = 6, - ACTIONS(3616), 1, + [75433] = 6, + ACTIONS(3668), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3611), 2, + ACTIONS(3663), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3618), 13, + ACTIONS(3670), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -172753,7 +173768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(3614), 15, + ACTIONS(3666), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -172769,7 +173784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 17, + ACTIONS(3661), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -172787,11 +173802,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78654] = 3, + [75496] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3622), 16, + ACTIONS(3674), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -172808,7 +173823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3620), 32, + ACTIONS(3672), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -172841,11 +173856,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [78711] = 3, + [75553] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 16, + ACTIONS(3678), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -172862,7 +173877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3624), 32, + ACTIONS(3676), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -172895,11 +173910,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [78768] = 3, + [75610] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 16, + ACTIONS(3678), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -172916,7 +173931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3624), 32, + ACTIONS(3676), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -172949,28 +173964,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [78825] = 7, - ACTIONS(3630), 1, - anon_sym_PIPE, + [75667] = 6, + ACTIONS(3463), 1, + anon_sym_COMMA, + ACTIONS(3474), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3595), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3628), 2, - anon_sym_DOT, + ACTIONS(3478), 14, anon_sym_COLON, - ACTIONS(3601), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3598), 12, + 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(3468), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, @@ -172978,13 +174001,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3593), 28, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3457), 17, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_as, anon_sym_if, anon_sym_in, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -172994,6 +174021,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, + [75730] = 6, + ACTIONS(3474), 1, + anon_sym_EQ, + ACTIONS(3641), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3478), 14, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -173007,87 +174044,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [78890] = 21, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_LBRACE, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1142), 1, - anon_sym_sizeof, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(2530), 1, - anon_sym_LT, - ACTIONS(3517), 1, - anon_sym_STAR, - ACTIONS(3632), 1, - sym_identifier, - ACTIONS(3638), 1, - anon_sym_await, - STATE(2037), 1, - sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3053), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(3634), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2951), 2, - sym_attribute, - sym_subscript, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1205), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(3636), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2436), 17, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [78983] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3642), 16, + ACTIONS(3644), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -173100,15 +174060,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3640), 32, + ACTIONS(3639), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -173120,76 +174078,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [79040] = 21, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, + [75793] = 20, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2530), 1, - anon_sym_LT, - ACTIONS(3517), 1, - anon_sym_STAR, - ACTIONS(3566), 1, - sym_identifier, - ACTIONS(3574), 1, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(1197), 1, anon_sym_await, - STATE(2037), 1, + ACTIONS(2843), 1, + anon_sym_STAR, + ACTIONS(3619), 1, + anon_sym_not, + STATE(1929), 1, sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3085), 1, + STATE(1939), 1, sym_primary_expression, + STATE(1975), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(3644), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2604), 2, - sym_attribute, - sym_subscript, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1205), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3572), 5, + ACTIONS(81), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1189), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -173205,15 +174149,15 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79133] = 6, - ACTIONS(3611), 1, + [75884] = 6, + ACTIONS(3663), 1, anon_sym_COMMA, - ACTIONS(3616), 1, + ACTIONS(3668), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3618), 14, + ACTIONS(3670), 14, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -173228,7 +174172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(3614), 15, + ACTIONS(3666), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -173244,7 +174188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 17, + ACTIONS(3661), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -173262,11 +174206,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79196] = 3, + [75947] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 16, + ACTIONS(3682), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -173283,7 +174227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3605), 32, + ACTIONS(3680), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -173316,63 +174260,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [79253] = 21, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, + [76004] = 20, + ACTIONS(1286), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1294), 1, + anon_sym_LT, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(2530), 1, - anon_sym_LT, - ACTIONS(3517), 1, - anon_sym_STAR, - ACTIONS(3646), 1, - sym_identifier, - ACTIONS(3650), 1, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2225), 1, anon_sym_await, - STATE(2037), 1, + ACTIONS(2831), 1, + anon_sym_STAR, + ACTIONS(3619), 1, + anon_sym_not, + STATE(2152), 1, sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3032), 1, + STATE(2369), 1, sym_primary_expression, + STATE(2614), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(3634), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2991), 2, - sym_attribute, - sym_subscript, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1205), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3648), 5, + ACTIONS(1302), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2221), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -173388,16 +174331,16 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79346] = 6, - ACTIONS(3659), 1, + [76095] = 6, + ACTIONS(3652), 1, + anon_sym_COMMA, + ACTIONS(3657), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3654), 2, - anon_sym_COMMA, + ACTIONS(3659), 14, anon_sym_COLON, - ACTIONS(3661), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -173411,7 +174354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(3657), 15, + ACTIONS(3655), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -173427,7 +174370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3652), 17, + ACTIONS(3650), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -173445,33 +174388,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79409] = 6, - ACTIONS(3654), 1, - anon_sym_COMMA, - ACTIONS(3659), 1, - anon_sym_EQ, + [76158] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3661), 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(3657), 15, + ACTIONS(3682), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -173484,13 +174409,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3652), 17, + ACTIONS(3680), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -173502,16 +174429,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79472] = 6, - ACTIONS(3455), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3584), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3459), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -173525,7 +174442,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(3587), 15, + [76215] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3629), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3635), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3632), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -173539,17 +174468,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3582), 17, + ACTIONS(3625), 29, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -173559,352 +174485,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79535] = 27, - ACTIONS(123), 1, - anon_sym_class, - ACTIONS(131), 1, - anon_sym_ctypedef, - ACTIONS(3663), 1, - sym_identifier, - ACTIONS(3665), 1, - anon_sym_LPAREN, - ACTIONS(3667), 1, - anon_sym_pass, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(3683), 1, - anon_sym_enum, - ACTIONS(3685), 1, - anon_sym_cppclass, - ACTIONS(3687), 1, - anon_sym_fused, - ACTIONS(3689), 1, - sym_string_start, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(3339), 1, - sym_c_type, - STATE(5352), 1, - sym_pass_statement, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3669), 2, - anon_sym_cdef, - anon_sym_cpdef, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3679), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(3681), 2, - anon_sym_struct, - anon_sym_union, - STATE(2787), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3560), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(633), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(637), 3, - sym_struct, - sym_enum, - sym_cppclass, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - STATE(1851), 5, - sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [79639] = 19, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(1190), 1, - anon_sym_await, - ACTIONS(2822), 1, - anon_sym_STAR, - ACTIONS(3691), 1, - anon_sym_not, - STATE(1933), 1, - sym_string, - STATE(1948), 1, - sym_primary_expression, - STATE(1985), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(65), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(81), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1182), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(1981), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [79727] = 27, - ACTIONS(123), 1, - anon_sym_class, - ACTIONS(131), 1, - anon_sym_ctypedef, - ACTIONS(3663), 1, - sym_identifier, - ACTIONS(3665), 1, - anon_sym_LPAREN, - ACTIONS(3667), 1, - anon_sym_pass, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(3683), 1, - anon_sym_enum, - ACTIONS(3685), 1, - anon_sym_cppclass, - ACTIONS(3687), 1, - anon_sym_fused, - ACTIONS(3689), 1, - sym_string_start, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(3339), 1, - sym_c_type, - STATE(5319), 1, - sym_pass_statement, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3669), 2, - anon_sym_cdef, - anon_sym_cpdef, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3679), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(3681), 2, - anon_sym_struct, - anon_sym_union, - STATE(2787), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3560), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(633), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(637), 3, - sym_struct, - sym_enum, - sym_cppclass, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - STATE(1889), 5, - sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [79831] = 19, - ACTIONS(2102), 1, + 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, + [76276] = 20, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2120), 1, - anon_sym_await, - ACTIONS(2122), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, - sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, - anon_sym_LT, - ACTIONS(3691), 1, - anon_sym_not, - STATE(1968), 1, - sym_string, - STATE(2062), 1, - sym_primary_expression, - STATE(2230), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, + ACTIONS(2247), 1, sym_float, - ACTIONS(2100), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2110), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2106), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2179), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [79919] = 19, - ACTIONS(2166), 1, - anon_sym_LPAREN, - ACTIONS(2172), 1, - anon_sym_LBRACK, - ACTIONS(2176), 1, - anon_sym_LBRACE, - ACTIONS(2182), 1, - anon_sym_None, - ACTIONS(2184), 1, + ACTIONS(2249), 1, anon_sym_await, - ACTIONS(2186), 1, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2284), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2731), 1, + ACTIONS(2835), 1, anon_sym_STAR, - ACTIONS(3691), 1, + ACTIONS(3619), 1, anon_sym_not, - STATE(1984), 1, + STATE(2096), 1, sym_string, - STATE(2052), 1, + STATE(2245), 1, sym_primary_expression, - STATE(2133), 1, + STATE(2477), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 4, + ACTIONS(2227), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2170), 5, + ACTIONS(2233), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2246), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -173920,60 +174569,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80007] = 19, - ACTIONS(1112), 1, + [76367] = 19, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2162), 1, + ACTIONS(2183), 1, anon_sym_await, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(3691), 1, - anon_sym_not, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2075), 1, + STATE(2114), 1, sym_primary_expression, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1136), 4, + ACTIONS(1141), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1201), 5, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -173989,137 +174638,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80095] = 27, - ACTIONS(123), 1, - anon_sym_class, - ACTIONS(131), 1, - anon_sym_ctypedef, - ACTIONS(3663), 1, - sym_identifier, - ACTIONS(3665), 1, - anon_sym_LPAREN, - ACTIONS(3667), 1, - anon_sym_pass, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(3683), 1, - anon_sym_enum, - ACTIONS(3685), 1, - anon_sym_cppclass, - ACTIONS(3687), 1, - anon_sym_fused, - ACTIONS(3689), 1, - sym_string_start, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(3339), 1, - sym_c_type, - STATE(5344), 1, - sym_pass_statement, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3669), 2, - anon_sym_cdef, - anon_sym_cpdef, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3679), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(3681), 2, - anon_sym_struct, - anon_sym_union, - STATE(2787), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3560), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(633), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(637), 3, - sym_struct, - sym_enum, - sym_cppclass, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - STATE(1852), 5, - sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [80199] = 19, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, + [76455] = 19, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(2222), 1, - anon_sym_await, - ACTIONS(2224), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2878), 1, + ACTIONS(1376), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_await, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(3691), 1, - anon_sym_not, - STATE(2110), 1, + STATE(2056), 1, sym_string, - STATE(2264), 1, + STATE(2088), 1, sym_primary_expression, - STATE(2490), 1, + STATE(2287), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2212), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2208), 5, + ACTIONS(1246), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2163), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2509), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -174135,60 +174707,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80287] = 19, - ACTIONS(1225), 1, + [76543] = 19, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(1237), 1, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(1255), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(1365), 1, + ACTIONS(1376), 1, anon_sym_LBRACK, - ACTIONS(2190), 1, + ACTIONS(2159), 1, anon_sym_LPAREN, - ACTIONS(2200), 1, + ACTIONS(2169), 1, anon_sym_await, - ACTIONS(2760), 1, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(3691), 1, - anon_sym_not, - STATE(2028), 1, + STATE(2056), 1, sym_string, - STATE(2079), 1, + STATE(2095), 1, sym_primary_expression, - STATE(2426), 1, + STATE(2287), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1223), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1239), 4, + ACTIONS(1246), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2194), 5, + ACTIONS(2163), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2403), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -174204,129 +174776,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80375] = 19, - ACTIONS(2230), 1, + [76631] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2236), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2248), 1, - anon_sym_await, - ACTIONS(2250), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2310), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(2750), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3691), 1, - anon_sym_not, - STATE(2061), 1, + ACTIONS(3568), 1, + anon_sym_await, + ACTIONS(3684), 1, + sym_identifier, + STATE(2028), 1, sym_string, - STATE(2102), 1, - sym_primary_expression, - STATE(2307), 1, + STATE(2340), 1, sym_list_splat_pattern, + STATE(3031), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 4, + STATE(1998), 2, + sym_attribute, + sym_subscript, + ACTIONS(1141), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2234), 5, + ACTIONS(3562), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2310), 19, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [80463] = 19, - ACTIONS(1277), 1, - anon_sym_LBRACK, - ACTIONS(1281), 1, - anon_sym_LBRACE, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1291), 1, - anon_sym_None, - ACTIONS(1299), 1, - anon_sym_sizeof, - ACTIONS(1301), 1, - sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2262), 1, - anon_sym_await, - ACTIONS(2886), 1, - anon_sym_STAR, - ACTIONS(3691), 1, - anon_sym_not, - STATE(2171), 1, - sym_string, - STATE(2334), 1, - sym_primary_expression, - STATE(2556), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1289), 2, sym_ellipsis, - sym_float, - ACTIONS(1279), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1293), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2258), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2521), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -174342,37 +174847,38 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80551] = 18, + [76723] = 19, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, anon_sym_LT, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(103), 1, - anon_sym_sizeof, + ACTIONS(83), 1, + sym_float, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(1190), 1, + ACTIONS(1197), 1, anon_sym_await, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1937), 1, + STATE(1949), 1, sym_primary_expression, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, @@ -174383,17 +174889,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_true, sym_false, - ACTIONS(1182), 5, + ACTIONS(1189), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -174409,133 +174916,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80636] = 26, - ACTIONS(3693), 1, - sym_identifier, - ACTIONS(3696), 1, + [76811] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(3699), 1, - anon_sym_class, - ACTIONS(3717), 1, - anon_sym_long, - ACTIONS(3723), 1, - anon_sym_ctypedef, - ACTIONS(3729), 1, - anon_sym_enum, - ACTIONS(3732), 1, - anon_sym_cppclass, - ACTIONS(3735), 1, - anon_sym_fused, - ACTIONS(3738), 1, - sym__dedent, - ACTIONS(3740), 1, - sym_string_start, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(3339), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3705), 2, - anon_sym_cdef, - anon_sym_cpdef, - ACTIONS(3711), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3714), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3720), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(3726), 2, - anon_sym_struct, - anon_sym_union, - STATE(2787), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3560), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3708), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(633), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(637), 3, - sym_struct, - sym_enum, - sym_cppclass, - ACTIONS(3702), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - STATE(1798), 5, - sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [80737] = 18, - ACTIONS(2166), 1, - anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2184), 1, - anon_sym_await, - ACTIONS(2186), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2284), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(2731), 1, + ACTIONS(3536), 1, anon_sym_STAR, - STATE(1984), 1, + ACTIONS(3686), 1, + sym_identifier, + ACTIONS(3690), 1, + anon_sym_await, + STATE(2028), 1, sym_string, - STATE(2039), 1, - sym_primary_expression, - STATE(2133), 1, + STATE(2340), 1, sym_list_splat_pattern, + STATE(3044), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 4, + STATE(2966), 2, + sym_attribute, + sym_subscript, + ACTIONS(1141), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2170), 5, + ACTIONS(3688), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2246), 19, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -174551,58 +174987,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80822] = 18, - ACTIONS(2166), 1, + [76903] = 19, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(2184), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2277), 1, anon_sym_await, - ACTIONS(2186), 1, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2284), 1, + ACTIONS(2301), 1, anon_sym_LT, - ACTIONS(2731), 1, + ACTIONS(2728), 1, anon_sym_STAR, - STATE(1984), 1, - sym_string, STATE(2051), 1, + sym_string, + STATE(2092), 1, sym_primary_expression, - STATE(2133), 1, + STATE(2326), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 4, + ACTIONS(2255), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2170), 5, + ACTIONS(2261), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2246), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -174618,58 +175056,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80907] = 18, - ACTIONS(2102), 1, + [76991] = 19, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(2120), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2277), 1, anon_sym_await, - ACTIONS(2122), 1, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2301), 1, anon_sym_LT, - STATE(1968), 1, + ACTIONS(2728), 1, + anon_sym_STAR, + STATE(2051), 1, sym_string, - STATE(2062), 1, + STATE(2079), 1, sym_primary_expression, - STATE(2230), 1, + STATE(2326), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 4, + ACTIONS(2255), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2106), 5, + ACTIONS(2261), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2179), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -174685,58 +175125,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80992] = 18, - ACTIONS(2166), 1, + [77079] = 19, + ACTIONS(2187), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(2184), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2207), 1, anon_sym_await, - ACTIONS(2186), 1, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2284), 1, + ACTIONS(2331), 1, anon_sym_LT, - ACTIONS(2731), 1, + ACTIONS(2703), 1, anon_sym_STAR, - STATE(1984), 1, + STATE(2004), 1, sym_string, - STATE(2036), 1, + STATE(2032), 1, sym_primary_expression, - STATE(2133), 1, + STATE(2272), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 4, + ACTIONS(2185), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2170), 5, + ACTIONS(2191), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2246), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -174752,125 +175194,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81077] = 18, - ACTIONS(2102), 1, + [77167] = 19, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(2120), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2277), 1, anon_sym_await, - ACTIONS(2122), 1, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2301), 1, anon_sym_LT, - STATE(1968), 1, + ACTIONS(2728), 1, + anon_sym_STAR, + STATE(2051), 1, sym_string, - STATE(2032), 1, + STATE(2090), 1, sym_primary_expression, - STATE(2230), 1, + STATE(2326), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 4, + ACTIONS(2255), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2106), 5, + ACTIONS(2261), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2179), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [81162] = 18, - ACTIONS(1277), 1, - anon_sym_LBRACK, - ACTIONS(1281), 1, - anon_sym_LBRACE, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1291), 1, - anon_sym_None, - ACTIONS(1299), 1, - anon_sym_sizeof, - ACTIONS(1301), 1, - sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2262), 1, - anon_sym_await, - ACTIONS(2886), 1, - anon_sym_STAR, - STATE(2171), 1, - sym_string, - STATE(2334), 1, - sym_primary_expression, - STATE(2556), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1289), 2, sym_ellipsis, - sym_float, - ACTIONS(1279), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1293), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2258), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2521), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -174886,58 +175263,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81247] = 18, - ACTIONS(2102), 1, + [77255] = 19, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(2120), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2277), 1, anon_sym_await, - ACTIONS(2122), 1, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2301), 1, anon_sym_LT, - STATE(1968), 1, + ACTIONS(2728), 1, + anon_sym_STAR, + STATE(2051), 1, sym_string, - STATE(2041), 1, + STATE(2123), 1, sym_primary_expression, - STATE(2230), 1, + STATE(2326), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 4, + ACTIONS(2255), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2106), 5, + ACTIONS(2261), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2179), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -174953,58 +175332,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81332] = 18, - ACTIONS(2102), 1, + [77343] = 19, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(2120), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2277), 1, anon_sym_await, - ACTIONS(2122), 1, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2301), 1, anon_sym_LT, - STATE(1968), 1, + ACTIONS(2728), 1, + anon_sym_STAR, + STATE(2051), 1, sym_string, - STATE(2049), 1, + STATE(2101), 1, sym_primary_expression, - STATE(2230), 1, + STATE(2326), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 4, + ACTIONS(2255), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2106), 5, + ACTIONS(2261), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2179), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -175020,58 +175401,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81417] = 18, - ACTIONS(2102), 1, + [77431] = 19, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(2120), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2277), 1, anon_sym_await, - ACTIONS(2122), 1, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2301), 1, anon_sym_LT, - STATE(1968), 1, + ACTIONS(2728), 1, + anon_sym_STAR, + STATE(2051), 1, sym_string, - STATE(2050), 1, + STATE(2103), 1, sym_primary_expression, - STATE(2230), 1, + STATE(2326), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 4, + ACTIONS(2255), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2106), 5, + ACTIONS(2261), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2179), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -175087,60 +175470,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81502] = 20, - ACTIONS(1112), 1, + [77519] = 19, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2277), 1, + anon_sym_await, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2301), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(2728), 1, anon_sym_STAR, - ACTIONS(3743), 1, - sym_identifier, - ACTIONS(3747), 1, - anon_sym_await, - STATE(2037), 1, + STATE(2051), 1, sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3032), 1, + STATE(2110), 1, sym_primary_expression, + STATE(2326), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2130), 2, - sym_attribute, - sym_subscript, - ACTIONS(1136), 3, + ACTIONS(2255), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3745), 5, + ACTIONS(2261), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -175156,58 +175539,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81591] = 18, - ACTIONS(1112), 1, + [77607] = 19, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2162), 1, + ACTIONS(2183), 1, anon_sym_await, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2121), 1, + STATE(2111), 1, sym_primary_expression, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1136), 4, + ACTIONS(1141), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1201), 5, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -175223,60 +175608,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81676] = 20, - ACTIONS(1112), 1, + [77695] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3747), 1, - anon_sym_await, - ACTIONS(3749), 1, + ACTIONS(3560), 1, sym_identifier, - STATE(2037), 1, + ACTIONS(3568), 1, + anon_sym_await, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3032), 1, + STATE(3031), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2130), 2, + STATE(1998), 2, sym_attribute, sym_subscript, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3745), 5, + ACTIONS(3562), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -175292,60 +175679,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81765] = 20, - ACTIONS(1112), 1, + [77787] = 19, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(1216), 1, + anon_sym_await, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3751), 1, - sym_identifier, - ACTIONS(3755), 1, - anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3055), 1, + STATE(3034), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2229), 2, - sym_attribute, - sym_subscript, - ACTIONS(1136), 3, + ACTIONS(1141), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3753), 5, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -175361,58 +175748,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81854] = 18, - ACTIONS(2230), 1, + [77875] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2236), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2248), 1, - anon_sym_await, - ACTIONS(2250), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2310), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(2750), 1, + ACTIONS(3536), 1, anon_sym_STAR, - STATE(2061), 1, + ACTIONS(3692), 1, + sym_identifier, + ACTIONS(3696), 1, + anon_sym_await, + STATE(2028), 1, sym_string, - STATE(2094), 1, - sym_primary_expression, - STATE(2307), 1, + STATE(2340), 1, sym_list_splat_pattern, + STATE(3052), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 4, + STATE(2511), 2, + sym_attribute, + sym_subscript, + ACTIONS(1141), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2234), 5, + ACTIONS(3694), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2310), 19, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -175428,58 +175819,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81939] = 18, - ACTIONS(2102), 1, + [77967] = 19, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2120), 1, - anon_sym_await, - ACTIONS(2122), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2183), 1, + anon_sym_await, + ACTIONS(2461), 1, anon_sym_LT, - STATE(1968), 1, + ACTIONS(2750), 1, + anon_sym_STAR, + STATE(2028), 1, sym_string, - STATE(2030), 1, + STATE(2107), 1, sym_primary_expression, - STATE(2230), 1, + STATE(2340), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2110), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2106), 5, + ACTIONS(1141), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2179), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -175495,58 +175888,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82024] = 18, - ACTIONS(2102), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_LBRACK, - ACTIONS(2112), 1, + [78055] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2120), 1, - anon_sym_await, - ACTIONS(2122), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2426), 1, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(1197), 1, + anon_sym_await, + ACTIONS(2843), 1, anon_sym_STAR, - ACTIONS(2434), 1, - anon_sym_LT, - STATE(1968), 1, + STATE(1929), 1, sym_string, - STATE(2066), 1, + STATE(1939), 1, sym_primary_expression, - STATE(2230), 1, + STATE(1975), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2110), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2106), 5, + ACTIONS(81), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1189), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2179), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -175562,60 +175957,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82109] = 20, - ACTIONS(1112), 1, + [78143] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3566), 1, + ACTIONS(3698), 1, sym_identifier, - ACTIONS(3574), 1, + ACTIONS(3702), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3085), 1, + STATE(3067), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2604), 2, + STATE(1792), 2, sym_attribute, sym_subscript, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3572), 5, + ACTIONS(3700), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -175631,58 +176028,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82198] = 18, - ACTIONS(2166), 1, + [78235] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2184), 1, - anon_sym_await, - ACTIONS(2186), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2284), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(2731), 1, + ACTIONS(3536), 1, anon_sym_STAR, - STATE(1984), 1, + ACTIONS(3704), 1, + sym_identifier, + ACTIONS(3708), 1, + anon_sym_await, + STATE(2028), 1, sym_string, - STATE(2057), 1, - sym_primary_expression, - STATE(2133), 1, + STATE(2340), 1, sym_list_splat_pattern, + STATE(3072), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 4, + STATE(2247), 2, + sym_attribute, + sym_subscript, + ACTIONS(1141), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2170), 5, + ACTIONS(3706), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2246), 19, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -175698,58 +176099,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82283] = 18, - ACTIONS(2166), 1, + [78327] = 19, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2184), 1, - anon_sym_await, - ACTIONS(2186), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2284), 1, + ACTIONS(2183), 1, + anon_sym_await, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2731), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1984), 1, + STATE(2028), 1, sym_string, - STATE(2025), 1, + STATE(2072), 1, sym_primary_expression, - STATE(2133), 1, + STATE(2340), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2174), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2170), 5, + ACTIONS(1141), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2246), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -175765,58 +176168,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82368] = 18, - ACTIONS(2166), 1, + [78415] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2184), 1, - anon_sym_await, - ACTIONS(2186), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2284), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(2731), 1, + ACTIONS(3536), 1, anon_sym_STAR, - STATE(1984), 1, + ACTIONS(3710), 1, + sym_identifier, + ACTIONS(3714), 1, + anon_sym_await, + STATE(2028), 1, sym_string, - STATE(2044), 1, - sym_primary_expression, - STATE(2133), 1, + STATE(2340), 1, sym_list_splat_pattern, + STATE(3072), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 4, + STATE(2999), 2, + sym_attribute, + sym_subscript, + ACTIONS(1141), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2170), 5, + ACTIONS(3712), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2246), 19, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -175832,60 +176239,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82453] = 20, - ACTIONS(1112), 1, + [78507] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3574), 1, - anon_sym_await, - ACTIONS(3757), 1, + ACTIONS(3716), 1, sym_identifier, - STATE(2037), 1, + ACTIONS(3720), 1, + anon_sym_await, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3053), 1, + STATE(3049), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2371), 2, + STATE(2211), 2, sym_attribute, sym_subscript, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3759), 5, + ACTIONS(3718), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -175901,58 +176310,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82542] = 18, - ACTIONS(2102), 1, + [78599] = 19, + ACTIONS(2257), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2267), 1, anon_sym_LBRACE, - ACTIONS(2118), 1, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, anon_sym_None, - ACTIONS(2120), 1, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2277), 1, anon_sym_await, - ACTIONS(2122), 1, + ACTIONS(2279), 1, anon_sym_sizeof, - ACTIONS(2124), 1, + ACTIONS(2281), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, + ACTIONS(2301), 1, anon_sym_LT, - STATE(1968), 1, + ACTIONS(2728), 1, + anon_sym_STAR, + STATE(2051), 1, sym_string, - STATE(2038), 1, + STATE(2121), 1, sym_primary_expression, - STATE(2230), 1, + STATE(2326), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 4, + ACTIONS(2255), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2110), 4, + ACTIONS(2265), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2106), 5, + ACTIONS(2261), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2179), 19, + STATE(2374), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -175968,60 +176379,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82627] = 20, - ACTIONS(1112), 1, + [78687] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3761), 1, - sym_identifier, - ACTIONS(3765), 1, + ACTIONS(3708), 1, anon_sym_await, - STATE(2037), 1, + ACTIONS(3722), 1, + sym_identifier, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3058), 1, + STATE(3072), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2495), 2, + STATE(2247), 2, sym_attribute, sym_subscript, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3763), 5, + ACTIONS(3706), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -176037,58 +176450,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82716] = 18, - ACTIONS(1112), 1, + [78779] = 19, + ACTIONS(2187), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2207), 1, + anon_sym_await, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2162), 1, - anon_sym_await, - ACTIONS(2466), 1, + ACTIONS(2331), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2703), 1, anon_sym_STAR, - STATE(2037), 1, + STATE(2004), 1, sym_string, - STATE(2100), 1, + STATE(2033), 1, sym_primary_expression, - STATE(2402), 1, + STATE(2272), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1126), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1136), 4, + ACTIONS(2185), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1201), 5, + ACTIONS(2195), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2191), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -176104,58 +176519,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82801] = 18, - ACTIONS(1277), 1, + [78867] = 21, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1291), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1299), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2262), 1, - anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2559), 1, + anon_sym_LT, + ACTIONS(3536), 1, anon_sym_STAR, - STATE(2171), 1, + ACTIONS(3702), 1, + anon_sym_await, + ACTIONS(3724), 1, + sym_identifier, + STATE(2028), 1, sym_string, - STATE(2292), 1, - sym_primary_expression, - STATE(2556), 1, + STATE(2340), 1, sym_list_splat_pattern, + STATE(3067), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1279), 4, + STATE(1792), 2, + sym_attribute, + sym_subscript, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1293), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2258), 5, + ACTIONS(3700), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2521), 19, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -176171,58 +176590,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82886] = 18, - ACTIONS(1112), 1, + [78959] = 19, + ACTIONS(2187), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2207), 1, + anon_sym_await, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2162), 1, - anon_sym_await, - ACTIONS(2466), 1, + ACTIONS(2331), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2703), 1, anon_sym_STAR, - STATE(2037), 1, + STATE(2004), 1, sym_string, - STATE(2101), 1, + STATE(2034), 1, sym_primary_expression, - STATE(2402), 1, + STATE(2272), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1126), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1136), 4, + ACTIONS(2185), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1201), 5, + ACTIONS(2195), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2191), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -176238,58 +176659,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82971] = 18, - ACTIONS(67), 1, + [79047] = 19, + ACTIONS(1703), 1, + anon_sym_LPAREN, + ACTIONS(1709), 1, + anon_sym_LBRACK, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(79), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(103), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1723), 1, + anon_sym_await, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(1190), 1, - anon_sym_await, - ACTIONS(2822), 1, + ACTIONS(2409), 1, anon_sym_STAR, - STATE(1933), 1, + ACTIONS(2417), 1, + anon_sym_LT, + STATE(1976), 1, sym_string, - STATE(1942), 1, + STATE(2042), 1, sym_primary_expression, - STATE(1985), 1, + STATE(2212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(65), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(81), 4, + ACTIONS(1701), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1182), 5, + ACTIONS(1711), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1707), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(1981), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -176305,58 +176728,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83056] = 18, - ACTIONS(2230), 1, + [79135] = 19, + ACTIONS(2187), 1, anon_sym_LPAREN, - ACTIONS(2236), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(2248), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2207), 1, anon_sym_await, - ACTIONS(2250), 1, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2310), 1, + ACTIONS(2331), 1, anon_sym_LT, - ACTIONS(2750), 1, + ACTIONS(2703), 1, anon_sym_STAR, - STATE(2061), 1, + STATE(2004), 1, sym_string, - STATE(2102), 1, + STATE(2043), 1, sym_primary_expression, - STATE(2307), 1, + STATE(2272), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 4, + ACTIONS(2185), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2234), 5, + ACTIONS(2191), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2310), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -176372,58 +176797,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83141] = 18, - ACTIONS(1112), 1, + [79223] = 19, + ACTIONS(2187), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2207), 1, + anon_sym_await, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2162), 1, - anon_sym_await, - ACTIONS(2466), 1, + ACTIONS(2331), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2703), 1, anon_sym_STAR, - STATE(2037), 1, + STATE(2004), 1, sym_string, - STATE(2103), 1, + STATE(2044), 1, sym_primary_expression, - STATE(2402), 1, + STATE(2272), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1126), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1136), 4, + ACTIONS(2185), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1201), 5, + ACTIONS(2195), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2191), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -176439,58 +176866,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83226] = 18, - ACTIONS(1112), 1, + [79311] = 19, + ACTIONS(2187), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2207), 1, + anon_sym_await, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2162), 1, - anon_sym_await, - ACTIONS(2466), 1, + ACTIONS(2331), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2703), 1, anon_sym_STAR, - STATE(2037), 1, + STATE(2004), 1, sym_string, - STATE(2104), 1, + STATE(2067), 1, sym_primary_expression, - STATE(2402), 1, + STATE(2272), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1126), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1136), 4, + ACTIONS(2185), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1201), 5, + ACTIONS(2195), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2191), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -176506,58 +176935,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83311] = 18, - ACTIONS(1112), 1, + [79399] = 19, + ACTIONS(2187), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2207), 1, + anon_sym_await, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2162), 1, - anon_sym_await, - ACTIONS(2466), 1, + ACTIONS(2331), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2703), 1, anon_sym_STAR, - STATE(2037), 1, + STATE(2004), 1, sym_string, - STATE(2105), 1, + STATE(2047), 1, sym_primary_expression, - STATE(2402), 1, + STATE(2272), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1126), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1136), 4, + ACTIONS(2185), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1201), 5, + ACTIONS(2195), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2191), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -176573,58 +177004,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83396] = 18, - ACTIONS(1112), 1, + [79487] = 19, + ACTIONS(2187), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2207), 1, + anon_sym_await, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2162), 1, - anon_sym_await, - ACTIONS(2466), 1, + ACTIONS(2331), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2703), 1, anon_sym_STAR, - STATE(2037), 1, + STATE(2004), 1, sym_string, - STATE(2106), 1, + STATE(2049), 1, sym_primary_expression, - STATE(2402), 1, + STATE(2272), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1126), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1136), 4, + ACTIONS(2185), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1201), 5, + ACTIONS(2195), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2191), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 19, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -176640,58 +177073,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83481] = 18, - ACTIONS(1112), 1, + [79575] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2162), 1, - anon_sym_await, - ACTIONS(2466), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(3536), 1, anon_sym_STAR, - STATE(2037), 1, + ACTIONS(3580), 1, + sym_identifier, + ACTIONS(3588), 1, + anon_sym_await, + STATE(2028), 1, sym_string, - STATE(2107), 1, - sym_primary_expression, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, + STATE(3051), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1126), 4, + STATE(2538), 2, + sym_attribute, + sym_subscript, + ACTIONS(1141), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1136), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1201), 5, + ACTIONS(3586), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 19, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -176707,60 +177144,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83566] = 20, - ACTIONS(1112), 1, + [79667] = 19, + ACTIONS(2187), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(2197), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(2201), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2203), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(2205), 1, + sym_float, + ACTIONS(2207), 1, + anon_sym_await, + ACTIONS(2209), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(2211), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2331), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(2703), 1, anon_sym_STAR, - ACTIONS(3743), 1, - sym_identifier, - ACTIONS(3767), 1, - anon_sym_await, - STATE(2037), 1, + STATE(2004), 1, sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3032), 1, + STATE(2048), 1, sym_primary_expression, + STATE(2272), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2130), 2, - sym_attribute, - sym_subscript, - ACTIONS(1136), 3, + ACTIONS(2185), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(2195), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3745), 5, + ACTIONS(2191), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2168), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -176776,60 +177213,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83655] = 20, - ACTIONS(1112), 1, + [79755] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3765), 1, + ACTIONS(3588), 1, anon_sym_await, - ACTIONS(3769), 1, + ACTIONS(3726), 1, sym_identifier, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3060), 1, + STATE(3044), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2340), 2, + STATE(2418), 2, sym_attribute, sym_subscript, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3771), 5, + ACTIONS(3728), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -176845,58 +177284,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83744] = 18, - ACTIONS(1225), 1, + [79847] = 19, + ACTIONS(1703), 1, + anon_sym_LPAREN, + ACTIONS(1709), 1, + anon_sym_LBRACK, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, - anon_sym_LT, - ACTIONS(1237), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(1255), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1723), 1, + anon_sym_await, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(2190), 1, - anon_sym_LPAREN, - ACTIONS(2200), 1, - anon_sym_await, - ACTIONS(2760), 1, + ACTIONS(2409), 1, anon_sym_STAR, - STATE(2028), 1, + ACTIONS(2417), 1, + anon_sym_LT, + STATE(1976), 1, sym_string, - STATE(2119), 1, + STATE(2055), 1, sym_primary_expression, - STATE(2426), 1, + STATE(2212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1223), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1239), 4, + ACTIONS(1701), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2194), 5, + ACTIONS(1711), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1707), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2403), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -176912,58 +177353,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83829] = 18, - ACTIONS(2204), 1, + [79935] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2222), 1, - anon_sym_await, - ACTIONS(2224), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2398), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(2878), 1, + ACTIONS(3536), 1, anon_sym_STAR, - STATE(2110), 1, + ACTIONS(3696), 1, + anon_sym_await, + ACTIONS(3730), 1, + sym_identifier, + STATE(2028), 1, sym_string, - STATE(2235), 1, - sym_primary_expression, - STATE(2490), 1, + STATE(2340), 1, sym_list_splat_pattern, + STATE(3052), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 4, + STATE(2511), 2, + sym_attribute, + sym_subscript, + ACTIONS(1141), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2208), 5, + ACTIONS(3694), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2509), 19, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -176979,58 +177424,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83914] = 18, - ACTIONS(67), 1, + [80027] = 19, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(79), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(103), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(1178), 1, + ACTIONS(2217), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(1190), 1, + ACTIONS(2225), 1, anon_sym_await, - ACTIONS(2822), 1, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(1933), 1, + STATE(2152), 1, sym_string, - STATE(1948), 1, + STATE(2359), 1, sym_primary_expression, - STATE(1985), 1, + STATE(2614), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(65), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(81), 4, + ACTIONS(1302), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1182), 5, + ACTIONS(2221), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(1981), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -177046,37 +177493,38 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83999] = 18, + [80115] = 19, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, anon_sym_LT, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(103), 1, - anon_sym_sizeof, + ACTIONS(83), 1, + sym_float, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(1190), 1, + ACTIONS(1197), 1, anon_sym_await, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1949), 1, + STATE(1937), 1, sym_primary_expression, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, @@ -177087,17 +177535,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_true, sym_false, - ACTIONS(1182), 5, + ACTIONS(1189), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -177113,60 +177562,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84084] = 20, - ACTIONS(1112), 1, + [80203] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3552), 1, - sym_identifier, - ACTIONS(3560), 1, + ACTIONS(3696), 1, anon_sym_await, - STATE(2037), 1, + ACTIONS(3732), 1, + sym_identifier, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3048), 1, + STATE(3053), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(1998), 2, + STATE(2445), 2, sym_attribute, sym_subscript, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3554), 5, + ACTIONS(3734), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -177182,60 +177633,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84173] = 20, - ACTIONS(1112), 1, + [80295] = 19, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2249), 1, + anon_sym_await, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(2835), 1, anon_sym_STAR, - ACTIONS(3755), 1, - anon_sym_await, - ACTIONS(3773), 1, - sym_identifier, - STATE(2037), 1, + STATE(2096), 1, sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3061), 1, + STATE(2215), 1, sym_primary_expression, + STATE(2477), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2158), 2, - sym_attribute, - sym_subscript, - ACTIONS(1136), 3, + ACTIONS(2227), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3775), 5, + ACTIONS(2233), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -177251,60 +177702,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84262] = 20, - ACTIONS(1112), 1, + [80383] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3566), 1, - sym_identifier, - ACTIONS(3777), 1, + ACTIONS(3720), 1, anon_sym_await, - STATE(2037), 1, + ACTIONS(3736), 1, + sym_identifier, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3053), 1, + STATE(3056), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2604), 2, + STATE(2249), 2, sym_attribute, sym_subscript, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3572), 5, + ACTIONS(3738), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -177320,58 +177773,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84351] = 18, - ACTIONS(67), 1, + [80475] = 19, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(79), 1, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(103), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1376), 1, anon_sym_LBRACK, - ACTIONS(1190), 1, + ACTIONS(2159), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, anon_sym_await, - ACTIONS(2822), 1, + ACTIONS(2803), 1, anon_sym_STAR, - STATE(1933), 1, + STATE(2056), 1, sym_string, - STATE(1940), 1, + STATE(2089), 1, sym_primary_expression, - STATE(1985), 1, + STATE(2287), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(65), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(81), 4, + ACTIONS(1246), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1182), 5, + ACTIONS(2163), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(1981), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -177387,60 +177842,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84436] = 20, - ACTIONS(1112), 1, + [80563] = 19, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2183), 1, + anon_sym_await, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(3646), 1, - sym_identifier, - ACTIONS(3650), 1, - anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3032), 1, + STATE(2116), 1, sym_primary_expression, + STATE(2340), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2991), 2, - sym_attribute, - sym_subscript, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1205), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3648), 5, + ACTIONS(1141), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -177456,37 +177911,38 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84525] = 18, + [80651] = 19, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, anon_sym_LT, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(103), 1, - anon_sym_sizeof, + ACTIONS(83), 1, + sym_float, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(1190), 1, + ACTIONS(1197), 1, anon_sym_await, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1939), 1, + STATE(1947), 1, sym_primary_expression, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, @@ -177497,17 +177953,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_true, sym_false, - ACTIONS(1182), 5, + ACTIONS(1189), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -177523,60 +177980,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84610] = 20, - ACTIONS(1112), 1, + [80739] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3779), 1, + ACTIONS(3580), 1, sym_identifier, - ACTIONS(3783), 1, + ACTIONS(3740), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3054), 1, + STATE(3044), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2519), 2, + STATE(2538), 2, sym_attribute, sym_subscript, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3781), 5, + ACTIONS(3586), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -177592,58 +178051,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84699] = 18, - ACTIONS(67), 1, + [80831] = 19, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_LBRACK, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(79), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(103), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(105), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(1190), 1, + ACTIONS(2183), 1, anon_sym_await, - ACTIONS(2822), 1, + ACTIONS(2461), 1, + anon_sym_LT, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(1933), 1, + STATE(2028), 1, sym_string, - STATE(1943), 1, + STATE(2117), 1, sym_primary_expression, - STATE(1985), 1, + STATE(2340), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, - ACTIONS(65), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(81), 4, + ACTIONS(1141), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1182), 5, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(1981), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -177659,60 +178120,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84784] = 20, - ACTIONS(1112), 1, + [80919] = 19, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2183), 1, + anon_sym_await, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(3761), 1, - sym_identifier, - ACTIONS(3785), 1, - anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3060), 1, + STATE(2118), 1, sym_primary_expression, + STATE(2340), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2495), 2, - sym_attribute, - sym_subscript, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1205), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3763), 5, + ACTIONS(1141), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -177728,60 +178189,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84873] = 20, - ACTIONS(1112), 1, + [81007] = 19, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2183), 1, + anon_sym_await, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(2750), 1, anon_sym_STAR, - ACTIONS(3787), 1, - sym_identifier, - ACTIONS(3791), 1, - anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3063), 1, + STATE(2068), 1, sym_primary_expression, + STATE(2340), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2977), 2, - sym_attribute, - sym_subscript, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1205), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3789), 5, + ACTIONS(1141), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -177797,58 +178258,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84962] = 18, - ACTIONS(1112), 1, + [81095] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(1209), 1, - anon_sym_await, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - STATE(2037), 1, + ACTIONS(3742), 1, + sym_identifier, + ACTIONS(3746), 1, + anon_sym_await, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3022), 1, + STATE(3047), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 4, + STATE(2615), 2, + sym_attribute, + sym_subscript, + ACTIONS(1141), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1201), 5, + ACTIONS(3744), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 19, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -177864,60 +178329,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85047] = 20, - ACTIONS(1112), 1, + [81187] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3632), 1, + ACTIONS(3730), 1, sym_identifier, - ACTIONS(3638), 1, + ACTIONS(3748), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, STATE(3053), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2951), 2, + STATE(2511), 2, sym_attribute, sym_subscript, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3636), 5, + ACTIONS(3694), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -177933,277 +178400,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85136] = 20, - ACTIONS(1112), 1, + [81279] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3793), 1, + ACTIONS(3750), 1, sym_identifier, - ACTIONS(3797), 1, + ACTIONS(3754), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3065), 1, + STATE(3059), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2439), 2, + STATE(2978), 2, sym_attribute, sym_subscript, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3795), 5, + ACTIONS(3752), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [85225] = 26, - ACTIONS(123), 1, - anon_sym_class, - ACTIONS(131), 1, - anon_sym_ctypedef, - ACTIONS(3663), 1, - sym_identifier, - ACTIONS(3665), 1, - anon_sym_LPAREN, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(3683), 1, - anon_sym_enum, - ACTIONS(3685), 1, - anon_sym_cppclass, - ACTIONS(3687), 1, - anon_sym_fused, - ACTIONS(3689), 1, - sym_string_start, - ACTIONS(3799), 1, - sym__dedent, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(3339), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3669), 2, - anon_sym_cdef, - anon_sym_cpdef, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3679), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(3681), 2, - anon_sym_struct, - anon_sym_union, - STATE(2787), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3560), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(633), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(637), 3, - sym_struct, - sym_enum, - sym_cppclass, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - STATE(1798), 5, - sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [85326] = 26, - ACTIONS(123), 1, - anon_sym_class, - ACTIONS(131), 1, - anon_sym_ctypedef, - ACTIONS(3663), 1, - sym_identifier, - ACTIONS(3665), 1, - anon_sym_LPAREN, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(3683), 1, - anon_sym_enum, - ACTIONS(3685), 1, - anon_sym_cppclass, - ACTIONS(3687), 1, - anon_sym_fused, - ACTIONS(3689), 1, - sym_string_start, - ACTIONS(3801), 1, - sym__dedent, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(3339), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3669), 2, - anon_sym_cdef, - anon_sym_cpdef, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3679), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(3681), 2, - anon_sym_struct, - anon_sym_union, - STATE(2787), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3560), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(633), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(637), 3, - sym_struct, - sym_enum, - sym_cppclass, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - STATE(1798), 5, - sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [85427] = 18, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(79), 1, - anon_sym_None, - ACTIONS(103), 1, - anon_sym_sizeof, - ACTIONS(105), 1, - sym_string_start, - ACTIONS(1178), 1, - anon_sym_LPAREN, - ACTIONS(1184), 1, - anon_sym_LBRACK, - ACTIONS(1190), 1, - anon_sym_await, - ACTIONS(2822), 1, - anon_sym_STAR, - STATE(1933), 1, - sym_string, - STATE(1952), 1, - sym_primary_expression, - STATE(1985), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(77), 2, sym_ellipsis, - sym_float, - ACTIONS(65), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(81), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1182), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(1981), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -178219,60 +178471,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85512] = 20, - ACTIONS(1112), 1, + [81371] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3803), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(3807), 1, + ACTIONS(3613), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3032), 1, + STATE(3044), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2984), 2, + STATE(2962), 2, sym_attribute, sym_subscript, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3805), 5, + ACTIONS(3611), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -178288,58 +178542,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85601] = 18, - ACTIONS(2166), 1, + [81463] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2184), 1, - anon_sym_await, - ACTIONS(2186), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2284), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(2731), 1, + ACTIONS(3536), 1, anon_sym_STAR, - STATE(1984), 1, + ACTIONS(3756), 1, + sym_identifier, + ACTIONS(3760), 1, + anon_sym_await, + STATE(2028), 1, sym_string, - STATE(2045), 1, - sym_primary_expression, - STATE(2133), 1, + STATE(2340), 1, sym_list_splat_pattern, + STATE(3062), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 4, + STATE(2283), 2, + sym_attribute, + sym_subscript, + ACTIONS(1141), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2170), 5, + ACTIONS(3758), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2246), 19, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -178355,113 +178613,184 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85686] = 27, - ACTIONS(123), 1, + [81555] = 27, + ACTIONS(125), 1, anon_sym_class, - ACTIONS(366), 1, + ACTIONS(133), 1, + anon_sym_ctypedef, + ACTIONS(3762), 1, + sym_identifier, + ACTIONS(3764), 1, + anon_sym_LPAREN, + ACTIONS(3766), 1, + anon_sym_pass, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(3683), 1, + ACTIONS(3782), 1, anon_sym_enum, - ACTIONS(3685), 1, + ACTIONS(3784), 1, anon_sym_cppclass, - ACTIONS(3687), 1, + ACTIONS(3786), 1, anon_sym_fused, - ACTIONS(3809), 1, - sym_identifier, - ACTIONS(3813), 1, - anon_sym_COLON, - ACTIONS(3815), 1, - anon_sym_api, - ACTIONS(3817), 1, - anon_sym_extern, - ACTIONS(3819), 1, - anon_sym_operator, - STATE(2986), 1, + ACTIONS(3788), 1, + sym_string_start, + STATE(3077), 1, sym__signedness, - STATE(3051), 1, - sym_int_type, - STATE(3185), 1, + STATE(3295), 1, sym__longness, - STATE(3434), 1, - sym_operator_name, - STATE(3704), 1, - sym_maybe_typed_name, + STATE(3313), 1, + sym_c_type, + STATE(5349), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(3768), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(3681), 2, - anon_sym_struct, - anon_sym_union, - ACTIONS(3821), 2, + ACTIONS(3778), 2, anon_sym_const, anon_sym_volatile, - STATE(2378), 2, + ACTIONS(3780), 2, + anon_sym_struct, + anon_sym_union, + STATE(2773), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + STATE(3532), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(633), 3, + STATE(634), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(637), 3, + STATE(635), 3, sym_struct, sym_enum, sym_cppclass, - STATE(1367), 3, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - ACTIONS(101), 4, + ACTIONS(103), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - ACTIONS(3811), 5, + STATE(1905), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [81659] = 19, + ACTIONS(2257), 1, + anon_sym_LPAREN, + ACTIONS(2263), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, + anon_sym_LBRACE, + ACTIONS(2271), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2273), 1, + anon_sym_None, + ACTIONS(2275), 1, + sym_float, + ACTIONS(2277), 1, + anon_sym_await, + ACTIONS(2279), 1, + anon_sym_sizeof, + ACTIONS(2281), 1, + sym_string_start, + ACTIONS(2301), 1, + anon_sym_LT, + ACTIONS(2728), 1, + anon_sym_STAR, + STATE(2051), 1, + sym_string, + STATE(2108), 1, + sym_primary_expression, + STATE(2326), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2255), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2265), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2261), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - anon_sym_await, - [85789] = 18, + anon_sym_api, + STATE(2374), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [81747] = 19, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, anon_sym_LT, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(79), 1, anon_sym_None, - ACTIONS(103), 1, - anon_sym_sizeof, + ACTIONS(83), 1, + sym_float, ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, sym_string_start, - ACTIONS(1178), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1184), 1, + ACTIONS(1191), 1, anon_sym_LBRACK, - ACTIONS(1190), 1, + ACTIONS(1197), 1, anon_sym_await, - ACTIONS(2822), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(1933), 1, + STATE(1929), 1, sym_string, - STATE(1941), 1, + STATE(1940), 1, sym_primary_expression, - STATE(1985), 1, + STATE(1975), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(77), 2, - sym_ellipsis, - sym_float, ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, @@ -178472,17 +178801,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_true, sym_false, - ACTIONS(1182), 5, + ACTIONS(1189), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(1981), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -178498,60 +178828,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85874] = 20, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, + [81835] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2530), 1, - anon_sym_LT, - ACTIONS(3517), 1, - anon_sym_STAR, - ACTIONS(3765), 1, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(1197), 1, anon_sym_await, - ACTIONS(3823), 1, - sym_identifier, - STATE(2037), 1, + ACTIONS(2843), 1, + anon_sym_STAR, + STATE(1929), 1, sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3058), 1, + STATE(1941), 1, sym_primary_expression, + STATE(1975), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2495), 2, - sym_attribute, - sym_subscript, - ACTIONS(1136), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1205), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3763), 5, + ACTIONS(81), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1189), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -178567,60 +178897,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85963] = 20, - ACTIONS(1112), 1, + [81923] = 19, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(1216), 1, + anon_sym_await, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3825), 1, - sym_identifier, - ACTIONS(3829), 1, - anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3047), 1, + STATE(3070), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(1768), 2, - sym_attribute, - sym_subscript, - ACTIONS(1136), 3, + ACTIONS(1141), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3827), 5, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -178636,58 +178966,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86052] = 18, - ACTIONS(2166), 1, + [82011] = 19, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2184), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1723), 1, anon_sym_await, - ACTIONS(2186), 1, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2284), 1, - anon_sym_LT, - ACTIONS(2731), 1, + ACTIONS(2409), 1, anon_sym_STAR, - STATE(1984), 1, + ACTIONS(2417), 1, + anon_sym_LT, + STATE(1976), 1, sym_string, - STATE(2040), 1, + STATE(2035), 1, sym_primary_expression, - STATE(2133), 1, + STATE(2212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 4, + ACTIONS(1701), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2170), 5, + ACTIONS(1707), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2246), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -178703,60 +179035,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86137] = 20, - ACTIONS(1112), 1, + [82099] = 19, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1723), 1, + anon_sym_await, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2530), 1, - anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(2409), 1, anon_sym_STAR, - ACTIONS(3560), 1, - anon_sym_await, - ACTIONS(3831), 1, - sym_identifier, - STATE(2037), 1, + ACTIONS(2417), 1, + anon_sym_LT, + STATE(1976), 1, sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3048), 1, + STATE(2036), 1, sym_primary_expression, + STATE(2212), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(1998), 2, - sym_attribute, - sym_subscript, - ACTIONS(1136), 3, + ACTIONS(1701), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3554), 5, + ACTIONS(1707), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -178772,58 +179104,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86226] = 18, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, + [82187] = 19, + ACTIONS(1286), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1294), 1, + anon_sym_LT, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(1209), 1, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2225), 1, anon_sym_await, - ACTIONS(2530), 1, - anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(2037), 1, + STATE(2152), 1, sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3040), 1, + STATE(2369), 1, sym_primary_expression, + STATE(2614), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1205), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1201), 5, + ACTIONS(1302), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2221), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -178839,134 +179173,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86311] = 27, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(3815), 1, - anon_sym_api, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(3833), 1, - sym_identifier, - ACTIONS(3837), 1, - anon_sym_COLON, - ACTIONS(3839), 1, - anon_sym_extern, - ACTIONS(3843), 1, - anon_sym_enum, - ACTIONS(3845), 1, - anon_sym_cppclass, - ACTIONS(3847), 1, - anon_sym_fused, - STATE(2986), 1, - sym__signedness, - STATE(3051), 1, - sym_int_type, - STATE(3185), 1, - sym__longness, - STATE(3434), 1, - sym_operator_name, - STATE(3648), 1, - sym_maybe_typed_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(362), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(364), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3821), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(3841), 2, - anon_sym_struct, - anon_sym_union, - STATE(2452), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(1335), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(1345), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(1388), 3, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - ACTIONS(101), 4, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - ACTIONS(3835), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - [86414] = 18, - ACTIONS(1277), 1, + [82275] = 19, + ACTIONS(1703), 1, + anon_sym_LPAREN, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1291), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(1299), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1723), 1, + anon_sym_await, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2262), 1, - anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2409), 1, anon_sym_STAR, - STATE(2171), 1, + ACTIONS(2417), 1, + anon_sym_LT, + STATE(1976), 1, sym_string, - STATE(2421), 1, + STATE(2037), 1, sym_primary_expression, - STATE(2556), 1, + STATE(2212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1279), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1293), 4, + ACTIONS(1701), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2258), 5, + ACTIONS(1711), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1707), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2521), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -178982,58 +179242,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86499] = 18, - ACTIONS(1277), 1, + [82363] = 19, + ACTIONS(1703), 1, + anon_sym_LPAREN, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1291), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(1299), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1723), 1, + anon_sym_await, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2262), 1, - anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2409), 1, anon_sym_STAR, - STATE(2171), 1, + ACTIONS(2417), 1, + anon_sym_LT, + STATE(1976), 1, sym_string, - STATE(2422), 1, + STATE(2038), 1, sym_primary_expression, - STATE(2556), 1, + STATE(2212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1279), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1293), 4, + ACTIONS(1701), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2258), 5, + ACTIONS(1711), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1707), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2521), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -179049,58 +179311,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86584] = 18, - ACTIONS(2204), 1, + [82451] = 19, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2222), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1723), 1, anon_sym_await, - ACTIONS(2224), 1, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2878), 1, + ACTIONS(2409), 1, anon_sym_STAR, - STATE(2110), 1, + ACTIONS(2417), 1, + anon_sym_LT, + STATE(1976), 1, sym_string, - STATE(2264), 1, + STATE(2039), 1, sym_primary_expression, - STATE(2490), 1, + STATE(2212), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 4, + ACTIONS(1701), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2208), 5, + ACTIONS(1707), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2509), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -179116,60 +179380,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86669] = 20, - ACTIONS(1112), 1, + [82539] = 19, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1723), 1, + anon_sym_await, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(2530), 1, - anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(2409), 1, anon_sym_STAR, - ACTIONS(3829), 1, - anon_sym_await, - ACTIONS(3849), 1, - sym_identifier, - STATE(2037), 1, + ACTIONS(2417), 1, + anon_sym_LT, + STATE(1976), 1, sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3047), 1, + STATE(2040), 1, sym_primary_expression, + STATE(2212), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(1768), 2, - sym_attribute, - sym_subscript, - ACTIONS(1136), 3, + ACTIONS(1701), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3827), 5, + ACTIONS(1707), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -179185,58 +179449,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86758] = 18, - ACTIONS(1112), 1, + [82627] = 19, + ACTIONS(1703), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1709), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1713), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1721), 1, + sym_float, + ACTIONS(1723), 1, + anon_sym_await, + ACTIONS(1725), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(1209), 1, - anon_sym_await, - ACTIONS(2530), 1, - anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(2409), 1, anon_sym_STAR, - STATE(2037), 1, + ACTIONS(2417), 1, + anon_sym_LT, + STATE(1976), 1, sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3041), 1, + STATE(2041), 1, sym_primary_expression, + STATE(2212), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 4, + ACTIONS(1701), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1711), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1201), 5, + ACTIONS(1707), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 19, + STATE(2175), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -179252,58 +179518,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86843] = 18, - ACTIONS(1277), 1, - anon_sym_LBRACK, - ACTIONS(1281), 1, + [82715] = 19, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(1285), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(1291), 1, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(1299), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(2254), 1, + ACTIONS(1376), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LPAREN, - ACTIONS(2262), 1, + ACTIONS(2169), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2803), 1, anon_sym_STAR, - STATE(2171), 1, + STATE(2056), 1, sym_string, - STATE(2425), 1, + STATE(2120), 1, sym_primary_expression, - STATE(2556), 1, + STATE(2287), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1279), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1293), 4, + ACTIONS(1246), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2258), 5, + ACTIONS(2163), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2521), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -179319,58 +179587,137 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86928] = 18, - ACTIONS(1277), 1, + [82803] = 27, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(133), 1, + anon_sym_ctypedef, + ACTIONS(3762), 1, + sym_identifier, + ACTIONS(3764), 1, + anon_sym_LPAREN, + ACTIONS(3766), 1, + anon_sym_pass, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(3782), 1, + anon_sym_enum, + ACTIONS(3784), 1, + anon_sym_cppclass, + ACTIONS(3786), 1, + anon_sym_fused, + ACTIONS(3788), 1, + sym_string_start, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(3313), 1, + sym_c_type, + STATE(5389), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3768), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3778), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(3780), 2, + anon_sym_struct, + anon_sym_union, + STATE(2773), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3532), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(634), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(635), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(1903), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [82907] = 19, + ACTIONS(1117), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1285), 1, - anon_sym_LT, - ACTIONS(1291), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1299), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2254), 1, - anon_sym_LPAREN, - ACTIONS(2262), 1, + ACTIONS(1216), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2559), 1, + anon_sym_LT, + ACTIONS(3536), 1, anon_sym_STAR, - STATE(2171), 1, + STATE(2028), 1, sym_string, - STATE(2427), 1, - sym_primary_expression, - STATE(2556), 1, + STATE(2340), 1, sym_list_splat_pattern, + STATE(3090), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1279), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1293), 4, + ACTIONS(1141), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2258), 5, + ACTIONS(1212), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2521), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -179386,58 +179733,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87013] = 18, - ACTIONS(1112), 1, + [82995] = 19, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2162), 1, + ACTIONS(2183), 1, anon_sym_await, - ACTIONS(2466), 1, + ACTIONS(2461), 1, anon_sym_LT, - ACTIONS(2806), 1, + ACTIONS(2750), 1, anon_sym_STAR, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2075), 1, + STATE(2070), 1, sym_primary_expression, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1126), 4, + ACTIONS(1131), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1136), 4, + ACTIONS(1141), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1201), 5, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -179453,58 +179802,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87098] = 18, - ACTIONS(2230), 1, + [83083] = 19, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2236), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2248), 1, - anon_sym_await, - ACTIONS(2250), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2310), 1, + ACTIONS(1216), 1, + anon_sym_await, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(2750), 1, + ACTIONS(3536), 1, anon_sym_STAR, - STATE(2061), 1, + STATE(2028), 1, sym_string, - STATE(2114), 1, - sym_primary_expression, - STATE(2307), 1, + STATE(2340), 1, sym_list_splat_pattern, + STATE(3084), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 4, + ACTIONS(1141), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2234), 5, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2310), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -179520,58 +179871,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87183] = 18, - ACTIONS(1112), 1, + [83171] = 19, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(1209), 1, + ACTIONS(1216), 1, anon_sym_await, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3042), 1, + STATE(3043), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 4, + ACTIONS(1141), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1201), 5, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -179587,58 +179940,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87268] = 18, - ACTIONS(1277), 1, - anon_sym_LBRACK, - ACTIONS(1281), 1, + [83259] = 19, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(1285), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(1291), 1, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(1299), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(2254), 1, + ACTIONS(1376), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LPAREN, - ACTIONS(2262), 1, + ACTIONS(2169), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2803), 1, anon_sym_STAR, - STATE(2171), 1, + STATE(2056), 1, sym_string, - STATE(2428), 1, + STATE(2074), 1, sym_primary_expression, - STATE(2556), 1, + STATE(2287), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1279), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1293), 4, + ACTIONS(1246), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2258), 5, + ACTIONS(2163), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2521), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -179654,58 +180009,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87353] = 18, - ACTIONS(1112), 1, + [83347] = 19, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(1209), 1, + ACTIONS(1216), 1, anon_sym_await, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3043), 1, + STATE(3050), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 4, + ACTIONS(1141), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1201), 5, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -179721,58 +180078,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87438] = 18, - ACTIONS(1112), 1, + [83435] = 19, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(1209), 1, + ACTIONS(1216), 1, anon_sym_await, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3044), 1, + STATE(3061), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 4, + ACTIONS(1141), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1201), 5, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -179788,58 +180147,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87523] = 18, - ACTIONS(1112), 1, - anon_sym_LPAREN, - ACTIONS(1118), 1, + [83523] = 19, + ACTIONS(1286), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1294), 1, + anon_sym_LT, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(1209), 1, + ACTIONS(2217), 1, + anon_sym_LPAREN, + ACTIONS(2225), 1, anon_sym_await, - ACTIONS(2530), 1, - anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(2037), 1, + STATE(2152), 1, sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3045), 1, + STATE(2395), 1, sym_primary_expression, + STATE(2614), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1205), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1201), 5, + ACTIONS(1302), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2221), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -179855,58 +180216,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87608] = 18, - ACTIONS(1277), 1, + [83611] = 19, + ACTIONS(1286), 1, anon_sym_LBRACK, - ACTIONS(1281), 1, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1285), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(1291), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1299), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(2254), 1, + ACTIONS(2217), 1, anon_sym_LPAREN, - ACTIONS(2262), 1, + ACTIONS(2225), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(2171), 1, + STATE(2152), 1, sym_string, - STATE(2429), 1, + STATE(2396), 1, sym_primary_expression, - STATE(2556), 1, + STATE(2614), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1279), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1293), 4, + ACTIONS(1302), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2258), 5, + ACTIONS(2221), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2521), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -179922,58 +180285,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87693] = 18, - ACTIONS(1112), 1, + [83699] = 19, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2249), 1, + anon_sym_await, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(1209), 1, - anon_sym_await, - ACTIONS(2530), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(2037), 1, + STATE(2096), 1, sym_string, - STATE(2402), 1, - sym_list_splat_pattern, - STATE(3046), 1, + STATE(2245), 1, sym_primary_expression, + STATE(2477), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - ACTIONS(1136), 4, + ACTIONS(2227), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1201), 5, + ACTIONS(2233), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -179989,58 +180354,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87778] = 18, - ACTIONS(1277), 1, - anon_sym_LBRACK, - ACTIONS(1281), 1, + [83787] = 19, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(1285), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(1291), 1, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(1299), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(1301), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(2254), 1, + ACTIONS(1376), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LPAREN, - ACTIONS(2262), 1, + ACTIONS(2169), 1, anon_sym_await, - ACTIONS(2886), 1, + ACTIONS(2803), 1, anon_sym_STAR, - STATE(2171), 1, + STATE(2056), 1, sym_string, - STATE(2430), 1, + STATE(2076), 1, sym_primary_expression, - STATE(2556), 1, + STATE(2287), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1289), 2, - sym_ellipsis, - sym_float, - ACTIONS(1279), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1293), 4, + ACTIONS(1246), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2258), 5, + ACTIONS(2163), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2521), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -180056,58 +180423,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87863] = 18, - ACTIONS(1225), 1, + [83875] = 19, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(1237), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1255), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(2190), 1, + ACTIONS(2217), 1, anon_sym_LPAREN, - ACTIONS(2200), 1, + ACTIONS(2225), 1, anon_sym_await, - ACTIONS(2760), 1, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(2028), 1, + STATE(2152), 1, sym_string, - STATE(2077), 1, + STATE(2398), 1, sym_primary_expression, - STATE(2426), 1, + STATE(2614), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1223), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1239), 4, + ACTIONS(1302), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2194), 5, + ACTIONS(2221), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2403), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -180123,58 +180492,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87948] = 18, - ACTIONS(1225), 1, + [83963] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1237), 1, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1255), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(2190), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(2200), 1, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(1197), 1, anon_sym_await, - ACTIONS(2760), 1, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(2028), 1, + STATE(1929), 1, sym_string, - STATE(2078), 1, + STATE(1944), 1, sym_primary_expression, - STATE(2426), 1, + STATE(1975), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1223), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1239), 4, + ACTIONS(81), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2194), 5, + ACTIONS(1189), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2403), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -180190,58 +180561,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [88033] = 18, - ACTIONS(1225), 1, + [84051] = 19, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(1237), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1255), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(2190), 1, + ACTIONS(2217), 1, anon_sym_LPAREN, - ACTIONS(2200), 1, + ACTIONS(2225), 1, anon_sym_await, - ACTIONS(2760), 1, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(2028), 1, + STATE(2152), 1, sym_string, - STATE(2079), 1, + STATE(2399), 1, sym_primary_expression, - STATE(2426), 1, + STATE(2614), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1223), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1239), 4, + ACTIONS(1302), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2194), 5, + ACTIONS(2221), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2403), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -180257,58 +180630,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [88118] = 18, - ACTIONS(1225), 1, + [84139] = 19, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(1237), 1, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(1255), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(1365), 1, + ACTIONS(1376), 1, anon_sym_LBRACK, - ACTIONS(2190), 1, + ACTIONS(2159), 1, anon_sym_LPAREN, - ACTIONS(2200), 1, + ACTIONS(2169), 1, anon_sym_await, - ACTIONS(2760), 1, + ACTIONS(2803), 1, anon_sym_STAR, - STATE(2028), 1, + STATE(2056), 1, sym_string, - STATE(2080), 1, + STATE(2083), 1, sym_primary_expression, - STATE(2426), 1, + STATE(2287), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1223), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1239), 4, + ACTIONS(1246), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2194), 5, + ACTIONS(2163), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2403), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -180324,58 +180699,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [88203] = 18, - ACTIONS(1225), 1, + [84227] = 19, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(1237), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1255), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(2190), 1, + ACTIONS(2217), 1, anon_sym_LPAREN, - ACTIONS(2200), 1, + ACTIONS(2225), 1, anon_sym_await, - ACTIONS(2760), 1, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(2028), 1, + STATE(2152), 1, sym_string, - STATE(2081), 1, + STATE(2400), 1, sym_primary_expression, - STATE(2426), 1, + STATE(2614), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1223), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1239), 4, + ACTIONS(1302), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2194), 5, + ACTIONS(2221), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2403), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -180391,58 +180768,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [88288] = 18, - ACTIONS(1225), 1, + [84315] = 19, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(1237), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1255), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(2190), 1, + ACTIONS(2217), 1, anon_sym_LPAREN, - ACTIONS(2200), 1, + ACTIONS(2225), 1, anon_sym_await, - ACTIONS(2760), 1, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(2028), 1, + STATE(2152), 1, sym_string, - STATE(2082), 1, + STATE(2401), 1, sym_primary_expression, - STATE(2426), 1, + STATE(2614), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1223), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1239), 4, + ACTIONS(1302), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2194), 5, + ACTIONS(2221), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2403), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -180458,58 +180837,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [88373] = 18, - ACTIONS(1225), 1, + [84403] = 19, + ACTIONS(1286), 1, + anon_sym_LBRACK, + ACTIONS(1290), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1294), 1, anon_sym_LT, - ACTIONS(1237), 1, + ACTIONS(1298), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1255), 1, + ACTIONS(1304), 1, + sym_float, + ACTIONS(1310), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(1365), 1, - anon_sym_LBRACK, - ACTIONS(2190), 1, + ACTIONS(2217), 1, anon_sym_LPAREN, - ACTIONS(2200), 1, + ACTIONS(2225), 1, anon_sym_await, - ACTIONS(2760), 1, + ACTIONS(2831), 1, anon_sym_STAR, - STATE(2028), 1, + STATE(2152), 1, sym_string, - STATE(2083), 1, + STATE(2402), 1, sym_primary_expression, - STATE(2426), 1, + STATE(2614), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1223), 4, + ACTIONS(1288), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1239), 4, + ACTIONS(1302), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2194), 5, + ACTIONS(2221), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2403), 19, + STATE(2540), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -180525,58 +180906,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [88458] = 18, - ACTIONS(1225), 1, + [84491] = 19, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1236), 1, anon_sym_LT, - ACTIONS(1237), 1, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(1255), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(1257), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(1365), 1, + ACTIONS(1376), 1, anon_sym_LBRACK, - ACTIONS(2190), 1, + ACTIONS(2159), 1, anon_sym_LPAREN, - ACTIONS(2200), 1, + ACTIONS(2169), 1, anon_sym_await, - ACTIONS(2760), 1, + ACTIONS(2803), 1, anon_sym_STAR, - STATE(2028), 1, + STATE(2056), 1, sym_string, STATE(2084), 1, sym_primary_expression, - STATE(2426), 1, + STATE(2287), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1235), 2, - sym_ellipsis, - sym_float, - ACTIONS(1223), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1239), 4, + ACTIONS(1246), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2194), 5, + ACTIONS(2163), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2403), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -180592,200 +180975,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [88543] = 26, - ACTIONS(123), 1, - anon_sym_class, - ACTIONS(131), 1, - anon_sym_ctypedef, - ACTIONS(3663), 1, - sym_identifier, - ACTIONS(3665), 1, - anon_sym_LPAREN, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(3683), 1, - anon_sym_enum, - ACTIONS(3685), 1, - anon_sym_cppclass, - ACTIONS(3687), 1, - anon_sym_fused, - ACTIONS(3689), 1, - sym_string_start, - ACTIONS(3851), 1, - sym__dedent, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(3339), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3669), 2, - anon_sym_cdef, - anon_sym_cpdef, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3679), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(3681), 2, - anon_sym_struct, - anon_sym_union, - STATE(2787), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3560), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(633), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(637), 3, - sym_struct, - sym_enum, - sym_cppclass, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - STATE(1798), 5, - sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [88644] = 18, - ACTIONS(2230), 1, - anon_sym_LPAREN, - ACTIONS(2236), 1, - anon_sym_LBRACK, - ACTIONS(2240), 1, + [84579] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2248), 1, - anon_sym_await, - ACTIONS(2250), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2310), 1, - anon_sym_LT, - ACTIONS(2750), 1, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(1197), 1, + anon_sym_await, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(2061), 1, + STATE(1929), 1, sym_string, - STATE(2096), 1, + STATE(1950), 1, sym_primary_expression, - STATE(2307), 1, + STATE(1975), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2238), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2234), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2310), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [88729] = 18, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_LBRACE, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2222), 1, - anon_sym_await, - ACTIONS(2224), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2878), 1, - anon_sym_STAR, - STATE(2110), 1, - sym_string, - STATE(2196), 1, - sym_primary_expression, - STATE(2490), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 4, + ACTIONS(81), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2212), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2208), 5, + ACTIONS(1189), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2509), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -180801,58 +181044,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [88814] = 18, - ACTIONS(2230), 1, - anon_sym_LPAREN, - ACTIONS(2236), 1, - anon_sym_LBRACK, - ACTIONS(2240), 1, + [84667] = 19, + ACTIONS(1232), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(1236), 1, + anon_sym_LT, + ACTIONS(1242), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1244), 1, anon_sym_None, - ACTIONS(2248), 1, - anon_sym_await, - ACTIONS(2250), 1, + ACTIONS(1248), 1, + sym_float, + ACTIONS(1264), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(1266), 1, sym_string_start, - ACTIONS(2310), 1, - anon_sym_LT, - ACTIONS(2750), 1, + ACTIONS(1376), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LPAREN, + ACTIONS(2169), 1, + anon_sym_await, + ACTIONS(2803), 1, anon_sym_STAR, - STATE(2061), 1, + STATE(2056), 1, sym_string, - STATE(2097), 1, + STATE(2087), 1, sym_primary_expression, - STATE(2307), 1, + STATE(2287), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2238), 4, + ACTIONS(1230), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2234), 5, + ACTIONS(1246), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2163), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2310), 19, + STATE(2302), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -180868,60 +181113,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [88899] = 20, - ACTIONS(1112), 1, + [84755] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(1118), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(1134), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1142), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2530), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(3517), 1, + ACTIONS(3536), 1, anon_sym_STAR, - ACTIONS(3853), 1, + ACTIONS(3704), 1, sym_identifier, - ACTIONS(3857), 1, + ACTIONS(3790), 1, anon_sym_await, - STATE(2037), 1, + STATE(2028), 1, sym_string, - STATE(2402), 1, + STATE(2340), 1, sym_list_splat_pattern, - STATE(3053), 1, + STATE(3072), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1132), 2, - sym_ellipsis, - sym_float, - STATE(2961), 2, + STATE(2247), 2, sym_attribute, sym_subscript, - ACTIONS(1136), 3, + ACTIONS(1141), 3, sym_integer, sym_true, sym_false, - ACTIONS(1205), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3855), 5, + ACTIONS(3706), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2436), 17, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -180937,58 +181184,137 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [88988] = 18, - ACTIONS(2166), 1, + [84847] = 27, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(133), 1, + anon_sym_ctypedef, + ACTIONS(3762), 1, + sym_identifier, + ACTIONS(3764), 1, + anon_sym_LPAREN, + ACTIONS(3766), 1, + anon_sym_pass, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(3782), 1, + anon_sym_enum, + ACTIONS(3784), 1, + anon_sym_cppclass, + ACTIONS(3786), 1, + anon_sym_fused, + ACTIONS(3788), 1, + sym_string_start, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(3313), 1, + sym_c_type, + STATE(5428), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3768), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3778), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(3780), 2, + anon_sym_struct, + anon_sym_union, + STATE(2773), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3532), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(634), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(635), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(1902), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [84951] = 19, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2172), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2176), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2182), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2184), 1, - anon_sym_await, - ACTIONS(2186), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2188), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2284), 1, + ACTIONS(1216), 1, + anon_sym_await, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(2731), 1, + ACTIONS(3536), 1, anon_sym_STAR, - STATE(1984), 1, + STATE(2028), 1, sym_string, - STATE(2052), 1, - sym_primary_expression, - STATE(2133), 1, + STATE(2340), 1, sym_list_splat_pattern, + STATE(3063), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2180), 2, - sym_ellipsis, - sym_float, - ACTIONS(2164), 4, + ACTIONS(1141), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2174), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2170), 5, + ACTIONS(1208), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2246), 19, + STATE(2295), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -181004,58 +181330,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [89073] = 18, - ACTIONS(2230), 1, + [85039] = 19, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2236), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2248), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2249), 1, anon_sym_await, - ACTIONS(2250), 1, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2310), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2750), 1, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(2061), 1, + STATE(2096), 1, sym_string, - STATE(2098), 1, + STATE(2273), 1, sym_primary_expression, - STATE(2307), 1, + STATE(2477), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 4, + ACTIONS(2227), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2234), 5, + ACTIONS(2233), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2310), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -181071,58 +181399,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [89158] = 18, - ACTIONS(2230), 1, + [85127] = 19, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2236), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2248), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2249), 1, anon_sym_await, - ACTIONS(2250), 1, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2310), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2750), 1, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(2061), 1, + STATE(2096), 1, sym_string, - STATE(2099), 1, + STATE(2274), 1, sym_primary_expression, - STATE(2307), 1, + STATE(2477), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 4, + ACTIONS(2227), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2234), 5, + ACTIONS(2233), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2310), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -181138,58 +181468,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [89243] = 18, - ACTIONS(2204), 1, + [85215] = 19, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2222), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2249), 1, anon_sym_await, - ACTIONS(2224), 1, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2398), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2878), 1, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(2110), 1, + STATE(2096), 1, sym_string, - STATE(2204), 1, + STATE(2275), 1, sym_primary_expression, - STATE(2490), 1, + STATE(2477), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 4, + ACTIONS(2227), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2208), 5, + ACTIONS(2233), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2509), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -181205,58 +181537,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [89328] = 18, - ACTIONS(2204), 1, + [85303] = 19, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2222), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2249), 1, anon_sym_await, - ACTIONS(2224), 1, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2398), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2878), 1, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(2110), 1, + STATE(2096), 1, sym_string, - STATE(2206), 1, + STATE(2276), 1, sym_primary_expression, - STATE(2490), 1, + STATE(2477), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 4, + ACTIONS(2227), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2208), 5, + ACTIONS(2233), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2509), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -181272,58 +181606,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [89413] = 18, - ACTIONS(2204), 1, + [85391] = 19, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2222), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2249), 1, anon_sym_await, - ACTIONS(2224), 1, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2398), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2878), 1, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(2110), 1, + STATE(2096), 1, sym_string, - STATE(2208), 1, + STATE(2277), 1, sym_primary_expression, - STATE(2490), 1, + STATE(2477), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 4, + ACTIONS(2227), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2208), 5, + ACTIONS(2233), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2509), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -181339,58 +181675,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [89498] = 18, - ACTIONS(2204), 1, + [85479] = 19, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2222), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2249), 1, anon_sym_await, - ACTIONS(2224), 1, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2398), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2878), 1, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(2110), 1, + STATE(2096), 1, sym_string, - STATE(2209), 1, + STATE(2278), 1, sym_primary_expression, - STATE(2490), 1, + STATE(2477), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 4, + ACTIONS(2227), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2208), 5, + ACTIONS(2233), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2509), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -181406,58 +181744,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [89583] = 18, - ACTIONS(2204), 1, + [85567] = 19, + ACTIONS(2229), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(2243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2222), 1, + ACTIONS(2247), 1, + sym_float, + ACTIONS(2249), 1, anon_sym_await, - ACTIONS(2224), 1, + ACTIONS(2251), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(2398), 1, + ACTIONS(2439), 1, anon_sym_LT, - ACTIONS(2878), 1, + ACTIONS(2835), 1, anon_sym_STAR, - STATE(2110), 1, + STATE(2096), 1, sym_string, - STATE(2212), 1, + STATE(2279), 1, sym_primary_expression, - STATE(2490), 1, + STATE(2477), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 4, + ACTIONS(2227), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2212), 4, + ACTIONS(2237), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2208), 5, + ACTIONS(2233), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2509), 19, + STATE(2523), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -181473,58 +181813,60 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [89668] = 18, - ACTIONS(2204), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, + [85655] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2220), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2222), 1, - anon_sym_await, - ACTIONS(2224), 1, + ACTIONS(83), 1, + sym_float, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2398), 1, - anon_sym_LT, - ACTIONS(2878), 1, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1191), 1, + anon_sym_LBRACK, + ACTIONS(1197), 1, + anon_sym_await, + ACTIONS(2843), 1, anon_sym_STAR, - STATE(2110), 1, + STATE(1929), 1, sym_string, - STATE(2213), 1, + STATE(1946), 1, sym_primary_expression, - STATE(2490), 1, + STATE(1975), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2218), 2, - sym_ellipsis, - sym_float, - ACTIONS(2202), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2212), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2208), 5, + ACTIONS(81), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1189), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2509), 19, + STATE(2021), 20, sym_binary_operator, sym_unary_operator, sym_attribute, sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -181540,58 +181882,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [89753] = 18, - ACTIONS(2230), 1, + [85743] = 21, + ACTIONS(1117), 1, anon_sym_LPAREN, - ACTIONS(2236), 1, + ACTIONS(1123), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, + ACTIONS(1127), 1, anon_sym_LBRACE, - ACTIONS(2246), 1, + ACTIONS(1137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2248), 1, - anon_sym_await, - ACTIONS(2250), 1, + ACTIONS(1143), 1, + sym_float, + ACTIONS(1149), 1, anon_sym_sizeof, - ACTIONS(2252), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(2310), 1, + ACTIONS(2559), 1, anon_sym_LT, - ACTIONS(2750), 1, + ACTIONS(3536), 1, anon_sym_STAR, - STATE(2061), 1, + ACTIONS(3601), 1, + sym_identifier, + ACTIONS(3607), 1, + anon_sym_await, + STATE(2028), 1, sym_string, - STATE(2108), 1, - sym_primary_expression, - STATE(2307), 1, + STATE(2340), 1, sym_list_splat_pattern, + STATE(3072), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 4, + STATE(2987), 2, + sym_attribute, + sym_subscript, + ACTIONS(1141), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2238), 4, + ACTIONS(1212), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2234), 5, + ACTIONS(3605), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2310), 19, + STATE(2295), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, + sym_ellipsis, sym_call, sym_list, sym_set, @@ -181607,1634 +181953,2023 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [89838] = 18, - ACTIONS(2230), 1, - anon_sym_LPAREN, - ACTIONS(2236), 1, - anon_sym_LBRACK, - ACTIONS(2240), 1, - anon_sym_LBRACE, - ACTIONS(2246), 1, - anon_sym_None, - ACTIONS(2248), 1, + [85835] = 27, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3792), 1, + sym_identifier, + ACTIONS(3796), 1, + anon_sym_COLON, + ACTIONS(3798), 1, + anon_sym_api, + ACTIONS(3800), 1, + anon_sym_extern, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(3808), 1, + anon_sym_enum, + ACTIONS(3810), 1, + anon_sym_cppclass, + ACTIONS(3812), 1, + anon_sym_fused, + STATE(3000), 1, + sym__signedness, + STATE(3045), 1, + sym_int_type, + STATE(3204), 1, + sym__longness, + STATE(3411), 1, + sym_operator_name, + STATE(3697), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(367), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(369), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3804), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(3806), 2, + anon_sym_struct, + anon_sym_union, + STATE(2397), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(1577), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(1585), 3, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + STATE(1591), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(103), 4, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + ACTIONS(3794), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, anon_sym_await, - ACTIONS(2250), 1, - anon_sym_sizeof, - ACTIONS(2252), 1, + [85938] = 26, + ACTIONS(3814), 1, + sym_identifier, + ACTIONS(3817), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_class, + ACTIONS(3838), 1, + anon_sym_long, + ACTIONS(3844), 1, + anon_sym_ctypedef, + ACTIONS(3850), 1, + anon_sym_enum, + ACTIONS(3853), 1, + anon_sym_cppclass, + ACTIONS(3856), 1, + anon_sym_fused, + ACTIONS(3859), 1, + sym__dedent, + ACTIONS(3861), 1, + sym_string_start, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(3313), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3826), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(3832), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3835), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3841), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(3847), 2, + anon_sym_struct, + anon_sym_union, + STATE(2773), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3532), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3829), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(634), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(635), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(3823), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(1901), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [86039] = 26, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(133), 1, + anon_sym_ctypedef, + ACTIONS(3762), 1, + sym_identifier, + ACTIONS(3764), 1, + anon_sym_LPAREN, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(3782), 1, + anon_sym_enum, + ACTIONS(3784), 1, + anon_sym_cppclass, + ACTIONS(3786), 1, + anon_sym_fused, + ACTIONS(3788), 1, + sym_string_start, + ACTIONS(3864), 1, + sym__dedent, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(3313), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3768), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3778), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(3780), 2, + anon_sym_struct, + anon_sym_union, + STATE(2773), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3532), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(634), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(635), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(1901), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [86140] = 26, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(133), 1, + anon_sym_ctypedef, + ACTIONS(3762), 1, + sym_identifier, + ACTIONS(3764), 1, + anon_sym_LPAREN, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(3782), 1, + anon_sym_enum, + ACTIONS(3784), 1, + anon_sym_cppclass, + ACTIONS(3786), 1, + anon_sym_fused, + ACTIONS(3788), 1, sym_string_start, - ACTIONS(2310), 1, - anon_sym_LT, - ACTIONS(2750), 1, - anon_sym_STAR, - STATE(2061), 1, - sym_string, - STATE(2109), 1, - sym_primary_expression, - STATE(2307), 1, - sym_list_splat_pattern, + ACTIONS(3866), 1, + sym__dedent, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(3313), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - sym_ellipsis, - sym_float, - ACTIONS(2228), 4, - sym_integer, + ACTIONS(3768), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3778), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(3780), 2, + anon_sym_struct, + anon_sym_union, + STATE(2773), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3532), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(634), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(635), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(1901), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [86241] = 27, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3782), 1, + anon_sym_enum, + ACTIONS(3784), 1, + anon_sym_cppclass, + ACTIONS(3786), 1, + anon_sym_fused, + ACTIONS(3798), 1, + anon_sym_api, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(3868), 1, sym_identifier, - sym_true, - sym_false, - ACTIONS(2238), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2234), 5, + ACTIONS(3872), 1, + anon_sym_COLON, + ACTIONS(3874), 1, + anon_sym_extern, + STATE(3000), 1, + sym__signedness, + STATE(3045), 1, + sym_int_type, + STATE(3204), 1, + sym__longness, + STATE(3411), 1, + sym_operator_name, + STATE(3680), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(367), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(369), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3780), 2, + anon_sym_struct, + anon_sym_union, + ACTIONS(3804), 2, + anon_sym_const, + anon_sym_volatile, + STATE(2404), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(634), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(635), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(1440), 3, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + ACTIONS(103), 4, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + ACTIONS(3870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - anon_sym_api, - STATE(2310), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [89923] = 18, - ACTIONS(2102), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_LBRACK, - ACTIONS(2112), 1, - anon_sym_LBRACE, - ACTIONS(2118), 1, - anon_sym_None, - ACTIONS(2120), 1, anon_sym_await, - ACTIONS(2122), 1, - anon_sym_sizeof, - ACTIONS(2124), 1, + [86344] = 26, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(133), 1, + anon_sym_ctypedef, + ACTIONS(3762), 1, + sym_identifier, + ACTIONS(3764), 1, + anon_sym_LPAREN, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(3782), 1, + anon_sym_enum, + ACTIONS(3784), 1, + anon_sym_cppclass, + ACTIONS(3786), 1, + anon_sym_fused, + ACTIONS(3788), 1, sym_string_start, - ACTIONS(2426), 1, - anon_sym_STAR, - ACTIONS(2434), 1, - anon_sym_LT, - STATE(1968), 1, - sym_string, - STATE(2033), 1, - sym_primary_expression, - STATE(2230), 1, - sym_list_splat_pattern, + ACTIONS(3876), 1, + sym__dedent, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(3313), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2116), 2, - sym_ellipsis, - sym_float, - ACTIONS(2100), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2110), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2106), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + ACTIONS(3768), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3778), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(3780), 2, + anon_sym_struct, + anon_sym_union, + STATE(2773), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3532), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(634), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(635), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(103), 5, anon_sym_api, - STATE(2179), 19, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [90008] = 26, - ACTIONS(366), 1, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(1901), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [86445] = 26, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(3861), 1, + ACTIONS(3880), 1, anon_sym_class, - ACTIONS(3863), 1, + ACTIONS(3882), 1, anon_sym_extern, - ACTIONS(3865), 1, + ACTIONS(3884), 1, anon_sym_ctypedef, - ACTIONS(3869), 1, + ACTIONS(3888), 1, anon_sym_enum, - ACTIONS(3871), 1, + ACTIONS(3890), 1, anon_sym_cppclass, - ACTIONS(3873), 1, + ACTIONS(3892), 1, anon_sym_fused, - ACTIONS(3875), 1, + ACTIONS(3894), 1, sym__dedent, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3867), 2, + ACTIONS(3886), 2, anon_sym_struct, anon_sym_union, - STATE(2717), 2, + STATE(2700), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2914), 3, + STATE(2927), 3, sym_struct, sym_enum, sym_cppclass, - STATE(2926), 3, + STATE(2931), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(1908), 5, + STATE(1912), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_statement_repeat1, - [90107] = 26, - ACTIONS(366), 1, + [86544] = 26, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(3861), 1, + ACTIONS(3880), 1, anon_sym_class, - ACTIONS(3863), 1, + ACTIONS(3882), 1, anon_sym_extern, - ACTIONS(3865), 1, + ACTIONS(3884), 1, anon_sym_ctypedef, - ACTIONS(3869), 1, + ACTIONS(3888), 1, anon_sym_enum, - ACTIONS(3871), 1, + ACTIONS(3890), 1, anon_sym_cppclass, - ACTIONS(3873), 1, + ACTIONS(3892), 1, anon_sym_fused, - ACTIONS(3877), 1, + ACTIONS(3896), 1, sym__dedent, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3867), 2, + ACTIONS(3886), 2, anon_sym_struct, anon_sym_union, - STATE(2717), 2, + STATE(2700), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2914), 3, + STATE(2927), 3, sym_struct, sym_enum, sym_cppclass, - STATE(2926), 3, + STATE(2931), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(1908), 5, + STATE(1912), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_statement_repeat1, - [90206] = 26, - ACTIONS(3879), 1, + [86643] = 26, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(3882), 1, + ACTIONS(3880), 1, anon_sym_class, - ACTIONS(3888), 1, + ACTIONS(3882), 1, anon_sym_extern, - ACTIONS(3894), 1, - anon_sym_operator, - ACTIONS(3903), 1, - anon_sym_long, - ACTIONS(3909), 1, + ACTIONS(3884), 1, anon_sym_ctypedef, - ACTIONS(3915), 1, + ACTIONS(3888), 1, anon_sym_enum, - ACTIONS(3918), 1, + ACTIONS(3890), 1, anon_sym_cppclass, - ACTIONS(3921), 1, + ACTIONS(3892), 1, anon_sym_fused, - ACTIONS(3924), 1, + ACTIONS(3898), 1, sym__dedent, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3897), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3900), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3906), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3912), 2, + ACTIONS(3886), 2, anon_sym_struct, anon_sym_union, - STATE(2717), 2, + STATE(2700), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(3891), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2914), 3, + STATE(2927), 3, sym_struct, sym_enum, sym_cppclass, - STATE(2926), 3, + STATE(2931), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(3885), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(1908), 5, + STATE(1912), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_statement_repeat1, - [90305] = 26, - ACTIONS(366), 1, + [86742] = 26, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(3861), 1, + ACTIONS(3880), 1, anon_sym_class, - ACTIONS(3863), 1, + ACTIONS(3882), 1, anon_sym_extern, - ACTIONS(3865), 1, + ACTIONS(3884), 1, anon_sym_ctypedef, - ACTIONS(3869), 1, + ACTIONS(3888), 1, anon_sym_enum, - ACTIONS(3871), 1, + ACTIONS(3890), 1, anon_sym_cppclass, - ACTIONS(3873), 1, + ACTIONS(3892), 1, anon_sym_fused, - ACTIONS(3926), 1, + ACTIONS(3900), 1, sym__dedent, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3867), 2, + ACTIONS(3886), 2, anon_sym_struct, anon_sym_union, - STATE(2717), 2, + STATE(2700), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2914), 3, + STATE(2927), 3, sym_struct, sym_enum, sym_cppclass, - STATE(2926), 3, + STATE(2931), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(1908), 5, + STATE(1912), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_statement_repeat1, - [90404] = 26, - ACTIONS(366), 1, + [86841] = 26, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(3861), 1, + ACTIONS(3880), 1, anon_sym_class, - ACTIONS(3863), 1, + ACTIONS(3882), 1, anon_sym_extern, - ACTIONS(3865), 1, + ACTIONS(3884), 1, anon_sym_ctypedef, - ACTIONS(3869), 1, + ACTIONS(3888), 1, anon_sym_enum, - ACTIONS(3871), 1, + ACTIONS(3890), 1, anon_sym_cppclass, - ACTIONS(3873), 1, + ACTIONS(3892), 1, anon_sym_fused, - ACTIONS(3928), 1, + ACTIONS(3902), 1, sym__dedent, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3867), 2, + ACTIONS(3886), 2, anon_sym_struct, anon_sym_union, - STATE(2717), 2, + STATE(2700), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2914), 3, + STATE(2927), 3, sym_struct, sym_enum, sym_cppclass, - STATE(2926), 3, + STATE(2931), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(1908), 5, + STATE(1912), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_statement_repeat1, - [90503] = 26, - ACTIONS(366), 1, + [86940] = 26, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(3861), 1, + ACTIONS(3880), 1, anon_sym_class, - ACTIONS(3863), 1, + ACTIONS(3882), 1, anon_sym_extern, - ACTIONS(3865), 1, + ACTIONS(3884), 1, anon_sym_ctypedef, - ACTIONS(3869), 1, + ACTIONS(3888), 1, anon_sym_enum, - ACTIONS(3871), 1, + ACTIONS(3890), 1, anon_sym_cppclass, - ACTIONS(3873), 1, + ACTIONS(3892), 1, anon_sym_fused, - ACTIONS(3930), 1, + ACTIONS(3904), 1, sym__dedent, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3867), 2, + ACTIONS(3886), 2, anon_sym_struct, anon_sym_union, - STATE(2717), 2, + STATE(2700), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2914), 3, + STATE(2927), 3, sym_struct, sym_enum, sym_cppclass, - STATE(2926), 3, + STATE(2931), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(1908), 5, + STATE(1912), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_statement_repeat1, - [90602] = 26, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(3859), 1, + [87039] = 26, + ACTIONS(3906), 1, sym_identifier, - ACTIONS(3861), 1, + ACTIONS(3909), 1, anon_sym_class, - ACTIONS(3863), 1, + ACTIONS(3915), 1, anon_sym_extern, - ACTIONS(3865), 1, + ACTIONS(3921), 1, + anon_sym_operator, + ACTIONS(3930), 1, + anon_sym_long, + ACTIONS(3936), 1, anon_sym_ctypedef, - ACTIONS(3869), 1, + ACTIONS(3942), 1, anon_sym_enum, - ACTIONS(3871), 1, + ACTIONS(3945), 1, anon_sym_cppclass, - ACTIONS(3873), 1, + ACTIONS(3948), 1, anon_sym_fused, - ACTIONS(3932), 1, + ACTIONS(3951), 1, sym__dedent, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(3924), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(3927), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3933), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3867), 2, + ACTIONS(3939), 2, anon_sym_struct, anon_sym_union, - STATE(2717), 2, + STATE(2700), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(3918), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2914), 3, + STATE(2927), 3, sym_struct, sym_enum, sym_cppclass, - STATE(2926), 3, + STATE(2931), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(101), 5, + ACTIONS(3912), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(1908), 5, + STATE(1912), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_statement_repeat1, - [90701] = 26, - ACTIONS(366), 1, + [87138] = 26, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(3861), 1, + ACTIONS(3880), 1, anon_sym_class, - ACTIONS(3863), 1, + ACTIONS(3882), 1, anon_sym_extern, - ACTIONS(3865), 1, + ACTIONS(3884), 1, anon_sym_ctypedef, - ACTIONS(3869), 1, + ACTIONS(3888), 1, anon_sym_enum, - ACTIONS(3871), 1, + ACTIONS(3890), 1, anon_sym_cppclass, - ACTIONS(3873), 1, + ACTIONS(3892), 1, anon_sym_fused, - ACTIONS(3934), 1, + ACTIONS(3953), 1, sym__dedent, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3867), 2, + ACTIONS(3886), 2, anon_sym_struct, anon_sym_union, - STATE(2717), 2, + STATE(2700), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2914), 3, + STATE(2927), 3, sym_struct, sym_enum, sym_cppclass, - STATE(2926), 3, + STATE(2931), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(1908), 5, + STATE(1912), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_statement_repeat1, - [90800] = 26, - ACTIONS(366), 1, + [87237] = 26, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(3861), 1, + ACTIONS(3880), 1, anon_sym_class, - ACTIONS(3863), 1, + ACTIONS(3882), 1, anon_sym_extern, - ACTIONS(3865), 1, + ACTIONS(3884), 1, anon_sym_ctypedef, - ACTIONS(3869), 1, + ACTIONS(3888), 1, anon_sym_enum, - ACTIONS(3871), 1, + ACTIONS(3890), 1, anon_sym_cppclass, - ACTIONS(3873), 1, + ACTIONS(3892), 1, anon_sym_fused, - ACTIONS(3936), 1, + ACTIONS(3955), 1, sym__dedent, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3867), 2, + ACTIONS(3886), 2, anon_sym_struct, anon_sym_union, - STATE(2717), 2, + STATE(2700), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2914), 3, + STATE(2927), 3, sym_struct, sym_enum, sym_cppclass, - STATE(2926), 3, + STATE(2931), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(1908), 5, + STATE(1912), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_statement_repeat1, - [90899] = 26, - ACTIONS(366), 1, + [87336] = 26, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(3861), 1, + ACTIONS(3880), 1, anon_sym_class, - ACTIONS(3863), 1, + ACTIONS(3882), 1, anon_sym_extern, - ACTIONS(3865), 1, + ACTIONS(3884), 1, anon_sym_ctypedef, - ACTIONS(3869), 1, + ACTIONS(3888), 1, anon_sym_enum, - ACTIONS(3871), 1, + ACTIONS(3890), 1, anon_sym_cppclass, - ACTIONS(3873), 1, + ACTIONS(3892), 1, anon_sym_fused, - ACTIONS(3938), 1, + ACTIONS(3957), 1, sym__dedent, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3867), 2, + ACTIONS(3886), 2, anon_sym_struct, anon_sym_union, - STATE(2717), 2, + STATE(2700), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2914), 3, + STATE(2927), 3, sym_struct, sym_enum, sym_cppclass, - STATE(2926), 3, + STATE(2931), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(1908), 5, + STATE(1912), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_statement_repeat1, - [90998] = 26, - ACTIONS(366), 1, + [87435] = 26, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(3861), 1, + ACTIONS(3880), 1, anon_sym_class, - ACTIONS(3863), 1, + ACTIONS(3882), 1, anon_sym_extern, - ACTIONS(3865), 1, + ACTIONS(3884), 1, anon_sym_ctypedef, - ACTIONS(3869), 1, + ACTIONS(3888), 1, anon_sym_enum, - ACTIONS(3871), 1, + ACTIONS(3890), 1, anon_sym_cppclass, - ACTIONS(3873), 1, + ACTIONS(3892), 1, anon_sym_fused, - ACTIONS(3940), 1, + ACTIONS(3959), 1, sym__dedent, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3867), 2, + ACTIONS(3886), 2, anon_sym_struct, anon_sym_union, - STATE(2717), 2, + STATE(2700), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2914), 3, + STATE(2927), 3, sym_struct, sym_enum, sym_cppclass, - STATE(2926), 3, + STATE(2931), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(1908), 5, + STATE(1912), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_statement_repeat1, - [91097] = 25, - ACTIONS(366), 1, + [87534] = 25, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(3861), 1, + ACTIONS(3880), 1, anon_sym_class, - ACTIONS(3863), 1, + ACTIONS(3882), 1, anon_sym_extern, - ACTIONS(3865), 1, + ACTIONS(3884), 1, anon_sym_ctypedef, - ACTIONS(3869), 1, + ACTIONS(3888), 1, anon_sym_enum, - ACTIONS(3871), 1, + ACTIONS(3890), 1, anon_sym_cppclass, - ACTIONS(3873), 1, + ACTIONS(3892), 1, anon_sym_fused, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3867), 2, + ACTIONS(3886), 2, anon_sym_struct, anon_sym_union, - STATE(2717), 2, + STATE(2700), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2914), 3, + STATE(2927), 3, sym_struct, sym_enum, sym_cppclass, - STATE(2926), 3, + STATE(2931), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(1914), 5, + STATE(1909), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_statement_repeat1, - [91193] = 21, - ACTIONS(3944), 1, - anon_sym_DOT, - ACTIONS(3946), 1, - anon_sym_LPAREN, - ACTIONS(3954), 1, - anon_sym_STAR_STAR, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(3958), 1, - anon_sym_LBRACK, - ACTIONS(3964), 1, - anon_sym_PIPE, - ACTIONS(3966), 1, - anon_sym_not, - ACTIONS(3968), 1, - anon_sym_AMP, - ACTIONS(3970), 1, - anon_sym_CARET, - ACTIONS(3972), 1, - anon_sym_is, - STATE(2859), 1, - aux_sym_comparison_operator_repeat1, + [87630] = 25, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(3878), 1, + sym_identifier, + ACTIONS(3880), 1, + anon_sym_class, + ACTIONS(3882), 1, + anon_sym_extern, + ACTIONS(3884), 1, + anon_sym_ctypedef, + ACTIONS(3888), 1, + anon_sym_enum, + ACTIONS(3890), 1, + anon_sym_cppclass, + ACTIONS(3892), 1, + anon_sym_fused, + STATE(3000), 1, + sym__signedness, + STATE(3045), 1, + sym_int_type, + STATE(3204), 1, + sym__longness, + STATE(3411), 1, + sym_operator_name, + STATE(3652), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3948), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3950), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(3962), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3974), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1836), 2, - sym__not_in, - sym__is_not, - STATE(2004), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(3960), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3952), 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(3942), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_with, - anon_sym_and, - anon_sym_or, - anon_sym_nogil, - [91281] = 25, - ACTIONS(366), 1, + ACTIONS(367), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(369), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3804), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(3886), 2, + anon_sym_struct, + anon_sym_union, + STATE(2700), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(2927), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(2931), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(1914), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_statement_repeat1, + [87726] = 25, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(3861), 1, + ACTIONS(3880), 1, anon_sym_class, - ACTIONS(3863), 1, + ACTIONS(3882), 1, anon_sym_extern, - ACTIONS(3865), 1, + ACTIONS(3884), 1, anon_sym_ctypedef, - ACTIONS(3869), 1, + ACTIONS(3888), 1, anon_sym_enum, - ACTIONS(3871), 1, + ACTIONS(3890), 1, anon_sym_cppclass, - ACTIONS(3873), 1, + ACTIONS(3892), 1, anon_sym_fused, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3867), 2, + ACTIONS(3886), 2, anon_sym_struct, anon_sym_union, - STATE(2717), 2, + STATE(2700), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2914), 3, + STATE(2927), 3, sym_struct, sym_enum, sym_cppclass, - STATE(2926), 3, + STATE(2931), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(1907), 5, + STATE(1910), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_statement_repeat1, - [91377] = 25, - ACTIONS(366), 1, + [87822] = 25, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(3861), 1, + ACTIONS(3880), 1, anon_sym_class, - ACTIONS(3863), 1, + ACTIONS(3882), 1, anon_sym_extern, - ACTIONS(3865), 1, + ACTIONS(3884), 1, anon_sym_ctypedef, - ACTIONS(3869), 1, + ACTIONS(3888), 1, anon_sym_enum, - ACTIONS(3871), 1, + ACTIONS(3890), 1, anon_sym_cppclass, - ACTIONS(3873), 1, + ACTIONS(3892), 1, anon_sym_fused, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3867), 2, + ACTIONS(3886), 2, anon_sym_struct, anon_sym_union, - STATE(2717), 2, + STATE(2700), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2914), 3, + STATE(2927), 3, sym_struct, sym_enum, sym_cppclass, - STATE(2926), 3, + STATE(2931), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(1912), 5, + STATE(1913), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_statement_repeat1, - [91473] = 25, - ACTIONS(366), 1, + [87918] = 21, + ACTIONS(3963), 1, + anon_sym_DOT, + ACTIONS(3965), 1, + anon_sym_LPAREN, + ACTIONS(3973), 1, + anon_sym_STAR_STAR, + ACTIONS(3975), 1, + anon_sym_EQ, + ACTIONS(3977), 1, + anon_sym_LBRACK, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_not, + ACTIONS(3987), 1, + anon_sym_AMP, + ACTIONS(3989), 1, + anon_sym_CARET, + ACTIONS(3991), 1, + anon_sym_is, + STATE(1933), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3967), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3969), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(3981), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3993), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1813), 2, + sym__not_in, + sym__is_not, + STATE(2002), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(3979), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3971), 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(3961), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, + anon_sym_and, + anon_sym_or, + anon_sym_nogil, + [88006] = 25, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(3861), 1, + ACTIONS(3880), 1, anon_sym_class, - ACTIONS(3863), 1, + ACTIONS(3882), 1, anon_sym_extern, - ACTIONS(3865), 1, + ACTIONS(3884), 1, anon_sym_ctypedef, - ACTIONS(3869), 1, + ACTIONS(3888), 1, anon_sym_enum, - ACTIONS(3871), 1, + ACTIONS(3890), 1, anon_sym_cppclass, - ACTIONS(3873), 1, + ACTIONS(3892), 1, anon_sym_fused, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3867), 2, + ACTIONS(3886), 2, anon_sym_struct, anon_sym_union, - STATE(2717), 2, + STATE(2700), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2914), 3, + STATE(2927), 3, sym_struct, sym_enum, sym_cppclass, - STATE(2926), 3, + STATE(2931), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(1906), 5, + STATE(1911), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_statement_repeat1, - [91569] = 25, - ACTIONS(366), 1, + [88102] = 25, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(3861), 1, + ACTIONS(3880), 1, anon_sym_class, - ACTIONS(3863), 1, + ACTIONS(3882), 1, anon_sym_extern, - ACTIONS(3865), 1, + ACTIONS(3884), 1, anon_sym_ctypedef, - ACTIONS(3869), 1, + ACTIONS(3888), 1, anon_sym_enum, - ACTIONS(3871), 1, + ACTIONS(3890), 1, anon_sym_cppclass, - ACTIONS(3873), 1, + ACTIONS(3892), 1, anon_sym_fused, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3867), 2, + ACTIONS(3886), 2, anon_sym_struct, anon_sym_union, - STATE(2717), 2, + STATE(2700), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2914), 3, + STATE(2927), 3, sym_struct, sym_enum, sym_cppclass, - STATE(2926), 3, + STATE(2931), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(1910), 5, + STATE(1908), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_statement_repeat1, - [91665] = 25, - ACTIONS(366), 1, + [88198] = 25, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(3861), 1, + ACTIONS(3880), 1, anon_sym_class, - ACTIONS(3863), 1, + ACTIONS(3882), 1, anon_sym_extern, - ACTIONS(3865), 1, + ACTIONS(3884), 1, anon_sym_ctypedef, - ACTIONS(3869), 1, + ACTIONS(3888), 1, anon_sym_enum, - ACTIONS(3871), 1, + ACTIONS(3890), 1, anon_sym_cppclass, - ACTIONS(3873), 1, + ACTIONS(3892), 1, anon_sym_fused, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3867), 2, + ACTIONS(3886), 2, anon_sym_struct, anon_sym_union, - STATE(2717), 2, + STATE(2700), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2914), 3, + STATE(2927), 3, sym_struct, sym_enum, sym_cppclass, - STATE(2926), 3, + STATE(2931), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(1911), 5, + STATE(1906), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_statement_repeat1, - [91761] = 25, - ACTIONS(366), 1, + [88294] = 25, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(3861), 1, + ACTIONS(3880), 1, anon_sym_class, - ACTIONS(3863), 1, + ACTIONS(3882), 1, anon_sym_extern, - ACTIONS(3865), 1, + ACTIONS(3884), 1, anon_sym_ctypedef, - ACTIONS(3869), 1, + ACTIONS(3888), 1, anon_sym_enum, - ACTIONS(3871), 1, + ACTIONS(3890), 1, anon_sym_cppclass, - ACTIONS(3873), 1, + ACTIONS(3892), 1, anon_sym_fused, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3867), 2, + ACTIONS(3886), 2, anon_sym_struct, anon_sym_union, - STATE(2717), 2, + STATE(2700), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2914), 3, + STATE(2927), 3, sym_struct, sym_enum, sym_cppclass, - STATE(2926), 3, + STATE(2931), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(1915), 5, + STATE(1907), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_statement_repeat1, - [91857] = 25, - ACTIONS(366), 1, + [88390] = 25, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(3861), 1, + ACTIONS(3880), 1, anon_sym_class, - ACTIONS(3863), 1, + ACTIONS(3882), 1, anon_sym_extern, - ACTIONS(3865), 1, + ACTIONS(3884), 1, anon_sym_ctypedef, - ACTIONS(3869), 1, + ACTIONS(3888), 1, anon_sym_enum, - ACTIONS(3871), 1, + ACTIONS(3890), 1, anon_sym_cppclass, - ACTIONS(3873), 1, + ACTIONS(3892), 1, anon_sym_fused, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3867), 2, + ACTIONS(3886), 2, anon_sym_struct, anon_sym_union, - STATE(2717), 2, + STATE(2700), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2914), 3, + STATE(2927), 3, sym_struct, sym_enum, sym_cppclass, - STATE(2926), 3, + STATE(2931), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(1913), 5, + STATE(1916), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_statement_repeat1, - [91953] = 21, - ACTIONS(3944), 1, + [88486] = 21, + ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(3946), 1, + ACTIONS(3965), 1, anon_sym_LPAREN, - ACTIONS(3954), 1, + ACTIONS(3973), 1, anon_sym_STAR_STAR, - ACTIONS(3956), 1, + ACTIONS(3975), 1, anon_sym_EQ, - ACTIONS(3958), 1, + ACTIONS(3977), 1, anon_sym_LBRACK, - ACTIONS(3964), 1, + ACTIONS(3983), 1, anon_sym_PIPE, - ACTIONS(3966), 1, + ACTIONS(3985), 1, anon_sym_not, - ACTIONS(3968), 1, + ACTIONS(3987), 1, anon_sym_AMP, - ACTIONS(3970), 1, + ACTIONS(3989), 1, anon_sym_CARET, - ACTIONS(3972), 1, + ACTIONS(3991), 1, anon_sym_is, - STATE(1935), 1, + STATE(2898), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3948), 2, + ACTIONS(3967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3950), 2, + ACTIONS(3969), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(3962), 2, + ACTIONS(3981), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3974), 2, + ACTIONS(3993), 2, anon_sym_LT, anon_sym_GT, - STATE(1836), 2, + STATE(1813), 2, sym__not_in, sym__is_not, - STATE(2004), 2, + STATE(2002), 2, sym_argument_list, sym_generator_expression, - ACTIONS(3960), 3, + ACTIONS(3979), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3952), 6, + ACTIONS(3971), 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(3942), 11, + ACTIONS(3961), 11, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -183246,164 +183981,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_nogil, - [92041] = 25, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(3859), 1, - sym_identifier, - ACTIONS(3861), 1, - anon_sym_class, - ACTIONS(3863), 1, - anon_sym_extern, - ACTIONS(3865), 1, - anon_sym_ctypedef, - ACTIONS(3869), 1, - anon_sym_enum, - ACTIONS(3871), 1, - anon_sym_cppclass, - ACTIONS(3873), 1, - anon_sym_fused, - STATE(2986), 1, - sym__signedness, - STATE(3051), 1, - sym_int_type, - STATE(3185), 1, - sym__longness, - STATE(3434), 1, - sym_operator_name, - STATE(3667), 1, - sym_maybe_typed_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(362), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(364), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3821), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(3867), 2, - anon_sym_struct, - anon_sym_union, - STATE(2717), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(2914), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(2926), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - STATE(1916), 5, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - sym_ctypedef_statement, - aux_sym_cdef_statement_repeat1, - [92137] = 25, - ACTIONS(366), 1, + [88574] = 25, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(3861), 1, + ACTIONS(3880), 1, anon_sym_class, - ACTIONS(3863), 1, + ACTIONS(3882), 1, anon_sym_extern, - ACTIONS(3865), 1, + ACTIONS(3884), 1, anon_sym_ctypedef, - ACTIONS(3869), 1, + ACTIONS(3888), 1, anon_sym_enum, - ACTIONS(3871), 1, + ACTIONS(3890), 1, anon_sym_cppclass, - ACTIONS(3873), 1, + ACTIONS(3892), 1, anon_sym_fused, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3867), 2, + ACTIONS(3886), 2, anon_sym_struct, anon_sym_union, - STATE(2717), 2, + STATE(2700), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2914), 3, + STATE(2927), 3, sym_struct, sym_enum, sym_cppclass, - STATE(2926), 3, + STATE(2931), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(1909), 5, + STATE(1915), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_statement_repeat1, - [92233] = 5, - ACTIONS(3980), 1, + [88670] = 5, + ACTIONS(107), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1929), 2, + STATE(1931), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(3978), 5, + ACTIONS(3468), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3976), 33, + ACTIONS(3457), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -183437,34 +184101,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [92287] = 9, - ACTIONS(3990), 1, - anon_sym_not, - ACTIONS(3993), 1, - anon_sym_is, - STATE(1930), 1, - aux_sym_comparison_operator_repeat1, + [88724] = 13, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3997), 1, + anon_sym_STAR, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(4003), 1, + anon_sym_complex, + STATE(3258), 1, + aux_sym_class_definition_repeat2, + STATE(3279), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3996), 2, + ACTIONS(3461), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(3423), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3999), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(3468), 4, + anon_sym_as, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - STATE(1836), 2, - sym__not_in, - sym__is_not, - ACTIONS(3985), 3, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - ACTIONS(3987), 6, + ACTIONS(3457), 23, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(3983), 25, + [88794] = 5, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1932), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4007), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4005), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -183475,6 +184184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -183482,6 +184192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -183489,23 +184200,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, anon_sym_nogil, - [92349] = 5, - ACTIONS(105), 1, + [88848] = 5, + ACTIONS(4013), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1929), 2, + STATE(1932), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(4001), 5, + ACTIONS(4011), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3999), 33, + ACTIONS(4009), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -183539,46 +184256,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [92403] = 13, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, - ACTIONS(4003), 1, - anon_sym_DOT, - ACTIONS(4005), 1, - anon_sym_STAR, - ACTIONS(4009), 1, - anon_sym_LBRACK, - ACTIONS(4011), 1, - anon_sym_complex, - STATE(3249), 1, - aux_sym_class_definition_repeat2, - STATE(3278), 1, - sym_type_index, + [88902] = 5, + STATE(1934), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3442), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(3448), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4007), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(3449), 4, - anon_sym_as, + STATE(1813), 2, + sym__not_in, + sym__is_not, + ACTIONS(4018), 5, + anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 23, + ACTIONS(4016), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -183588,6 +184295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -183596,22 +184304,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [92473] = 5, - ACTIONS(105), 1, - sym_string_start, + anon_sym_nogil, + [88956] = 9, + ACTIONS(4027), 1, + anon_sym_not, + ACTIONS(4030), 1, + anon_sym_is, + STATE(1934), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1931), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3449), 5, + ACTIONS(4033), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1813), 2, + sym__not_in, + sym__is_not, + ACTIONS(4022), 3, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3438), 33, + ACTIONS(4024), 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(4020), 25, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -183622,7 +184343,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -183630,7 +184350,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -183638,49 +184357,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, anon_sym_nogil, - [92527] = 14, - ACTIONS(3444), 1, + [89018] = 14, + ACTIONS(3463), 1, anon_sym_COMMA, - ACTIONS(3451), 1, + ACTIONS(3470), 1, anon_sym_COLON_EQ, - ACTIONS(4003), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(4005), 1, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(4011), 1, + ACTIONS(4003), 1, anon_sym_complex, - STATE(3249), 1, + STATE(3258), 1, aux_sym_class_definition_repeat2, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3442), 2, + ACTIONS(3461), 2, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(3448), 2, + STATE(3423), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(3449), 4, + ACTIONS(3468), 4, anon_sym_as, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 22, + ACTIONS(3457), 22, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -183703,95 +184416,446 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [92599] = 5, - STATE(1930), 1, + [89090] = 14, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3997), 1, + anon_sym_STAR, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(4003), 1, + anon_sym_complex, + ACTIONS(4036), 1, + anon_sym_EQ, + STATE(3258), 1, + aux_sym_class_definition_repeat2, + STATE(3279), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3461), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(3423), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3468), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3999), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(3457), 22, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [89161] = 12, + ACTIONS(3963), 1, + anon_sym_DOT, + ACTIONS(3965), 1, + anon_sym_LPAREN, + ACTIONS(3973), 1, + anon_sym_STAR_STAR, + ACTIONS(3977), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3967), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3969), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(3981), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2002), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(3979), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4040), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4038), 22, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [89228] = 21, + ACTIONS(3975), 1, + anon_sym_EQ, + ACTIONS(3985), 1, + anon_sym_not, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_LPAREN, + ACTIONS(4052), 1, + anon_sym_STAR_STAR, + ACTIONS(4054), 1, + anon_sym_LBRACK, + ACTIONS(4060), 1, + anon_sym_PIPE, + ACTIONS(4062), 1, + anon_sym_AMP, + ACTIONS(4064), 1, + anon_sym_CARET, + ACTIONS(4066), 1, + anon_sym_is, + STATE(2022), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1836), 2, + ACTIONS(4046), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4048), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4058), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4068), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1824), 2, sym__not_in, sym__is_not, - ACTIONS(4015), 5, + STATE(2153), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4056), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4050), 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(3961), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [89313] = 15, + ACTIONS(3963), 1, + anon_sym_DOT, + ACTIONS(3965), 1, + anon_sym_LPAREN, + ACTIONS(3973), 1, + anon_sym_STAR_STAR, + ACTIONS(3977), 1, + anon_sym_LBRACK, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3987), 1, + anon_sym_AMP, + ACTIONS(3989), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3967), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(3969), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(3981), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2002), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(3979), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4072), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4013), 33, + ACTIONS(4070), 19, sym__newline, anon_sym_SEMI, - anon_sym_DOT, anon_sym_from, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, anon_sym_with, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [89386] = 10, + ACTIONS(3963), 1, + anon_sym_DOT, + ACTIONS(3965), 1, + anon_sym_LPAREN, + ACTIONS(3973), 1, anon_sym_STAR_STAR, + ACTIONS(3977), 1, anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3967), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2002), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(3979), 3, anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4040), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4038), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [89449] = 14, + ACTIONS(3963), 1, + anon_sym_DOT, + ACTIONS(3965), 1, + anon_sym_LPAREN, + ACTIONS(3973), 1, + anon_sym_STAR_STAR, + ACTIONS(3977), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_AMP, + ACTIONS(3989), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3967), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3969), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(3981), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2002), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(3979), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4040), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4038), 20, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [89520] = 21, + ACTIONS(3975), 1, + anon_sym_EQ, + ACTIONS(3985), 1, + anon_sym_not, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_LPAREN, + ACTIONS(4052), 1, + anon_sym_STAR_STAR, + ACTIONS(4054), 1, + anon_sym_LBRACK, + ACTIONS(4060), 1, + anon_sym_PIPE, + ACTIONS(4062), 1, + anon_sym_AMP, + ACTIONS(4064), 1, + anon_sym_CARET, + ACTIONS(4066), 1, + anon_sym_is, + STATE(2955), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4046), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4048), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4058), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4068), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1824), 2, + sym__not_in, + sym__is_not, + STATE(2153), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4056), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, + ACTIONS(4050), 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_nogil, - [92653] = 14, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, - ACTIONS(4003), 1, + ACTIONS(3961), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [89605] = 8, + ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4005), 1, - anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(3965), 1, + anon_sym_LPAREN, + ACTIONS(3973), 1, + anon_sym_STAR_STAR, + ACTIONS(3977), 1, anon_sym_LBRACK, - ACTIONS(4011), 1, - anon_sym_complex, - ACTIONS(4017), 1, - anon_sym_EQ, - STATE(3249), 1, - aux_sym_class_definition_repeat2, - STATE(3278), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3442), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(3448), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3449), 3, + STATE(2002), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4076), 5, + anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4007), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(3438), 22, + ACTIONS(4074), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_with, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -183801,6 +184865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -183809,28 +184874,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [92724] = 8, - ACTIONS(3944), 1, + anon_sym_nogil, + [89664] = 8, + ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(3946), 1, + ACTIONS(3965), 1, anon_sym_LPAREN, - ACTIONS(3954), 1, + ACTIONS(3973), 1, anon_sym_STAR_STAR, - ACTIONS(3958), 1, + ACTIONS(3977), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2004), 2, + STATE(2002), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4021), 5, + ACTIONS(4040), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4019), 29, + ACTIONS(4038), 29, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -183860,112 +184926,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [92783] = 21, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(3966), 1, + [89723] = 21, + ACTIONS(3975), 1, + anon_sym_as, + ACTIONS(3985), 1, anon_sym_not, - ACTIONS(4023), 1, + ACTIONS(4078), 1, anon_sym_DOT, - ACTIONS(4025), 1, + ACTIONS(4080), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4088), 1, anon_sym_STAR_STAR, - ACTIONS(4035), 1, + ACTIONS(4090), 1, anon_sym_LBRACK, - ACTIONS(4041), 1, + ACTIONS(4096), 1, anon_sym_PIPE, - ACTIONS(4043), 1, + ACTIONS(4098), 1, anon_sym_AMP, - ACTIONS(4045), 1, + ACTIONS(4100), 1, anon_sym_CARET, - ACTIONS(4047), 1, + ACTIONS(4102), 1, anon_sym_is, - STATE(1996), 1, + STATE(2953), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4027), 2, + ACTIONS(4082), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4029), 2, + ACTIONS(4084), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4039), 2, + ACTIONS(4094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4049), 2, + ACTIONS(4104), 2, anon_sym_LT, anon_sym_GT, - STATE(1801), 2, + STATE(1802), 2, sym__not_in, sym__is_not, - STATE(2241), 2, + STATE(2256), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4037), 3, + ACTIONS(4092), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4031), 6, + ACTIONS(4086), 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(3942), 8, + ACTIONS(3961), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [92868] = 14, - ACTIONS(3944), 1, + [89808] = 11, + ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(3946), 1, + ACTIONS(3965), 1, anon_sym_LPAREN, - ACTIONS(3954), 1, + ACTIONS(3973), 1, anon_sym_STAR_STAR, - ACTIONS(3958), 1, + ACTIONS(3977), 1, anon_sym_LBRACK, - ACTIONS(3968), 1, - anon_sym_AMP, - ACTIONS(3970), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3948), 2, + ACTIONS(3967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3950), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(3962), 2, + ACTIONS(3981), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2004), 2, + STATE(2002), 2, sym_argument_list, sym_generator_expression, - ACTIONS(3960), 3, + ACTIONS(3979), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4021), 3, + ACTIONS(4040), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4019), 20, + ACTIONS(4038), 24, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, @@ -183974,6 +185034,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -183981,33 +185044,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [92939] = 10, - ACTIONS(3944), 1, + [89873] = 8, + ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(3946), 1, + ACTIONS(3965), 1, anon_sym_LPAREN, - ACTIONS(3954), 1, + ACTIONS(3973), 1, anon_sym_STAR_STAR, - ACTIONS(3958), 1, + ACTIONS(3977), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3948), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2004), 2, + STATE(2002), 2, sym_argument_list, sym_generator_expression, - ACTIONS(3960), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4021), 3, + ACTIONS(4040), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4019), 26, + ACTIONS(4038), 29, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -184018,12 +185076,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_in, anon_sym_with, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -184034,38 +185095,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93002] = 8, - ACTIONS(3944), 1, + [89932] = 14, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3946), 1, - anon_sym_LPAREN, - ACTIONS(3954), 1, - anon_sym_STAR_STAR, - ACTIONS(3958), 1, + ACTIONS(3997), 1, + anon_sym_STAR, + ACTIONS(4001), 1, anon_sym_LBRACK, + ACTIONS(4003), 1, + anon_sym_complex, + ACTIONS(4036), 1, + anon_sym_EQ, + STATE(3258), 1, + aux_sym_class_definition_repeat2, + STATE(3279), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2004), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4053), 5, - anon_sym_STAR, - anon_sym_EQ, + STATE(3423), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3461), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3468), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4051), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, + ACTIONS(3999), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(3457), 21, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_with, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -184075,7 +185144,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -184084,43 +185152,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [93061] = 11, - ACTIONS(3944), 1, + [90003] = 13, + ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(3946), 1, + ACTIONS(3965), 1, anon_sym_LPAREN, - ACTIONS(3954), 1, + ACTIONS(3973), 1, anon_sym_STAR_STAR, - ACTIONS(3958), 1, + ACTIONS(3977), 1, anon_sym_LBRACK, + ACTIONS(3989), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3948), 2, + ACTIONS(3967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3962), 2, + ACTIONS(3969), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(3981), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2004), 2, + STATE(2002), 2, sym_argument_list, sym_generator_expression, - ACTIONS(3960), 3, + ACTIONS(3979), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4021), 3, + ACTIONS(4040), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4019), 24, + ACTIONS(4038), 21, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, @@ -184130,8 +185201,6 @@ 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -184139,55 +185208,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93126] = 13, - ACTIONS(3944), 1, + [90072] = 8, + ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(3946), 1, + ACTIONS(3965), 1, anon_sym_LPAREN, - ACTIONS(3954), 1, + ACTIONS(3973), 1, anon_sym_STAR_STAR, - ACTIONS(3958), 1, + ACTIONS(3977), 1, anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3948), 2, + STATE(2002), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4108), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(3950), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4106), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(3962), 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(2004), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(3960), 3, - anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4021), 3, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [90131] = 6, + ACTIONS(4115), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4120), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4112), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4118), 4, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4019), 21, + ACTIONS(4110), 29, sym__newline, anon_sym_SEMI, + anon_sym_DOT, anon_sym_from, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, anon_sym_with, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -184195,62 +185308,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93195] = 21, - ACTIONS(3956), 1, + [90186] = 21, + ACTIONS(3975), 1, anon_sym_as, - ACTIONS(3966), 1, + ACTIONS(3985), 1, anon_sym_not, - ACTIONS(4055), 1, + ACTIONS(4078), 1, anon_sym_DOT, - ACTIONS(4057), 1, + ACTIONS(4080), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4088), 1, anon_sym_STAR_STAR, - ACTIONS(4067), 1, + ACTIONS(4090), 1, anon_sym_LBRACK, - ACTIONS(4073), 1, + ACTIONS(4096), 1, anon_sym_PIPE, - ACTIONS(4075), 1, + ACTIONS(4098), 1, anon_sym_AMP, - ACTIONS(4077), 1, + ACTIONS(4100), 1, anon_sym_CARET, - ACTIONS(4079), 1, + ACTIONS(4102), 1, anon_sym_is, - STATE(2944), 1, + STATE(2018), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4059), 2, + ACTIONS(4082), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4061), 2, + ACTIONS(4084), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4071), 2, + ACTIONS(4094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4081), 2, + ACTIONS(4104), 2, anon_sym_LT, anon_sym_GT, - STATE(1894), 2, + STATE(1802), 2, sym__not_in, sym__is_not, - STATE(2160), 2, + STATE(2256), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4069), 3, + ACTIONS(4092), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4063), 6, + ACTIONS(4086), 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(3942), 8, + ACTIONS(3961), 8, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -184259,95 +185372,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [93280] = 14, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, - ACTIONS(4003), 1, + [90271] = 21, + ACTIONS(3975), 1, + anon_sym_as, + ACTIONS(3985), 1, + anon_sym_not, + ACTIONS(4122), 1, anon_sym_DOT, - ACTIONS(4005), 1, - anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4124), 1, + anon_sym_LPAREN, + ACTIONS(4132), 1, + anon_sym_STAR_STAR, + ACTIONS(4134), 1, anon_sym_LBRACK, - ACTIONS(4011), 1, - anon_sym_complex, - ACTIONS(4017), 1, - anon_sym_EQ, - STATE(3249), 1, - aux_sym_class_definition_repeat2, - STATE(3278), 1, - sym_type_index, + ACTIONS(4140), 1, + anon_sym_PIPE, + ACTIONS(4142), 1, + anon_sym_AMP, + ACTIONS(4144), 1, + anon_sym_CARET, + ACTIONS(4146), 1, + anon_sym_is, + STATE(2960), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3448), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3442), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3449), 3, + ACTIONS(4126), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4007), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(3438), 21, - anon_sym_as, + ACTIONS(4128), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(4138), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(4148), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1877), 2, + sym__not_in, + sym__is_not, + STATE(2323), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4136), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, + ACTIONS(4130), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [93351] = 8, - ACTIONS(3944), 1, + ACTIONS(3961), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [90355] = 21, + ACTIONS(3975), 1, + anon_sym_as, + ACTIONS(3985), 1, + anon_sym_not, + ACTIONS(4122), 1, anon_sym_DOT, - ACTIONS(3946), 1, + ACTIONS(4124), 1, anon_sym_LPAREN, - ACTIONS(3954), 1, + ACTIONS(4132), 1, anon_sym_STAR_STAR, - ACTIONS(3958), 1, + ACTIONS(4134), 1, anon_sym_LBRACK, + ACTIONS(4140), 1, + anon_sym_PIPE, + ACTIONS(4142), 1, + anon_sym_AMP, + ACTIONS(4144), 1, + anon_sym_CARET, + ACTIONS(4146), 1, + anon_sym_is, + STATE(2057), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2004), 2, + ACTIONS(4126), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4128), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4138), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4148), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1877), 2, + sym__not_in, + sym__is_not, + STATE(2323), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4085), 5, + ACTIONS(4136), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4130), 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(3961), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [90439] = 4, + ACTIONS(580), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(565), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4083), 29, + ACTIONS(563), 32, sym__newline, anon_sym_SEMI, + anon_sym_DOT, anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -184367,121 +185544,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93410] = 21, - ACTIONS(3956), 1, + [90489] = 21, + ACTIONS(3975), 1, anon_sym_as, - ACTIONS(3966), 1, + ACTIONS(3985), 1, anon_sym_not, - ACTIONS(4055), 1, + ACTIONS(4150), 1, anon_sym_DOT, - ACTIONS(4057), 1, + ACTIONS(4152), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4160), 1, anon_sym_STAR_STAR, - ACTIONS(4067), 1, + ACTIONS(4162), 1, anon_sym_LBRACK, - ACTIONS(4073), 1, + ACTIONS(4168), 1, anon_sym_PIPE, - ACTIONS(4075), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4077), 1, + ACTIONS(4172), 1, anon_sym_CARET, - ACTIONS(4079), 1, + ACTIONS(4174), 1, anon_sym_is, - STATE(1979), 1, + STATE(2976), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4059), 2, + ACTIONS(4154), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4061), 2, + ACTIONS(4156), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4071), 2, + ACTIONS(4166), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4081), 2, + ACTIONS(4176), 2, anon_sym_LT, anon_sym_GT, - STATE(1894), 2, + STATE(1853), 2, sym__not_in, sym__is_not, - STATE(2160), 2, + STATE(2403), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4069), 3, + ACTIONS(4164), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4063), 6, + ACTIONS(4158), 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(3942), 8, + ACTIONS(3961), 7, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [93495] = 15, - ACTIONS(3944), 1, + [90573] = 21, + ACTIONS(3975), 1, + anon_sym_as, + ACTIONS(3985), 1, + anon_sym_not, + ACTIONS(4150), 1, anon_sym_DOT, - ACTIONS(3946), 1, + ACTIONS(4152), 1, anon_sym_LPAREN, - ACTIONS(3954), 1, + ACTIONS(4160), 1, anon_sym_STAR_STAR, - ACTIONS(3958), 1, + ACTIONS(4162), 1, anon_sym_LBRACK, - ACTIONS(3964), 1, + ACTIONS(4168), 1, anon_sym_PIPE, - ACTIONS(3968), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(3970), 1, + ACTIONS(4172), 1, anon_sym_CARET, + ACTIONS(4174), 1, + anon_sym_is, + STATE(2064), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3948), 2, + ACTIONS(4154), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3950), 2, + ACTIONS(4156), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(3962), 2, + ACTIONS(4166), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2004), 2, + ACTIONS(4176), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1853), 2, + sym__not_in, + sym__is_not, + STATE(2403), 2, sym_argument_list, sym_generator_expression, - ACTIONS(3960), 3, + ACTIONS(4164), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4089), 3, + ACTIONS(4158), 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(3961), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [90657] = 4, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3468), 6, + anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4087), 19, + ACTIONS(3457), 32, sym__newline, anon_sym_SEMI, + anon_sym_DOT, anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -184489,31 +185716,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93568] = 8, - ACTIONS(3944), 1, - anon_sym_DOT, - ACTIONS(3946), 1, - anon_sym_LPAREN, - ACTIONS(3954), 1, - anon_sym_STAR_STAR, - ACTIONS(3958), 1, - anon_sym_LBRACK, + [90707] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2004), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 5, + ACTIONS(4180), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4019), 29, + ACTIONS(4178), 34, sym__newline, + sym_string_start, anon_sym_SEMI, + anon_sym_DOT, anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -184521,6 +185740,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_in, anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -184540,94 +185761,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93627] = 21, - ACTIONS(3956), 1, + [90755] = 21, + ACTIONS(3975), 1, anon_sym_EQ, - ACTIONS(3966), 1, + ACTIONS(3985), 1, anon_sym_not, - ACTIONS(4023), 1, + ACTIONS(4182), 1, anon_sym_DOT, - ACTIONS(4025), 1, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4192), 1, anon_sym_STAR_STAR, - ACTIONS(4035), 1, + ACTIONS(4194), 1, anon_sym_LBRACK, - ACTIONS(4041), 1, + ACTIONS(4200), 1, anon_sym_PIPE, - ACTIONS(4043), 1, + ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4045), 1, + ACTIONS(4204), 1, anon_sym_CARET, - ACTIONS(4047), 1, + ACTIONS(4206), 1, anon_sym_is, - STATE(2948), 1, + STATE(2063), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4027), 2, + ACTIONS(4186), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4029), 2, + ACTIONS(4188), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4039), 2, + ACTIONS(4198), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4049), 2, + ACTIONS(4208), 2, anon_sym_LT, anon_sym_GT, - STATE(1801), 2, + STATE(1868), 2, sym__not_in, sym__is_not, - STATE(2241), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4037), 3, + ACTIONS(4196), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4031), 6, + ACTIONS(4190), 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(3942), 8, + ACTIONS(3961), 7, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_else, anon_sym_and, anon_sym_or, - sym_type_conversion, - [93712] = 6, - ACTIONS(4096), 1, - anon_sym_STAR, + [90839] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4101), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4093), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4099), 4, + ACTIONS(4212), 5, + anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4091), 29, + ACTIONS(4210), 34, sym__newline, + sym_string_start, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -184635,6 +185848,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_in, anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -184644,6 +185859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -184653,138 +185869,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93767] = 12, - ACTIONS(3944), 1, - anon_sym_DOT, - ACTIONS(3946), 1, + [90887] = 20, + ACTIONS(3965), 1, anon_sym_LPAREN, - ACTIONS(3954), 1, + ACTIONS(3973), 1, anon_sym_STAR_STAR, - ACTIONS(3958), 1, + ACTIONS(3983), 1, + anon_sym_PIPE, + ACTIONS(3985), 1, + anon_sym_not, + ACTIONS(3987), 1, + anon_sym_AMP, + ACTIONS(3989), 1, + anon_sym_CARET, + ACTIONS(3991), 1, + anon_sym_is, + ACTIONS(4214), 1, + anon_sym_DOT, + ACTIONS(4216), 1, anon_sym_LBRACK, + STATE(2898), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3948), 2, + ACTIONS(3967), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3950), 2, + ACTIONS(3969), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(3962), 2, + ACTIONS(3981), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2004), 2, + ACTIONS(3993), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1813), 2, + sym__not_in, + sym__is_not, + STATE(2002), 2, sym_argument_list, sym_generator_expression, - ACTIONS(3960), 3, + ACTIONS(3979), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4021), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4019), 22, + ACTIONS(3971), 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(3961), 8, sym__newline, anon_sym_SEMI, - anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_in, - anon_sym_with, - anon_sym_PIPE, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_nogil, - [93834] = 21, - ACTIONS(3956), 1, - anon_sym_as, - ACTIONS(3966), 1, + [90969] = 21, + ACTIONS(3975), 1, + anon_sym_EQ, + ACTIONS(3985), 1, anon_sym_not, - ACTIONS(4103), 1, + ACTIONS(4182), 1, anon_sym_DOT, - ACTIONS(4105), 1, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(4113), 1, + ACTIONS(4192), 1, anon_sym_STAR_STAR, - ACTIONS(4115), 1, + ACTIONS(4194), 1, anon_sym_LBRACK, - ACTIONS(4121), 1, + ACTIONS(4200), 1, anon_sym_PIPE, - ACTIONS(4123), 1, + ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4125), 1, + ACTIONS(4204), 1, anon_sym_CARET, - ACTIONS(4127), 1, + ACTIONS(4206), 1, anon_sym_is, - STATE(2959), 1, + STATE(2950), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4107), 2, + ACTIONS(4186), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4109), 2, + ACTIONS(4188), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4119), 2, + ACTIONS(4198), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4129), 2, + ACTIONS(4208), 2, anon_sym_LT, anon_sym_GT, - STATE(1883), 2, + STATE(1868), 2, sym__not_in, sym__is_not, - STATE(2435), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4117), 3, + ACTIONS(4196), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4111), 6, + ACTIONS(4190), 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(3942), 7, - anon_sym_RPAREN, + ACTIONS(3961), 7, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_and, anon_sym_or, - [93918] = 4, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, + [91053] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 6, + ACTIONS(3648), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 32, + ACTIONS(3646), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -184794,6 +186014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, @@ -184817,92 +186038,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93968] = 21, - ACTIONS(3956), 1, - anon_sym_as, - ACTIONS(3966), 1, - anon_sym_not, - ACTIONS(4131), 1, + [91100] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4220), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4218), 33, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4133), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(4141), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, anon_sym_STAR_STAR, - ACTIONS(4143), 1, anon_sym_LBRACK, - ACTIONS(4149), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4151), 1, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(4153), 1, anon_sym_CARET, - ACTIONS(4155), 1, + anon_sym_LT_LT, anon_sym_is, - STATE(2053), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [91147] = 7, + ACTIONS(4224), 1, + anon_sym_as, + ACTIONS(4228), 1, + anon_sym_if, + ACTIONS(4230), 1, + anon_sym_and, + ACTIONS(4232), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4135), 2, + ACTIONS(4226), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4222), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4147), 2, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - ACTIONS(4157), 2, + anon_sym_not, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [91202] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4236), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - STATE(1826), 2, - sym__not_in, - sym__is_not, - STATE(2341), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4145), 3, + ACTIONS(4234), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4139), 6, - anon_sym_in, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(3942), 7, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, + anon_sym_nogil, + [91249] = 6, + ACTIONS(4230), 1, anon_sym_and, + ACTIONS(4232), 1, anon_sym_or, - [94052] = 4, - ACTIONS(851), 1, - anon_sym_COLON_EQ, + ACTIONS(4240), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 6, + ACTIONS(4243), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 32, + ACTIONS(4238), 30, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, @@ -184912,8 +186209,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -184926,19 +186221,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94102] = 3, + [91302] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4161), 5, + ACTIONS(4247), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4159), 34, + ACTIONS(4245), 33, sym__newline, - sym_string_start, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, @@ -184971,333 +186265,649 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94150] = 21, - ACTIONS(3956), 1, + [91349] = 5, + ACTIONS(4230), 1, + anon_sym_and, + ACTIONS(4232), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4251), 5, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(3966), 1, - anon_sym_not, - ACTIONS(4163), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4249), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4165), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(4173), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, anon_sym_STAR_STAR, - ACTIONS(4175), 1, anon_sym_LBRACK, - ACTIONS(4181), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4183), 1, + anon_sym_PLUS, + anon_sym_not, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(4185), 1, anon_sym_CARET, - ACTIONS(4187), 1, + anon_sym_LT_LT, anon_sym_is, - STATE(2942), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [91400] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4167), 2, + ACTIONS(4255), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4169), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4253), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4179), 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - ACTIONS(4189), 2, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [91447] = 5, + ACTIONS(4257), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1972), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4011), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - STATE(1871), 2, - sym__not_in, - sym__is_not, - STATE(2448), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4177), 3, + ACTIONS(4009), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4171), 6, - anon_sym_in, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(3942), 7, + [91498] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4262), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4260), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - [94234] = 21, - ACTIONS(3956), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [91545] = 4, + ACTIONS(4230), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4255), 5, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(3966), 1, - anon_sym_not, - ACTIONS(4163), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4253), 32, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4165), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(4173), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, anon_sym_STAR_STAR, - ACTIONS(4175), 1, anon_sym_LBRACK, - ACTIONS(4181), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4183), 1, + anon_sym_PLUS, + anon_sym_not, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(4185), 1, anon_sym_CARET, - ACTIONS(4187), 1, + anon_sym_LT_LT, anon_sym_is, - STATE(2060), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [91594] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4167), 2, + ACTIONS(3644), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4169), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4189), 2, anon_sym_LT, anon_sym_GT, - STATE(1871), 2, - sym__not_in, - sym__is_not, - STATE(2448), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4177), 3, + ACTIONS(3639), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4171), 6, - anon_sym_in, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(3942), 7, + anon_sym_nogil, + [91641] = 5, + ACTIONS(1727), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1988), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3468), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3457), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_and, - anon_sym_or, - [94318] = 20, - ACTIONS(3946), 1, - anon_sym_LPAREN, - ACTIONS(3954), 1, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(3964), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(3966), 1, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, - ACTIONS(3968), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(3970), 1, anon_sym_CARET, - ACTIONS(3972), 1, + anon_sym_LT_LT, anon_sym_is, - ACTIONS(4191), 1, - anon_sym_DOT, - ACTIONS(4193), 1, - anon_sym_LBRACK, - STATE(2859), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [91692] = 7, + ACTIONS(4224), 1, + anon_sym_as, + ACTIONS(4228), 1, + anon_sym_if, + ACTIONS(4230), 1, + anon_sym_and, + ACTIONS(4232), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3948), 2, + ACTIONS(4266), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(3950), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(3962), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3974), 2, anon_sym_LT, anon_sym_GT, - STATE(1836), 2, - sym__not_in, - sym__is_not, - STATE(2004), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(3960), 3, + ACTIONS(4264), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3952), 6, - anon_sym_in, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(3942), 8, + anon_sym_nogil, + [91747] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4270), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4268), 33, sym__newline, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - [94400] = 21, - ACTIONS(3956), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [91794] = 7, + ACTIONS(4224), 1, anon_sym_as, - ACTIONS(3966), 1, - anon_sym_not, - ACTIONS(4103), 1, + ACTIONS(4228), 1, + anon_sym_if, + ACTIONS(4230), 1, + anon_sym_and, + ACTIONS(4232), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4274), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4272), 29, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4105), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(4113), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, anon_sym_STAR_STAR, - ACTIONS(4115), 1, anon_sym_LBRACK, - ACTIONS(4121), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4123), 1, + anon_sym_PLUS, + anon_sym_not, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(4125), 1, anon_sym_CARET, - ACTIONS(4127), 1, + anon_sym_LT_LT, anon_sym_is, - STATE(2031), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [91849] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4107), 2, + ACTIONS(4278), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4109), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4119), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4129), 2, anon_sym_LT, anon_sym_GT, - STATE(1883), 2, - sym__not_in, - sym__is_not, - STATE(2435), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4117), 3, + ACTIONS(4276), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4111), 6, - anon_sym_in, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(3942), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [94484] = 21, - ACTIONS(3956), 1, - anon_sym_as, - ACTIONS(3966), 1, - anon_sym_not, - ACTIONS(4131), 1, + anon_sym_nogil, + [91896] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4282), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4280), 33, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4133), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(4141), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, anon_sym_STAR_STAR, - ACTIONS(4143), 1, anon_sym_LBRACK, - ACTIONS(4149), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4151), 1, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(4153), 1, anon_sym_CARET, - ACTIONS(4155), 1, + anon_sym_LT_LT, anon_sym_is, - STATE(2958), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [91943] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4135), 2, + ACTIONS(4118), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4137), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4147), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4157), 2, anon_sym_LT, anon_sym_GT, - STATE(1826), 2, - sym__not_in, - sym__is_not, - STATE(2341), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4145), 3, + ACTIONS(4110), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4139), 6, - anon_sym_in, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(3942), 7, + anon_sym_nogil, + [91990] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4286), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4284), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - [94568] = 3, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [92037] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4197), 5, + ACTIONS(4290), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4195), 34, + ACTIONS(4288), 33, sym__newline, - sym_string_start, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, @@ -185330,17 +186940,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94616] = 3, + [92084] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4201), 5, + ACTIONS(3975), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4199), 33, + ACTIONS(3961), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -185374,21 +186984,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94663] = 5, - ACTIONS(4207), 1, - anon_sym_and, - ACTIONS(4209), 1, - anon_sym_or, + [92131] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4205), 5, + ACTIONS(4294), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4203), 31, + ACTIONS(4292), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -185408,6 +187014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -185420,17 +187028,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94714] = 3, + [92178] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4213), 5, + ACTIONS(4298), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4211), 33, + ACTIONS(4296), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -185464,83 +187072,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94761] = 20, - ACTIONS(3966), 1, - anon_sym_not, - ACTIONS(4215), 1, + [92225] = 5, + ACTIONS(1727), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1993), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4007), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4005), 30, anon_sym_DOT, - ACTIONS(4217), 1, anon_sym_LPAREN, - ACTIONS(4225), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(4233), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4235), 1, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(4237), 1, anon_sym_CARET, - ACTIONS(4239), 1, + anon_sym_LT_LT, anon_sym_is, - STATE(2946), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [92276] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4219), 2, + ACTIONS(4302), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4221), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4300), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4231), 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - ACTIONS(4241), 2, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [92323] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3674), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - STATE(1866), 2, - sym__not_in, - sym__is_not, - STATE(2469), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4229), 3, + ACTIONS(3672), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4223), 6, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [92370] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3682), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3680), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(3942), 7, + anon_sym_nogil, + [92417] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3682), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3680), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - [94842] = 5, - ACTIONS(2124), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [92464] = 5, + ACTIONS(4304), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2020), 2, + STATE(1993), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(3449), 5, + ACTIONS(4011), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 30, + ACTIONS(4009), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -185571,19 +187340,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [94893] = 4, - ACTIONS(4207), 1, - anon_sym_and, + [92515] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4213), 5, + ACTIONS(4309), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4211), 32, + ACTIONS(4307), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -185603,6 +187370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -185616,17 +187384,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94942] = 3, + [92562] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4245), 5, + ACTIONS(4313), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4243), 33, + ACTIONS(4311), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -185660,17 +187428,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94989] = 3, + [92609] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4099), 5, + ACTIONS(3655), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4091), 33, + ACTIONS(3650), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -185704,17 +187472,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95036] = 3, + [92656] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 5, + ACTIONS(3666), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4247), 33, + ACTIONS(3661), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -185748,32 +187516,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95083] = 7, - ACTIONS(4207), 1, - anon_sym_and, - ACTIONS(4209), 1, - anon_sym_or, - ACTIONS(4253), 1, + [92703] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3632), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3635), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3629), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(3625), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, anon_sym_as, - ACTIONS(4257), 1, anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [92754] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4255), 5, + ACTIONS(4317), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4251), 29, + ACTIONS(4315), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, anon_sym_COLON, anon_sym_in, anon_sym_with, @@ -185784,6 +187592,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -185796,17 +187606,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95138] = 3, + [92801] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4261), 5, + ACTIONS(4321), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4259), 33, + ACTIONS(4319), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -185840,17 +187650,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95185] = 3, + [92848] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4265), 5, + ACTIONS(3623), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4263), 33, + ACTIONS(3621), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -185884,17 +187694,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95232] = 3, + [92895] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4269), 5, + ACTIONS(4325), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4267), 33, + ACTIONS(4323), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -185928,17 +187738,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95279] = 3, + [92942] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4273), 5, + ACTIONS(4329), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4271), 33, + ACTIONS(4327), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -185972,66 +187782,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95326] = 3, + [92989] = 5, + ACTIONS(2211), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4277), 5, + STATE(2024), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3468), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4275), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(3457), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93040] = 20, + ACTIONS(3985), 1, + anon_sym_not, + ACTIONS(4331), 1, + anon_sym_DOT, + ACTIONS(4333), 1, + anon_sym_LPAREN, + ACTIONS(4341), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_LBRACK, + ACTIONS(4349), 1, + anon_sym_PIPE, + ACTIONS(4351), 1, + anon_sym_AMP, + ACTIONS(4353), 1, + anon_sym_CARET, + ACTIONS(4355), 1, + anon_sym_is, + STATE(2956), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4335), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4337), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4347), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4357), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1876), 2, + sym__not_in, + sym__is_not, + STATE(2465), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4345), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4339), 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_nogil, - [95373] = 5, - STATE(2016), 1, + ACTIONS(3961), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [93121] = 9, + ACTIONS(4027), 1, + anon_sym_not, + ACTIONS(4362), 1, + anon_sym_is, + STATE(2006), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1894), 2, + ACTIONS(4365), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1802), 2, sym__not_in, sym__is_not, - ACTIONS(4015), 5, + ACTIONS(4022), 3, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4013), 30, + ACTIONS(4359), 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(4020), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -186040,7 +187925,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -186048,7 +187932,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -186056,23 +187939,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [95424] = 3, + [93180] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4281), 5, + ACTIONS(4370), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4279), 33, + ACTIONS(4368), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -186106,17 +187983,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95471] = 3, + [93227] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 5, + ACTIONS(3678), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 33, + ACTIONS(3676), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -186150,17 +188027,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95518] = 3, + [93274] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4285), 5, + ACTIONS(3678), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4283), 33, + ACTIONS(3676), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -186194,17 +188071,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95565] = 3, + [93321] = 22, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(3762), 1, + sym_identifier, + ACTIONS(3764), 1, + anon_sym_LPAREN, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(3782), 1, + anon_sym_enum, + ACTIONS(3784), 1, + anon_sym_cppclass, + ACTIONS(3786), 1, + anon_sym_fused, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(3313), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3778), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(3780), 2, + anon_sym_struct, + anon_sym_union, + STATE(2703), 2, + sym_cdef_type_declaration, + sym_cvar_decl, + STATE(2773), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3532), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(634), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(635), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [93406] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3642), 5, + ACTIONS(4374), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3640), 33, + ACTIONS(4372), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -186238,37 +188178,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95612] = 5, - ACTIONS(2188), 1, - sym_string_start, + [93453] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2014), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3449), 5, - anon_sym_as, + ACTIONS(4378), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 30, + ACTIONS(4376), 33, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -186284,17 +188221,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [95663] = 3, + anon_sym_nogil, + [93500] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3587), 5, + ACTIONS(4382), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3582), 33, + ACTIONS(4380), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -186328,17 +188266,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95710] = 3, + [93547] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4289), 5, + ACTIONS(4386), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4287), 33, + ACTIONS(4384), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -186372,48 +188310,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95757] = 9, - ACTIONS(3990), 1, - anon_sym_not, - ACTIONS(4294), 1, - anon_sym_is, - STATE(1987), 1, - aux_sym_comparison_operator_repeat1, + [93594] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4297), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1801), 2, - sym__not_in, - sym__is_not, - ACTIONS(3985), 3, + ACTIONS(4390), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4291), 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(3983), 22, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4388), 33, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_in, + anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -186421,18 +188347,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - sym_type_conversion, - [95816] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [93641] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4302), 5, + ACTIONS(4394), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4300), 33, + ACTIONS(4392), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -186466,79 +188398,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95863] = 20, - ACTIONS(3966), 1, - anon_sym_not, - ACTIONS(4215), 1, - anon_sym_DOT, - ACTIONS(4217), 1, - anon_sym_LPAREN, - ACTIONS(4225), 1, - anon_sym_STAR_STAR, - ACTIONS(4227), 1, - anon_sym_LBRACK, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_AMP, - ACTIONS(4237), 1, - anon_sym_CARET, - ACTIONS(4239), 1, - anon_sym_is, - STATE(2086), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4219), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4231), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4241), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1866), 2, - sym__not_in, - sym__is_not, - STATE(2469), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4229), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4223), 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(3942), 7, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [95944] = 5, + [93688] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1194), 2, + ACTIONS(1201), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1197), 3, + ACTIONS(1204), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1391), 14, + ACTIONS(1402), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -186553,7 +188424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1192), 19, + ACTIONS(1199), 19, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -186573,34 +188444,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95995] = 3, + [93739] = 5, + STATE(2006), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4306), 5, + STATE(1802), 2, + sym__not_in, + sym__is_not, + ACTIONS(4018), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4016), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -186616,37 +188490,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96042] = 3, + [93790] = 9, + ACTIONS(4027), 1, + anon_sym_not, + ACTIONS(4399), 1, + anon_sym_is, + STATE(2019), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 5, + ACTIONS(4402), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1824), 2, + sym__not_in, + sym__is_not, + ACTIONS(4022), 3, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3605), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4396), 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(4020), 22, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -186654,24 +188539,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_nogil, - [96089] = 3, + sym_type_conversion, + [93849] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3657), 5, + ACTIONS(565), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3652), 33, + ACTIONS(563), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -186705,17 +188584,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [96136] = 3, + [93896] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4310), 5, + ACTIONS(3468), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4308), 33, + ACTIONS(3457), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -186749,21 +188628,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [96183] = 3, + [93943] = 5, + STATE(2019), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4314), 5, + STATE(1824), 2, + sym__not_in, + sym__is_not, + ACTIONS(4018), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4312), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4016), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -186771,12 +188652,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -186792,30 +188673,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96230] = 5, - STATE(1987), 1, + sym_type_conversion, + [93994] = 20, + ACTIONS(3985), 1, + anon_sym_not, + ACTIONS(4331), 1, + anon_sym_DOT, + ACTIONS(4333), 1, + anon_sym_LPAREN, + ACTIONS(4341), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_LBRACK, + ACTIONS(4349), 1, + anon_sym_PIPE, + ACTIONS(4351), 1, + anon_sym_AMP, + ACTIONS(4353), 1, + anon_sym_CARET, + ACTIONS(4355), 1, + anon_sym_is, + STATE(2119), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1801), 2, + ACTIONS(4335), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4337), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4347), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4357), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1876), 2, sym__not_in, sym__is_not, - ACTIONS(4015), 5, + STATE(2465), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4345), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4339), 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(3961), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [94075] = 5, + ACTIONS(2211), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1972), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4007), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4013), 30, + ACTIONS(4005), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -186838,18 +188781,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [96281] = 3, + [94126] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3956), 5, + ACTIONS(4407), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3942), 33, + ACTIONS(4405), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -186883,75 +188825,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [96328] = 5, + [94173] = 20, + ACTIONS(3985), 1, + anon_sym_not, + ACTIONS(4150), 1, + anon_sym_DOT, + ACTIONS(4162), 1, + anon_sym_LBRACK, + ACTIONS(4333), 1, + anon_sym_LPAREN, + ACTIONS(4341), 1, + anon_sym_STAR_STAR, + ACTIONS(4349), 1, + anon_sym_PIPE, + ACTIONS(4351), 1, + anon_sym_AMP, + ACTIONS(4353), 1, + anon_sym_CARET, + ACTIONS(4355), 1, + anon_sym_is, + STATE(2956), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3598), 2, + ACTIONS(4335), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3601), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3595), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4337), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(4347), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + ACTIONS(4357), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1876), 2, + sym__not_in, + sym__is_not, + STATE(2465), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4345), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3593), 19, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(3961), 6, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_with, - anon_sym_not, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - anon_sym_is, + ACTIONS(4339), 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_nogil, - [96379] = 3, + [94253] = 5, + ACTIONS(1151), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3622), 5, + STATE(2052), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4007), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3620), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4005), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -186972,30 +188930,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96426] = 3, + [94303] = 5, + ACTIONS(1151), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4318), 5, + STATE(2027), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3468), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4316), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(3457), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -187016,32 +188975,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96473] = 3, + [94353] = 5, + ACTIONS(2281), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 5, + STATE(2065), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4007), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3624), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4005), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -187060,123 +189020,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96520] = 3, + [94403] = 20, + ACTIONS(3985), 1, + anon_sym_not, + ACTIONS(4044), 1, + anon_sym_LPAREN, + ACTIONS(4052), 1, + anon_sym_STAR_STAR, + ACTIONS(4060), 1, + anon_sym_PIPE, + ACTIONS(4062), 1, + anon_sym_AMP, + ACTIONS(4064), 1, + anon_sym_CARET, + ACTIONS(4066), 1, + anon_sym_is, + ACTIONS(4078), 1, + anon_sym_DOT, + ACTIONS(4090), 1, + anon_sym_LBRACK, + STATE(2955), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4322), 5, + ACTIONS(4046), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4048), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4058), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4068), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4320), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + STATE(1824), 2, + sym__not_in, + sym__is_not, + STATE(2153), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4056), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3961), 6, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + ACTIONS(4050), 6, anon_sym_in, - anon_sym_with, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [94483] = 20, + ACTIONS(3985), 1, + anon_sym_not, + ACTIONS(4409), 1, + anon_sym_DOT, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4419), 1, anon_sym_STAR_STAR, + ACTIONS(4421), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(4427), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(4429), 1, anon_sym_AMP, + ACTIONS(4431), 1, anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(4433), 1, anon_sym_is, + STATE(3014), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4413), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4415), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4425), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4435), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1859), 2, + sym__not_in, + sym__is_not, + STATE(2548), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4423), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3961), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(4417), 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_nogil, - [96567] = 3, + [94563] = 15, + ACTIONS(4078), 1, + anon_sym_DOT, + ACTIONS(4080), 1, + anon_sym_LPAREN, + ACTIONS(4088), 1, + anon_sym_STAR_STAR, + ACTIONS(4090), 1, + anon_sym_LBRACK, + ACTIONS(4096), 1, + anon_sym_PIPE, + ACTIONS(4098), 1, + anon_sym_AMP, + ACTIONS(4100), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4326), 5, + ACTIONS(4082), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4084), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4094), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2256), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4072), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4324), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(4092), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4070), 16, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96614] = 3, + [94633] = 8, + ACTIONS(4078), 1, + anon_sym_DOT, + ACTIONS(4080), 1, + anon_sym_LPAREN, + ACTIONS(4088), 1, + anon_sym_STAR_STAR, + ACTIONS(4090), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4330), 5, + STATE(2256), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(4038), 26, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -187192,41 +189243,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96661] = 3, + [94689] = 11, + ACTIONS(4078), 1, + anon_sym_DOT, + ACTIONS(4080), 1, + anon_sym_LPAREN, + ACTIONS(4088), 1, + anon_sym_STAR_STAR, + ACTIONS(4090), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 5, + ACTIONS(4082), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4094), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2256), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3605), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(4092), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 21, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -187236,35 +189294,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96708] = 3, + [94751] = 8, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_LPAREN, + ACTIONS(4052), 1, + anon_sym_STAR_STAR, + ACTIONS(4054), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4334), 5, + STATE(2153), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4332), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(4038), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -187280,43 +189341,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96755] = 5, - ACTIONS(4336), 1, - sym_string_start, + sym_type_conversion, + [94807] = 11, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_LPAREN, + ACTIONS(4052), 1, + anon_sym_STAR_STAR, + ACTIONS(4054), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2007), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3978), 5, + ACTIONS(4046), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4058), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2153), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3976), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4056), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 21, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -187327,42 +189393,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [96806] = 7, - ACTIONS(4207), 1, - anon_sym_and, - ACTIONS(4209), 1, - anon_sym_or, - ACTIONS(4253), 1, - anon_sym_as, - ACTIONS(4257), 1, - anon_sym_if, + [94869] = 8, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_LPAREN, + ACTIONS(4052), 1, + anon_sym_STAR_STAR, + ACTIONS(4054), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4341), 5, + STATE(2153), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4339), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(4038), 26, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -187374,41 +189440,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96861] = 3, + sym_type_conversion, + [94925] = 10, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_LPAREN, + ACTIONS(4052), 1, + anon_sym_STAR_STAR, + ACTIONS(4054), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4345), 5, + ACTIONS(4046), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(2153), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4343), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(4056), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 23, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -187418,207 +189490,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96908] = 3, + sym_type_conversion, + [94985] = 14, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_LPAREN, + ACTIONS(4052), 1, + anon_sym_STAR_STAR, + ACTIONS(4054), 1, + anon_sym_LBRACK, + ACTIONS(4062), 1, + anon_sym_AMP, + ACTIONS(4064), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 5, + ACTIONS(4046), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4048), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4058), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2153), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(4056), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 17, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96955] = 5, - ACTIONS(4347), 1, - sym_string_start, + sym_type_conversion, + [95053] = 13, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_LPAREN, + ACTIONS(4052), 1, + anon_sym_STAR_STAR, + ACTIONS(4054), 1, + anon_sym_LBRACK, + ACTIONS(4064), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2011), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3978), 5, - anon_sym_as, + ACTIONS(4046), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4048), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4058), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2153), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3976), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4056), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 18, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97006] = 3, + sym_type_conversion, + [95119] = 12, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_LPAREN, + ACTIONS(4052), 1, + anon_sym_STAR_STAR, + ACTIONS(4054), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4352), 5, + ACTIONS(4046), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4048), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4058), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2153), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4350), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(4056), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 19, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [97053] = 7, - ACTIONS(4207), 1, - anon_sym_and, - ACTIONS(4209), 1, - anon_sym_or, - ACTIONS(4253), 1, - anon_sym_as, - ACTIONS(4257), 1, - anon_sym_if, + sym_type_conversion, + [95183] = 15, + ACTIONS(4042), 1, + anon_sym_DOT, + ACTIONS(4044), 1, + anon_sym_LPAREN, + ACTIONS(4052), 1, + anon_sym_STAR_STAR, + ACTIONS(4054), 1, + anon_sym_LBRACK, + ACTIONS(4060), 1, + anon_sym_PIPE, + ACTIONS(4062), 1, + anon_sym_AMP, + ACTIONS(4064), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4356), 5, + ACTIONS(4046), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4048), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4058), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2153), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4056), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4072), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4354), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(4070), 16, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [97108] = 5, - ACTIONS(2188), 1, - sym_string_start, + sym_type_conversion, + [95253] = 8, + ACTIONS(4078), 1, + anon_sym_DOT, + ACTIONS(4080), 1, + anon_sym_LPAREN, + ACTIONS(4088), 1, + anon_sym_STAR_STAR, + ACTIONS(4090), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2011), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4001), 5, + STATE(2256), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3999), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4038), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -187626,8 +189734,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -187647,40 +189753,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97159] = 3, + [95309] = 10, + ACTIONS(4078), 1, + anon_sym_DOT, + ACTIONS(4080), 1, + anon_sym_LPAREN, + ACTIONS(4088), 1, + anon_sym_STAR_STAR, + ACTIONS(4090), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 5, + ACTIONS(4082), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(2256), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3624), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(4092), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 23, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -187690,49 +189803,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [97206] = 9, - ACTIONS(3990), 1, + [95369] = 9, + ACTIONS(4027), 1, anon_sym_not, - ACTIONS(4361), 1, + ACTIONS(4440), 1, anon_sym_is, - STATE(2016), 1, + STATE(2045), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4364), 2, + ACTIONS(4443), 2, anon_sym_LT, anon_sym_GT, - STATE(1894), 2, + STATE(1853), 2, sym__not_in, sym__is_not, - ACTIONS(3985), 3, + ACTIONS(4022), 3, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4358), 6, + ACTIONS(4437), 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(3983), 22, + ACTIONS(4020), 21, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_and, anon_sym_or, @@ -187741,34 +189852,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97265] = 6, - ACTIONS(4207), 1, - anon_sym_and, - ACTIONS(4209), 1, - anon_sym_or, - ACTIONS(4369), 1, - anon_sym_as, + [95427] = 5, + ACTIONS(1266), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4372), 5, + STATE(2050), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4007), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4367), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(4005), 29, anon_sym_DOT, - anon_sym_from, 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_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -187776,6 +189884,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -187787,35 +189897,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [97318] = 3, + [95477] = 13, + ACTIONS(4078), 1, + anon_sym_DOT, + ACTIONS(4080), 1, + anon_sym_LPAREN, + ACTIONS(4088), 1, + anon_sym_STAR_STAR, + ACTIONS(4090), 1, + anon_sym_LBRACK, + ACTIONS(4100), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4376), 5, + ACTIONS(4082), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4084), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4094), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2256), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4374), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4092), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 18, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [95543] = 8, + ACTIONS(4078), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(4080), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4088), 1, + anon_sym_STAR_STAR, + ACTIONS(4090), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2256), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4108), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4106), 26, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -187831,81 +189998,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [97365] = 3, + [95599] = 12, + ACTIONS(4078), 1, + anon_sym_DOT, + ACTIONS(4080), 1, + anon_sym_LPAREN, + ACTIONS(4088), 1, + anon_sym_STAR_STAR, + ACTIONS(4090), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3591), 5, + ACTIONS(4082), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4084), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4094), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2256), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3589), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(4092), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 19, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [97412] = 5, - ACTIONS(2124), 1, + [95663] = 5, + ACTIONS(4446), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2007), 2, + STATE(2050), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(4001), 5, + ACTIONS(4011), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3999), 30, + ACTIONS(4009), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -187921,32 +190095,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [97463] = 3, + [95713] = 5, + ACTIONS(2281), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3614), 5, + STATE(2029), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3468), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(3457), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -187965,30 +190140,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [97510] = 3, + [95763] = 5, + ACTIONS(4449), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4380), 5, + STATE(2052), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4011), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4378), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4009), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -188009,105 +190185,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [97557] = 22, - ACTIONS(123), 1, - anon_sym_class, - ACTIONS(3663), 1, - sym_identifier, - ACTIONS(3665), 1, - anon_sym_LPAREN, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(3683), 1, - anon_sym_enum, - ACTIONS(3685), 1, - anon_sym_cppclass, - ACTIONS(3687), 1, - anon_sym_fused, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(3339), 1, - sym_c_type, + [95813] = 6, + ACTIONS(4115), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3679), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(3681), 2, - anon_sym_struct, - anon_sym_union, - STATE(2785), 2, - sym_cdef_type_declaration, - sym_cvar_decl, - STATE(2787), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3560), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, + ACTIONS(4120), 2, anon_sym_complex, - STATE(633), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(637), 3, - sym_struct, - sym_enum, - sym_cppclass, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [97642] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4384), 5, - anon_sym_STAR, - anon_sym_EQ, + anon_sym___stdcall, + ACTIONS(4112), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4118), 4, + anon_sym_as, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4382), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4110), 26, anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -188116,34 +190231,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [97689] = 10, - ACTIONS(4055), 1, + [95865] = 8, + ACTIONS(4078), 1, anon_sym_DOT, - ACTIONS(4057), 1, + ACTIONS(4080), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4088), 1, anon_sym_STAR_STAR, - ACTIONS(4067), 1, + ACTIONS(4090), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4059), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2160), 2, + STATE(2256), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4021), 3, + ACTIONS(4076), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4069), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 23, + ACTIONS(4074), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -188151,6 +190260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, @@ -188158,6 +190268,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -188167,28 +190279,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97749] = 8, - ACTIONS(4023), 1, + [95921] = 8, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4025), 1, + ACTIONS(4044), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4052), 1, anon_sym_STAR_STAR, - ACTIONS(4035), 1, + ACTIONS(4054), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2241), 2, + STATE(2153), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4085), 5, + ACTIONS(4108), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4083), 26, + ACTIONS(4106), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -188215,24 +190327,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [97805] = 5, - ACTIONS(4386), 1, + [95977] = 5, + ACTIONS(1266), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2027), 2, + STATE(2046), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(3978), 5, + ACTIONS(3468), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3976), 29, + ACTIONS(3457), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -188241,7 +190354,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -188260,22 +190372,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97855] = 5, - ACTIONS(1257), 1, - sym_string_start, + [96027] = 5, + STATE(2060), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2035), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3449), 5, + STATE(1877), 2, + sym__not_in, + sym__is_not, + ACTIONS(4018), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 29, + ACTIONS(4016), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -188305,112 +190417,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97905] = 20, - ACTIONS(3966), 1, + [96077] = 20, + ACTIONS(3985), 1, anon_sym_not, - ACTIONS(4025), 1, + ACTIONS(4409), 1, + anon_sym_DOT, + ACTIONS(4411), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4419), 1, anon_sym_STAR_STAR, - ACTIONS(4041), 1, + ACTIONS(4421), 1, + anon_sym_LBRACK, + ACTIONS(4427), 1, anon_sym_PIPE, - ACTIONS(4043), 1, + ACTIONS(4429), 1, anon_sym_AMP, - ACTIONS(4045), 1, + ACTIONS(4431), 1, anon_sym_CARET, - ACTIONS(4047), 1, + ACTIONS(4433), 1, anon_sym_is, - ACTIONS(4055), 1, - anon_sym_DOT, - ACTIONS(4067), 1, - anon_sym_LBRACK, - STATE(2948), 1, + STATE(2270), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4027), 2, + ACTIONS(4413), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4029), 2, + ACTIONS(4415), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4039), 2, + ACTIONS(4425), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4049), 2, + ACTIONS(4435), 2, anon_sym_LT, anon_sym_GT, - STATE(1801), 2, + STATE(1859), 2, sym__not_in, sym__is_not, - STATE(2241), 2, + STATE(2548), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4037), 3, + ACTIONS(4423), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3942), 6, + ACTIONS(3961), 6, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_RBRACE, anon_sym_and, anon_sym_or, - ACTIONS(4031), 6, + ACTIONS(4417), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97985] = 13, - ACTIONS(4023), 1, + [96157] = 8, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4025), 1, + ACTIONS(4044), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4052), 1, anon_sym_STAR_STAR, - ACTIONS(4035), 1, + ACTIONS(4054), 1, anon_sym_LBRACK, - ACTIONS(4045), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4027), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4029), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4039), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2241), 2, + STATE(2153), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4021), 3, + ACTIONS(4076), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4037), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 18, + ACTIONS(4074), 26, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -188418,22 +190525,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [98051] = 5, - STATE(2047), 1, + [96213] = 9, + ACTIONS(4027), 1, + anon_sym_not, + ACTIONS(4455), 1, + anon_sym_is, + STATE(2060), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1883), 2, + ACTIONS(4458), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1877), 2, sym__not_in, sym__is_not, - ACTIONS(4015), 5, + ACTIONS(4022), 3, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4013), 29, + ACTIONS(4452), 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(4020), 21, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -188442,14 +190561,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -188457,34 +190574,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + [96271] = 9, + ACTIONS(4027), 1, + anon_sym_not, + ACTIONS(4464), 1, anon_sym_is, + STATE(2061), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4467), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1868), 2, + sym__not_in, + sym__is_not, + ACTIONS(4022), 3, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + ACTIONS(4461), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98101] = 8, - ACTIONS(4023), 1, + ACTIONS(4020), 21, anon_sym_DOT, - ACTIONS(4025), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_STAR_STAR, - ACTIONS(4035), 1, anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [96329] = 6, + ACTIONS(4115), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2241), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 5, - anon_sym_STAR, + ACTIONS(4120), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4112), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4118), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4019), 26, + ACTIONS(4110), 26, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -188501,7 +190660,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -188511,47 +190669,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [98157] = 11, - ACTIONS(4023), 1, - anon_sym_DOT, - ACTIONS(4025), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_STAR_STAR, - ACTIONS(4035), 1, - anon_sym_LBRACK, + [96381] = 5, + STATE(2061), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4027), 2, + STATE(1868), 2, + sym__not_in, + sym__is_not, + ACTIONS(4018), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4039), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2241), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4037), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 21, + ACTIONS(4016), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -188561,26 +190714,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [98219] = 5, - ACTIONS(4389), 1, - sym_string_start, + [96431] = 5, + STATE(2045), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2034), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3978), 5, + STATE(1853), 2, + sym__not_in, + sym__is_not, + ACTIONS(4018), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3976), 29, + ACTIONS(4016), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -188589,6 +190740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -188607,25 +190759,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98269] = 5, - ACTIONS(1257), 1, + [96481] = 5, + ACTIONS(4470), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2034), 2, + STATE(2065), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(4001), 5, + ACTIONS(4011), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3999), 29, + ACTIONS(4009), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -188634,6 +190785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -188652,131 +190804,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98319] = 8, - ACTIONS(4055), 1, + [96531] = 20, + ACTIONS(3985), 1, + anon_sym_not, + ACTIONS(4122), 1, anon_sym_DOT, - ACTIONS(4057), 1, + ACTIONS(4134), 1, + anon_sym_LBRACK, + ACTIONS(4411), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4419), 1, anon_sym_STAR_STAR, - ACTIONS(4067), 1, - anon_sym_LBRACK, + ACTIONS(4427), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP, + ACTIONS(4431), 1, + anon_sym_CARET, + ACTIONS(4433), 1, + anon_sym_is, + STATE(3014), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2160), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 5, - anon_sym_as, + ACTIONS(4413), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4415), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4425), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4435), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4019), 26, + STATE(1859), 2, + sym__not_in, + sym__is_not, + STATE(2548), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4423), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3961), 6, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, + ACTIONS(4417), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98375] = 5, - ACTIONS(1144), 1, - sym_string_start, + [96611] = 14, + ACTIONS(4078), 1, + anon_sym_DOT, + ACTIONS(4080), 1, + anon_sym_LPAREN, + ACTIONS(4088), 1, + anon_sym_STAR_STAR, + ACTIONS(4090), 1, + anon_sym_LBRACK, + ACTIONS(4098), 1, + anon_sym_AMP, + ACTIONS(4100), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2064), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3449), 5, + ACTIONS(4082), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4084), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4094), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2256), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4092), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 17, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98425] = 8, - ACTIONS(4023), 1, + [96679] = 8, + ACTIONS(4182), 1, anon_sym_DOT, - ACTIONS(4025), 1, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4192), 1, anon_sym_STAR_STAR, - ACTIONS(4035), 1, + ACTIONS(4194), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2241), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4053), 5, + ACTIONS(4040), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4051), 26, + ACTIONS(4038), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -188792,29 +190965,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [98481] = 8, - ACTIONS(4055), 1, - anon_sym_DOT, - ACTIONS(4057), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_STAR_STAR, - ACTIONS(4067), 1, - anon_sym_LBRACK, + [96734] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2160), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 5, + ACTIONS(4212), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4019), 26, + ACTIONS(4210), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -188822,6 +190986,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -188841,86 +191007,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98537] = 12, - ACTIONS(4055), 1, + [96779] = 15, + ACTIONS(4182), 1, anon_sym_DOT, - ACTIONS(4057), 1, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4192), 1, anon_sym_STAR_STAR, - ACTIONS(4067), 1, + ACTIONS(4194), 1, anon_sym_LBRACK, + ACTIONS(4200), 1, + anon_sym_PIPE, + ACTIONS(4202), 1, + anon_sym_AMP, + ACTIONS(4204), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4059), 2, + ACTIONS(4186), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4061), 2, + ACTIONS(4188), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4071), 2, + ACTIONS(4198), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2160), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4021), 3, - anon_sym_as, + ACTIONS(4072), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4069), 3, + ACTIONS(4196), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4019), 19, + ACTIONS(4070), 15, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, - anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98601] = 8, - ACTIONS(4023), 1, - anon_sym_DOT, - ACTIONS(4025), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_STAR_STAR, - ACTIONS(4035), 1, - anon_sym_LBRACK, + [96848] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2241), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 5, + ACTIONS(4180), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4019), 26, + ACTIONS(4178), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -188941,33 +191103,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [98657] = 5, - ACTIONS(2252), 1, - sym_string_start, + [96893] = 8, + ACTIONS(4182), 1, + anon_sym_DOT, + ACTIONS(4184), 1, + anon_sym_LPAREN, + ACTIONS(4192), 1, + anon_sym_STAR_STAR, + ACTIONS(4194), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2027), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4001), 5, - anon_sym_as, + STATE(2290), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4108), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3999), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4106), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -188986,275 +191150,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98707] = 20, - ACTIONS(3966), 1, - anon_sym_not, - ACTIONS(4392), 1, + [96948] = 8, + ACTIONS(4182), 1, anon_sym_DOT, - ACTIONS(4394), 1, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(4402), 1, + ACTIONS(4192), 1, anon_sym_STAR_STAR, - ACTIONS(4404), 1, + ACTIONS(4194), 1, anon_sym_LBRACK, - ACTIONS(4410), 1, - anon_sym_PIPE, - ACTIONS(4412), 1, - anon_sym_AMP, - ACTIONS(4414), 1, - anon_sym_CARET, - ACTIONS(4416), 1, - anon_sym_is, - STATE(3011), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4396), 2, + STATE(2290), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4076), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4398), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4408), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4418), 2, anon_sym_LT, anon_sym_GT, - STATE(1804), 2, - sym__not_in, - sym__is_not, - STATE(2518), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4406), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3942), 6, - anon_sym_RPAREN, + ACTIONS(4074), 25, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(4400), 6, - anon_sym_in, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98787] = 14, - ACTIONS(4055), 1, + [97003] = 11, + ACTIONS(4122), 1, anon_sym_DOT, - ACTIONS(4057), 1, + ACTIONS(4124), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4132), 1, anon_sym_STAR_STAR, - ACTIONS(4067), 1, + ACTIONS(4134), 1, anon_sym_LBRACK, - ACTIONS(4075), 1, - anon_sym_AMP, - ACTIONS(4077), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4059), 2, + ACTIONS(4126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4061), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4071), 2, + ACTIONS(4138), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2160), 2, + STATE(2323), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4021), 3, + ACTIONS(4040), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4069), 3, + ACTIONS(4136), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4019), 17, + ACTIONS(4038), 20, + 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_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98855] = 13, - ACTIONS(4055), 1, - anon_sym_DOT, - ACTIONS(4057), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_STAR_STAR, - ACTIONS(4067), 1, - anon_sym_LBRACK, - ACTIONS(4077), 1, - anon_sym_CARET, + [97064] = 5, + ACTIONS(3463), 1, + anon_sym_COMMA, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4059), 2, + ACTIONS(3468), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4061), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4071), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2160), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4069), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 18, - anon_sym_COMMA, + ACTIONS(3457), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98921] = 20, - ACTIONS(3966), 1, - anon_sym_not, - ACTIONS(4103), 1, + sym_type_conversion, + [97113] = 15, + ACTIONS(4122), 1, anon_sym_DOT, - ACTIONS(4115), 1, - anon_sym_LBRACK, - ACTIONS(4394), 1, + ACTIONS(4124), 1, anon_sym_LPAREN, - ACTIONS(4402), 1, + ACTIONS(4132), 1, anon_sym_STAR_STAR, - ACTIONS(4410), 1, + ACTIONS(4134), 1, + anon_sym_LBRACK, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(4412), 1, + ACTIONS(4142), 1, anon_sym_AMP, - ACTIONS(4414), 1, + ACTIONS(4144), 1, anon_sym_CARET, - ACTIONS(4416), 1, - anon_sym_is, - STATE(3011), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4396), 2, + ACTIONS(4126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4398), 2, + ACTIONS(4128), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4408), 2, + ACTIONS(4138), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4418), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1804), 2, - sym__not_in, - sym__is_not, - STATE(2518), 2, + STATE(2323), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4406), 3, + ACTIONS(4072), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4136), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3942), 6, + ACTIONS(4070), 15, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(4400), 6, - anon_sym_in, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99001] = 9, - ACTIONS(3990), 1, - anon_sym_not, - ACTIONS(4423), 1, - anon_sym_is, - STATE(2047), 1, - aux_sym_comparison_operator_repeat1, + [97182] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4426), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1883), 2, - sym__not_in, - sym__is_not, - ACTIONS(3985), 3, + ACTIONS(4180), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4420), 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(3983), 21, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4178), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -189262,37 +191381,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99059] = 6, - ACTIONS(4096), 1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [97227] = 6, + ACTIONS(4115), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4101), 2, + ACTIONS(4120), 2, anon_sym_complex, anon_sym___stdcall, - ACTIONS(4093), 4, + ACTIONS(4112), 4, anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(4099), 4, - anon_sym_EQ, + ACTIONS(4118), 4, + anon_sym_as, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4091), 26, + ACTIONS(4110), 25, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -189307,44 +191432,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [99111] = 10, - ACTIONS(4023), 1, + [97278] = 11, + ACTIONS(4150), 1, anon_sym_DOT, - ACTIONS(4025), 1, + ACTIONS(4152), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4160), 1, anon_sym_STAR_STAR, - ACTIONS(4035), 1, + ACTIONS(4162), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4027), 2, + ACTIONS(4154), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2241), 2, + ACTIONS(4166), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2403), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4021), 3, - anon_sym_EQ, + ACTIONS(4040), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4037), 3, + ACTIONS(4164), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4019), 23, + ACTIONS(4038), 20, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, @@ -189357,103 +191482,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [99171] = 14, - ACTIONS(4023), 1, - anon_sym_DOT, - ACTIONS(4025), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_STAR_STAR, - ACTIONS(4035), 1, - anon_sym_LBRACK, - ACTIONS(4043), 1, - anon_sym_AMP, - ACTIONS(4045), 1, - anon_sym_CARET, + [97339] = 6, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, + ACTIONS(3635), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4027), 2, + ACTIONS(3625), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(3632), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4029), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4039), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2241), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4037), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 17, + ACTIONS(3629), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [99239] = 11, - ACTIONS(4055), 1, - anon_sym_DOT, - ACTIONS(4057), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_STAR_STAR, - ACTIONS(4067), 1, - anon_sym_LBRACK, + [97390] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4059), 2, + ACTIONS(4212), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4071), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2160), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4069), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 21, + ACTIONS(4210), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -189463,88 +191568,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99301] = 15, - ACTIONS(4055), 1, - anon_sym_DOT, - ACTIONS(4057), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_STAR_STAR, - ACTIONS(4067), 1, - anon_sym_LBRACK, - ACTIONS(4073), 1, - anon_sym_PIPE, - ACTIONS(4075), 1, - anon_sym_AMP, - ACTIONS(4077), 1, - anon_sym_CARET, + sym_type_conversion, + [97435] = 5, + ACTIONS(580), 1, + anon_sym_COLON_EQ, + ACTIONS(2165), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4059), 2, + ACTIONS(565), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4061), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4071), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2160), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4069), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4089), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4087), 16, + ACTIONS(563), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99371] = 5, - STATE(2056), 1, - aux_sym_comparison_operator_repeat1, + [97484] = 8, + ACTIONS(4122), 1, + anon_sym_DOT, + ACTIONS(4124), 1, + anon_sym_LPAREN, + ACTIONS(4132), 1, + anon_sym_STAR_STAR, + ACTIONS(4134), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1826), 2, - sym__not_in, - sym__is_not, - ACTIONS(4015), 5, + STATE(2323), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4013), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4038), 25, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -189563,108 +191660,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99421] = 20, - ACTIONS(3966), 1, - anon_sym_not, - ACTIONS(4392), 1, + [97539] = 10, + ACTIONS(4122), 1, anon_sym_DOT, - ACTIONS(4394), 1, + ACTIONS(4124), 1, anon_sym_LPAREN, - ACTIONS(4402), 1, + ACTIONS(4132), 1, anon_sym_STAR_STAR, - ACTIONS(4404), 1, + ACTIONS(4134), 1, anon_sym_LBRACK, - ACTIONS(4410), 1, - anon_sym_PIPE, - ACTIONS(4412), 1, - anon_sym_AMP, - ACTIONS(4414), 1, - anon_sym_CARET, - ACTIONS(4416), 1, - anon_sym_is, - STATE(2167), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4396), 2, + ACTIONS(4126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4398), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4408), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4418), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1804), 2, - sym__not_in, - sym__is_not, - STATE(2518), 2, + STATE(2323), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4406), 3, + ACTIONS(4040), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4136), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(3942), 6, + ACTIONS(4038), 22, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(4400), 6, - anon_sym_in, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99501] = 9, - ACTIONS(3990), 1, - anon_sym_not, - ACTIONS(4432), 1, - anon_sym_is, - STATE(2055), 1, - aux_sym_comparison_operator_repeat1, + [97598] = 6, + ACTIONS(4115), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4435), 2, + ACTIONS(4120), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4112), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4118), 4, + anon_sym_as, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - STATE(1871), 2, - sym__not_in, - sym__is_not, - ACTIONS(3985), 3, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - ACTIONS(4429), 6, + ACTIONS(4110), 25, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(3983), 21, + [97649] = 6, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, + ACTIONS(4473), 1, + anon_sym_LBRACK, + STATE(4098), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3468), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3457), 27, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -189672,88 +191793,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99559] = 9, - ACTIONS(3990), 1, - anon_sym_not, - ACTIONS(4441), 1, anon_sym_is, - STATE(2056), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [97700] = 14, + ACTIONS(4122), 1, + anon_sym_DOT, + ACTIONS(4124), 1, + anon_sym_LPAREN, + ACTIONS(4132), 1, + anon_sym_STAR_STAR, + ACTIONS(4134), 1, + anon_sym_LBRACK, + ACTIONS(4142), 1, + anon_sym_AMP, + ACTIONS(4144), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4444), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1826), 2, - sym__not_in, - sym__is_not, - ACTIONS(3985), 3, - anon_sym_as, + ACTIONS(4126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4438), 6, + ACTIONS(4128), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4138), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2323), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4136), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 16, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(3983), 21, + [97767] = 13, + ACTIONS(4122), 1, anon_sym_DOT, + ACTIONS(4124), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4132), 1, + anon_sym_STAR_STAR, + ACTIONS(4134), 1, + anon_sym_LBRACK, + ACTIONS(4144), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4126), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4128), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4138), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2323), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4136), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 17, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_in, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [99617] = 8, - ACTIONS(4055), 1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [97832] = 8, + ACTIONS(4122), 1, anon_sym_DOT, - ACTIONS(4057), 1, + ACTIONS(4124), 1, anon_sym_LPAREN, - ACTIONS(4065), 1, + ACTIONS(4132), 1, anon_sym_STAR_STAR, - ACTIONS(4067), 1, + ACTIONS(4134), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2160), 2, + STATE(2323), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4053), 5, + ACTIONS(4108), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4051), 26, + ACTIONS(4106), 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_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -189769,33 +191951,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99673] = 5, - ACTIONS(4447), 1, - sym_string_start, + [97887] = 8, + ACTIONS(4150), 1, + anon_sym_DOT, + ACTIONS(4152), 1, + anon_sym_LPAREN, + ACTIONS(4160), 1, + anon_sym_STAR_STAR, + ACTIONS(4162), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2058), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3978), 5, + STATE(2403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3976), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4038), 25, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -189814,44 +191998,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99723] = 6, - ACTIONS(4096), 1, - anon_sym_STAR, + [97942] = 20, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(3762), 1, + sym_identifier, + ACTIONS(3764), 1, + anon_sym_LPAREN, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(3782), 1, + anon_sym_enum, + ACTIONS(3786), 1, + anon_sym_fused, + ACTIONS(3874), 1, + anon_sym_extern, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(3313), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4101), 2, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3778), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(3780), 2, + anon_sym_struct, + anon_sym_union, + STATE(2773), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3532), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4093), 4, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(540), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [98021] = 8, + ACTIONS(4150), 1, + anon_sym_DOT, + ACTIONS(4152), 1, anon_sym_LPAREN, + ACTIONS(4160), 1, anon_sym_STAR_STAR, + ACTIONS(4162), 1, anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4099), 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 5, anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4091), 26, - anon_sym_DOT, + ACTIONS(4038), 25, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -189860,36 +192104,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99775] = 5, - STATE(2055), 1, - aux_sym_comparison_operator_repeat1, + [98076] = 4, + ACTIONS(580), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1871), 2, - sym__not_in, - sym__is_not, - ACTIONS(4015), 5, + ACTIONS(565), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4013), 29, + ACTIONS(563), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -189905,22 +192147,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99825] = 5, - ACTIONS(2252), 1, - sym_string_start, + [98123] = 4, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2042), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3449), 5, + ACTIONS(3468), 6, anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 29, + ACTIONS(3457), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -189931,10 +192171,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -189950,94 +192190,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99875] = 15, - ACTIONS(4023), 1, + [98170] = 12, + ACTIONS(4122), 1, anon_sym_DOT, - ACTIONS(4025), 1, + ACTIONS(4124), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4132), 1, anon_sym_STAR_STAR, - ACTIONS(4035), 1, + ACTIONS(4134), 1, anon_sym_LBRACK, - ACTIONS(4041), 1, - anon_sym_PIPE, - ACTIONS(4043), 1, - anon_sym_AMP, - ACTIONS(4045), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4027), 2, + ACTIONS(4126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4029), 2, + ACTIONS(4128), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4039), 2, + ACTIONS(4138), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2241), 2, + STATE(2323), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4037), 3, + ACTIONS(4040), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4136), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4089), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4087), 16, + ACTIONS(4038), 18, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [99945] = 8, - ACTIONS(4055), 1, - anon_sym_DOT, - ACTIONS(4057), 1, - anon_sym_LPAREN, - ACTIONS(4065), 1, - anon_sym_STAR_STAR, - ACTIONS(4067), 1, - anon_sym_LBRACK, + [98233] = 5, + ACTIONS(2253), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2160), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4085), 5, - anon_sym_as, + STATE(2109), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3468), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4083), 26, + ACTIONS(3457), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -190053,36 +192285,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100001] = 5, - ACTIONS(1144), 1, - sym_string_start, + [98282] = 5, + ACTIONS(570), 1, + anon_sym_COMMA, + ACTIONS(580), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2058), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4001), 5, + ACTIONS(565), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3999), 29, + ACTIONS(563), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -190098,111 +192328,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100051] = 20, - ACTIONS(3966), 1, - anon_sym_not, - ACTIONS(4131), 1, - anon_sym_DOT, - ACTIONS(4143), 1, - anon_sym_LBRACK, - ACTIONS(4217), 1, - anon_sym_LPAREN, - ACTIONS(4225), 1, - anon_sym_STAR_STAR, - ACTIONS(4233), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_AMP, - ACTIONS(4237), 1, - anon_sym_CARET, - ACTIONS(4239), 1, - anon_sym_is, - STATE(2946), 1, - aux_sym_comparison_operator_repeat1, + sym_type_conversion, + [98331] = 4, + ACTIONS(580), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4219), 2, + ACTIONS(565), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4231), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4241), 2, anon_sym_LT, anon_sym_GT, - STATE(1866), 2, - sym__not_in, - sym__is_not, - STATE(2469), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4229), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3942), 6, + ACTIONS(563), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - ACTIONS(4223), 6, anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [100131] = 12, - ACTIONS(4023), 1, - anon_sym_DOT, - ACTIONS(4025), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, anon_sym_STAR_STAR, - ACTIONS(4035), 1, anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4027), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4029), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4039), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2241), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4037), 3, anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 19, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -190210,38 +192372,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [100195] = 8, - ACTIONS(4103), 1, - anon_sym_DOT, - ACTIONS(4105), 1, - anon_sym_LPAREN, - ACTIONS(4113), 1, - anon_sym_STAR_STAR, - ACTIONS(4115), 1, - anon_sym_LBRACK, + [98378] = 4, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2435), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4085), 5, - anon_sym_as, + ACTIONS(3468), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4083), 25, - anon_sym_RPAREN, + ACTIONS(3457), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -190257,93 +192414,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100250] = 20, - ACTIONS(3663), 1, - sym_identifier, - ACTIONS(3665), 1, + sym_type_conversion, + [98425] = 8, + ACTIONS(4122), 1, + anon_sym_DOT, + ACTIONS(4124), 1, anon_sym_LPAREN, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(3861), 1, - anon_sym_class, - ACTIONS(3863), 1, - anon_sym_extern, - ACTIONS(3869), 1, - anon_sym_enum, - ACTIONS(3873), 1, - anon_sym_fused, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(3296), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3679), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(3867), 2, - anon_sym_struct, - anon_sym_union, - STATE(2789), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3560), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - STATE(2894), 6, - sym_class_definition, - sym_extern_block, - sym_cvar_decl, - sym_struct, - sym_enum, - sym_fused, - [100329] = 4, - ACTIONS(851), 1, - anon_sym_COLON_EQ, + ACTIONS(4132), 1, + anon_sym_STAR_STAR, + ACTIONS(4134), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 6, + STATE(2323), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4076), 5, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4074), 25, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -190359,76 +192462,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100376] = 4, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, + [98480] = 14, + ACTIONS(4150), 1, + anon_sym_DOT, + ACTIONS(4152), 1, + anon_sym_LPAREN, + ACTIONS(4160), 1, + anon_sym_STAR_STAR, + ACTIONS(4162), 1, + anon_sym_LBRACK, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4172), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 6, - anon_sym_as, + ACTIONS(4154), 2, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, + ACTIONS(4156), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4166), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4164), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 16, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100423] = 6, - ACTIONS(4096), 1, + [98547] = 6, + ACTIONS(4115), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4101), 2, + ACTIONS(4120), 2, anon_sym_complex, anon_sym___stdcall, - ACTIONS(4093), 4, + ACTIONS(4112), 4, anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(4099), 4, - anon_sym_as, + ACTIONS(4118), 4, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4091), 25, + ACTIONS(4110), 25, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_AT, anon_sym_DASH, @@ -190447,36 +192560,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100474] = 6, - ACTIONS(851), 1, - anon_sym_COLON_EQ, - ACTIONS(1197), 1, - anon_sym_COLON, + [98598] = 13, + ACTIONS(4150), 1, + anon_sym_DOT, + ACTIONS(4152), 1, + anon_sym_LPAREN, + ACTIONS(4160), 1, + anon_sym_STAR_STAR, + ACTIONS(4162), 1, + anon_sym_LBRACK, + ACTIONS(4172), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1192), 2, + ACTIONS(4154), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4156), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4166), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4164), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 17, + anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(1194), 5, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [98663] = 5, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, + ACTIONS(4036), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3468), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1391), 27, + ACTIONS(3457), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -190492,38 +192656,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100525] = 6, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, - ACTIONS(3601), 1, - anon_sym_COLON, + [98712] = 9, + ACTIONS(4027), 1, + anon_sym_not, + ACTIONS(4478), 1, + anon_sym_is, + STATE(2105), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3593), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(3598), 5, - anon_sym_as, + ACTIONS(4022), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4481), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3595), 27, + STATE(1876), 2, + sym__not_in, + sym__is_not, + ACTIONS(4475), 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(4020), 21, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, + anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -190531,33 +192704,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [100576] = 6, - ACTIONS(4096), 1, - anon_sym_STAR, + [98769] = 20, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(3762), 1, + sym_identifier, + ACTIONS(3764), 1, + anon_sym_LPAREN, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(3800), 1, + anon_sym_extern, + ACTIONS(3808), 1, + anon_sym_enum, + ACTIONS(3812), 1, + anon_sym_fused, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(3339), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4101), 2, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3778), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(3806), 2, + anon_sym_struct, + anon_sym_union, + STATE(2757), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3532), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4093), 4, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(1204), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [98848] = 11, + ACTIONS(4182), 1, + anon_sym_DOT, + ACTIONS(4184), 1, anon_sym_LPAREN, + ACTIONS(4192), 1, anon_sym_STAR_STAR, + ACTIONS(4194), 1, anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4099), 4, - anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4186), 2, + anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4198), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2290), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4091), 25, - anon_sym_DOT, + ACTIONS(4196), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 20, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -190565,15 +192800,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_else, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -190582,51 +192813,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100627] = 15, - ACTIONS(4163), 1, + [98909] = 15, + ACTIONS(4150), 1, anon_sym_DOT, - ACTIONS(4165), 1, + ACTIONS(4152), 1, anon_sym_LPAREN, - ACTIONS(4173), 1, + ACTIONS(4160), 1, anon_sym_STAR_STAR, - ACTIONS(4175), 1, + ACTIONS(4162), 1, anon_sym_LBRACK, - ACTIONS(4181), 1, + ACTIONS(4168), 1, anon_sym_PIPE, - ACTIONS(4183), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4185), 1, + ACTIONS(4172), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4167), 2, + ACTIONS(4154), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4169), 2, + ACTIONS(4156), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4179), 2, + ACTIONS(4166), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2448), 2, + STATE(2403), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4089), 3, - anon_sym_EQ, + ACTIONS(4072), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4177), 3, + ACTIONS(4164), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4087), 15, + ACTIONS(4070), 15, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -190636,33 +192867,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100696] = 6, - ACTIONS(4096), 1, - anon_sym_STAR, + [98978] = 5, + ACTIONS(2253), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4101), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4093), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4099), 4, - anon_sym_as, + STATE(2113), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4007), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4091), 25, + ACTIONS(4005), 29, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -190673,6 +192902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -190681,94 +192911,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100747] = 8, - ACTIONS(4103), 1, + [99027] = 12, + ACTIONS(4150), 1, anon_sym_DOT, - ACTIONS(4105), 1, + ACTIONS(4152), 1, anon_sym_LPAREN, - ACTIONS(4113), 1, + ACTIONS(4160), 1, anon_sym_STAR_STAR, - ACTIONS(4115), 1, + ACTIONS(4162), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2435), 2, + ACTIONS(4154), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4156), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4166), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2403), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4021), 5, + ACTIONS(4040), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4019), 25, - anon_sym_RPAREN, + ACTIONS(4164), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 18, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100802] = 11, - ACTIONS(4103), 1, + [99090] = 8, + ACTIONS(4182), 1, anon_sym_DOT, - ACTIONS(4105), 1, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(4113), 1, + ACTIONS(4192), 1, anon_sym_STAR_STAR, - ACTIONS(4115), 1, + ACTIONS(4194), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4107), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4119), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2435), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4021), 3, - anon_sym_as, + ACTIONS(4040), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4117), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 20, - anon_sym_RPAREN, + ACTIONS(4038), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -190778,89 +193009,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100863] = 15, - ACTIONS(4103), 1, + [99145] = 8, + ACTIONS(4150), 1, anon_sym_DOT, - ACTIONS(4105), 1, + ACTIONS(4152), 1, anon_sym_LPAREN, - ACTIONS(4113), 1, + ACTIONS(4160), 1, anon_sym_STAR_STAR, - ACTIONS(4115), 1, + ACTIONS(4162), 1, anon_sym_LBRACK, - ACTIONS(4121), 1, - anon_sym_PIPE, - ACTIONS(4123), 1, - anon_sym_AMP, - ACTIONS(4125), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4107), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4109), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4119), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2435), 2, + STATE(2403), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4089), 3, + ACTIONS(4076), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4117), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4087), 15, - anon_sym_RPAREN, + ACTIONS(4074), 25, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100932] = 8, - ACTIONS(4103), 1, - anon_sym_DOT, - ACTIONS(4105), 1, - anon_sym_LPAREN, - ACTIONS(4113), 1, - anon_sym_STAR_STAR, - ACTIONS(4115), 1, - anon_sym_LBRACK, + [99200] = 5, + ACTIONS(4484), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2435), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 5, - anon_sym_as, + STATE(2113), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4011), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4019), 25, - anon_sym_RPAREN, + ACTIONS(4009), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -190879,46 +193100,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100987] = 10, - ACTIONS(4103), 1, + [99249] = 10, + ACTIONS(4182), 1, anon_sym_DOT, - ACTIONS(4105), 1, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(4113), 1, + ACTIONS(4192), 1, anon_sym_STAR_STAR, - ACTIONS(4115), 1, + ACTIONS(4194), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4107), 2, + ACTIONS(4186), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2435), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4021), 3, - anon_sym_as, + ACTIONS(4040), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4117), 3, + ACTIONS(4196), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4019), 22, - anon_sym_RPAREN, + ACTIONS(4038), 22, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [99308] = 6, + ACTIONS(580), 1, + anon_sym_COLON_EQ, + ACTIONS(1204), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1199), 2, anon_sym_async, anon_sym_for, + ACTIONS(1201), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1402), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -190928,48 +193194,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101046] = 14, - ACTIONS(4103), 1, + [99359] = 14, + ACTIONS(4182), 1, anon_sym_DOT, - ACTIONS(4105), 1, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(4113), 1, + ACTIONS(4192), 1, anon_sym_STAR_STAR, - ACTIONS(4115), 1, + ACTIONS(4194), 1, anon_sym_LBRACK, - ACTIONS(4123), 1, + ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4125), 1, + ACTIONS(4204), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4107), 2, + ACTIONS(4186), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4109), 2, + ACTIONS(4188), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4119), 2, + ACTIONS(4198), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2435), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4021), 3, - anon_sym_as, + ACTIONS(4040), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4117), 3, + ACTIONS(4196), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4019), 16, - anon_sym_RPAREN, + ACTIONS(4038), 16, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_not, @@ -190981,46 +193247,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101113] = 13, - ACTIONS(4103), 1, + [99426] = 13, + ACTIONS(4182), 1, anon_sym_DOT, - ACTIONS(4105), 1, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(4113), 1, + ACTIONS(4192), 1, anon_sym_STAR_STAR, - ACTIONS(4115), 1, + ACTIONS(4194), 1, anon_sym_LBRACK, - ACTIONS(4125), 1, + ACTIONS(4204), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4107), 2, + ACTIONS(4186), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4109), 2, + ACTIONS(4188), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4119), 2, + ACTIONS(4198), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2435), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4021), 3, - anon_sym_as, + ACTIONS(4040), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4117), 3, + ACTIONS(4196), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4019), 17, - anon_sym_RPAREN, + ACTIONS(4038), 17, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_not, @@ -191033,44 +193299,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101178] = 12, - ACTIONS(4103), 1, + [99491] = 12, + ACTIONS(4182), 1, anon_sym_DOT, - ACTIONS(4105), 1, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(4113), 1, + ACTIONS(4192), 1, anon_sym_STAR_STAR, - ACTIONS(4115), 1, + ACTIONS(4194), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4107), 2, + ACTIONS(4186), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4109), 2, + ACTIONS(4188), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4119), 2, + ACTIONS(4198), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2435), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4021), 3, - anon_sym_as, + ACTIONS(4040), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4117), 3, + ACTIONS(4196), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4019), 18, - anon_sym_RPAREN, + ACTIONS(4038), 18, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_not, @@ -191084,33 +193350,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101241] = 9, - ACTIONS(3990), 1, - anon_sym_not, - ACTIONS(4453), 1, - anon_sym_is, - STATE(2085), 1, + [99554] = 5, + STATE(2105), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3985), 2, + STATE(1876), 2, + sym__not_in, + sym__is_not, + ACTIONS(4018), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4456), 2, anon_sym_LT, anon_sym_GT, - STATE(1866), 2, - sym__not_in, - sym__is_not, - ACTIONS(4450), 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(3983), 21, + ACTIONS(4016), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -191118,6 +193372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_RBRACK, @@ -191125,6 +193380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -191132,32 +193388,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [101298] = 5, - STATE(2085), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [99603] = 8, + ACTIONS(4122), 1, + anon_sym_DOT, + ACTIONS(4124), 1, + anon_sym_LPAREN, + ACTIONS(4132), 1, + anon_sym_STAR_STAR, + ACTIONS(4134), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1866), 2, - sym__not_in, - sym__is_not, - ACTIONS(4015), 4, + STATE(2323), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4013), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4038), 25, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -191176,32 +193441,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101347] = 3, + [99658] = 8, + ACTIONS(4150), 1, + anon_sym_DOT, + ACTIONS(4152), 1, + anon_sym_LPAREN, + ACTIONS(4160), 1, + anon_sym_STAR_STAR, + ACTIONS(4162), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4197), 5, + STATE(2403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4108), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4195), 31, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4106), 25, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -191217,101 +193488,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [101392] = 20, - ACTIONS(123), 1, - anon_sym_class, - ACTIONS(3663), 1, + [99713] = 20, + ACTIONS(3762), 1, sym_identifier, - ACTIONS(3665), 1, + ACTIONS(3764), 1, anon_sym_LPAREN, - ACTIONS(3677), 1, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(3683), 1, + ACTIONS(3880), 1, + anon_sym_class, + ACTIONS(3882), 1, + anon_sym_extern, + ACTIONS(3888), 1, anon_sym_enum, - ACTIONS(3687), 1, + ACTIONS(3892), 1, anon_sym_fused, - ACTIONS(3817), 1, - anon_sym_extern, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(3339), 1, + STATE(3310), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(3679), 2, + ACTIONS(3778), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3681), 2, + ACTIONS(3886), 2, anon_sym_struct, anon_sym_union, - STATE(2787), 2, + STATE(2781), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3560), 2, + STATE(3532), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(539), 6, + STATE(2906), 6, sym_class_definition, sym_extern_block, sym_cvar_decl, sym_struct, sym_enum, sym_fused, - [101471] = 5, - ACTIONS(851), 1, - anon_sym_COLON_EQ, - ACTIONS(2196), 1, - anon_sym_EQ, + [99792] = 10, + ACTIONS(4150), 1, + anon_sym_DOT, + ACTIONS(4152), 1, + anon_sym_LPAREN, + ACTIONS(4160), 1, + anon_sym_STAR_STAR, + ACTIONS(4162), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 5, - anon_sym_as, + ACTIONS(4154), 2, anon_sym_STAR, anon_sym_SLASH, + STATE(2403), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4164), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 22, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_RBRACK, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -191321,39 +193596,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101520] = 5, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, - ACTIONS(4017), 1, - anon_sym_EQ, + [99851] = 5, + ACTIONS(4487), 1, + anon_sym_and, + ACTIONS(4489), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 5, - anon_sym_as, + ACTIONS(4251), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 29, + ACTIONS(4249), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -191365,35 +193638,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101569] = 8, - ACTIONS(4163), 1, - anon_sym_DOT, - ACTIONS(4165), 1, - anon_sym_LPAREN, - ACTIONS(4173), 1, - anon_sym_STAR_STAR, - ACTIONS(4175), 1, + sym_type_conversion, + [99899] = 6, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, + ACTIONS(4491), 1, anon_sym_LBRACK, + STATE(4286), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2448), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4085), 5, + ACTIONS(3468), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4083), 25, + ACTIONS(3457), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -191412,25 +193683,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101624] = 5, - ACTIONS(841), 1, - anon_sym_COMMA, - ACTIONS(851), 1, + [99949] = 5, + ACTIONS(580), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 6, + ACTIONS(1199), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1201), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 28, + ACTIONS(1402), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_in, @@ -191439,7 +193711,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -191455,26 +193726,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [101673] = 3, + [99997] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4161), 5, + ACTIONS(3655), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4159), 31, - sym_string_start, + ACTIONS(3650), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -191497,39 +193767,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [101718] = 8, - ACTIONS(4131), 1, - anon_sym_DOT, - ACTIONS(4133), 1, - anon_sym_LPAREN, - ACTIONS(4141), 1, - anon_sym_STAR_STAR, - ACTIONS(4143), 1, - anon_sym_LBRACK, + [100041] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2341), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4053), 5, - anon_sym_as, + ACTIONS(4394), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4051), 25, + ACTIONS(4392), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -191545,38 +193807,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101773] = 8, - ACTIONS(4131), 1, - anon_sym_DOT, - ACTIONS(4133), 1, - anon_sym_LPAREN, - ACTIONS(4141), 1, - anon_sym_STAR_STAR, - ACTIONS(4143), 1, - anon_sym_LBRACK, + sym_type_conversion, + [100085] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2341), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4085), 5, + ACTIONS(4394), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4083), 25, + ACTIONS(4392), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -191592,38 +193849,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101828] = 8, - ACTIONS(4131), 1, - anon_sym_DOT, - ACTIONS(4133), 1, - anon_sym_LPAREN, - ACTIONS(4141), 1, - anon_sym_STAR_STAR, - ACTIONS(4143), 1, - anon_sym_LBRACK, + [100129] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2341), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 5, + ACTIONS(3666), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4019), 25, + ACTIONS(3661), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -191639,47 +193890,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101883] = 11, - ACTIONS(4131), 1, - anon_sym_DOT, - ACTIONS(4133), 1, - anon_sym_LPAREN, - ACTIONS(4141), 1, - anon_sym_STAR_STAR, - ACTIONS(4143), 1, - anon_sym_LBRACK, + [100173] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4135), 2, + ACTIONS(4407), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4147), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2341), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4145), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 20, + ACTIONS(4405), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -191689,38 +193930,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101944] = 8, - ACTIONS(4131), 1, - anon_sym_DOT, - ACTIONS(4133), 1, - anon_sym_LPAREN, - ACTIONS(4141), 1, - anon_sym_STAR_STAR, - ACTIONS(4143), 1, - anon_sym_LBRACK, + sym_type_conversion, + [100217] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2341), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 5, + ACTIONS(3648), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4019), 25, + ACTIONS(3646), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -191736,46 +193972,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101999] = 10, - ACTIONS(4131), 1, - anon_sym_DOT, - ACTIONS(4133), 1, - anon_sym_LPAREN, - ACTIONS(4141), 1, - anon_sym_STAR_STAR, - ACTIONS(4143), 1, - anon_sym_LBRACK, + [100261] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4135), 2, + ACTIONS(4407), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - STATE(2341), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4145), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 22, + ACTIONS(4405), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -191785,38 +194013,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102058] = 8, - ACTIONS(4163), 1, - anon_sym_DOT, - ACTIONS(4165), 1, - anon_sym_LPAREN, - ACTIONS(4173), 1, - anon_sym_STAR_STAR, - ACTIONS(4175), 1, - anon_sym_LBRACK, + [100305] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2448), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 5, + ACTIONS(4321), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4019), 25, + ACTIONS(4319), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -191832,47 +194054,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102113] = 11, - ACTIONS(4163), 1, - anon_sym_DOT, - ACTIONS(4165), 1, - anon_sym_LPAREN, - ACTIONS(4173), 1, - anon_sym_STAR_STAR, - ACTIONS(4175), 1, - anon_sym_LBRACK, + [100349] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4167), 2, + ACTIONS(4321), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4179), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2448), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4177), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 20, + ACTIONS(4319), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -191882,92 +194094,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102174] = 15, - ACTIONS(4131), 1, + sym_type_conversion, + [100393] = 7, + ACTIONS(4487), 1, + anon_sym_and, + ACTIONS(4489), 1, + anon_sym_or, + ACTIONS(4493), 1, + anon_sym_as, + ACTIONS(4495), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4274), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4272), 26, anon_sym_DOT, - ACTIONS(4133), 1, anon_sym_LPAREN, - ACTIONS(4141), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(4143), 1, anon_sym_LBRACK, - ACTIONS(4149), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4151), 1, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(4153), 1, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [100445] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4135), 2, + ACTIONS(4282), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4137), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4147), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2341), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4089), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4145), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4087), 15, + ACTIONS(4280), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102243] = 8, - ACTIONS(4163), 1, - anon_sym_DOT, - ACTIONS(4165), 1, - anon_sym_LPAREN, - ACTIONS(4173), 1, - anon_sym_STAR_STAR, - ACTIONS(4175), 1, - anon_sym_LBRACK, + [100489] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2448), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 5, + ACTIONS(4329), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4019), 25, + ACTIONS(4327), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -191983,46 +194221,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102298] = 10, - ACTIONS(4163), 1, - anon_sym_DOT, - ACTIONS(4165), 1, - anon_sym_LPAREN, - ACTIONS(4173), 1, - anon_sym_STAR_STAR, - ACTIONS(4175), 1, - anon_sym_LBRACK, + sym_type_conversion, + [100533] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4167), 2, + ACTIONS(4118), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - STATE(2448), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4177), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 22, + ACTIONS(4110), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -192032,282 +194263,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102357] = 14, - ACTIONS(4163), 1, - anon_sym_DOT, - ACTIONS(4165), 1, - anon_sym_LPAREN, - ACTIONS(4173), 1, - anon_sym_STAR_STAR, - ACTIONS(4175), 1, - anon_sym_LBRACK, - ACTIONS(4183), 1, - anon_sym_AMP, - ACTIONS(4185), 1, - anon_sym_CARET, + [100577] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4167), 2, + ACTIONS(4370), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4169), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4179), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2448), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4177), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 16, + ACTIONS(4368), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102424] = 13, - ACTIONS(4163), 1, - anon_sym_DOT, - ACTIONS(4165), 1, - anon_sym_LPAREN, - ACTIONS(4173), 1, - anon_sym_STAR_STAR, - ACTIONS(4175), 1, - anon_sym_LBRACK, - ACTIONS(4185), 1, - anon_sym_CARET, + sym_type_conversion, + [100621] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4167), 2, + ACTIONS(3674), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4169), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4179), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2448), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4177), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 17, + ACTIONS(3672), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102489] = 12, - ACTIONS(4163), 1, - anon_sym_DOT, - ACTIONS(4165), 1, - anon_sym_LPAREN, - ACTIONS(4173), 1, - anon_sym_STAR_STAR, - ACTIONS(4175), 1, - anon_sym_LBRACK, + [100665] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4167), 2, + ACTIONS(4329), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4169), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4179), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2448), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4177), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 18, + ACTIONS(4327), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102552] = 14, - ACTIONS(4131), 1, - anon_sym_DOT, - ACTIONS(4133), 1, - anon_sym_LPAREN, - ACTIONS(4141), 1, - anon_sym_STAR_STAR, - ACTIONS(4143), 1, - anon_sym_LBRACK, - ACTIONS(4151), 1, - anon_sym_AMP, - ACTIONS(4153), 1, - anon_sym_CARET, + [100709] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4135), 2, + ACTIONS(3682), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4137), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4147), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2341), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4145), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 16, + ACTIONS(3680), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102619] = 13, - ACTIONS(4131), 1, - anon_sym_DOT, - ACTIONS(4133), 1, - anon_sym_LPAREN, - ACTIONS(4141), 1, - anon_sym_STAR_STAR, - ACTIONS(4143), 1, - anon_sym_LBRACK, - ACTIONS(4153), 1, - anon_sym_CARET, + [100753] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4135), 2, + ACTIONS(3682), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4137), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4147), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2341), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4145), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 17, + ACTIONS(3680), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102684] = 5, - ACTIONS(2226), 1, - sym_string_start, + [100797] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2116), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3449), 4, + ACTIONS(4309), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 29, + ACTIONS(4307), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -192318,10 +194489,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -192337,85 +194508,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102733] = 20, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(3663), 1, - sym_identifier, - ACTIONS(3665), 1, - anon_sym_LPAREN, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(3839), 1, - anon_sym_extern, - ACTIONS(3843), 1, - anon_sym_enum, - ACTIONS(3847), 1, - anon_sym_fused, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(3320), 1, - sym_c_type, + sym_type_conversion, + [100841] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3679), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(3841), 2, - anon_sym_struct, - anon_sym_union, - STATE(2709), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3560), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - STATE(1059), 6, - sym_class_definition, - sym_extern_block, - sym_cvar_decl, - sym_struct, - sym_enum, - sym_fused, - [102812] = 4, - ACTIONS(851), 1, - anon_sym_COLON_EQ, + ACTIONS(4370), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4368), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [100885] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 6, + ACTIONS(4313), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 29, + ACTIONS(4311), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -192439,26 +194591,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [102859] = 4, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, + [100929] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 6, + ACTIONS(3678), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 29, + ACTIONS(3676), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -192481,78 +194632,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [102906] = 12, - ACTIONS(4131), 1, + [100973] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3678), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3676), 30, anon_sym_DOT, - ACTIONS(4133), 1, anon_sym_LPAREN, - ACTIONS(4141), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(4143), 1, anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [101017] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4135), 2, + ACTIONS(4309), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4307), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4147), 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, - STATE(2341), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 3, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [101061] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1201), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1204), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4145), 3, + ACTIONS(1402), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4019), 18, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1199), 16, 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_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [101109] = 5, + ACTIONS(1312), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2180), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3468), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3457), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102969] = 3, + [101157] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4161), 5, - anon_sym_as, + ACTIONS(4325), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4159), 31, - sym_string_start, + ACTIONS(4323), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -192575,35 +194840,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103014] = 5, - ACTIONS(2226), 1, - sym_string_start, + sym_type_conversion, + [101201] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2120), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4001), 4, + ACTIONS(4313), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3999), 29, + ACTIONS(4311), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -192619,34 +194882,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103063] = 5, - ACTIONS(3444), 1, - anon_sym_COMMA, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, + [101245] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 6, + ACTIONS(3648), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 28, + ACTIONS(3646), 30, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -192662,37 +194923,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [103112] = 6, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, - ACTIONS(4459), 1, - anon_sym_LBRACK, - STATE(4053), 1, - sym_type_parameter, + [101289] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 6, + ACTIONS(4294), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 27, - sym__newline, - anon_sym_SEMI, + ACTIONS(4292), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -192708,35 +194963,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103163] = 8, - ACTIONS(4103), 1, + sym_type_conversion, + [101333] = 20, + ACTIONS(3985), 1, + anon_sym_not, + ACTIONS(4182), 1, anon_sym_DOT, - ACTIONS(4105), 1, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(4113), 1, + ACTIONS(4192), 1, anon_sym_STAR_STAR, - ACTIONS(4115), 1, + ACTIONS(4194), 1, anon_sym_LBRACK, + ACTIONS(4200), 1, + anon_sym_PIPE, + ACTIONS(4202), 1, + anon_sym_AMP, + ACTIONS(4204), 1, + anon_sym_CARET, + ACTIONS(4206), 1, + anon_sym_is, + STATE(2512), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2435), 2, + ACTIONS(4186), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4188), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4198), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4208), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1868), 2, + sym__not_in, + sym__is_not, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4053), 5, + ACTIONS(4196), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(3961), 4, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(4190), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [101411] = 5, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3463), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3468), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4051), 25, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3457), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -192755,32 +195065,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103218] = 5, - ACTIONS(4461), 1, - sym_string_start, + [101459] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2120), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3978), 4, + ACTIONS(3674), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3976), 29, + ACTIONS(3672), 30, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -192799,35 +195106,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103267] = 8, - ACTIONS(4163), 1, - anon_sym_DOT, - ACTIONS(4165), 1, - anon_sym_LPAREN, - ACTIONS(4173), 1, - anon_sym_STAR_STAR, - ACTIONS(4175), 1, - anon_sym_LBRACK, + [101503] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2448), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4053), 5, + ACTIONS(3648), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4051), 25, + ACTIONS(3646), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -192846,33 +195147,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103322] = 3, + [101547] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4197), 5, - anon_sym_as, + ACTIONS(3682), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4195), 31, - sym_string_start, + ACTIONS(3680), 30, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -192888,31 +195188,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103367] = 3, + [101591] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4306), 5, + ACTIONS(3682), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 30, + ACTIONS(3680), 30, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -192928,32 +195229,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [103411] = 3, + [101635] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4273), 5, + ACTIONS(3678), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4271), 30, + ACTIONS(3676), 30, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -192969,18 +195270,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [103455] = 3, + [101679] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4277), 5, + ACTIONS(4286), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4275), 30, + ACTIONS(4284), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -193011,28 +195311,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [103499] = 5, - ACTIONS(851), 1, - anon_sym_COLON_EQ, + [101723] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(841), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(836), 5, - anon_sym_as, + ACTIONS(3678), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 27, + ACTIONS(3676), 30, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -193054,24 +195352,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103547] = 3, + [101767] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4302), 5, + ACTIONS(4294), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4300), 30, + ACTIONS(4292), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -193094,25 +195393,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [103591] = 3, + [101811] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4345), 5, + ACTIONS(4286), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4343), 30, + ACTIONS(4284), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -193135,18 +195434,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [103635] = 3, + [101855] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4334), 5, + ACTIONS(3468), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4332), 30, + ACTIONS(3457), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -193177,60 +195475,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103679] = 5, + [101899] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3598), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3601), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3595), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3593), 16, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [103727] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4384), 5, + ACTIONS(4270), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4382), 30, + ACTIONS(4268), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -193261,24 +195516,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [103771] = 3, + [101943] = 4, + ACTIONS(580), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 5, + ACTIONS(565), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3624), 30, + ACTIONS(563), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -193302,17 +195558,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103815] = 3, + [101989] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3587), 5, + ACTIONS(3975), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3582), 30, + ACTIONS(3961), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -193343,25 +195599,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103859] = 3, + [102033] = 4, + ACTIONS(3641), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4384), 5, - anon_sym_as, + ACTIONS(3644), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4382), 30, + ACTIONS(3639), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -193384,25 +195640,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103903] = 3, + sym_type_conversion, + [102079] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4201), 5, - anon_sym_as, + ACTIONS(4278), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4199), 30, + ACTIONS(4276), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -193425,64 +195681,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103947] = 6, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, - ACTIONS(4464), 1, - anon_sym_LBRACK, - STATE(4211), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3449), 5, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3438), 27, - anon_sym_DOT, - anon_sym_LPAREN, + sym_type_conversion, + [102123] = 4, + ACTIONS(3463), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [103997] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4318), 5, + ACTIONS(3468), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4316), 30, + ACTIONS(3457), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -193510,17 +195724,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [104041] = 3, + [102169] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4352), 5, + ACTIONS(3468), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4350), 30, + ACTIONS(3457), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -193551,72 +195765,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [104085] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4161), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4159), 30, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [104129] = 5, - ACTIONS(851), 1, + [102213] = 4, + ACTIONS(580), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1192), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1194), 5, - anon_sym_as, + ACTIONS(565), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1391), 27, + ACTIONS(563), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -193635,31 +195807,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104177] = 5, - ACTIONS(3451), 1, + [102259] = 4, + ACTIONS(3470), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3593), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(3598), 5, - anon_sym_as, + ACTIONS(3468), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3595), 27, + ACTIONS(3457), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -193678,32 +195849,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104225] = 3, + [102305] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4318), 5, - anon_sym_as, + ACTIONS(4212), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4316), 30, + ACTIONS(4210), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -193719,32 +195890,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104269] = 3, + [102349] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3642), 5, + ACTIONS(4180), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3640), 30, + ACTIONS(4178), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -193760,32 +195931,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104313] = 3, + [102393] = 5, + ACTIONS(1312), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4265), 5, - anon_sym_as, + STATE(2193), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4007), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4263), 30, + ACTIONS(4005), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -193801,32 +195974,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104357] = 3, + [102441] = 4, + ACTIONS(3652), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4161), 5, + ACTIONS(3655), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4159), 30, - sym_string_start, + ACTIONS(3650), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -193842,19 +196015,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104401] = 3, + sym_type_conversion, + [102487] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4352), 5, + ACTIONS(3623), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4350), 30, + ACTIONS(3621), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -193867,7 +196042,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -193883,25 +196057,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104445] = 3, + [102531] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3614), 5, - anon_sym_as, + ACTIONS(4302), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 30, + ACTIONS(4300), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -193924,25 +196097,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104489] = 3, + sym_type_conversion, + [102575] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3657), 5, - anon_sym_as, + ACTIONS(4317), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3652), 30, + ACTIONS(4315), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -193965,17 +196138,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104533] = 3, + sym_type_conversion, + [102619] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4322), 5, + ACTIONS(3623), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4320), 30, + ACTIONS(3621), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -194006,19 +196180,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [104577] = 3, + [102663] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4261), 5, + ACTIONS(3678), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4259), 30, + ACTIONS(3676), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -194031,7 +196206,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -194047,31 +196221,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104621] = 3, + [102707] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4201), 5, + ACTIONS(3678), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4199), 30, + ACTIONS(3676), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -194087,18 +196262,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [104665] = 3, + [102751] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4265), 5, + ACTIONS(4220), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4263), 30, + ACTIONS(4218), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -194129,17 +196303,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [104709] = 3, + [102795] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3622), 5, + ACTIONS(4236), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3620), 30, + ACTIONS(4234), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -194170,80 +196344,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104753] = 3, + [102839] = 6, + ACTIONS(4115), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 5, - anon_sym_as, - anon_sym_STAR, + ACTIONS(4120), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4118), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3624), 30, - anon_sym_DOT, + ACTIONS(4112), 4, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [104797] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3626), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3624), 30, + ACTIONS(4110), 25, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -194252,24 +196388,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104841] = 3, + [102889] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4376), 5, + ACTIONS(4262), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4374), 30, + ACTIONS(4260), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -194292,33 +196429,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [104885] = 3, + [102933] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3591), 5, + ACTIONS(3625), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(3632), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3589), 30, + ACTIONS(3629), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -194334,60 +196471,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104929] = 5, + [102979] = 5, + ACTIONS(4497), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3598), 2, + STATE(2193), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4011), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3601), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3595), 14, + ACTIONS(4009), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3593), 16, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [103027] = 5, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3463), 2, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(3468), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3457), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104977] = 3, + [103075] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4380), 5, + ACTIONS(4390), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4378), 30, + ACTIONS(4388), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -194418,17 +196598,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [105021] = 3, + [103119] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4330), 5, + ACTIONS(3623), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 30, + ACTIONS(3621), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -194459,29 +196639,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105065] = 7, - ACTIONS(4466), 1, - anon_sym_as, - ACTIONS(4468), 1, - anon_sym_if, - ACTIONS(4470), 1, - anon_sym_and, - ACTIONS(4472), 1, - anon_sym_or, + [103163] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4255), 5, + ACTIONS(4118), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4251), 26, + ACTIONS(4110), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, @@ -194492,6 +196666,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -194504,17 +196680,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [105117] = 3, + [103207] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4269), 5, + ACTIONS(1201), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1204), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1402), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1199), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [103255] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3648), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4267), 30, + ACTIONS(3646), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -194545,26 +196764,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [105161] = 6, - ACTIONS(4470), 1, - anon_sym_and, - ACTIONS(4472), 1, - anon_sym_or, - ACTIONS(4474), 1, - anon_sym_as, + [103299] = 4, + ACTIONS(3663), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4372), 5, + ACTIONS(3666), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4367), 27, + ACTIONS(3661), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, @@ -194577,6 +196792,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -194589,25 +196806,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [105211] = 3, + [103345] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 5, - anon_sym_as, + ACTIONS(4282), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3605), 30, + ACTIONS(4280), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -194630,25 +196846,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105255] = 3, + sym_type_conversion, + [103389] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 5, - anon_sym_as, + ACTIONS(3674), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3605), 30, + ACTIONS(3672), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -194671,46 +196887,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105299] = 9, - ACTIONS(3990), 1, - anon_sym_not, - ACTIONS(4480), 1, - anon_sym_is, - STATE(2166), 1, - aux_sym_comparison_operator_repeat1, + sym_type_conversion, + [103433] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3985), 2, + ACTIONS(3682), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4483), 2, anon_sym_LT, anon_sym_GT, - STATE(1804), 2, - sym__not_in, - sym__is_not, - ACTIONS(4477), 6, + ACTIONS(3680), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(3983), 20, + sym_type_conversion, + [103477] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3682), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3680), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -194718,34 +196963,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [105355] = 5, - STATE(2166), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [103521] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1804), 2, - sym__not_in, - sym__is_not, - ACTIONS(4015), 4, + ACTIONS(3678), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4013), 28, + ACTIONS(3676), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -194761,21 +197010,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105403] = 5, - ACTIONS(4470), 1, - anon_sym_and, - ACTIONS(4472), 1, - anon_sym_or, + sym_type_conversion, + [103565] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4205), 5, + ACTIONS(3678), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4203), 28, + ACTIONS(3676), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -194792,6 +197038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -194804,42 +197052,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [105451] = 6, - ACTIONS(4096), 1, - anon_sym_STAR, + [103609] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4101), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4099), 3, + ACTIONS(4374), 5, + anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4093), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4091), 25, + ACTIONS(4372), 30, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -194848,40 +197093,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105501] = 7, - ACTIONS(4486), 1, + [103653] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1201), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1204), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1402), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1199), 16, + anon_sym_from, + anon_sym_COMMA, anon_sym_as, - ACTIONS(4488), 1, anon_sym_if, - ACTIONS(4490), 1, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, anon_sym_and, - ACTIONS(4492), 1, anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [103701] = 4, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4255), 4, + ACTIONS(3468), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4251), 27, + ACTIONS(3457), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -194893,28 +197178,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105553] = 5, - ACTIONS(1301), 1, - sym_string_start, + [103747] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2192), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3449), 4, + ACTIONS(3674), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 28, + ACTIONS(3672), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -194936,40 +197219,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105601] = 3, + [103791] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4213), 5, + ACTIONS(3632), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(3635), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4211), 30, + ACTIONS(3629), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(3625), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -194977,30 +197262,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [105645] = 6, - ACTIONS(4490), 1, - anon_sym_and, - ACTIONS(4492), 1, - anon_sym_or, - ACTIONS(4494), 1, - anon_sym_as, + [103839] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4372), 4, + ACTIONS(3644), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4367), 28, + ACTIONS(3639), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -195010,6 +197289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -195021,17 +197302,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105695] = 3, + sym_type_conversion, + [103883] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4376), 5, + ACTIONS(4378), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4374), 30, + ACTIONS(4376), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -195062,23 +197344,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105739] = 5, - ACTIONS(4490), 1, - anon_sym_and, - ACTIONS(4492), 1, - anon_sym_or, + [103927] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4205), 5, + ACTIONS(3682), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4203), 28, + ACTIONS(3680), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -195091,9 +197370,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -195105,32 +197385,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105787] = 3, + [103971] = 8, + ACTIONS(4331), 1, + anon_sym_DOT, + ACTIONS(4333), 1, + anon_sym_LPAREN, + ACTIONS(4341), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4380), 5, - anon_sym_as, + STATE(2465), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4108), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4378), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4106), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -195146,20 +197431,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105831] = 3, + [104025] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3642), 5, + ACTIONS(565), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3640), 30, + ACTIONS(563), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -195172,6 +197456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -195187,36 +197472,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105875] = 4, - ACTIONS(4490), 1, - anon_sym_and, + [104069] = 8, + ACTIONS(4331), 1, + anon_sym_DOT, + ACTIONS(4333), 1, + anon_sym_LPAREN, + ACTIONS(4341), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4213), 5, - anon_sym_as, + STATE(2465), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4076), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4211), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4074), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -195229,31 +197518,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105921] = 3, + [104123] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 5, + ACTIONS(3682), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 30, + ACTIONS(3680), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -195269,25 +197559,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [105965] = 3, + [104167] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4285), 5, + ACTIONS(4247), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4283), 30, + ACTIONS(4245), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -195310,24 +197600,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [106009] = 3, + [104211] = 5, + ACTIONS(580), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4310), 5, + ACTIONS(570), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(565), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4308), 30, + ACTIONS(563), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -195336,7 +197628,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -195352,22 +197643,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106053] = 3, + [104259] = 7, + ACTIONS(4500), 1, + anon_sym_as, + ACTIONS(4502), 1, + anon_sym_if, + ACTIONS(4504), 1, + anon_sym_and, + ACTIONS(4506), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4314), 5, - anon_sym_as, + ACTIONS(4226), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4312), 30, + ACTIONS(4222), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, @@ -195380,8 +197677,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -195393,17 +197688,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106097] = 3, + [104311] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4289), 5, + ACTIONS(4382), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4287), 30, + ACTIONS(4380), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -195434,28 +197729,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106141] = 7, - ACTIONS(4486), 1, - anon_sym_as, - ACTIONS(4488), 1, - anon_sym_if, - ACTIONS(4490), 1, - anon_sym_and, - ACTIONS(4492), 1, - anon_sym_or, + [104355] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4341), 4, + ACTIONS(4298), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4339), 27, + ACTIONS(4296), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, @@ -195468,6 +197757,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -195479,36 +197770,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106193] = 3, + [104399] = 6, + ACTIONS(4504), 1, + anon_sym_and, + ACTIONS(4506), 1, + anon_sym_or, + ACTIONS(4508), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4161), 5, - anon_sym_as, + ACTIONS(4243), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4159), 30, - sym_string_start, + ACTIONS(4238), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -195520,26 +197814,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106237] = 4, + [104449] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3593), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(3598), 5, - anon_sym_as, + ACTIONS(565), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3595), 27, + ACTIONS(563), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -195562,37 +197854,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106283] = 4, - ACTIONS(851), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [104493] = 5, + ACTIONS(4504), 1, + anon_sym_and, + ACTIONS(4506), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 5, + ACTIONS(4251), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 29, + ACTIONS(4249), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -195604,26 +197898,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106329] = 5, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, + [104541] = 4, + ACTIONS(4504), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3444), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3449), 5, + ACTIONS(4255), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 27, + ACTIONS(4253), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -195632,9 +197925,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -195647,23 +197940,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106377] = 3, + [104587] = 7, + ACTIONS(4500), 1, + anon_sym_as, + ACTIONS(4502), 1, + anon_sym_if, + ACTIONS(4504), 1, + anon_sym_and, + ACTIONS(4506), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 5, - anon_sym_as, + ACTIONS(4266), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3605), 30, + ACTIONS(4264), 27, 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, @@ -195673,10 +197971,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -195688,32 +197985,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106421] = 3, + [104639] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 5, - anon_sym_as, + ACTIONS(4262), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3605), 30, + ACTIONS(4260), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -195729,35 +198025,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106465] = 4, - ACTIONS(4470), 1, - anon_sym_and, + sym_type_conversion, + [104683] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4213), 5, + ACTIONS(4212), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4211), 29, + ACTIONS(4210), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -195770,39 +198067,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [106511] = 5, - ACTIONS(1301), 1, - sym_string_start, + [104727] = 7, + ACTIONS(4500), 1, + anon_sym_as, + ACTIONS(4502), 1, + anon_sym_if, + ACTIONS(4504), 1, + anon_sym_and, + ACTIONS(4506), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2205), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4001), 4, + ACTIONS(4274), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3999), 28, + ACTIONS(4272), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -195814,40 +198112,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106559] = 7, - ACTIONS(4486), 1, - anon_sym_as, - ACTIONS(4488), 1, - anon_sym_if, - ACTIONS(4490), 1, - anon_sym_and, - ACTIONS(4492), 1, - anon_sym_or, + [104779] = 5, + ACTIONS(580), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4356), 4, + ACTIONS(1199), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1201), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4354), 27, + ACTIONS(1402), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -195859,30 +198155,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106611] = 4, - ACTIONS(851), 1, + [104827] = 5, + ACTIONS(3470), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 5, + ACTIONS(3625), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(3632), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 29, + ACTIONS(3629), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -195901,33 +198198,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106657] = 4, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, + [104875] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 5, - anon_sym_as, + ACTIONS(4374), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 29, + ACTIONS(4372), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -195943,34 +198238,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106703] = 8, - ACTIONS(4215), 1, - anon_sym_DOT, - ACTIONS(4217), 1, - anon_sym_LPAREN, - ACTIONS(4225), 1, - anon_sym_STAR_STAR, - ACTIONS(4227), 1, - anon_sym_LBRACK, + sym_type_conversion, + [104919] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2469), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 4, + ACTIONS(4180), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4019), 25, + ACTIONS(4178), 30, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -195989,22 +198280,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106757] = 4, - ACTIONS(3451), 1, + [104963] = 5, + ACTIONS(580), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 5, + ACTIONS(570), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(565), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 29, + ACTIONS(563), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -196012,7 +198305,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -196031,17 +198323,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106803] = 3, + [105011] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 5, + ACTIONS(4378), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 30, + ACTIONS(4376), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -196072,31 +198364,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [106847] = 3, + [105055] = 4, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3591), 5, + ACTIONS(3468), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3589), 30, + ACTIONS(3457), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -196112,26 +198406,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [106891] = 3, + [105101] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4269), 5, - anon_sym_as, + ACTIONS(4382), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4267), 30, + ACTIONS(4380), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -196154,25 +198446,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106935] = 3, + sym_type_conversion, + [105145] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4213), 5, - anon_sym_as, + ACTIONS(3655), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4211), 30, + ACTIONS(3650), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -196195,17 +198487,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106979] = 3, + sym_type_conversion, + [105189] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4326), 5, + ACTIONS(3666), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4324), 30, + ACTIONS(3661), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -196236,17 +198529,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [107023] = 3, + [105233] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4099), 5, + ACTIONS(4386), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4091), 30, + ACTIONS(4384), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -196277,46 +198570,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107067] = 11, - ACTIONS(4215), 1, - anon_sym_DOT, - ACTIONS(4217), 1, - anon_sym_LPAREN, - ACTIONS(4225), 1, - anon_sym_STAR_STAR, - ACTIONS(4227), 1, - anon_sym_LBRACK, + [105277] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4021), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4219), 2, + ACTIONS(4386), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4231), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2469), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4229), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 20, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4384), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -196326,34 +198610,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107127] = 5, - ACTIONS(4497), 1, - sym_string_start, + sym_type_conversion, + [105321] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2205), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3978), 4, + ACTIONS(4390), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3976), 28, + ACTIONS(4388), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -196369,63 +198652,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107175] = 8, - ACTIONS(4215), 1, + [105365] = 15, + ACTIONS(4331), 1, anon_sym_DOT, - ACTIONS(4217), 1, + ACTIONS(4333), 1, anon_sym_LPAREN, - ACTIONS(4225), 1, + ACTIONS(4341), 1, anon_sym_STAR_STAR, - ACTIONS(4227), 1, + ACTIONS(4343), 1, anon_sym_LBRACK, + ACTIONS(4349), 1, + anon_sym_PIPE, + ACTIONS(4351), 1, + anon_sym_AMP, + ACTIONS(4353), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2469), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 4, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4072), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4019), 25, + ACTIONS(4335), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4337), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4347), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2465), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4345), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4070), 15, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107229] = 3, + [105433] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4099), 5, + ACTIONS(4247), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4091), 30, + ACTIONS(4245), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -196456,97 +198746,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [107273] = 10, - ACTIONS(4215), 1, - anon_sym_DOT, - ACTIONS(4217), 1, - anon_sym_LPAREN, - ACTIONS(4225), 1, - anon_sym_STAR_STAR, - ACTIONS(4227), 1, - anon_sym_LBRACK, + [105477] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4021), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4219), 2, + ACTIONS(3632), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2469), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4229), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 22, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [107331] = 14, - ACTIONS(4215), 1, + ACTIONS(3635), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3629), 14, anon_sym_DOT, - ACTIONS(4217), 1, anon_sym_LPAREN, - ACTIONS(4225), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(4235), 1, - anon_sym_AMP, - ACTIONS(4237), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4021), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4219), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4231), 2, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(2469), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4229), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4019), 16, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(3625), 16, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -196556,26 +198789,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107397] = 5, - ACTIONS(851), 1, - anon_sym_COLON_EQ, + [105525] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(841), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(836), 5, + ACTIONS(4255), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 27, + ACTIONS(4253), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -196584,6 +198814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -196599,167 +198830,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107445] = 3, + [105569] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3591), 5, + ACTIONS(3632), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(3635), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3589), 30, + ACTIONS(3629), 14, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [107489] = 13, - ACTIONS(4215), 1, - anon_sym_DOT, - ACTIONS(4217), 1, - anon_sym_LPAREN, - ACTIONS(4225), 1, - anon_sym_STAR_STAR, - ACTIONS(4227), 1, - anon_sym_LBRACK, - ACTIONS(4237), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4021), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4219), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4231), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2469), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4229), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 17, + ACTIONS(3625), 16, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107553] = 12, - ACTIONS(4215), 1, - anon_sym_DOT, - ACTIONS(4217), 1, - anon_sym_LPAREN, - ACTIONS(4225), 1, - anon_sym_STAR_STAR, - ACTIONS(4227), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4021), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4219), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4231), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2469), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4229), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 18, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_not, + [105617] = 7, + ACTIONS(4487), 1, anon_sym_and, + ACTIONS(4489), 1, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [107615] = 3, + ACTIONS(4493), 1, + anon_sym_as, + ACTIONS(4495), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4322), 5, - anon_sym_as, + ACTIONS(4266), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4320), 30, + ACTIONS(4264), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -196769,8 +198906,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -196782,29 +198917,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107659] = 7, - ACTIONS(4466), 1, - anon_sym_as, - ACTIONS(4468), 1, - anon_sym_if, - ACTIONS(4470), 1, - anon_sym_and, - ACTIONS(4472), 1, - anon_sym_or, + sym_type_conversion, + [105669] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4341), 5, + ACTIONS(3975), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4339), 26, + ACTIONS(3961), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, @@ -196815,6 +198945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -196827,24 +198959,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [107711] = 3, + [105713] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4281), 5, + ACTIONS(4290), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4279), 30, + ACTIONS(4288), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -196867,18 +199000,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107755] = 3, + [105757] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3642), 5, + ACTIONS(4298), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3640), 30, + ACTIONS(4296), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -196909,74 +199041,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [107799] = 3, + [105801] = 9, + ACTIONS(4027), 1, + anon_sym_not, + ACTIONS(4514), 1, + anon_sym_is, + STATE(2254), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4261), 5, + ACTIONS(4022), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4517), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4259), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, + STATE(1859), 2, + sym__not_in, + sym__is_not, + ACTIONS(4511), 6, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107843] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3622), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3620), 30, + ACTIONS(4020), 20, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -196984,38 +199088,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [107887] = 3, + [105857] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 5, + ACTIONS(3623), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3624), 30, + ACTIONS(3621), 30, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -197031,25 +199129,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107931] = 3, + [105901] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 5, + ACTIONS(4325), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3624), 30, + ACTIONS(4323), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -197072,18 +199170,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107975] = 3, + [105945] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 5, + ACTIONS(4290), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3605), 30, + ACTIONS(4288), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -197114,31 +199211,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [108019] = 3, + [105989] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 5, + ACTIONS(4212), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3605), 30, + ACTIONS(4210), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -197154,33 +199252,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108063] = 3, + [106033] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3642), 5, + ACTIONS(4270), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3640), 30, + ACTIONS(4268), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -197196,30 +199293,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108107] = 7, - ACTIONS(4466), 1, - anon_sym_as, - ACTIONS(4468), 1, - anon_sym_if, - ACTIONS(4470), 1, - anon_sym_and, - ACTIONS(4472), 1, - anon_sym_or, + [106077] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4356), 5, + ACTIONS(4278), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4354), 26, + ACTIONS(4276), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -197229,6 +199321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -197240,33 +199334,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108159] = 3, + [106121] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3622), 5, + ACTIONS(4302), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3620), 30, + ACTIONS(4300), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -197282,36 +199375,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108203] = 3, + [106165] = 7, + ACTIONS(4487), 1, + anon_sym_and, + ACTIONS(4489), 1, + anon_sym_or, + ACTIONS(4493), 1, + anon_sym_as, + ACTIONS(4495), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 5, + ACTIONS(4226), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3624), 30, + ACTIONS(4222), 26, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -197323,32 +199419,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108247] = 3, + sym_type_conversion, + [106217] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 5, + ACTIONS(4236), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3624), 30, + ACTIONS(4234), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -197364,64 +199460,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108291] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3598), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3601), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3595), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3593), 16, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, + sym_type_conversion, + [106261] = 6, + ACTIONS(4487), 1, anon_sym_and, + ACTIONS(4489), 1, anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [108339] = 3, + ACTIONS(4520), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3587), 5, + ACTIONS(4243), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3582), 30, + ACTIONS(4238), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, @@ -197434,8 +199493,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -197448,26 +199505,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [108383] = 3, + [106311] = 5, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 5, + ACTIONS(3625), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(3632), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3605), 30, + ACTIONS(3629), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -197489,32 +199548,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108427] = 3, + [106359] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 5, + ACTIONS(4317), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3605), 30, + ACTIONS(4315), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -197530,34 +199589,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108471] = 5, - ACTIONS(851), 1, - anon_sym_COLON_EQ, + [106403] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1192), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1194), 5, - anon_sym_as, + ACTIONS(4255), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1391), 27, + ACTIONS(4253), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -197573,28 +199629,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108519] = 5, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [106447] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3593), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(3598), 5, + ACTIONS(4180), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3595), 27, + ACTIONS(4178), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -197616,71 +199671,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108567] = 8, - ACTIONS(4215), 1, - anon_sym_DOT, - ACTIONS(4217), 1, - anon_sym_LPAREN, - ACTIONS(4225), 1, - anon_sym_STAR_STAR, - ACTIONS(4227), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2469), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4053), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4051), 25, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, + [106491] = 4, + ACTIONS(4487), 1, anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [108621] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4245), 5, - anon_sym_as, + ACTIONS(4255), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4243), 30, + ACTIONS(4253), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -197690,7 +199700,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -197703,34 +199712,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108665] = 8, - ACTIONS(4215), 1, - anon_sym_DOT, - ACTIONS(4217), 1, - anon_sym_LPAREN, - ACTIONS(4225), 1, - anon_sym_STAR_STAR, - ACTIONS(4227), 1, - anon_sym_LBRACK, + sym_type_conversion, + [106537] = 5, + STATE(2254), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2469), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4085), 4, + STATE(1859), 2, + sym__not_in, + sym__is_not, + ACTIONS(4018), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4083), 25, + ACTIONS(4016), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -197749,17 +199756,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108719] = 3, + [106585] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4281), 5, + ACTIONS(4220), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4279), 30, + ACTIONS(4218), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -197790,17 +199797,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108763] = 3, + [106629] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 5, + ACTIONS(3644), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4247), 30, + ACTIONS(3639), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -197831,32 +199838,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108807] = 3, + [106673] = 8, + ACTIONS(4331), 1, + anon_sym_DOT, + ACTIONS(4333), 1, + anon_sym_LPAREN, + ACTIONS(4341), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4273), 5, - anon_sym_as, + STATE(2465), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4271), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4038), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -197872,37 +199884,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108851] = 3, + [106727] = 11, + ACTIONS(4331), 1, + anon_sym_DOT, + ACTIONS(4333), 1, + anon_sym_LPAREN, + ACTIONS(4341), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4330), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(4040), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4335), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4347), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2465), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4345), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 20, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -197912,33 +199933,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108895] = 3, + [106787] = 8, + ACTIONS(4331), 1, + anon_sym_DOT, + ACTIONS(4333), 1, + anon_sym_LPAREN, + ACTIONS(4341), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4277), 5, - anon_sym_as, + STATE(2465), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4275), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4038), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -197954,37 +199979,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108939] = 3, + [106841] = 10, + ACTIONS(4331), 1, + anon_sym_DOT, + ACTIONS(4333), 1, + anon_sym_LPAREN, + ACTIONS(4341), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4245), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(4040), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4243), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4335), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2465), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4345), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 22, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_RBRACK, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -197994,156 +200027,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108983] = 3, + [106899] = 14, + ACTIONS(4331), 1, + anon_sym_DOT, + ACTIONS(4333), 1, + anon_sym_LPAREN, + ACTIONS(4341), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_LBRACK, + ACTIONS(4351), 1, + anon_sym_AMP, + ACTIONS(4353), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(4040), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4247), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4335), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4337), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4347), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2465), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4345), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 16, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [109027] = 3, + [106965] = 13, + ACTIONS(4331), 1, + anon_sym_DOT, + ACTIONS(4333), 1, + anon_sym_LPAREN, + ACTIONS(4341), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_LBRACK, + ACTIONS(4353), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4310), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(4040), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4308), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4335), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4337), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4347), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2465), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4345), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 17, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [109071] = 3, + [107029] = 12, + ACTIONS(4331), 1, + anon_sym_DOT, + ACTIONS(4333), 1, + anon_sym_LPAREN, + ACTIONS(4341), 1, + anon_sym_STAR_STAR, + ACTIONS(4343), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4040), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4335), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4337), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4347), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2465), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4345), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 18, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109115] = 3, + [107091] = 4, + ACTIONS(580), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4285), 5, + ACTIONS(565), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4283), 30, + ACTIONS(563), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -198159,17 +200222,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109159] = 3, + [107137] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3614), 5, + ACTIONS(4329), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 30, + ACTIONS(4327), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -198177,13 +200240,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -198199,39 +200262,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [109203] = 3, + [107180] = 6, + ACTIONS(4115), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3657), 5, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(4120), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4118), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3652), 30, - anon_sym_DOT, + ACTIONS(4112), 4, anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4110), 24, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -198240,61 +200305,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [109247] = 5, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, + [107229] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3444), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3449), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3438), 27, + ACTIONS(3629), 3, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3632), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [109295] = 3, + ACTIONS(3625), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [107274] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4314), 5, + ACTIONS(3655), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4312), 30, + ACTIONS(3650), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -198302,13 +200364,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -198324,27 +200386,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [109339] = 3, + [107317] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4197), 5, - anon_sym_as, + ACTIONS(3666), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4195), 30, - sym_string_start, + ACTIONS(3661), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -198366,60 +200426,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109383] = 5, + [107360] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1194), 2, + ACTIONS(3625), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(3632), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1197), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1391), 14, + ACTIONS(3629), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1192), 16, - anon_sym_from, - anon_sym_COMMA, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [107405] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3644), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3639), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109431] = 3, + [107448] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4289), 5, + ACTIONS(4370), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4287), 30, + ACTIONS(4368), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -198427,13 +200525,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -198449,33 +200547,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [109475] = 3, + [107491] = 6, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, + ACTIONS(3599), 1, + anon_sym_LBRACK, + STATE(4386), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3956), 5, - anon_sym_as, + ACTIONS(3468), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3942), 30, + ACTIONS(3457), 25, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -198491,26 +200590,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109519] = 4, - ACTIONS(851), 1, - anon_sym_COLON_EQ, + [107540] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 6, + ACTIONS(4325), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 28, + ACTIONS(4323), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, @@ -198533,32 +200630,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109565] = 4, - ACTIONS(3584), 1, - anon_sym_COMMA, + [107583] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3587), 5, + ACTIONS(3655), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3582), 29, + ACTIONS(3650), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [107626] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3666), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3661), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -198574,27 +200710,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [109611] = 4, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, + [107669] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 6, + ACTIONS(4294), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 28, + ACTIONS(4292), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, @@ -198617,32 +200750,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109657] = 3, + [107712] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4302), 5, - anon_sym_as, + ACTIONS(4286), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4300), 30, + ACTIONS(4284), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -198658,32 +200790,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109701] = 4, - ACTIONS(3444), 1, - anon_sym_COMMA, + [107755] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 5, + ACTIONS(3468), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 29, + ACTIONS(3457), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -198699,19 +200830,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [109747] = 3, + [107798] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4197), 5, + ACTIONS(3623), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4195), 30, - sym_string_start, + ACTIONS(3621), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -198741,32 +200870,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109791] = 4, - ACTIONS(3611), 1, - anon_sym_COMMA, + [107841] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3614), 5, + ACTIONS(4309), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 29, + ACTIONS(4307), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -198782,129 +200910,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [109837] = 5, + [107884] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1194), 2, + ACTIONS(4313), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1197), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1391), 14, + ACTIONS(4311), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1192), 16, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [107927] = 6, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, + ACTIONS(3478), 1, + anon_sym_from, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3463), 2, anon_sym_COMMA, + anon_sym_in, + ACTIONS(3468), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3457), 25, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [109885] = 15, - ACTIONS(4215), 1, + [107976] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4294), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4292), 29, anon_sym_DOT, - ACTIONS(4217), 1, anon_sym_LPAREN, - ACTIONS(4225), 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_STAR_STAR, - ACTIONS(4227), 1, anon_sym_LBRACK, - ACTIONS(4233), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4235), 1, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(4237), 1, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [108019] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4089), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4219), 2, + ACTIONS(4286), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4231), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2469), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4229), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4087), 15, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4284), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109953] = 4, - ACTIONS(3654), 1, - anon_sym_COMMA, + [108062] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3657), 5, + ACTIONS(3468), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3652), 29, + ACTIONS(3457), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -198920,24 +201113,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [109999] = 3, + [108105] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 5, + ACTIONS(3975), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 30, + ACTIONS(3961), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -198946,7 +201138,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -198962,24 +201153,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110043] = 3, + [108148] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 5, + ACTIONS(3641), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3644), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3624), 30, + ACTIONS(3639), 27, 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, @@ -199003,23 +201194,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110087] = 3, + [108193] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4326), 5, + ACTIONS(3463), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3468), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4324), 30, + ACTIONS(3457), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -199028,7 +201220,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -199044,23 +201235,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110131] = 3, + [108238] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4306), 5, + ACTIONS(3652), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3655), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 30, + ACTIONS(3650), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -199069,7 +201261,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -199085,32 +201276,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110175] = 3, + [108283] = 6, + ACTIONS(580), 1, + anon_sym_COLON_EQ, + ACTIONS(596), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4345), 5, - anon_sym_as, + ACTIONS(570), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(565), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4343), 30, + ACTIONS(563), 25, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -199126,26 +201319,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110219] = 3, + [108332] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3622), 5, + ACTIONS(3625), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(3632), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3620), 30, + ACTIONS(3629), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -199167,32 +201360,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110263] = 3, + [108377] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3591), 5, + ACTIONS(4390), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3589), 30, + ACTIONS(4388), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -199208,76 +201400,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110307] = 20, - ACTIONS(3966), 1, - anon_sym_not, - ACTIONS(4163), 1, - anon_sym_DOT, - ACTIONS(4165), 1, - anon_sym_LPAREN, - ACTIONS(4173), 1, - anon_sym_STAR_STAR, - ACTIONS(4175), 1, - anon_sym_LBRACK, - ACTIONS(4181), 1, - anon_sym_PIPE, - ACTIONS(4183), 1, - anon_sym_AMP, - ACTIONS(4185), 1, - anon_sym_CARET, - ACTIONS(4187), 1, - anon_sym_is, - STATE(2468), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4167), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4169), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4179), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4189), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1871), 2, - sym__not_in, - sym__is_not, - STATE(2448), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4177), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(3942), 4, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(4171), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [110385] = 3, + [108420] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4197), 5, + ACTIONS(4270), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4195), 30, - sym_string_start, + ACTIONS(4268), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -199307,145 +201440,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110429] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1194), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1197), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1391), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1192), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [110477] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3956), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3942), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [110521] = 3, + [108463] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4334), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4332), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3663), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [110565] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4314), 5, + ACTIONS(3666), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4312), 29, + ACTIONS(3661), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -199453,7 +201463,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -199472,61 +201481,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110608] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1194), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1197), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1391), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1192), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [110655] = 3, + [108508] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 5, + ACTIONS(565), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3624), 29, + ACTIONS(563), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -199535,7 +201503,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -199554,31 +201521,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110698] = 6, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, - ACTIONS(3550), 1, - anon_sym_LBRACK, - STATE(4477), 1, - sym_type_parameter, + [108551] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 6, + ACTIONS(4278), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 25, + ACTIONS(4276), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -199597,29 +201561,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110747] = 4, - ACTIONS(851), 1, - anon_sym_COLON_EQ, + [108594] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 5, + ACTIONS(4247), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 28, + ACTIONS(4245), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -199638,29 +201601,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110792] = 4, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, + [108637] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 5, + ACTIONS(4298), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 28, + ACTIONS(4296), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -199679,17 +201641,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110837] = 3, + [108680] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 5, + ACTIONS(3648), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3624), 29, + ACTIONS(3646), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -199719,20 +201681,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110880] = 3, + [108723] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4273), 5, + ACTIONS(4282), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4271), 29, + ACTIONS(4280), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -199741,6 +201702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -199759,20 +201721,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110923] = 3, + [108766] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4277), 5, + ACTIONS(3674), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4275), 29, + ACTIONS(3672), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -199781,6 +201742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -199799,20 +201761,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110966] = 3, + [108809] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4302), 5, + ACTIONS(3682), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4300), 29, + ACTIONS(3680), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -199821,6 +201782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -199839,20 +201801,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111009] = 3, + [108852] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4345), 5, + ACTIONS(3682), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4343), 29, + ACTIONS(3680), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -199861,6 +201822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -199879,20 +201841,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111052] = 3, + [108895] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4334), 5, + ACTIONS(3678), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4332), 29, + ACTIONS(3676), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -199901,6 +201862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -199919,28 +201881,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111095] = 3, + [108938] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4306), 5, + ACTIONS(3678), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 29, + ACTIONS(3676), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -199959,77 +201921,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111138] = 7, - ACTIONS(4500), 1, - anon_sym_as, - ACTIONS(4502), 1, - anon_sym_if, - ACTIONS(4504), 1, - anon_sym_and, - ACTIONS(4506), 1, - anon_sym_or, + [108981] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4255), 4, + ACTIONS(4325), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4251), 26, + ACTIONS(4323), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [111189] = 8, - ACTIONS(4392), 1, - anon_sym_DOT, - ACTIONS(4394), 1, - anon_sym_LPAREN, - ACTIONS(4402), 1, - anon_sym_STAR_STAR, - ACTIONS(4404), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2518), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4053), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4051), 24, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -200048,17 +201961,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111242] = 3, + [109024] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4384), 5, + ACTIONS(4270), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4382), 29, + ACTIONS(4268), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -200088,33 +202001,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111285] = 8, - ACTIONS(4392), 1, - anon_sym_DOT, - ACTIONS(4394), 1, - anon_sym_LPAREN, - ACTIONS(4402), 1, - anon_sym_STAR_STAR, - ACTIONS(4404), 1, - anon_sym_LBRACK, + [109067] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2518), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4085), 4, + ACTIONS(4278), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4083), 24, + ACTIONS(4276), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -200133,20 +202041,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111338] = 3, + [109110] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4318), 5, + ACTIONS(3644), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4316), 29, + ACTIONS(3639), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -200155,6 +202062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -200173,103 +202081,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111381] = 3, + [109153] = 7, + ACTIONS(3637), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4352), 5, - anon_sym_as, + ACTIONS(3632), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(3635), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4350), 29, + ACTIONS(3627), 5, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3625), 12, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111424] = 7, - ACTIONS(4508), 1, - anon_sym_as, - ACTIONS(4510), 1, - anon_sym_if, - ACTIONS(4512), 1, - anon_sym_and, - ACTIONS(4514), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4255), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4251), 25, - anon_sym_DOT, + ACTIONS(3629), 12, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [111475] = 3, + [109204] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 5, + ACTIONS(4302), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3605), 29, + ACTIONS(4300), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -200278,7 +202147,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -200297,19 +202165,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111518] = 3, + [109247] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 5, + ACTIONS(4317), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3605), 29, + ACTIONS(4315), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -200318,7 +202187,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -200337,25 +202205,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111561] = 3, + [109290] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4245), 5, + ACTIONS(4220), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4243), 29, + ACTIONS(4218), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -200377,17 +202245,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111604] = 3, + [109333] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 5, + ACTIONS(4302), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4247), 29, + ACTIONS(4300), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -200417,17 +202285,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111647] = 3, + [109376] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 5, + ACTIONS(4317), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 29, + ACTIONS(4315), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -200457,25 +202325,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111690] = 3, + [109419] = 7, + ACTIONS(4523), 1, + anon_sym_as, + ACTIONS(4525), 1, + anon_sym_if, + ACTIONS(4527), 1, + anon_sym_and, + ACTIONS(4529), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4269), 5, + ACTIONS(4226), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4267), 29, + ACTIONS(4222), 26, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -200484,8 +202358,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -200497,26 +202369,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111733] = 6, - ACTIONS(4512), 1, - anon_sym_and, - ACTIONS(4514), 1, - anon_sym_or, - ACTIONS(4516), 1, - anon_sym_as, + [109470] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4372), 5, + ACTIONS(4220), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4367), 26, + ACTIONS(4218), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, @@ -200529,6 +202396,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -200540,17 +202409,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111782] = 3, + [109513] = 6, + ACTIONS(4527), 1, + anon_sym_and, + ACTIONS(4529), 1, + anon_sym_or, + ACTIONS(4531), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4245), 5, - anon_sym_as, + ACTIONS(4243), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4243), 29, + ACTIONS(4238), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -200567,8 +202441,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -200580,17 +202452,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111825] = 3, + [109562] = 5, + ACTIONS(4527), 1, + anon_sym_and, + ACTIONS(4529), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4322), 5, + ACTIONS(4251), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4320), 29, + ACTIONS(4249), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -200607,8 +202483,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -200620,19 +202494,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111868] = 3, + [109609] = 4, + ACTIONS(4527), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3587), 5, + ACTIONS(4255), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3582), 29, + ACTIONS(4253), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -200641,13 +202518,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -200660,63 +202535,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111911] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4249), 5, + [109654] = 7, + ACTIONS(4523), 1, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4247), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + ACTIONS(4525), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, + ACTIONS(4527), 1, anon_sym_and, + ACTIONS(4529), 1, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [111954] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4376), 5, - anon_sym_as, + ACTIONS(4266), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4374), 29, + ACTIONS(4264), 26, 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, @@ -200727,8 +202568,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -200740,75 +202579,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111997] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3449), 5, + [109705] = 7, + ACTIONS(4523), 1, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3438), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + ACTIONS(4525), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, + ACTIONS(4527), 1, anon_sym_and, + ACTIONS(4529), 1, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [112040] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4285), 5, - anon_sym_as, + ACTIONS(4274), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4283), 29, + ACTIONS(4272), 26, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -200820,17 +202623,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112083] = 3, + [109756] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4310), 5, + ACTIONS(3644), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4308), 29, + ACTIONS(3639), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -200860,20 +202663,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112126] = 3, + [109799] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4380), 5, + ACTIONS(3655), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4378), 29, + ACTIONS(3650), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -200882,6 +202684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -200900,17 +202703,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112169] = 3, + [109842] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3956), 5, + ACTIONS(3666), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3942), 29, + ACTIONS(3661), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -200940,76 +202743,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112212] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3584), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3587), 5, + [109885] = 7, + ACTIONS(4534), 1, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3582), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(4536), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, + ACTIONS(4538), 1, anon_sym_and, + ACTIONS(4540), 1, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [112257] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4314), 5, + ACTIONS(4226), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4312), 29, + ACTIONS(4222), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -201021,103 +202787,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112300] = 4, + [109936] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3444), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3449), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3438), 27, + ACTIONS(563), 3, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(565), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [112345] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4289), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4287), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(596), 18, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, + anon_sym_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, + [109981] = 6, + ACTIONS(4538), 1, anon_sym_and, + ACTIONS(4540), 1, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [112388] = 4, + ACTIONS(4542), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3611), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3614), 5, - anon_sym_as, + ACTIONS(4243), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 27, + ACTIONS(4238), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -201125,13 +202854,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -201143,32 +202871,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112433] = 5, - ACTIONS(4512), 1, + [110030] = 5, + ACTIONS(4538), 1, anon_sym_and, - ACTIONS(4514), 1, + ACTIONS(4540), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4205), 5, + ACTIONS(4251), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4203), 27, + ACTIONS(4249), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -201185,34 +202913,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112480] = 3, + [110077] = 4, + ACTIONS(4538), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4213), 5, + ACTIONS(4255), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4211), 29, + ACTIONS(4253), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -201225,36 +202954,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112523] = 4, - ACTIONS(4512), 1, + [110122] = 7, + ACTIONS(4534), 1, + anon_sym_as, + ACTIONS(4536), 1, + anon_sym_if, + ACTIONS(4538), 1, anon_sym_and, + ACTIONS(4540), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4213), 5, + ACTIONS(4266), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4211), 28, + ACTIONS(4264), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -201266,34 +202998,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112568] = 7, - ACTIONS(4508), 1, + [110173] = 7, + ACTIONS(4534), 1, anon_sym_as, - ACTIONS(4510), 1, + ACTIONS(4536), 1, anon_sym_if, - ACTIONS(4512), 1, + ACTIONS(4538), 1, anon_sym_and, - ACTIONS(4514), 1, + ACTIONS(4540), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4341), 5, + ACTIONS(4274), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4339), 25, + ACTIONS(4272), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -201310,22 +203042,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112619] = 4, + [110224] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3654), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3657), 5, + ACTIONS(4236), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3652), 27, + ACTIONS(4234), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -201351,19 +203082,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112664] = 3, + [110267] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 5, + ACTIONS(4255), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 29, + ACTIONS(4253), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -201372,7 +203104,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -201391,19 +203122,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112707] = 3, + [110310] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4326), 5, + ACTIONS(4118), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4324), 29, + ACTIONS(4110), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -201412,7 +203144,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -201431,28 +203162,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112750] = 3, + [110353] = 5, + ACTIONS(580), 1, + anon_sym_COLON_EQ, + ACTIONS(2165), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4306), 5, - anon_sym_as, + ACTIONS(565), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 29, + ACTIONS(563), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -201471,38 +203204,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112793] = 6, - ACTIONS(4504), 1, - anon_sym_and, - ACTIONS(4506), 1, - anon_sym_or, - ACTIONS(4519), 1, - anon_sym_as, + [110400] = 5, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, + ACTIONS(4036), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4372), 4, + ACTIONS(3468), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4367), 27, + ACTIONS(3457), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -201514,72 +203246,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112842] = 7, - ACTIONS(4508), 1, - anon_sym_as, - ACTIONS(4510), 1, - anon_sym_if, - ACTIONS(4512), 1, - anon_sym_and, - ACTIONS(4514), 1, - anon_sym_or, + [110447] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4356), 5, + ACTIONS(1201), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1204), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4354), 25, + ACTIONS(1402), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1199), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112893] = 3, + [110494] = 4, + ACTIONS(580), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3614), 5, - anon_sym_as, + ACTIONS(565), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 29, + ACTIONS(563), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -201598,28 +203329,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112936] = 3, + [110539] = 4, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4326), 5, + ACTIONS(3468), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4324), 29, + ACTIONS(3457), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -201638,25 +203370,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112979] = 3, + [110584] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4099), 5, + ACTIONS(4262), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4091), 29, + ACTIONS(4260), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -201678,37 +203410,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113022] = 5, - ACTIONS(4504), 1, - anon_sym_and, - ACTIONS(4506), 1, - anon_sym_or, + [110627] = 8, + ACTIONS(4409), 1, + anon_sym_DOT, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4419), 1, + anon_sym_STAR_STAR, + ACTIONS(4421), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4205), 5, - anon_sym_as, + STATE(2548), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4108), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4203), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4106), 24, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -201720,80 +203455,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113069] = 15, - ACTIONS(4392), 1, + [110680] = 8, + ACTIONS(4409), 1, anon_sym_DOT, - ACTIONS(4394), 1, + ACTIONS(4411), 1, anon_sym_LPAREN, - ACTIONS(4402), 1, + ACTIONS(4419), 1, anon_sym_STAR_STAR, - ACTIONS(4404), 1, + ACTIONS(4421), 1, anon_sym_LBRACK, - ACTIONS(4410), 1, - anon_sym_PIPE, - ACTIONS(4412), 1, - anon_sym_AMP, - ACTIONS(4414), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4089), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4396), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4398), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4408), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2518), 2, + STATE(2548), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4406), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4087), 14, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [113136] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4261), 5, - anon_sym_as, + ACTIONS(4076), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4259), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4074), 24, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -201812,19 +203500,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113179] = 3, + [110733] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3591), 5, + ACTIONS(4374), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3589), 29, + ACTIONS(4372), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -201833,7 +203522,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -201852,61 +203540,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113222] = 7, - ACTIONS(3630), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3598), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3628), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3593), 12, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(3595), 12, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [113273] = 3, + [110776] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4201), 5, + ACTIONS(4378), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4199), 29, + ACTIONS(4376), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -201936,25 +203580,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113316] = 3, + [110819] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4281), 5, + ACTIONS(4382), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4279), 29, + ACTIONS(4380), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -201976,61 +203620,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113359] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3598), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3601), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3595), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3593), 15, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [113406] = 3, + [110862] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4330), 5, + ACTIONS(4386), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 29, + ACTIONS(4384), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -202039,7 +203642,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -202058,19 +203660,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113449] = 3, + [110905] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4245), 5, + ACTIONS(4390), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4243), 29, + ACTIONS(4388), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -202079,7 +203682,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -202098,19 +203700,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113492] = 3, + [110948] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 5, + ACTIONS(4290), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4247), 29, + ACTIONS(4288), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -202119,7 +203722,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -202138,19 +203740,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113535] = 3, + [110991] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4310), 5, + ACTIONS(4394), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4308), 29, + ACTIONS(4392), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -202159,7 +203762,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -202178,19 +203780,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113578] = 3, + [111034] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4334), 5, + ACTIONS(4407), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4332), 29, + ACTIONS(4405), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -202199,7 +203802,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -202218,99 +203820,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113621] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4289), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4287), 29, + [111077] = 15, + ACTIONS(4409), 1, anon_sym_DOT, + ACTIONS(4411), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, + ACTIONS(4419), 1, anon_sym_STAR_STAR, + ACTIONS(4421), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(4427), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(4429), 1, anon_sym_AMP, + ACTIONS(4431), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [113664] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4273), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(4072), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4271), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4413), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4415), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4425), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2548), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4423), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4070), 14, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113707] = 3, + [111144] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4269), 5, + ACTIONS(4321), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4267), 29, + ACTIONS(4319), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -202319,7 +203894,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -202338,25 +203912,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113750] = 3, + [111187] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4277), 5, + ACTIONS(4282), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4275), 29, + ACTIONS(4280), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -202378,28 +203952,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113793] = 3, + [111230] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4302), 5, + ACTIONS(4294), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4300), 29, + ACTIONS(4292), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -202418,17 +203992,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113836] = 3, + [111273] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4213), 5, + ACTIONS(4286), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4211), 29, + ACTIONS(4284), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -202458,28 +204032,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113879] = 3, + [111316] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4345), 5, + ACTIONS(3468), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4343), 29, + ACTIONS(3457), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -202498,17 +204072,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113922] = 3, + [111359] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4099), 5, + ACTIONS(3975), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4091), 29, + ACTIONS(3961), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -202538,17 +204112,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113965] = 3, + [111402] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4310), 5, + ACTIONS(4329), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4308), 29, + ACTIONS(4327), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -202578,17 +204152,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114008] = 3, + [111445] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4314), 5, + ACTIONS(4370), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4312), 29, + ACTIONS(4368), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -202618,21 +204192,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114051] = 3, + [111488] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4289), 5, + ACTIONS(3641), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3644), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4287), 29, + ACTIONS(3639), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -202658,68 +204233,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114094] = 3, + [111533] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3591), 13, + ACTIONS(4118), 5, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3589), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - 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, - [114137] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4281), 5, - anon_sym_as, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4279), 29, + ACTIONS(4110), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -202738,20 +204273,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114180] = 3, + [111576] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4273), 5, + ACTIONS(3463), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3468), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4271), 29, + ACTIONS(3457), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -202759,7 +204296,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -202778,20 +204314,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114223] = 3, + [111621] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4277), 5, + ACTIONS(3663), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3666), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4275), 29, + ACTIONS(3661), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -202799,7 +204337,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -202818,28 +204355,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114266] = 3, + [111666] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4302), 5, - anon_sym_as, + ACTIONS(3468), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4300), 29, + ACTIONS(4545), 4, + sym__newline, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + ACTIONS(3457), 26, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -202858,17 +204396,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114309] = 3, + [111711] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4345), 5, + ACTIONS(565), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4343), 29, + ACTIONS(563), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -202898,28 +204436,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114352] = 3, + [111754] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4334), 5, + ACTIONS(4247), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4332), 29, + ACTIONS(4245), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -202938,17 +204476,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114395] = 3, + [111797] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4384), 5, + ACTIONS(4298), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4382), 29, + ACTIONS(4296), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -202978,21 +204516,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114438] = 4, - ACTIONS(4504), 1, - anon_sym_and, + [111840] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4213), 5, + ACTIONS(4309), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4211), 28, + ACTIONS(4307), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -203001,12 +204538,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -203019,25 +204556,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114483] = 3, + [111883] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4384), 5, + ACTIONS(4313), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4382), 29, + ACTIONS(4311), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -203059,28 +204596,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114526] = 3, + [111926] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4318), 5, - anon_sym_as, + ACTIONS(565), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4316), 29, + ACTIONS(563), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -203099,68 +204636,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114569] = 3, + [111969] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3642), 13, + ACTIONS(4262), 5, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3640), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - 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, - [114612] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4352), 5, - anon_sym_as, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4350), 29, + ACTIONS(4260), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -203179,110 +204676,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114655] = 3, + [112012] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3622), 13, + ACTIONS(4247), 5, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3620), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - 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, - [114698] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3598), 2, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3601), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3595), 14, + ACTIONS(4245), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3593), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114745] = 3, + [112055] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4322), 5, - anon_sym_as, + ACTIONS(4374), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4320), 29, + ACTIONS(4372), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -203301,17 +204756,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114788] = 3, + [112098] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4352), 5, + ACTIONS(4378), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4350), 29, + ACTIONS(4376), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -203341,17 +204796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114831] = 3, + [112141] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4261), 5, + ACTIONS(4382), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4259), 29, + ACTIONS(4380), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -203381,28 +204836,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114874] = 3, + [112184] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4201), 5, - anon_sym_as, + ACTIONS(4386), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4199), 29, + ACTIONS(4384), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -203421,28 +204876,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114917] = 3, + [112227] = 8, + ACTIONS(4409), 1, + anon_sym_DOT, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4419), 1, + anon_sym_STAR_STAR, + ACTIONS(4421), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4265), 5, - anon_sym_as, + STATE(2548), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4263), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4038), 24, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -203461,126 +204921,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114960] = 3, + [112280] = 11, + ACTIONS(4409), 1, + anon_sym_DOT, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4419), 1, + anon_sym_STAR_STAR, + ACTIONS(4421), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 13, + ACTIONS(4040), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4413), 2, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, + anon_sym_SLASH, + ACTIONS(4425), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + STATE(2548), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4423), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(4038), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + 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, - ACTIONS(3624), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - 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, - [115003] = 21, - ACTIONS(366), 1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [112339] = 21, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(4522), 1, + ACTIONS(4547), 1, sym_identifier, - ACTIONS(4526), 1, + ACTIONS(4551), 1, anon_sym_COLON, - ACTIONS(4528), 1, + ACTIONS(4553), 1, anon_sym_class, - ACTIONS(4530), 1, + ACTIONS(4555), 1, anon_sym_api, - ACTIONS(4534), 1, + ACTIONS(4559), 1, anon_sym_enum, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3717), 1, + STATE(3699), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4532), 2, + ACTIONS(4557), 2, anon_sym_struct, anon_sym_union, - STATE(2615), 2, + STATE(2620), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(101), 4, + ACTIONS(103), 4, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - ACTIONS(4524), 5, + ACTIONS(4549), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_await, - [115082] = 3, + [112418] = 8, + ACTIONS(4409), 1, + anon_sym_DOT, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4419), 1, + anon_sym_STAR_STAR, + ACTIONS(4421), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4269), 5, - anon_sym_as, + STATE(2548), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4040), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4267), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4038), 24, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -203599,37 +205072,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115125] = 3, + [112471] = 10, + ACTIONS(4409), 1, + anon_sym_DOT, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4419), 1, + anon_sym_STAR_STAR, + ACTIONS(4421), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4322), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(4040), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4320), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4413), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2548), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4423), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 21, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -203639,228 +205119,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115168] = 3, + [112528] = 14, + ACTIONS(4409), 1, + anon_sym_DOT, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4419), 1, + anon_sym_STAR_STAR, + ACTIONS(4421), 1, + anon_sym_LBRACK, + ACTIONS(4429), 1, + anon_sym_AMP, + ACTIONS(4431), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4376), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4040), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4374), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4413), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4415), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4425), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2548), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4423), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115211] = 3, + [112593] = 13, + ACTIONS(4409), 1, + anon_sym_DOT, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4419), 1, + anon_sym_STAR_STAR, + ACTIONS(4421), 1, + anon_sym_LBRACK, + ACTIONS(4431), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4380), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4040), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4378), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4413), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4415), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4425), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2548), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4423), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 16, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115254] = 3, + [112656] = 12, + ACTIONS(4409), 1, + anon_sym_DOT, + ACTIONS(4411), 1, + anon_sym_LPAREN, + ACTIONS(4419), 1, + anon_sym_STAR_STAR, + ACTIONS(4421), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 13, + ACTIONS(4040), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4413), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4415), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(4425), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + STATE(2548), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4423), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(4038), 17, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + 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, - ACTIONS(3624), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - 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, - [115297] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [112717] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 13, + ACTIONS(4325), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3605), 21, - sym__newline, - anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4323), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - 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, - [115340] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3607), 13, - anon_sym_STAR, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3605), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [112760] = 21, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(4555), 1, + anon_sym_api, + ACTIONS(4561), 1, + sym_identifier, + ACTIONS(4565), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACK, - 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, - [115383] = 3, + ACTIONS(4567), 1, + anon_sym_class, + ACTIONS(4571), 1, + anon_sym_enum, + STATE(3000), 1, + sym__signedness, + STATE(3045), 1, + sym_int_type, + STATE(3204), 1, + sym__longness, + STATE(3411), 1, + sym_operator_name, + STATE(3683), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4213), 5, - anon_sym_as, + ACTIONS(367), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(369), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3804), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4569), 2, + anon_sym_struct, + anon_sym_union, + STATE(2620), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(103), 4, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + ACTIONS(4563), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + [112839] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4180), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4211), 29, + ACTIONS(4178), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -203879,70 +205407,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115426] = 3, + [112882] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4099), 5, - anon_sym_as, + ACTIONS(1201), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1204), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4091), 29, + ACTIONS(1402), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1199), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115469] = 5, - ACTIONS(851), 1, - anon_sym_COLON_EQ, - ACTIONS(2196), 1, - anon_sym_EQ, + [112929] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 4, + ACTIONS(4270), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 28, + ACTIONS(4268), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -203961,30 +205489,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115516] = 5, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, - ACTIONS(4017), 1, - anon_sym_EQ, + [112972] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 4, + ACTIONS(4278), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 28, + ACTIONS(4276), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -204003,28 +205529,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115563] = 7, - ACTIONS(4500), 1, - anon_sym_as, - ACTIONS(4502), 1, - anon_sym_if, - ACTIONS(4504), 1, - anon_sym_and, - ACTIONS(4506), 1, - anon_sym_or, + [113015] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4341), 4, + ACTIONS(4302), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4339), 26, + ACTIONS(4300), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, @@ -204036,6 +205556,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -204047,17 +205569,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115614] = 3, + [113058] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3642), 5, + ACTIONS(4317), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3640), 29, + ACTIONS(4315), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -204087,20 +205609,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115657] = 3, + [113101] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4261), 5, + ACTIONS(4220), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4259), 29, + ACTIONS(4218), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -204109,6 +205630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -204127,30 +205649,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115700] = 7, - ACTIONS(4500), 1, - anon_sym_as, - ACTIONS(4502), 1, - anon_sym_if, - ACTIONS(4504), 1, - anon_sym_and, - ACTIONS(4506), 1, - anon_sym_or, + [113144] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4356), 4, + ACTIONS(4212), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4354), 26, + ACTIONS(4210), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_async, - anon_sym_for, + anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -204160,6 +205676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -204171,28 +205689,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115751] = 3, + [113187] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4201), 5, + ACTIONS(4236), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4199), 29, + ACTIONS(4234), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -204211,28 +205729,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115794] = 3, + [113230] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4265), 5, + ACTIONS(4255), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4263), 29, + ACTIONS(4253), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -204251,29 +205769,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115837] = 4, + [113273] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 4, + ACTIONS(4118), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4536), 4, - sym__newline, - anon_sym_COLON, - anon_sym_with, - anon_sym_nogil, - ACTIONS(3438), 26, + ACTIONS(4110), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -204292,28 +205809,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115882] = 3, + [113316] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3614), 5, - anon_sym_as, + ACTIONS(4290), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 29, + ACTIONS(4288), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -204332,17 +205849,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115925] = 3, + [113359] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3614), 5, + ACTIONS(4394), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 29, + ACTIONS(4392), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -204372,57 +205889,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115968] = 3, + [113402] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3657), 5, - anon_sym_as, + ACTIONS(3632), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(3635), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3652), 29, + ACTIONS(3629), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(3625), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116011] = 3, + [113449] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3657), 5, + ACTIONS(4407), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3652), 29, + ACTIONS(4405), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -204452,24 +205971,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116054] = 3, + [113492] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4161), 4, + ACTIONS(4262), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4159), 30, - sym_string_start, + ACTIONS(4260), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -204492,28 +206011,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116097] = 3, + [113535] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3587), 5, + ACTIONS(4374), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3582), 29, + ACTIONS(4372), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -204532,20 +206051,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116140] = 3, + [113578] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 5, + ACTIONS(4378), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 29, + ACTIONS(4376), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -204554,6 +206072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -204572,20 +206091,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116183] = 3, + [113621] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4285), 5, + ACTIONS(4382), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4283), 29, + ACTIONS(4380), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -204594,6 +206112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -204612,28 +206131,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116226] = 3, + [113664] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3956), 5, + ACTIONS(4386), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3942), 29, + ACTIONS(4384), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -204652,25 +206171,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116269] = 3, + [113707] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3956), 5, - anon_sym_as, + ACTIONS(4390), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3942), 29, + ACTIONS(4388), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -204692,22 +206211,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116312] = 4, + [113750] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3584), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3587), 5, + ACTIONS(4290), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3582), 27, + ACTIONS(4288), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -204715,6 +206232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -204733,26 +206251,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116357] = 4, + [113793] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3444), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3449), 5, - anon_sym_as, + ACTIONS(3975), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 27, + ACTIONS(3961), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -204774,15 +206291,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116402] = 4, + [113836] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3582), 3, + ACTIONS(3639), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3587), 13, + ACTIONS(3644), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -204796,7 +206313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3459), 18, + ACTIONS(3478), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -204815,15 +206332,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [116447] = 4, + [113881] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1391), 3, + ACTIONS(3457), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1194), 13, + ACTIONS(3468), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -204837,7 +206354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1192), 18, + ACTIONS(3478), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -204856,142 +206373,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [116492] = 4, + [113926] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3611), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3614), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3609), 27, + ACTIONS(3650), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [116537] = 6, - ACTIONS(851), 1, - anon_sym_COLON_EQ, - ACTIONS(867), 1, - anon_sym_from, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(841), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(836), 5, + ACTIONS(3655), 13, anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(834), 25, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [116586] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3593), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(3598), 5, - anon_sym_as, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3595), 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_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [116631] = 3, + ACTIONS(3659), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [113971] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3622), 5, + ACTIONS(4394), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3620), 29, + ACTIONS(4392), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -205021,15 +206454,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116674] = 4, + [114014] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3438), 3, + ACTIONS(3661), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3449), 13, + ACTIONS(3666), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -205043,7 +206476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3459), 18, + ACTIONS(3670), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -205062,26 +206495,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [116719] = 4, + [114059] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3654), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3657), 5, - anon_sym_as, + ACTIONS(4298), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3652), 27, + ACTIONS(4296), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -205103,25 +206535,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116764] = 3, + [114102] = 7, + ACTIONS(4573), 1, + anon_sym_as, + ACTIONS(4575), 1, + anon_sym_if, + ACTIONS(4577), 1, + anon_sym_and, + ACTIONS(4579), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 5, - anon_sym_as, + ACTIONS(4226), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 29, + ACTIONS(4222), 25, 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_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -205130,8 +206568,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -205143,68 +206579,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116807] = 6, - ACTIONS(4096), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4101), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4099), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4093), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4091), 24, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [116856] = 3, + [114153] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4326), 5, - anon_sym_as, + ACTIONS(4236), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4324), 29, + ACTIONS(4234), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -205226,25 +206619,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116899] = 3, + [114196] = 6, + ACTIONS(4577), 1, + anon_sym_and, + ACTIONS(4579), 1, + anon_sym_or, + ACTIONS(4581), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4306), 5, - anon_sym_as, + ACTIONS(4243), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 29, + ACTIONS(4238), 26, 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_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -205253,8 +206651,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -205266,90 +206662,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116942] = 8, - ACTIONS(4392), 1, - anon_sym_DOT, - ACTIONS(4394), 1, - anon_sym_LPAREN, - ACTIONS(4402), 1, - anon_sym_STAR_STAR, - ACTIONS(4404), 1, - anon_sym_LBRACK, + [114245] = 5, + ACTIONS(4577), 1, + anon_sym_and, + ACTIONS(4579), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2518), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 4, + ACTIONS(4251), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4019), 24, - anon_sym_RPAREN, + ACTIONS(4249), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [116995] = 11, - ACTIONS(4392), 1, - anon_sym_DOT, - ACTIONS(4394), 1, - anon_sym_LPAREN, - ACTIONS(4402), 1, - anon_sym_STAR_STAR, - ACTIONS(4404), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4021), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4396), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4408), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2518), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4406), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4019), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - 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, @@ -205359,70 +206704,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117054] = 4, + [114292] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3609), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3614), 13, + ACTIONS(4255), 5, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3618), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [117099] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3593), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(3598), 5, - anon_sym_as, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3595), 27, + ACTIONS(4253), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -205441,39 +206744,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117144] = 8, - ACTIONS(4392), 1, - anon_sym_DOT, - ACTIONS(4394), 1, - anon_sym_LPAREN, - ACTIONS(4402), 1, - anon_sym_STAR_STAR, - ACTIONS(4404), 1, - anon_sym_LBRACK, + [114335] = 4, + ACTIONS(4577), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2518), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4021), 4, + ACTIONS(4255), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4019), 24, - anon_sym_RPAREN, + ACTIONS(4253), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -205486,20 +206785,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117197] = 3, + [114380] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3587), 5, + ACTIONS(4407), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3582), 29, + ACTIONS(4405), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -205508,6 +206806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -205526,222 +206825,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117240] = 10, - ACTIONS(4392), 1, - anon_sym_DOT, - ACTIONS(4394), 1, - anon_sym_LPAREN, - ACTIONS(4402), 1, - anon_sym_STAR_STAR, - ACTIONS(4404), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4021), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4396), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2518), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4406), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 21, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [117297] = 14, - ACTIONS(4392), 1, - anon_sym_DOT, - ACTIONS(4394), 1, - anon_sym_LPAREN, - ACTIONS(4402), 1, - anon_sym_STAR_STAR, - ACTIONS(4404), 1, - anon_sym_LBRACK, - ACTIONS(4412), 1, - anon_sym_AMP, - ACTIONS(4414), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4021), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4396), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4398), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4408), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2518), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4406), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [117362] = 13, - ACTIONS(4392), 1, - anon_sym_DOT, - ACTIONS(4394), 1, - anon_sym_LPAREN, - ACTIONS(4402), 1, - anon_sym_STAR_STAR, - ACTIONS(4404), 1, - anon_sym_LBRACK, - ACTIONS(4414), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4021), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4396), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4398), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4408), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2518), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4406), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 16, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [117425] = 12, - ACTIONS(4392), 1, - anon_sym_DOT, - ACTIONS(4394), 1, - anon_sym_LPAREN, - ACTIONS(4402), 1, - anon_sym_STAR_STAR, - ACTIONS(4404), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4021), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4396), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4398), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4408), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2518), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4406), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4019), 17, - anon_sym_RPAREN, - anon_sym_COMMA, + [114423] = 7, + ACTIONS(4573), 1, anon_sym_as, + ACTIONS(4575), 1, anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, + ACTIONS(4577), 1, anon_sym_and, + ACTIONS(4579), 1, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [117486] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4281), 5, - anon_sym_as, + ACTIONS(4266), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4279), 29, + ACTIONS(4264), 25, 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_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -205750,8 +206858,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -205763,66 +206869,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117529] = 4, + [114474] = 7, + ACTIONS(4573), 1, + anon_sym_as, + ACTIONS(4575), 1, + anon_sym_if, + ACTIONS(4577), 1, + anon_sym_and, + ACTIONS(4579), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(834), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(836), 13, + ACTIONS(4274), 5, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(867), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [117574] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3657), 5, - anon_sym_as, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3652), 29, + ACTIONS(4272), 25, 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_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -205831,8 +206902,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -205844,20 +206913,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117617] = 3, + [114525] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4265), 5, + ACTIONS(4321), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4263), 29, + ACTIONS(4319), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -205866,6 +206934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -205884,25 +206953,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117660] = 3, + [114568] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4330), 5, - anon_sym_as, + ACTIONS(4282), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 29, + ACTIONS(4280), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -205924,68 +206993,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117703] = 3, + [114611] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 5, + ACTIONS(3632), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(3635), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 29, + ACTIONS(3629), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(3625), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117746] = 3, + [114658] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4285), 5, + ACTIONS(4329), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4283), 29, + ACTIONS(4327), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -206004,31 +207075,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117789] = 6, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, - ACTIONS(3459), 1, - anon_sym_from, + [114701] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3444), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(3449), 5, + ACTIONS(4370), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 25, + ACTIONS(4368), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -206047,15 +207115,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117838] = 4, + [114744] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3595), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3598), 13, + ACTIONS(3623), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -206069,12 +207133,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3593), 18, + ACTIONS(3621), 21, sym__newline, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206088,286 +207155,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [117883] = 7, - ACTIONS(4538), 1, - anon_sym_as, - ACTIONS(4540), 1, - anon_sym_if, - ACTIONS(4542), 1, - anon_sym_and, - ACTIONS(4544), 1, - anon_sym_or, + [114787] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4255), 4, + ACTIONS(3648), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4251), 26, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [117934] = 6, - ACTIONS(4542), 1, - anon_sym_and, - ACTIONS(4544), 1, - anon_sym_or, - ACTIONS(4546), 1, - anon_sym_as, + ACTIONS(3646), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + 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, + [114830] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4372), 4, + ACTIONS(3674), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4367), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [117983] = 5, - ACTIONS(4542), 1, - anon_sym_and, - ACTIONS(4544), 1, - anon_sym_or, + ACTIONS(3672), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + 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, + [114873] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4205), 5, - anon_sym_as, + ACTIONS(3682), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4203), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [118030] = 4, - ACTIONS(4542), 1, - anon_sym_and, + ACTIONS(3680), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + 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, + [114916] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4213), 5, - anon_sym_as, + ACTIONS(3682), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4211), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [118075] = 7, - ACTIONS(4538), 1, - anon_sym_as, - ACTIONS(4540), 1, - anon_sym_if, - ACTIONS(4542), 1, - anon_sym_and, - ACTIONS(4544), 1, - anon_sym_or, + ACTIONS(3680), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + 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, + [114959] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4341), 4, + ACTIONS(3678), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4339), 26, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [118126] = 7, - ACTIONS(4538), 1, - anon_sym_as, - ACTIONS(4540), 1, - anon_sym_if, - ACTIONS(4542), 1, - anon_sym_and, - ACTIONS(4544), 1, - anon_sym_or, + ACTIONS(3676), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + 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, + [115002] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4356), 4, + ACTIONS(3678), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4354), 26, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [118177] = 3, + ACTIONS(3676), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + 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, + [115045] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4376), 5, + ACTIONS(4309), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4374), 29, + ACTIONS(4307), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -206386,28 +207435,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118220] = 3, + [115088] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4380), 5, + ACTIONS(4313), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4378), 29, + ACTIONS(4311), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -206426,17 +207475,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118263] = 3, + [115131] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4330), 5, + ACTIONS(4321), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 29, + ACTIONS(4319), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -206466,15 +207515,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118306] = 4, + [115174] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3652), 3, + ACTIONS(1402), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3657), 13, + ACTIONS(1201), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -206488,7 +207537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3661), 18, + ACTIONS(1199), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -206507,166 +207556,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [118351] = 3, + [115219] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4197), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4195), 30, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3652), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [118394] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1194), 2, + ACTIONS(3655), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1197), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1391), 14, + ACTIONS(3650), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1192), 15, - anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [118441] = 21, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(4530), 1, - anon_sym_api, - ACTIONS(4549), 1, - sym_identifier, - ACTIONS(4553), 1, - anon_sym_COLON, - ACTIONS(4555), 1, - anon_sym_class, - ACTIONS(4559), 1, - anon_sym_enum, - STATE(2986), 1, - sym__signedness, - STATE(3051), 1, - sym_int_type, - STATE(3185), 1, - sym__longness, - STATE(3434), 1, - sym_operator_name, - STATE(3678), 1, - sym_maybe_typed_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(362), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(364), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3821), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4557), 2, - anon_sym_struct, - anon_sym_union, - STATE(2615), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(101), 4, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - ACTIONS(4551), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - [118520] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4318), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4316), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -206687,27 +207597,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118563] = 3, + [115264] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4099), 4, + ACTIONS(4180), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4091), 29, + ACTIONS(4178), 29, + 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_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -206726,57 +207636,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118605] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1194), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1391), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1192), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [118651] = 3, + [115306] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 4, + ACTIONS(565), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 29, + ACTIONS(563), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -206806,16 +207675,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118693] = 3, + [115348] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3622), 4, + ACTIONS(4247), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3620), 29, + ACTIONS(4245), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -206845,16 +207714,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118735] = 3, + [115390] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4326), 4, + ACTIONS(4298), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4324), 29, + ACTIONS(4296), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -206884,27 +207753,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118777] = 3, + [115432] = 5, + ACTIONS(3659), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4306), 4, + ACTIONS(3652), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(3655), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4304), 29, + ACTIONS(3650), 26, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -206923,16 +207794,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118819] = 3, + [115478] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3614), 4, + ACTIONS(4325), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 29, + ACTIONS(4323), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -206962,20 +207833,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118861] = 4, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, + [115520] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3598), 4, + ACTIONS(4212), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3595), 28, + ACTIONS(4210), 29, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -206983,7 +207854,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -207002,25 +207872,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118905] = 6, - ACTIONS(4561), 1, - anon_sym_as, - ACTIONS(4564), 1, - anon_sym_and, - ACTIONS(4566), 1, - anon_sym_or, + [115562] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4372), 4, + ACTIONS(4270), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4367), 26, + ACTIONS(4268), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, @@ -207033,44 +207898,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [118953] = 4, - ACTIONS(851), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1194), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1391), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -207084,68 +207911,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118997] = 4, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, + [115604] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3598), 4, + ACTIONS(4278), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3595), 28, + ACTIONS(4276), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [119041] = 7, - ACTIONS(4564), 1, - anon_sym_and, - ACTIONS(4566), 1, - anon_sym_or, - ACTIONS(4568), 1, - anon_sym_as, - ACTIONS(4570), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4356), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4354), 25, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, @@ -207156,6 +207937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -207167,23 +207950,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119091] = 3, + [115646] = 4, + ACTIONS(580), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3657), 4, + ACTIONS(1201), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3652), 29, + ACTIONS(1402), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -207206,16 +207990,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119133] = 3, + [115690] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3591), 4, + ACTIONS(4302), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3589), 29, + ACTIONS(4300), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207245,44 +208029,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119175] = 9, - ACTIONS(3966), 1, - anon_sym_not, - ACTIONS(4187), 1, - anon_sym_is, - STATE(2055), 1, - aux_sym_comparison_operator_repeat1, + [115732] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4015), 2, + ACTIONS(4317), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4189), 2, anon_sym_LT, anon_sym_GT, - STATE(1871), 2, - sym__not_in, - sym__is_not, - ACTIONS(4171), 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(4013), 18, + ACTIONS(4315), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -207290,16 +208062,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [119229] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [115774] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4330), 4, + ACTIONS(4220), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 29, + ACTIONS(4218), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207329,27 +208107,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119271] = 3, + [115816] = 5, + ACTIONS(3478), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 4, + ACTIONS(3641), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(3644), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3624), 29, + ACTIONS(3639), 26, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -207368,27 +208148,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119313] = 3, + [115862] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4161), 4, + ACTIONS(4236), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4159), 29, - sym_string_start, + ACTIONS(4234), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -207407,16 +208187,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119355] = 3, + [115904] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4245), 4, + ACTIONS(4255), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4243), 29, + ACTIONS(4253), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207446,16 +208226,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119397] = 3, + [115946] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 4, + ACTIONS(4118), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4247), 29, + ACTIONS(4110), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207485,16 +208265,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119439] = 3, + [115988] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4310), 4, + ACTIONS(3644), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4308), 29, + ACTIONS(3639), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207524,29 +208304,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119481] = 5, - ACTIONS(3618), 1, - anon_sym_from, + [116030] = 4, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3611), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(3614), 4, + ACTIONS(3632), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 26, + ACTIONS(3629), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -207565,36 +208344,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119527] = 5, - ACTIONS(4564), 1, - anon_sym_and, - ACTIONS(4566), 1, - anon_sym_or, + [116074] = 4, + ACTIONS(580), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4205), 4, + ACTIONS(1201), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4203), 27, + ACTIONS(1402), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -207606,30 +208384,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119573] = 3, + [116118] = 4, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4314), 4, + ACTIONS(3632), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4312), 29, + ACTIONS(3629), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -207645,27 +208424,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119615] = 3, + [116162] = 5, + ACTIONS(3478), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4289), 4, + ACTIONS(3463), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(3468), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4287), 29, + ACTIONS(3457), 26, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -207684,16 +208465,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119657] = 3, + [116208] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4334), 4, + ACTIONS(4262), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4332), 29, + ACTIONS(4260), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207723,18 +208504,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119699] = 4, - ACTIONS(4564), 1, - anon_sym_and, + [116250] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4213), 4, + ACTIONS(4374), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4211), 28, + ACTIONS(4372), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207751,6 +208530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -207763,16 +208543,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119743] = 3, + [116292] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3642), 4, + ACTIONS(4378), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3640), 29, + ACTIONS(4376), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207802,28 +208582,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119785] = 4, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, + [116334] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3598), 4, + ACTIONS(4382), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3595), 28, + ACTIONS(4380), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -207842,16 +208621,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119829] = 3, + [116376] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4269), 4, + ACTIONS(4386), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4267), 29, + ACTIONS(4384), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207881,16 +208660,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119871] = 3, + [116418] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4213), 4, + ACTIONS(4290), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4211), 29, + ACTIONS(4288), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207920,27 +208699,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119913] = 3, + [116460] = 4, + ACTIONS(580), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4261), 4, + ACTIONS(1201), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4259), 29, + ACTIONS(1402), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -207959,16 +208739,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119955] = 3, + [116504] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 4, + ACTIONS(4394), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3605), 29, + ACTIONS(4392), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207998,16 +208778,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119997] = 3, + [116546] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 4, + ACTIONS(4407), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3605), 29, + ACTIONS(4405), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -208037,24 +208817,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120039] = 4, - ACTIONS(851), 1, - anon_sym_COLON_EQ, + [116588] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1194), 4, + ACTIONS(4321), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1391), 28, + ACTIONS(4319), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -208077,28 +208856,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120083] = 4, - ACTIONS(851), 1, - anon_sym_COLON_EQ, + [116630] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1194), 4, + ACTIONS(4329), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1391), 28, + ACTIONS(4327), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -208117,16 +208895,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120127] = 3, + [116672] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3587), 4, + ACTIONS(4370), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3582), 29, + ACTIONS(4368), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -208156,28 +208934,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120169] = 4, - ACTIONS(851), 1, - anon_sym_COLON_EQ, + [116714] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 4, + ACTIONS(4309), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 28, + ACTIONS(4307), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -208196,28 +208973,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120213] = 4, - ACTIONS(3451), 1, - anon_sym_COLON_EQ, + [116756] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 4, + ACTIONS(4313), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 28, + ACTIONS(4311), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -208236,28 +209012,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120257] = 7, - ACTIONS(4564), 1, - anon_sym_and, - ACTIONS(4566), 1, - anon_sym_or, - ACTIONS(4568), 1, - anon_sym_as, - ACTIONS(4570), 1, - anon_sym_if, + [116798] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4341), 4, + ACTIONS(3975), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4339), 25, + ACTIONS(3961), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, @@ -208268,6 +209038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -208279,109 +209051,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120307] = 5, - ACTIONS(3661), 1, - anon_sym_from, + [116840] = 6, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3654), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(3657), 4, + ACTIONS(3632), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(3635), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3652), 26, + ACTIONS(3627), 5, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(3625), 12, + anon_sym_as, + anon_sym_if, + anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120353] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3598), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3595), 14, - anon_sym_DOT, + ACTIONS(3629), 12, anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3593), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [120399] = 3, + [116888] = 4, + ACTIONS(580), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4281), 4, + ACTIONS(565), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4279), 29, + ACTIONS(563), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -208400,27 +209133,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120441] = 3, + [116932] = 4, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4273), 4, + ACTIONS(3468), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4271), 29, + ACTIONS(3457), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -208439,16 +209173,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120483] = 3, + [116976] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4277), 4, + ACTIONS(3623), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4275), 29, + ACTIONS(3621), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -208478,16 +209212,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120525] = 3, + [117018] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4302), 4, + ACTIONS(4390), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4300), 29, + ACTIONS(4388), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -208517,16 +209251,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120567] = 3, + [117060] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4345), 4, + ACTIONS(3655), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4343), 29, + ACTIONS(3650), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -208556,16 +209290,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120609] = 3, + [117102] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4384), 4, + ACTIONS(3648), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4382), 29, + ACTIONS(3646), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -208595,29 +209329,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120651] = 5, - ACTIONS(3459), 1, - anon_sym_from, + [117144] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3584), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(3587), 4, + ACTIONS(4282), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3582), 26, + ACTIONS(4280), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -208636,16 +209368,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120697] = 3, + [117186] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4318), 4, + ACTIONS(3674), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4316), 29, + ACTIONS(3672), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -208675,29 +209407,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120739] = 5, - ACTIONS(3459), 1, - anon_sym_from, + [117228] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3444), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(3449), 4, + ACTIONS(3682), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 26, + ACTIONS(3680), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -208716,16 +209446,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120785] = 3, + [117270] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4352), 4, + ACTIONS(3682), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4350), 29, + ACTIONS(3680), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -208755,16 +209485,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120827] = 3, + [117312] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4322), 4, + ACTIONS(3678), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4320), 29, + ACTIONS(3676), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -208794,16 +209524,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120869] = 3, + [117354] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4201), 4, + ACTIONS(3678), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4199), 29, + ACTIONS(3676), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -208833,16 +209563,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120911] = 3, + [117396] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4265), 4, + ACTIONS(3666), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4263), 29, + ACTIONS(3661), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -208872,65 +209602,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120953] = 3, + [117438] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 4, + ACTIONS(3632), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(3635), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 29, + ACTIONS(3629), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [120995] = 6, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3598), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3628), 5, - anon_sym_DOT, + ACTIONS(3625), 15, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(3593), 12, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -208940,45 +209643,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(3595), 12, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [121043] = 3, + [117484] = 9, + ACTIONS(3985), 1, + anon_sym_not, + ACTIONS(4206), 1, + anon_sym_is, + STATE(2061), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4285), 4, + ACTIONS(4018), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4208), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4283), 29, + STATE(1868), 2, + sym__not_in, + sym__is_not, + ACTIONS(4190), 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(4016), 18, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -208986,28 +209688,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [121085] = 3, + [117538] = 7, + ACTIONS(4584), 1, + anon_sym_as, + ACTIONS(4586), 1, + anon_sym_if, + ACTIONS(4588), 1, + anon_sym_and, + ACTIONS(4590), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3956), 4, + ACTIONS(4226), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3942), 29, + ACTIONS(4222), 25, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, @@ -209018,8 +209720,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -209031,20 +209731,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121127] = 3, + [117588] = 6, + ACTIONS(4588), 1, + anon_sym_and, + ACTIONS(4590), 1, + anon_sym_or, + ACTIONS(4592), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4376), 4, + ACTIONS(4243), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4374), 29, + ACTIONS(4238), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, @@ -209057,8 +209762,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -209070,28 +209773,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121169] = 7, - ACTIONS(4564), 1, + [117636] = 5, + ACTIONS(4588), 1, anon_sym_and, - ACTIONS(4566), 1, + ACTIONS(4590), 1, anon_sym_or, - ACTIONS(4568), 1, - anon_sym_as, - ACTIONS(4570), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4255), 4, + ACTIONS(4251), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4251), 25, + ACTIONS(4249), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, @@ -209113,16 +209814,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121219] = 3, + [117682] = 4, + ACTIONS(4588), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4380), 4, + ACTIONS(4255), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4378), 29, + ACTIONS(4253), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -209139,7 +209842,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -209152,34 +209854,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121261] = 3, + [117726] = 7, + ACTIONS(4584), 1, + anon_sym_as, + ACTIONS(4586), 1, + anon_sym_if, + ACTIONS(4588), 1, + anon_sym_and, + ACTIONS(4590), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4197), 4, + ACTIONS(4266), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4195), 29, - sym_string_start, + ACTIONS(4264), 25, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -209191,22 +209897,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121303] = 3, + [117776] = 7, + ACTIONS(4584), 1, + anon_sym_as, + ACTIONS(4586), 1, + anon_sym_if, + ACTIONS(4588), 1, + anon_sym_and, + ACTIONS(4590), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 4, + ACTIONS(4274), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3624), 29, + ACTIONS(4272), 25, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, @@ -209217,8 +209929,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -209230,103 +209940,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121345] = 3, + [117826] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4330), 4, + ACTIONS(1201), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1204), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 28, + ACTIONS(1402), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1199), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121386] = 4, + [117872] = 5, + ACTIONS(3670), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3595), 3, + ACTIONS(3663), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(3666), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3661), 26, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3598), 13, - anon_sym_STAR, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3593), 16, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [121429] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [117918] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4289), 4, + ACTIONS(4294), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4287), 28, + ACTIONS(4292), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -209345,26 +210061,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121470] = 3, + [117960] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 4, + ACTIONS(4286), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3438), 28, + ACTIONS(4284), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -209383,37 +210100,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121511] = 7, - ACTIONS(4572), 1, - anon_sym_as, - ACTIONS(4574), 1, - anon_sym_if, - ACTIONS(4576), 1, - anon_sym_and, - ACTIONS(4578), 1, - anon_sym_or, + [118002] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4356), 4, + ACTIONS(3468), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4354), 24, + ACTIONS(3457), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -209425,16 +210139,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121560] = 3, + [118044] = 4, + ACTIONS(3470), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4285), 4, + ACTIONS(3632), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4283), 28, + ACTIONS(3629), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -209463,16 +210179,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121601] = 3, + [118088] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3956), 4, + ACTIONS(4309), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3942), 28, + ACTIONS(4307), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -209501,55 +210217,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121642] = 4, + [118129] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3582), 3, + ACTIONS(3682), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3680), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3587), 13, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3459), 16, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [121685] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [118170] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3598), 4, + ACTIONS(3682), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3595), 28, + ACTIONS(3680), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -209578,73 +210293,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121726] = 22, - ACTIONS(3677), 1, + [118211] = 22, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(4580), 1, + ACTIONS(4595), 1, sym_identifier, - ACTIONS(4582), 1, + ACTIONS(4597), 1, anon_sym_LPAREN, - ACTIONS(4584), 1, + ACTIONS(4599), 1, anon_sym_STAR, - ACTIONS(4586), 1, + ACTIONS(4601), 1, anon_sym_COLON, - ACTIONS(4588), 1, + ACTIONS(4603), 1, anon_sym_STAR_STAR, - ACTIONS(4590), 1, + ACTIONS(4605), 1, anon_sym_SLASH, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(4099), 1, + STATE(4081), 1, sym_c_type, - STATE(4771), 1, + STATE(4729), 1, sym_parameter, - STATE(4772), 1, + STATE(4754), 1, sym_tuple_pattern, - STATE(5194), 1, + STATE(5290), 1, sym_lambda_parameters, - STATE(5493), 1, + STATE(5438), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(4592), 2, + ACTIONS(4607), 2, anon_sym_const, anon_sym_volatile, - STATE(3553), 2, + STATE(3506), 2, sym_int_type, sym_function_pointer_type, - STATE(5023), 2, + STATE(5055), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(4993), 5, + STATE(4987), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [121805] = 3, + [118290] = 22, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4595), 1, + sym_identifier, + ACTIONS(4597), 1, + anon_sym_LPAREN, + ACTIONS(4599), 1, + anon_sym_STAR, + ACTIONS(4603), 1, + anon_sym_STAR_STAR, + ACTIONS(4605), 1, + anon_sym_SLASH, + ACTIONS(4609), 1, + anon_sym_COLON, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(4081), 1, + sym_c_type, + STATE(4729), 1, + sym_parameter, + STATE(4754), 1, + sym_tuple_pattern, + STATE(5434), 1, + sym_lambda_parameters, + STATE(5438), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4273), 4, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4607), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3506), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5055), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4987), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [118369] = 22, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4595), 1, + sym_identifier, + ACTIONS(4597), 1, + anon_sym_LPAREN, + ACTIONS(4599), 1, + anon_sym_STAR, + ACTIONS(4603), 1, + anon_sym_STAR_STAR, + ACTIONS(4605), 1, + anon_sym_SLASH, + ACTIONS(4611), 1, + anon_sym_COLON, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(4081), 1, + sym_c_type, + STATE(4729), 1, + sym_parameter, + STATE(4754), 1, + sym_tuple_pattern, + STATE(5426), 1, + sym_lambda_parameters, + STATE(5438), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4607), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3506), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5055), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4987), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [118448] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3678), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4271), 28, + ACTIONS(3676), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -209673,16 +210502,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121846] = 3, + [118489] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4277), 4, + ACTIONS(3678), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4275), 28, + ACTIONS(3676), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -209711,21 +210540,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121887] = 4, - ACTIONS(4576), 1, - anon_sym_and, + [118530] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4213), 4, + ACTIONS(3632), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4211), 27, + ACTIONS(3629), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -209733,11 +210559,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -209750,29 +210578,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121930] = 7, - ACTIONS(4572), 1, - anon_sym_as, - ACTIONS(4574), 1, - anon_sym_if, - ACTIONS(4576), 1, - anon_sym_and, - ACTIONS(4578), 1, - anon_sym_or, + [118571] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4255), 4, + ACTIONS(4294), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4251), 24, + ACTIONS(4292), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -209781,6 +210603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -209792,52 +210616,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121979] = 21, - ACTIONS(1134), 1, + [118612] = 21, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(4594), 1, + ACTIONS(4613), 1, sym_identifier, - ACTIONS(4596), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4598), 1, + ACTIONS(4617), 1, anon_sym_STAR, - ACTIONS(4600), 1, + ACTIONS(4619), 1, anon_sym_if, - ACTIONS(4602), 1, + ACTIONS(4621), 1, anon_sym_COLON, - ACTIONS(4604), 1, + ACTIONS(4623), 1, anon_sym_STAR_STAR, - ACTIONS(4606), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(4627), 1, anon_sym_DASH, - ACTIONS(4612), 1, + ACTIONS(4631), 1, anon_sym_LBRACE, - ACTIONS(4614), 1, + ACTIONS(4633), 1, sym_integer, - ACTIONS(4616), 1, + ACTIONS(4635), 1, sym_float, - STATE(3809), 1, + STATE(3824), 1, sym_string, - STATE(4060), 1, + STATE(4123), 1, sym_dotted_name, - STATE(4460), 1, + STATE(4397), 1, sym_case_pattern, - STATE(5349), 1, + STATE(5248), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4360), 2, + STATE(4461), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4610), 3, + ACTIONS(4629), 3, anon_sym__, sym_true, sym_false, - STATE(4066), 10, + STATE(4132), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -209848,73 +210672,55 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [122056] = 22, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4580), 1, - sym_identifier, - ACTIONS(4582), 1, - anon_sym_LPAREN, - ACTIONS(4584), 1, - anon_sym_STAR, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4590), 1, - anon_sym_SLASH, - ACTIONS(4618), 1, - anon_sym_COLON, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(4099), 1, - sym_c_type, - STATE(4771), 1, - sym_parameter, - STATE(4772), 1, - sym_tuple_pattern, - STATE(5459), 1, - sym_lambda_parameters, - STATE(5493), 1, - sym__parameters, + [118689] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4592), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3553), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5023), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(4993), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [122135] = 3, + ACTIONS(3661), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3666), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(3670), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [118732] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3591), 4, + ACTIONS(565), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3589), 28, + ACTIONS(563), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -209943,49 +210749,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122176] = 3, + [118773] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4322), 4, + ACTIONS(3632), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(3635), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4320), 28, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3625), 14, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(3629), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [122217] = 3, + [118818] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3622), 13, + ACTIONS(563), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(565), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -209999,13 +210811,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3620), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(596), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210019,58 +210828,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [122258] = 7, - ACTIONS(3630), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3598), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3628), 3, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3593), 12, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(3595), 12, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [122307] = 3, + [118861] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4269), 4, + ACTIONS(3468), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4267), 28, + ACTIONS(3457), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -210099,29 +210866,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122348] = 7, - ACTIONS(4572), 1, - anon_sym_as, - ACTIONS(4574), 1, - anon_sym_if, - ACTIONS(4576), 1, - anon_sym_and, - ACTIONS(4578), 1, - anon_sym_or, + [118902] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4341), 4, + ACTIONS(3655), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4339), 24, + ACTIONS(3650), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -210130,6 +210891,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -210141,16 +210904,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122397] = 3, + [118943] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4318), 4, + ACTIONS(3666), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4316), 28, + ACTIONS(3661), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -210179,19 +210942,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122438] = 3, + [118984] = 22, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4595), 1, + sym_identifier, + ACTIONS(4597), 1, + anon_sym_LPAREN, + ACTIONS(4599), 1, + anon_sym_STAR, + ACTIONS(4603), 1, + anon_sym_STAR_STAR, + ACTIONS(4605), 1, + anon_sym_SLASH, + ACTIONS(4637), 1, + anon_sym_COLON, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(4081), 1, + sym_c_type, + STATE(4729), 1, + sym_parameter, + STATE(4754), 1, + sym_tuple_pattern, + STATE(5228), 1, + sym_lambda_parameters, + STATE(5438), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4607), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3506), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5055), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4987), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [119063] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4213), 4, + ACTIONS(3632), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4211), 28, + ACTIONS(3629), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -210202,6 +211021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -210217,133 +211037,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122479] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(834), 3, - anon_sym_DOT, + [119104] = 22, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4595), 1, + sym_identifier, + ACTIONS(4597), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(836), 13, + ACTIONS(4599), 1, anon_sym_STAR, - anon_sym_GT_GT, + ACTIONS(4603), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(4605), 1, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(867), 16, - anon_sym_COMMA, + ACTIONS(4639), 1, 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, - [122522] = 4, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(4081), 1, + sym_c_type, + STATE(4729), 1, + sym_parameter, + STATE(4754), 1, + sym_tuple_pattern, + STATE(5438), 1, + sym__parameters, + STATE(5467), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1391), 3, - anon_sym_DOT, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4607), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3506), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5055), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4987), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [119183] = 22, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4595), 1, + sym_identifier, + ACTIONS(4597), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1194), 13, + ACTIONS(4599), 1, anon_sym_STAR, - anon_sym_GT_GT, + ACTIONS(4603), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(4605), 1, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1192), 16, - anon_sym_COMMA, + ACTIONS(4641), 1, anon_sym_COLON, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(4081), 1, + sym_c_type, + STATE(4729), 1, + sym_parameter, + STATE(4754), 1, + sym_tuple_pattern, + STATE(5438), 1, + sym__parameters, + STATE(5496), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4607), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3506), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5055), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4987), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [119262] = 7, + ACTIONS(3637), 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, - [122565] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3652), 3, + ACTIONS(3632), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3635), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3627), 3, anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3625), 12, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(3629), 12, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3657), 13, - anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3661), 16, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [122608] = 3, + [119311] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4201), 4, + ACTIONS(4325), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4199), 28, + ACTIONS(4323), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -210372,73 +211231,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122649] = 22, - ACTIONS(3677), 1, + [119352] = 22, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(4580), 1, + ACTIONS(4595), 1, sym_identifier, - ACTIONS(4582), 1, + ACTIONS(4597), 1, anon_sym_LPAREN, - ACTIONS(4584), 1, + ACTIONS(4599), 1, anon_sym_STAR, - ACTIONS(4588), 1, + ACTIONS(4603), 1, anon_sym_STAR_STAR, - ACTIONS(4590), 1, + ACTIONS(4605), 1, anon_sym_SLASH, - ACTIONS(4620), 1, + ACTIONS(4643), 1, anon_sym_COLON, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(4099), 1, + STATE(4081), 1, sym_c_type, - STATE(4771), 1, + STATE(4729), 1, sym_parameter, - STATE(4772), 1, + STATE(4754), 1, sym_tuple_pattern, - STATE(5247), 1, - sym_lambda_parameters, - STATE(5493), 1, + STATE(5438), 1, sym__parameters, + STATE(5447), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(4592), 2, + ACTIONS(4607), 2, anon_sym_const, anon_sym_volatile, - STATE(3553), 2, + STATE(3506), 2, sym_int_type, sym_function_pointer_type, - STATE(5023), 2, + STATE(5055), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(4993), 5, + STATE(4987), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [122728] = 3, + [119431] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4265), 4, + ACTIONS(4270), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4263), 28, + ACTIONS(4268), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -210467,16 +211326,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122769] = 3, + [119472] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4099), 4, + ACTIONS(4278), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4091), 28, + ACTIONS(4276), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -210505,92 +211364,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122810] = 3, + [119513] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 13, + ACTIONS(4247), 4, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3624), 19, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4245), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACK, - 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, - [122851] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3642), 13, - anon_sym_STAR, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3640), 19, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - 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, - [122892] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [119554] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4302), 4, + ACTIONS(4298), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4300), 28, + ACTIONS(4296), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -210619,88 +211440,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122933] = 22, - ACTIONS(3677), 1, + [119595] = 22, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(4580), 1, + ACTIONS(4595), 1, sym_identifier, - ACTIONS(4582), 1, + ACTIONS(4597), 1, anon_sym_LPAREN, - ACTIONS(4584), 1, + ACTIONS(4599), 1, anon_sym_STAR, - ACTIONS(4588), 1, + ACTIONS(4603), 1, anon_sym_STAR_STAR, - ACTIONS(4590), 1, + ACTIONS(4605), 1, anon_sym_SLASH, - ACTIONS(4622), 1, + ACTIONS(4645), 1, anon_sym_COLON, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(4099), 1, + STATE(4081), 1, sym_c_type, - STATE(4771), 1, + STATE(4729), 1, sym_parameter, - STATE(4772), 1, + STATE(4754), 1, sym_tuple_pattern, - STATE(5206), 1, + STATE(5315), 1, sym_lambda_parameters, - STATE(5493), 1, + STATE(5438), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4607), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3506), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5055), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4987), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [119674] = 22, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4595), 1, + sym_identifier, + ACTIONS(4597), 1, + anon_sym_LPAREN, + ACTIONS(4599), 1, + anon_sym_STAR, + ACTIONS(4603), 1, + anon_sym_STAR_STAR, + ACTIONS(4605), 1, + anon_sym_SLASH, + ACTIONS(4647), 1, + anon_sym_COLON, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(4081), 1, + sym_c_type, + STATE(4729), 1, + sym_parameter, + STATE(4754), 1, + sym_tuple_pattern, + STATE(5213), 1, + sym_lambda_parameters, + STATE(5438), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4607), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3506), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5055), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4987), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [119753] = 22, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4595), 1, + sym_identifier, + ACTIONS(4597), 1, + anon_sym_LPAREN, + ACTIONS(4599), 1, + anon_sym_STAR, + ACTIONS(4603), 1, + anon_sym_STAR_STAR, + ACTIONS(4605), 1, + anon_sym_SLASH, + ACTIONS(4649), 1, + anon_sym_COLON, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(4081), 1, + sym_c_type, + STATE(4729), 1, + sym_parameter, + STATE(4754), 1, + sym_tuple_pattern, + STATE(5350), 1, + sym_lambda_parameters, + STATE(5438), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(4592), 2, + ACTIONS(4607), 2, anon_sym_const, anon_sym_volatile, - STATE(3553), 2, + STATE(3506), 2, sym_int_type, sym_function_pointer_type, - STATE(5023), 2, + STATE(5055), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(4993), 5, + STATE(4987), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [123012] = 3, + [119832] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 13, + ACTIONS(3975), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3961), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3624), 19, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [119873] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3639), 3, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3644), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(3478), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [119916] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3650), 3, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LBRACK, + ACTIONS(3655), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(3659), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210714,73 +211727,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [123053] = 22, - ACTIONS(3677), 1, + [119959] = 22, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(4580), 1, + ACTIONS(4595), 1, sym_identifier, - ACTIONS(4582), 1, + ACTIONS(4597), 1, anon_sym_LPAREN, - ACTIONS(4584), 1, + ACTIONS(4599), 1, anon_sym_STAR, - ACTIONS(4588), 1, + ACTIONS(4603), 1, anon_sym_STAR_STAR, - ACTIONS(4590), 1, + ACTIONS(4605), 1, anon_sym_SLASH, - ACTIONS(4624), 1, + ACTIONS(4651), 1, anon_sym_COLON, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(4099), 1, + STATE(4081), 1, sym_c_type, - STATE(4771), 1, + STATE(4729), 1, sym_parameter, - STATE(4772), 1, + STATE(4754), 1, sym_tuple_pattern, - STATE(5341), 1, + STATE(5286), 1, sym_lambda_parameters, - STATE(5493), 1, + STATE(5438), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(4592), 2, + ACTIONS(4607), 2, anon_sym_const, anon_sym_volatile, - STATE(3553), 2, + STATE(3506), 2, sym_int_type, sym_function_pointer_type, - STATE(5023), 2, + STATE(5055), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(4993), 5, + STATE(4987), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [123132] = 3, + [120038] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4326), 4, + ACTIONS(4390), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4324), 28, + ACTIONS(4388), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -210809,16 +211822,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123173] = 3, + [120079] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3587), 4, + ACTIONS(4302), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3582), 28, + ACTIONS(4300), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -210847,16 +211860,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123214] = 3, + [120120] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4376), 4, + ACTIONS(4317), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4374), 28, + ACTIONS(4315), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -210885,18 +211898,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123255] = 3, + [120161] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3598), 4, + ACTIONS(4220), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3595), 28, + ACTIONS(4218), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -210904,7 +211918,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -210923,16 +211936,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123296] = 3, + [120202] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 4, + ACTIONS(4236), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4247), 28, + ACTIONS(4234), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -210961,73 +211974,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123337] = 22, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4580), 1, - sym_identifier, - ACTIONS(4582), 1, - anon_sym_LPAREN, - ACTIONS(4584), 1, - anon_sym_STAR, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4590), 1, - anon_sym_SLASH, - ACTIONS(4626), 1, - anon_sym_COLON, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(4099), 1, - sym_c_type, - STATE(4771), 1, - sym_parameter, - STATE(4772), 1, - sym_tuple_pattern, - STATE(5278), 1, - sym_lambda_parameters, - STATE(5493), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4592), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3553), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5023), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(4993), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [123416] = 3, + [120243] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4345), 4, + ACTIONS(4255), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4343), 28, + ACTIONS(4253), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -211056,16 +212012,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123457] = 3, + [120284] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3614), 4, + ACTIONS(4118), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3609), 28, + ACTIONS(4110), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -211094,23 +212050,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123498] = 3, + [120325] = 7, + ACTIONS(4653), 1, + anon_sym_as, + ACTIONS(4655), 1, + anon_sym_if, + ACTIONS(4657), 1, + anon_sym_and, + ACTIONS(4659), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3657), 4, + ACTIONS(4226), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3652), 28, + ACTIONS(4222), 24, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -211119,8 +212081,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -211132,21 +212092,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123539] = 3, + [120374] = 6, + ACTIONS(4657), 1, + anon_sym_and, + ACTIONS(4659), 1, + anon_sym_or, + ACTIONS(4661), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4334), 4, + ACTIONS(4243), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4332), 28, + ACTIONS(4238), 25, 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, @@ -211157,8 +212122,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -211170,168 +212133,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123580] = 22, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4580), 1, - sym_identifier, - ACTIONS(4582), 1, - anon_sym_LPAREN, - ACTIONS(4584), 1, - anon_sym_STAR, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4590), 1, - anon_sym_SLASH, - ACTIONS(4628), 1, - anon_sym_COLON, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(4099), 1, - sym_c_type, - STATE(4771), 1, - sym_parameter, - STATE(4772), 1, - sym_tuple_pattern, - STATE(5468), 1, - sym_lambda_parameters, - STATE(5493), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4592), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3553), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5023), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(4993), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [123659] = 22, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4580), 1, - sym_identifier, - ACTIONS(4582), 1, - anon_sym_LPAREN, - ACTIONS(4584), 1, - anon_sym_STAR, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4590), 1, - anon_sym_SLASH, - ACTIONS(4630), 1, - anon_sym_COLON, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(4099), 1, - sym_c_type, - STATE(4771), 1, - sym_parameter, - STATE(4772), 1, - sym_tuple_pattern, - STATE(5458), 1, - sym_lambda_parameters, - STATE(5493), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4592), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3553), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5023), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(4993), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [123738] = 3, + [120421] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3598), 4, + ACTIONS(3623), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3595), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [123779] = 3, + ACTIONS(3621), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + 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, + [120462] = 5, + ACTIONS(4657), 1, + anon_sym_and, + ACTIONS(4659), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4380), 4, + ACTIONS(4251), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4378), 28, + ACTIONS(4249), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -211347,8 +212200,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -211360,277 +212211,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123820] = 22, - ACTIONS(3677), 1, + [120507] = 22, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(4580), 1, + ACTIONS(4595), 1, sym_identifier, - ACTIONS(4582), 1, + ACTIONS(4597), 1, anon_sym_LPAREN, - ACTIONS(4584), 1, - anon_sym_STAR, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4590), 1, - anon_sym_SLASH, - ACTIONS(4632), 1, - anon_sym_COLON, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(4099), 1, - sym_c_type, - STATE(4771), 1, - sym_parameter, - STATE(4772), 1, - sym_tuple_pattern, - STATE(5244), 1, - sym_lambda_parameters, - STATE(5493), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4592), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3553), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5023), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(4993), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [123899] = 22, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4580), 1, - sym_identifier, - ACTIONS(4582), 1, - anon_sym_LPAREN, - ACTIONS(4584), 1, + ACTIONS(4599), 1, anon_sym_STAR, - ACTIONS(4588), 1, + ACTIONS(4603), 1, anon_sym_STAR_STAR, - ACTIONS(4590), 1, + ACTIONS(4605), 1, anon_sym_SLASH, - ACTIONS(4634), 1, + ACTIONS(4664), 1, anon_sym_COLON, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(4099), 1, + STATE(4081), 1, sym_c_type, - STATE(4771), 1, + STATE(4729), 1, sym_parameter, - STATE(4772), 1, + STATE(4754), 1, sym_tuple_pattern, - STATE(5293), 1, + STATE(5356), 1, sym_lambda_parameters, - STATE(5493), 1, + STATE(5438), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(4592), 2, + ACTIONS(4607), 2, anon_sym_const, anon_sym_volatile, - STATE(3553), 2, + STATE(3506), 2, sym_int_type, sym_function_pointer_type, - STATE(5023), 2, + STATE(5055), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(4993), 5, + STATE(4987), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [123978] = 3, + [120586] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4306), 4, + ACTIONS(3674), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4304), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [124019] = 22, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4580), 1, - sym_identifier, - ACTIONS(4582), 1, + ACTIONS(3672), 19, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(4584), 1, - anon_sym_STAR, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4590), 1, - anon_sym_SLASH, - ACTIONS(4636), 1, + anon_sym_COMMA, anon_sym_COLON, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(4099), 1, - sym_c_type, - STATE(4771), 1, - sym_parameter, - STATE(4772), 1, - sym_tuple_pattern, - STATE(5449), 1, - sym_lambda_parameters, - STATE(5493), 1, - sym__parameters, + anon_sym_EQ, + anon_sym_LBRACK, + 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, + [120627] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4592), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3553), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5023), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(4993), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [124098] = 22, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4580), 1, - sym_identifier, - ACTIONS(4582), 1, - anon_sym_LPAREN, - ACTIONS(4584), 1, + ACTIONS(3682), 13, anon_sym_STAR, - ACTIONS(4588), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(4590), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(4638), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(3680), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_COLON, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(4099), 1, - sym_c_type, - STATE(4771), 1, - sym_parameter, - STATE(4772), 1, - sym_tuple_pattern, - STATE(5307), 1, - sym_lambda_parameters, - STATE(5493), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4592), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3553), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5023), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(4993), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [124177] = 3, + anon_sym_EQ, + anon_sym_LBRACK, + 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, + [120668] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 13, + ACTIONS(3682), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -211644,7 +212362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3605), 19, + ACTIONS(3680), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -211664,130 +212382,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [124218] = 22, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4580), 1, - sym_identifier, - ACTIONS(4582), 1, - anon_sym_LPAREN, - ACTIONS(4584), 1, - anon_sym_STAR, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4590), 1, - anon_sym_SLASH, - ACTIONS(4640), 1, - anon_sym_COLON, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(4099), 1, - sym_c_type, - STATE(4771), 1, - sym_parameter, - STATE(4772), 1, - sym_tuple_pattern, - STATE(5370), 1, - sym_lambda_parameters, - STATE(5493), 1, - sym__parameters, + [120709] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4592), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3553), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5023), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(4993), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [124297] = 22, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4580), 1, - sym_identifier, - ACTIONS(4582), 1, + ACTIONS(3678), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(3676), 19, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(4584), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + 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, + [120750] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3678), 13, anon_sym_STAR, - ACTIONS(4588), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(4590), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(4642), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(3676), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_COLON, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(4099), 1, - sym_c_type, - STATE(4771), 1, - sym_parameter, - STATE(4772), 1, - sym_tuple_pattern, - STATE(5220), 1, - sym_lambda_parameters, - STATE(5493), 1, - sym__parameters, + anon_sym_EQ, + anon_sym_LBRACK, + 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, + [120791] = 4, + ACTIONS(4657), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4592), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3553), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5023), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(4993), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [124376] = 3, + ACTIONS(4255), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4253), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [120834] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3642), 4, + ACTIONS(4262), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3640), 28, + ACTIONS(4260), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -211816,112 +212535,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124417] = 4, + [120875] = 7, + ACTIONS(4653), 1, + anon_sym_as, + ACTIONS(4655), 1, + anon_sym_if, + ACTIONS(4657), 1, + anon_sym_and, + ACTIONS(4659), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3438), 3, + ACTIONS(4266), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4264), 24, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3449), 13, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3459), 16, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [124460] = 22, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4580), 1, - sym_identifier, - ACTIONS(4582), 1, - anon_sym_LPAREN, - ACTIONS(4584), 1, - anon_sym_STAR, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4590), 1, - anon_sym_SLASH, - ACTIONS(4644), 1, - anon_sym_COLON, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(4099), 1, - sym_c_type, - STATE(4771), 1, - sym_parameter, - STATE(4772), 1, - sym_tuple_pattern, - STATE(5230), 1, - sym_lambda_parameters, - STATE(5493), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4592), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3553), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5023), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(4993), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [124539] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [120924] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4261), 4, + ACTIONS(4374), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4259), 28, + ACTIONS(4372), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -211950,68 +212615,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124580] = 22, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4580), 1, - sym_identifier, - ACTIONS(4582), 1, - anon_sym_LPAREN, - ACTIONS(4584), 1, - anon_sym_STAR, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4590), 1, - anon_sym_SLASH, - ACTIONS(4646), 1, - anon_sym_COLON, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(4099), 1, - sym_c_type, - STATE(4771), 1, - sym_parameter, - STATE(4772), 1, - sym_tuple_pattern, - STATE(5333), 1, - sym_lambda_parameters, - STATE(5493), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4592), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3553), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5023), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(4993), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [124659] = 3, + [120965] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3591), 13, + ACTIONS(1402), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1201), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -212025,13 +212637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3589), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1199), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212045,16 +212654,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [124700] = 3, + [121008] = 21, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(4613), 1, + sym_identifier, + ACTIONS(4615), 1, + anon_sym_LPAREN, + ACTIONS(4617), 1, + anon_sym_STAR, + ACTIONS(4619), 1, + anon_sym_if, + ACTIONS(4623), 1, + anon_sym_STAR_STAR, + ACTIONS(4625), 1, + anon_sym_LBRACK, + ACTIONS(4627), 1, + anon_sym_DASH, + ACTIONS(4631), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + sym_integer, + ACTIONS(4635), 1, + sym_float, + ACTIONS(4666), 1, + anon_sym_COLON, + STATE(3824), 1, + sym_string, + STATE(4123), 1, + sym_dotted_name, + STATE(4397), 1, + sym_case_pattern, + STATE(5270), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4461), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(4629), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4132), 10, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + sym_none, + [121085] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3622), 4, + ACTIONS(4378), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3620), 28, + ACTIONS(4376), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -212083,73 +212748,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124741] = 22, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4580), 1, - sym_identifier, - ACTIONS(4582), 1, - anon_sym_LPAREN, - ACTIONS(4584), 1, - anon_sym_STAR, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4590), 1, - anon_sym_SLASH, - ACTIONS(4648), 1, - anon_sym_COLON, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(4099), 1, - sym_c_type, - STATE(4771), 1, - sym_parameter, - STATE(4772), 1, - sym_tuple_pattern, - STATE(5480), 1, - sym_lambda_parameters, - STATE(5493), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4592), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3553), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5023), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(4993), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [124820] = 3, + [121126] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4310), 4, + ACTIONS(4382), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4308), 28, + ACTIONS(4380), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -212178,16 +212786,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124861] = 3, + [121167] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 4, + ACTIONS(4386), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3624), 28, + ACTIONS(4384), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -212216,130 +212824,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124902] = 22, - ACTIONS(3677), 1, + [121208] = 22, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(4580), 1, + ACTIONS(4595), 1, sym_identifier, - ACTIONS(4582), 1, + ACTIONS(4597), 1, anon_sym_LPAREN, - ACTIONS(4584), 1, + ACTIONS(4599), 1, anon_sym_STAR, - ACTIONS(4588), 1, + ACTIONS(4603), 1, anon_sym_STAR_STAR, - ACTIONS(4590), 1, + ACTIONS(4605), 1, anon_sym_SLASH, - ACTIONS(4650), 1, + ACTIONS(4668), 1, anon_sym_COLON, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(4099), 1, + STATE(4081), 1, sym_c_type, - STATE(4771), 1, + STATE(4729), 1, sym_parameter, - STATE(4772), 1, + STATE(4754), 1, sym_tuple_pattern, - STATE(5486), 1, + STATE(5323), 1, sym_lambda_parameters, - STATE(5493), 1, + STATE(5438), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(4592), 2, + ACTIONS(4607), 2, anon_sym_const, anon_sym_volatile, - STATE(3553), 2, + STATE(3506), 2, sym_int_type, sym_function_pointer_type, - STATE(5023), 2, + STATE(5055), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(4993), 5, + STATE(4987), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [124981] = 22, - ACTIONS(3677), 1, + [121287] = 7, + ACTIONS(4653), 1, + anon_sym_as, + ACTIONS(4655), 1, + anon_sym_if, + ACTIONS(4657), 1, + anon_sym_and, + ACTIONS(4659), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4274), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4272), 24, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [121336] = 22, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(4580), 1, + ACTIONS(4595), 1, sym_identifier, - ACTIONS(4582), 1, + ACTIONS(4597), 1, anon_sym_LPAREN, - ACTIONS(4584), 1, + ACTIONS(4599), 1, anon_sym_STAR, - ACTIONS(4588), 1, + ACTIONS(4603), 1, anon_sym_STAR_STAR, - ACTIONS(4590), 1, + ACTIONS(4605), 1, anon_sym_SLASH, - ACTIONS(4652), 1, + ACTIONS(4670), 1, anon_sym_COLON, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(4099), 1, + STATE(4081), 1, sym_c_type, - STATE(4771), 1, + STATE(4729), 1, sym_parameter, - STATE(4772), 1, + STATE(4754), 1, sym_tuple_pattern, - STATE(5311), 1, - sym_lambda_parameters, - STATE(5493), 1, + STATE(5438), 1, sym__parameters, + STATE(5536), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(4592), 2, + ACTIONS(4607), 2, anon_sym_const, anon_sym_volatile, - STATE(3553), 2, + STATE(3506), 2, sym_int_type, sym_function_pointer_type, - STATE(5023), 2, + STATE(5055), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(4993), 5, + STATE(4987), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [125060] = 3, + [121415] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 4, + ACTIONS(4290), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(834), 28, + ACTIONS(4288), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -212368,72 +213018,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [125101] = 21, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(4594), 1, - sym_identifier, - ACTIONS(4596), 1, + [121456] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3457), 3, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(4598), 1, + anon_sym_LBRACK, + ACTIONS(3468), 13, anon_sym_STAR, - ACTIONS(4600), 1, - anon_sym_if, - ACTIONS(4604), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(4606), 1, - anon_sym_LBRACK, - ACTIONS(4608), 1, + anon_sym_AT, anon_sym_DASH, - ACTIONS(4612), 1, - anon_sym_LBRACE, - ACTIONS(4614), 1, - sym_integer, - ACTIONS(4616), 1, - sym_float, - ACTIONS(4654), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(3478), 16, + anon_sym_COMMA, anon_sym_COLON, - STATE(3809), 1, - sym_string, - STATE(4060), 1, - sym_dotted_name, - STATE(4460), 1, - sym_case_pattern, - STATE(5444), 1, - sym_if_clause, + 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, + [121499] = 22, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4595), 1, + sym_identifier, + ACTIONS(4597), 1, + anon_sym_LPAREN, + ACTIONS(4599), 1, + anon_sym_STAR, + ACTIONS(4603), 1, + anon_sym_STAR_STAR, + ACTIONS(4605), 1, + anon_sym_SLASH, + ACTIONS(4672), 1, + anon_sym_COLON, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(4081), 1, + sym_c_type, + STATE(4729), 1, + sym_parameter, + STATE(4754), 1, + sym_tuple_pattern, + STATE(5385), 1, + sym_lambda_parameters, + STATE(5438), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4360), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(4610), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4066), 10, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_splat_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - sym_none, - [125178] = 3, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4607), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3506), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5055), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4987), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [121578] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 4, + ACTIONS(4394), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3624), 28, + ACTIONS(4392), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -212462,73 +213152,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [125219] = 22, - ACTIONS(3677), 1, + [121619] = 22, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(4580), 1, + ACTIONS(4595), 1, sym_identifier, - ACTIONS(4582), 1, + ACTIONS(4597), 1, anon_sym_LPAREN, - ACTIONS(4584), 1, + ACTIONS(4599), 1, anon_sym_STAR, - ACTIONS(4588), 1, + ACTIONS(4603), 1, anon_sym_STAR_STAR, - ACTIONS(4590), 1, + ACTIONS(4605), 1, anon_sym_SLASH, - ACTIONS(4656), 1, + ACTIONS(4674), 1, anon_sym_COLON, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(4099), 1, + STATE(4081), 1, sym_c_type, - STATE(4771), 1, + STATE(4729), 1, sym_parameter, - STATE(4772), 1, + STATE(4754), 1, sym_tuple_pattern, - STATE(5335), 1, + STATE(5339), 1, sym_lambda_parameters, - STATE(5493), 1, + STATE(5438), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(4592), 2, + ACTIONS(4607), 2, anon_sym_const, anon_sym_volatile, - STATE(3553), 2, + STATE(3506), 2, sym_int_type, sym_function_pointer_type, - STATE(5023), 2, + STATE(5055), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(4993), 5, + STATE(4987), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [125298] = 3, + [121698] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4281), 4, + ACTIONS(4407), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4279), 28, + ACTIONS(4405), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -212557,17 +213247,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [125339] = 5, + [121739] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1194), 2, + ACTIONS(1201), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1197), 2, + ACTIONS(1204), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1192), 14, + ACTIONS(1199), 14, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -212582,7 +213272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1391), 14, + ACTIONS(1402), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -212597,26 +213287,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [125384] = 6, - ACTIONS(4576), 1, - anon_sym_and, - ACTIONS(4578), 1, - anon_sym_or, - ACTIONS(4658), 1, - anon_sym_as, + [121784] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4372), 4, + ACTIONS(3648), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4367), 25, + ACTIONS(3646), 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, @@ -212627,6 +213312,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -212638,16 +213325,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [125431] = 3, + [121825] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4314), 4, + ACTIONS(4321), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4312), 28, + ACTIONS(4319), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -212676,20 +213363,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [125472] = 5, - ACTIONS(4576), 1, + [121866] = 22, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4595), 1, + sym_identifier, + ACTIONS(4597), 1, + anon_sym_LPAREN, + ACTIONS(4599), 1, + anon_sym_STAR, + ACTIONS(4603), 1, + anon_sym_STAR_STAR, + ACTIONS(4605), 1, + anon_sym_SLASH, + ACTIONS(4676), 1, + anon_sym_COLON, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(4081), 1, + sym_c_type, + STATE(4729), 1, + sym_parameter, + STATE(4754), 1, + sym_tuple_pattern, + STATE(5352), 1, + sym_lambda_parameters, + STATE(5438), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4607), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3506), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5055), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4987), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [121945] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4329), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4327), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, - ACTIONS(4578), 1, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [121986] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4205), 4, + ACTIONS(4370), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4203), 26, + ACTIONS(4368), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -212705,6 +213483,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -212716,16 +213496,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [125517] = 3, + [122027] = 22, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4595), 1, + sym_identifier, + ACTIONS(4597), 1, + anon_sym_LPAREN, + ACTIONS(4599), 1, + anon_sym_STAR, + ACTIONS(4603), 1, + anon_sym_STAR_STAR, + ACTIONS(4605), 1, + anon_sym_SLASH, + ACTIONS(4678), 1, + anon_sym_COLON, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(4081), 1, + sym_c_type, + STATE(4729), 1, + sym_parameter, + STATE(4754), 1, + sym_tuple_pattern, + STATE(5438), 1, + sym__parameters, + STATE(5557), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4607), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3506), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5055), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4987), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [122106] = 22, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4595), 1, + sym_identifier, + ACTIONS(4597), 1, + anon_sym_LPAREN, + ACTIONS(4599), 1, + anon_sym_STAR, + ACTIONS(4603), 1, + anon_sym_STAR_STAR, + ACTIONS(4605), 1, + anon_sym_SLASH, + ACTIONS(4680), 1, + anon_sym_COLON, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(4081), 1, + sym_c_type, + STATE(4729), 1, + sym_parameter, + STATE(4754), 1, + sym_tuple_pattern, + STATE(5438), 1, + sym__parameters, + STATE(5488), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4607), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3506), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5055), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4987), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [122185] = 22, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4595), 1, + sym_identifier, + ACTIONS(4597), 1, + anon_sym_LPAREN, + ACTIONS(4599), 1, + anon_sym_STAR, + ACTIONS(4603), 1, + anon_sym_STAR_STAR, + ACTIONS(4605), 1, + anon_sym_SLASH, + ACTIONS(4682), 1, + anon_sym_COLON, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(4081), 1, + sym_c_type, + STATE(4729), 1, + sym_parameter, + STATE(4754), 1, + sym_tuple_pattern, + STATE(5438), 1, + sym__parameters, + STATE(5494), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4607), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3506), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5055), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4987), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [122264] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4352), 4, + ACTIONS(3632), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4350), 28, + ACTIONS(3629), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -212754,16 +213705,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [125558] = 3, + [122305] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 4, + ACTIONS(3623), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3605), 28, + ACTIONS(3621), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -212792,16 +213743,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [125599] = 3, + [122346] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 4, + ACTIONS(4313), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3605), 28, + ACTIONS(4311), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -212830,73 +213781,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [125640] = 22, - ACTIONS(3677), 1, + [122387] = 22, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(4580), 1, + ACTIONS(4595), 1, sym_identifier, - ACTIONS(4582), 1, + ACTIONS(4597), 1, anon_sym_LPAREN, - ACTIONS(4584), 1, + ACTIONS(4599), 1, anon_sym_STAR, - ACTIONS(4588), 1, + ACTIONS(4603), 1, anon_sym_STAR_STAR, - ACTIONS(4590), 1, + ACTIONS(4605), 1, anon_sym_SLASH, - ACTIONS(4661), 1, + ACTIONS(4684), 1, anon_sym_COLON, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(4099), 1, + STATE(4081), 1, sym_c_type, - STATE(4771), 1, + STATE(4729), 1, sym_parameter, - STATE(4772), 1, + STATE(4754), 1, sym_tuple_pattern, - STATE(5203), 1, + STATE(5298), 1, sym_lambda_parameters, - STATE(5493), 1, + STATE(5438), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(4592), 2, + ACTIONS(4607), 2, anon_sym_const, anon_sym_volatile, - STATE(3553), 2, + STATE(3506), 2, sym_int_type, sym_function_pointer_type, - STATE(5023), 2, + STATE(5055), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(4993), 5, + STATE(4987), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [125719] = 3, + [122466] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4245), 4, + ACTIONS(4282), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4243), 28, + ACTIONS(4280), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -212925,209 +213876,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [125760] = 22, - ACTIONS(3677), 1, + [122507] = 22, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(4580), 1, + ACTIONS(4595), 1, sym_identifier, - ACTIONS(4582), 1, + ACTIONS(4597), 1, anon_sym_LPAREN, - ACTIONS(4584), 1, + ACTIONS(4599), 1, anon_sym_STAR, - ACTIONS(4588), 1, + ACTIONS(4603), 1, anon_sym_STAR_STAR, - ACTIONS(4590), 1, + ACTIONS(4605), 1, anon_sym_SLASH, - ACTIONS(4663), 1, + ACTIONS(4686), 1, anon_sym_COLON, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(4099), 1, + STATE(4081), 1, sym_c_type, - STATE(4771), 1, + STATE(4729), 1, sym_parameter, - STATE(4772), 1, + STATE(4754), 1, sym_tuple_pattern, - STATE(5403), 1, + STATE(5438), 1, + sym__parameters, + STATE(5481), 1, sym_lambda_parameters, - STATE(5493), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4607), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3506), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5055), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4987), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [122586] = 22, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4595), 1, + sym_identifier, + ACTIONS(4597), 1, + anon_sym_LPAREN, + ACTIONS(4599), 1, + anon_sym_STAR, + ACTIONS(4603), 1, + anon_sym_STAR_STAR, + ACTIONS(4605), 1, + anon_sym_SLASH, + ACTIONS(4688), 1, + anon_sym_COLON, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(4081), 1, + sym_c_type, + STATE(4729), 1, + sym_parameter, + STATE(4754), 1, + sym_tuple_pattern, + STATE(5371), 1, + sym_lambda_parameters, + STATE(5438), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(4592), 2, + ACTIONS(4607), 2, anon_sym_const, anon_sym_volatile, - STATE(3553), 2, + STATE(3506), 2, sym_int_type, sym_function_pointer_type, - STATE(5023), 2, + STATE(5055), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(4993), 5, + STATE(4987), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [125839] = 5, + [122665] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3598), 2, + ACTIONS(4286), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3601), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3593), 14, + ACTIONS(4284), 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(3595), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [125884] = 4, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [122706] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3609), 3, + ACTIONS(3674), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3672), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3614), 13, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3618), 16, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [125927] = 22, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4580), 1, - sym_identifier, - ACTIONS(4582), 1, - anon_sym_LPAREN, - ACTIONS(4584), 1, - anon_sym_STAR, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4590), 1, - anon_sym_SLASH, - ACTIONS(4665), 1, - anon_sym_COLON, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(4099), 1, - sym_c_type, - STATE(4771), 1, - sym_parameter, - STATE(4772), 1, - sym_tuple_pattern, - STATE(5493), 1, - sym__parameters, - STATE(5549), 1, - sym_lambda_parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4592), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3553), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5023), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(4993), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [126006] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [122747] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4384), 4, + ACTIONS(3644), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4382), 28, + ACTIONS(3639), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -213156,11 +214104,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [126047] = 3, + [122788] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3629), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3632), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(3625), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [122831] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 13, + ACTIONS(3648), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -213174,7 +214161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3605), 19, + ACTIONS(3646), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -213194,156 +214181,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [126088] = 21, - ACTIONS(3677), 1, + [122872] = 21, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(4667), 1, + ACTIONS(4690), 1, sym_identifier, - ACTIONS(4669), 1, + ACTIONS(4692), 1, anon_sym_LPAREN, - ACTIONS(4671), 1, + ACTIONS(4694), 1, anon_sym_RPAREN, - ACTIONS(4673), 1, + ACTIONS(4696), 1, anon_sym_STAR, - ACTIONS(4675), 1, + ACTIONS(4698), 1, anon_sym_STAR_STAR, - ACTIONS(4677), 1, + ACTIONS(4700), 1, anon_sym_SLASH, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(4086), 1, + STATE(4005), 1, sym_c_type, - STATE(4694), 1, + STATE(4742), 1, sym_parameter, - STATE(4808), 1, + STATE(4908), 1, sym_tuple_pattern, - STATE(5284), 1, + STATE(5383), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(4592), 2, + ACTIONS(4607), 2, anon_sym_const, anon_sym_volatile, - STATE(3553), 2, + STATE(3506), 2, sym_int_type, sym_function_pointer_type, - STATE(4730), 2, + STATE(4748), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5118), 5, + STATE(5191), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [126164] = 20, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(3859), 1, - sym_identifier, - ACTIONS(4679), 1, - anon_sym_COLON, - ACTIONS(4681), 1, - anon_sym_namespace, - ACTIONS(4683), 1, - anon_sym_nogil, - STATE(2986), 1, - sym__signedness, - STATE(3051), 1, - sym_int_type, - STATE(3185), 1, - sym__longness, - STATE(3434), 1, - sym_operator_name, - STATE(3648), 1, - sym_maybe_typed_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(362), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(364), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3821), 2, - anon_sym_const, - anon_sym_volatile, - STATE(1214), 2, - sym_class_definition, - sym_cvar_def, - STATE(2930), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [126237] = 19, - ACTIONS(1291), 1, + [122948] = 19, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4702), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4706), 1, anon_sym_RPAREN, - ACTIONS(4691), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4722), 1, sym_float, - STATE(3855), 1, + STATE(3850), 1, sym_string, - STATE(4138), 1, + STATE(4151), 1, sym_dotted_name, - STATE(4445), 1, + STATE(4810), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4573), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4716), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4194), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -213354,100 +214288,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126308] = 19, - ACTIONS(1291), 1, + [123019] = 19, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4702), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(4707), 1, + ACTIONS(4724), 1, anon_sym_RPAREN, - STATE(3855), 1, - sym_string, - STATE(4138), 1, - sym_dotted_name, - STATE(4510), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4852), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(4699), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4141), 10, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_splat_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - sym_none, - [126379] = 19, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(4709), 1, - sym_identifier, - ACTIONS(4711), 1, - anon_sym_LPAREN, - ACTIONS(4713), 1, - anon_sym_STAR, - ACTIONS(4715), 1, - anon_sym_STAR_STAR, - ACTIONS(4717), 1, - anon_sym_LBRACK, - ACTIONS(4719), 1, - anon_sym_RBRACK, - ACTIONS(4721), 1, - anon_sym_DASH, - ACTIONS(4725), 1, - anon_sym_LBRACE, - ACTIONS(4727), 1, - sym_integer, - ACTIONS(4729), 1, - sym_float, - STATE(3971), 1, + STATE(3850), 1, sym_string, - STATE(4303), 1, + STATE(4151), 1, sym_dotted_name, - STATE(4571), 1, + STATE(4810), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4948), 2, + STATE(4573), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4723), 3, + ACTIONS(4716), 3, anon_sym__, sym_true, sym_false, - STATE(4305), 10, + STATE(4194), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -213458,76 +214340,23 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126450] = 20, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4582), 1, - anon_sym_LPAREN, - ACTIONS(4584), 1, - anon_sym_STAR, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4590), 1, - anon_sym_SLASH, - ACTIONS(4731), 1, - sym_identifier, - ACTIONS(4733), 1, - anon_sym_COLON, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(4099), 1, - sym_c_type, - STATE(4764), 1, - sym_tuple_pattern, - STATE(5079), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4592), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3553), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5023), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(4993), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [126523] = 5, + [123090] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4737), 2, + ACTIONS(4728), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2615), 2, + STATE(2620), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(4739), 5, + ACTIONS(4730), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - ACTIONS(4735), 21, + ACTIONS(4726), 21, anon_sym_print, anon_sym_match, anon_sym_async, @@ -213549,48 +214378,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, anon_sym_enum, - [126566] = 19, - ACTIONS(1291), 1, + [123133] = 19, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4702), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(4742), 1, + ACTIONS(4733), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(3850), 1, sym_string, - STATE(4138), 1, + STATE(4151), 1, sym_dotted_name, - STATE(4510), 1, + STATE(4810), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4573), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4716), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4194), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -213601,48 +214430,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126637] = 19, - ACTIONS(2220), 1, + [123204] = 19, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(2226), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4709), 1, + ACTIONS(4702), 1, sym_identifier, - ACTIONS(4711), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4713), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4715), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4721), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4725), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4727), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4729), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(4744), 1, - anon_sym_RBRACK, - STATE(3971), 1, + ACTIONS(4735), 1, + anon_sym_RPAREN, + STATE(3850), 1, sym_string, - STATE(4303), 1, + STATE(4151), 1, sym_dotted_name, - STATE(4571), 1, + STATE(4383), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4948), 2, + STATE(4573), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4723), 3, + ACTIONS(4716), 3, anon_sym__, sym_true, sym_false, - STATE(4305), 10, + STATE(4194), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -213653,48 +214482,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126708] = 19, - ACTIONS(1291), 1, + [123275] = 19, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4737), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4741), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4743), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4745), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4747), 1, + anon_sym_RBRACK, + ACTIONS(4749), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4753), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4755), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4757), 1, sym_float, - ACTIONS(4746), 1, - anon_sym_RPAREN, - STATE(3855), 1, + STATE(3869), 1, sym_string, - STATE(4138), 1, + STATE(4268), 1, sym_dotted_name, - STATE(4510), 1, + STATE(4398), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4743), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4751), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4269), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -213705,48 +214534,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126779] = 19, - ACTIONS(1291), 1, + [123346] = 19, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4702), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(4748), 1, + ACTIONS(4759), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(3850), 1, sym_string, - STATE(4138), 1, + STATE(4151), 1, sym_dotted_name, - STATE(4510), 1, + STATE(4484), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4573), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4716), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4194), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -213757,207 +214586,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126850] = 20, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4667), 1, - sym_identifier, - ACTIONS(4669), 1, - anon_sym_LPAREN, - ACTIONS(4673), 1, - anon_sym_STAR, - ACTIONS(4675), 1, - anon_sym_STAR_STAR, - ACTIONS(4677), 1, - anon_sym_SLASH, - ACTIONS(4750), 1, - anon_sym_RPAREN, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(4086), 1, - sym_c_type, - STATE(4808), 1, - sym_tuple_pattern, - STATE(5103), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4592), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3553), 2, - sym_int_type, - sym_function_pointer_type, - STATE(4730), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5118), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [126923] = 20, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(3859), 1, - sym_identifier, - ACTIONS(3861), 1, - anon_sym_class, - ACTIONS(4752), 1, - anon_sym_COLON, - ACTIONS(4754), 1, - anon_sym_namespace, - ACTIONS(4756), 1, - anon_sym_nogil, - STATE(2986), 1, - sym__signedness, - STATE(3051), 1, - sym_int_type, - STATE(3185), 1, - sym__longness, - STATE(3434), 1, - sym_operator_name, - STATE(3667), 1, - sym_maybe_typed_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(362), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(364), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3821), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2823), 2, - sym_class_definition, - sym_cvar_def, - STATE(2928), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [126996] = 20, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4667), 1, - sym_identifier, - ACTIONS(4669), 1, - anon_sym_LPAREN, - ACTIONS(4673), 1, - anon_sym_STAR, - ACTIONS(4675), 1, - anon_sym_STAR_STAR, - ACTIONS(4677), 1, - anon_sym_SLASH, - ACTIONS(4733), 1, - anon_sym_RPAREN, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(4086), 1, - sym_c_type, - STATE(4808), 1, - sym_tuple_pattern, - STATE(5103), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4592), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3553), 2, - sym_int_type, - sym_function_pointer_type, - STATE(4730), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5118), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [127069] = 19, - ACTIONS(1291), 1, + [123417] = 19, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4737), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4741), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4743), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4745), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4749), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4753), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4755), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4757), 1, sym_float, - ACTIONS(4758), 1, - anon_sym_RPAREN, - STATE(3855), 1, + ACTIONS(4761), 1, + anon_sym_RBRACK, + STATE(3869), 1, sym_string, - STATE(4138), 1, + STATE(4268), 1, sym_dotted_name, - STATE(4440), 1, + STATE(4487), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4743), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4751), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4269), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -213968,48 +214638,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127140] = 19, - ACTIONS(2220), 1, + [123488] = 19, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(2226), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4709), 1, + ACTIONS(4702), 1, sym_identifier, - ACTIONS(4711), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4713), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4715), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4721), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4725), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4727), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4729), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(4760), 1, - anon_sym_RBRACK, - STATE(3971), 1, + ACTIONS(4763), 1, + anon_sym_RPAREN, + STATE(3850), 1, sym_string, - STATE(4303), 1, + STATE(4151), 1, sym_dotted_name, - STATE(4404), 1, + STATE(4325), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4948), 2, + STATE(4573), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4723), 3, + ACTIONS(4716), 3, anon_sym__, sym_true, sym_false, - STATE(4305), 10, + STATE(4194), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -214020,48 +214690,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127211] = 19, - ACTIONS(1291), 1, + [123559] = 19, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4702), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(4762), 1, + ACTIONS(4765), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(3850), 1, sym_string, - STATE(4138), 1, + STATE(4151), 1, sym_dotted_name, - STATE(4433), 1, + STATE(4810), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4573), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4716), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4194), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -214072,48 +214742,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127282] = 19, - ACTIONS(1291), 1, + [123630] = 19, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4737), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4741), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4743), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4745), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4749), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4753), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4755), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4757), 1, sym_float, - ACTIONS(4764), 1, - anon_sym_RPAREN, - STATE(3855), 1, + ACTIONS(4767), 1, + anon_sym_RBRACK, + STATE(3869), 1, sym_string, - STATE(4138), 1, + STATE(4268), 1, sym_dotted_name, - STATE(4510), 1, + STATE(4491), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4743), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4751), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4269), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -214124,48 +214794,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127353] = 19, - ACTIONS(1291), 1, + [123701] = 19, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4702), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(4766), 1, + ACTIONS(4769), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(3850), 1, sym_string, - STATE(4138), 1, + STATE(4151), 1, sym_dotted_name, - STATE(4510), 1, + STATE(4810), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4573), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4716), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4194), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -214176,48 +214846,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127424] = 19, - ACTIONS(2220), 1, + [123772] = 19, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(4709), 1, + ACTIONS(4737), 1, sym_identifier, - ACTIONS(4711), 1, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4713), 1, + ACTIONS(4741), 1, anon_sym_STAR, - ACTIONS(4715), 1, + ACTIONS(4743), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, + ACTIONS(4745), 1, anon_sym_LBRACK, - ACTIONS(4721), 1, + ACTIONS(4749), 1, anon_sym_DASH, - ACTIONS(4725), 1, + ACTIONS(4753), 1, anon_sym_LBRACE, - ACTIONS(4727), 1, + ACTIONS(4755), 1, sym_integer, - ACTIONS(4729), 1, + ACTIONS(4757), 1, sym_float, - ACTIONS(4768), 1, + ACTIONS(4771), 1, anon_sym_RBRACK, - STATE(3971), 1, + STATE(3869), 1, sym_string, - STATE(4303), 1, + STATE(4268), 1, sym_dotted_name, - STATE(4571), 1, + STATE(4491), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4948), 2, + STATE(4743), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4723), 3, + ACTIONS(4751), 3, anon_sym__, sym_true, sym_false, - STATE(4305), 10, + STATE(4269), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -214228,48 +214898,101 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127495] = 19, - ACTIONS(1291), 1, + [123843] = 20, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4597), 1, + anon_sym_LPAREN, + ACTIONS(4599), 1, + anon_sym_STAR, + ACTIONS(4603), 1, + anon_sym_STAR_STAR, + ACTIONS(4605), 1, + anon_sym_SLASH, + ACTIONS(4773), 1, + sym_identifier, + ACTIONS(4775), 1, + anon_sym_COLON, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(4081), 1, + sym_c_type, + STATE(4957), 1, + sym_tuple_pattern, + STATE(5153), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4607), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3506), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5055), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4987), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [123916] = 19, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4702), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(4770), 1, + ACTIONS(4777), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(3850), 1, sym_string, - STATE(4138), 1, + STATE(4151), 1, sym_dotted_name, - STATE(4510), 1, + STATE(4810), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4573), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4716), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4194), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -214280,48 +215003,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127566] = 19, - ACTIONS(1291), 1, + [123987] = 19, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4702), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(4772), 1, + ACTIONS(4779), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(3850), 1, sym_string, - STATE(4138), 1, + STATE(4151), 1, sym_dotted_name, - STATE(4510), 1, + STATE(4810), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4573), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4716), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4194), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -214332,154 +215055,258 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127637] = 20, - ACTIONS(3677), 1, + [124058] = 20, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(4582), 1, + ACTIONS(4690), 1, + sym_identifier, + ACTIONS(4692), 1, anon_sym_LPAREN, - ACTIONS(4584), 1, + ACTIONS(4696), 1, anon_sym_STAR, - ACTIONS(4588), 1, + ACTIONS(4698), 1, anon_sym_STAR_STAR, - ACTIONS(4590), 1, + ACTIONS(4700), 1, anon_sym_SLASH, - ACTIONS(4731), 1, - sym_identifier, - ACTIONS(4750), 1, - anon_sym_COLON, - STATE(3080), 1, + ACTIONS(4781), 1, + anon_sym_RPAREN, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(4099), 1, + STATE(4005), 1, sym_c_type, - STATE(4764), 1, + STATE(4908), 1, sym_tuple_pattern, - STATE(5079), 1, + STATE(5162), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(4592), 2, + ACTIONS(4607), 2, anon_sym_const, anon_sym_volatile, - STATE(3553), 2, + STATE(3506), 2, sym_int_type, sym_function_pointer_type, - STATE(5023), 2, + STATE(4748), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(4993), 5, + STATE(5191), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [127710] = 20, - ACTIONS(123), 1, - anon_sym_class, - ACTIONS(366), 1, + [124131] = 19, + ACTIONS(1300), 1, + anon_sym_None, + ACTIONS(1312), 1, + sym_string_start, + ACTIONS(4702), 1, + sym_identifier, + ACTIONS(4704), 1, + anon_sym_LPAREN, + ACTIONS(4708), 1, + anon_sym_STAR, + ACTIONS(4710), 1, + anon_sym_STAR_STAR, + ACTIONS(4712), 1, + anon_sym_LBRACK, + ACTIONS(4714), 1, + anon_sym_DASH, + ACTIONS(4718), 1, + anon_sym_LBRACE, + ACTIONS(4720), 1, + sym_integer, + ACTIONS(4722), 1, + sym_float, + ACTIONS(4783), 1, + anon_sym_RPAREN, + STATE(3850), 1, + sym_string, + STATE(4151), 1, + sym_dotted_name, + STATE(4489), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4573), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(4716), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4194), 10, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + sym_none, + [124202] = 19, + ACTIONS(1300), 1, + anon_sym_None, + ACTIONS(1312), 1, + sym_string_start, + ACTIONS(4702), 1, + sym_identifier, + ACTIONS(4704), 1, + anon_sym_LPAREN, + ACTIONS(4708), 1, + anon_sym_STAR, + ACTIONS(4710), 1, + anon_sym_STAR_STAR, + ACTIONS(4712), 1, + anon_sym_LBRACK, + ACTIONS(4714), 1, + anon_sym_DASH, + ACTIONS(4718), 1, + anon_sym_LBRACE, + ACTIONS(4720), 1, + sym_integer, + ACTIONS(4722), 1, + sym_float, + ACTIONS(4785), 1, + anon_sym_RPAREN, + STATE(3850), 1, + sym_string, + STATE(4151), 1, + sym_dotted_name, + STATE(4363), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4573), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(4716), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4194), 10, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + sym_none, + [124273] = 20, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(4774), 1, + ACTIONS(3880), 1, + anon_sym_class, + ACTIONS(4787), 1, anon_sym_COLON, - ACTIONS(4776), 1, + ACTIONS(4789), 1, anon_sym_namespace, - ACTIONS(4778), 1, + ACTIONS(4791), 1, anon_sym_nogil, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3704), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - STATE(506), 2, + STATE(2853), 2, sym_class_definition, sym_cvar_def, - STATE(2929), 2, + STATE(2938), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [127783] = 19, - ACTIONS(1291), 1, + [124346] = 19, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4737), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4741), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4743), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4745), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4749), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4753), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4755), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4757), 1, sym_float, - ACTIONS(4780), 1, - anon_sym_RPAREN, - STATE(3855), 1, + ACTIONS(4793), 1, + anon_sym_RBRACK, + STATE(3869), 1, sym_string, - STATE(4138), 1, + STATE(4268), 1, sym_dotted_name, - STATE(4331), 1, + STATE(4491), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4743), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4751), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4269), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -214490,48 +215317,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127854] = 19, - ACTIONS(2220), 1, + [124417] = 19, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(4709), 1, + ACTIONS(4737), 1, sym_identifier, - ACTIONS(4711), 1, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4713), 1, + ACTIONS(4741), 1, anon_sym_STAR, - ACTIONS(4715), 1, + ACTIONS(4743), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, + ACTIONS(4745), 1, anon_sym_LBRACK, - ACTIONS(4721), 1, + ACTIONS(4749), 1, anon_sym_DASH, - ACTIONS(4725), 1, + ACTIONS(4753), 1, anon_sym_LBRACE, - ACTIONS(4727), 1, + ACTIONS(4755), 1, sym_integer, - ACTIONS(4729), 1, + ACTIONS(4757), 1, sym_float, - ACTIONS(4782), 1, + ACTIONS(4795), 1, anon_sym_RBRACK, - STATE(3971), 1, + STATE(3869), 1, sym_string, - STATE(4303), 1, + STATE(4268), 1, sym_dotted_name, - STATE(4332), 1, + STATE(4491), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4948), 2, + STATE(4743), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4723), 3, + ACTIONS(4751), 3, anon_sym__, sym_true, sym_false, - STATE(4305), 10, + STATE(4269), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -214542,48 +215369,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127925] = 19, - ACTIONS(1291), 1, + [124488] = 19, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4702), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(4784), 1, + ACTIONS(4797), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(3850), 1, sym_string, - STATE(4138), 1, + STATE(4151), 1, sym_dotted_name, - STATE(4457), 1, + STATE(4810), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4573), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4716), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4194), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -214594,48 +215421,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127996] = 19, - ACTIONS(2220), 1, + [124559] = 19, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(2226), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4709), 1, + ACTIONS(4702), 1, sym_identifier, - ACTIONS(4711), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4713), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4715), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4721), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4725), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4727), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4729), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(4786), 1, - anon_sym_RBRACK, - STATE(3971), 1, + ACTIONS(4799), 1, + anon_sym_RPAREN, + STATE(3850), 1, sym_string, - STATE(4303), 1, + STATE(4151), 1, sym_dotted_name, - STATE(4364), 1, + STATE(4437), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4948), 2, + STATE(4573), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4723), 3, + ACTIONS(4716), 3, anon_sym__, sym_true, sym_false, - STATE(4305), 10, + STATE(4194), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -214646,48 +215473,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128067] = 19, - ACTIONS(1291), 1, + [124630] = 19, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4737), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4741), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4743), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4745), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4749), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4753), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4755), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4757), 1, sym_float, - ACTIONS(4788), 1, - anon_sym_RPAREN, - STATE(3855), 1, + ACTIONS(4801), 1, + anon_sym_RBRACK, + STATE(3869), 1, sym_string, - STATE(4138), 1, + STATE(4268), 1, sym_dotted_name, - STATE(4355), 1, + STATE(4438), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4743), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4751), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4269), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -214698,48 +215525,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128138] = 19, - ACTIONS(1291), 1, + [124701] = 19, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4737), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4741), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4743), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4745), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4749), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4753), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4755), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4757), 1, sym_float, - ACTIONS(4790), 1, - anon_sym_RPAREN, - STATE(3855), 1, + ACTIONS(4803), 1, + anon_sym_RBRACK, + STATE(3869), 1, sym_string, - STATE(4138), 1, + STATE(4268), 1, sym_dotted_name, - STATE(4510), 1, + STATE(4491), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4743), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4751), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4269), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -214750,48 +215577,101 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128209] = 19, - ACTIONS(2220), 1, + [124772] = 20, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4690), 1, + sym_identifier, + ACTIONS(4692), 1, + anon_sym_LPAREN, + ACTIONS(4696), 1, + anon_sym_STAR, + ACTIONS(4698), 1, + anon_sym_STAR_STAR, + ACTIONS(4700), 1, + anon_sym_SLASH, + ACTIONS(4775), 1, + anon_sym_RPAREN, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(4005), 1, + sym_c_type, + STATE(4908), 1, + sym_tuple_pattern, + STATE(5162), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4607), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3506), 2, + sym_int_type, + sym_function_pointer_type, + STATE(4748), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5191), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [124845] = 19, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(2226), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4709), 1, + ACTIONS(4702), 1, sym_identifier, - ACTIONS(4711), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4713), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4715), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4721), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4725), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4727), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4729), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(4792), 1, - anon_sym_RBRACK, - STATE(3971), 1, + ACTIONS(4805), 1, + anon_sym_RPAREN, + STATE(3850), 1, sym_string, - STATE(4303), 1, + STATE(4151), 1, sym_dotted_name, - STATE(4571), 1, + STATE(4810), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4948), 2, + STATE(4573), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4723), 3, + ACTIONS(4716), 3, anon_sym__, sym_true, sym_false, - STATE(4305), 10, + STATE(4194), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -214802,48 +215682,101 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128280] = 19, - ACTIONS(1291), 1, + [124916] = 20, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4597), 1, + anon_sym_LPAREN, + ACTIONS(4599), 1, + anon_sym_STAR, + ACTIONS(4603), 1, + anon_sym_STAR_STAR, + ACTIONS(4605), 1, + anon_sym_SLASH, + ACTIONS(4773), 1, + sym_identifier, + ACTIONS(4781), 1, + anon_sym_COLON, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(4081), 1, + sym_c_type, + STATE(4957), 1, + sym_tuple_pattern, + STATE(5153), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4607), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3506), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5055), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4987), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [124989] = 19, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4702), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(4794), 1, + ACTIONS(4807), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(3850), 1, sym_string, - STATE(4138), 1, + STATE(4151), 1, sym_dotted_name, - STATE(4510), 1, + STATE(4810), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4573), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4716), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4194), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -214854,48 +215787,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128351] = 19, - ACTIONS(2220), 1, + [125060] = 19, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(4709), 1, + ACTIONS(4737), 1, sym_identifier, - ACTIONS(4711), 1, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4713), 1, + ACTIONS(4741), 1, anon_sym_STAR, - ACTIONS(4715), 1, + ACTIONS(4743), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, + ACTIONS(4745), 1, anon_sym_LBRACK, - ACTIONS(4721), 1, + ACTIONS(4749), 1, anon_sym_DASH, - ACTIONS(4725), 1, + ACTIONS(4753), 1, anon_sym_LBRACE, - ACTIONS(4727), 1, + ACTIONS(4755), 1, sym_integer, - ACTIONS(4729), 1, + ACTIONS(4757), 1, sym_float, - ACTIONS(4796), 1, + ACTIONS(4809), 1, anon_sym_RBRACK, - STATE(3971), 1, + STATE(3869), 1, sym_string, - STATE(4303), 1, + STATE(4268), 1, sym_dotted_name, - STATE(4571), 1, + STATE(4491), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4948), 2, + STATE(4743), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4723), 3, + ACTIONS(4751), 3, anon_sym__, sym_true, sym_false, - STATE(4305), 10, + STATE(4269), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -214906,48 +215839,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128422] = 19, - ACTIONS(1291), 1, + [125131] = 19, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4702), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(4798), 1, + ACTIONS(4811), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(3850), 1, sym_string, - STATE(4138), 1, + STATE(4151), 1, sym_dotted_name, - STATE(4510), 1, + STATE(4810), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4573), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4716), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4194), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -214958,48 +215891,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128493] = 19, - ACTIONS(1291), 1, + [125202] = 19, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4702), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(4800), 1, + ACTIONS(4813), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(3850), 1, sym_string, - STATE(4138), 1, + STATE(4151), 1, sym_dotted_name, - STATE(4510), 1, + STATE(4377), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4573), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4716), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4194), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -215010,48 +215943,105 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128564] = 19, - ACTIONS(1291), 1, + [125273] = 24, + ACTIONS(1260), 1, + anon_sym_long, + ACTIONS(4815), 1, + sym_identifier, + ACTIONS(4817), 1, + anon_sym_LPAREN, + ACTIONS(4819), 1, + anon_sym_RPAREN, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(4827), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4829), 1, + anon_sym_operator, + STATE(2995), 1, + sym__signedness, + STATE(3010), 1, + sym_int_type, + STATE(3209), 1, + sym__longness, + STATE(3345), 1, + sym_function_pointer_type, + STATE(3430), 1, + sym_operator_name, + STATE(4185), 1, + sym_maybe_typed_name, + STATE(4394), 1, + sym_c_type, + STATE(4831), 1, + sym_type_index, + STATE(5207), 1, + sym_type_qualifier, + STATE(5230), 1, + sym__typedargslist, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1256), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1258), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4821), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4823), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(4831), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(1252), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [125354] = 19, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4702), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(4802), 1, + ACTIONS(4833), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(3850), 1, sym_string, - STATE(4138), 1, + STATE(4151), 1, sym_dotted_name, - STATE(4430), 1, + STATE(4810), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4573), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4716), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4194), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -215062,48 +216052,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128635] = 19, - ACTIONS(2220), 1, + [125425] = 19, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(4709), 1, + ACTIONS(4737), 1, sym_identifier, - ACTIONS(4711), 1, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4713), 1, + ACTIONS(4741), 1, anon_sym_STAR, - ACTIONS(4715), 1, + ACTIONS(4743), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, + ACTIONS(4745), 1, anon_sym_LBRACK, - ACTIONS(4721), 1, + ACTIONS(4749), 1, anon_sym_DASH, - ACTIONS(4725), 1, + ACTIONS(4753), 1, anon_sym_LBRACE, - ACTIONS(4727), 1, + ACTIONS(4755), 1, sym_integer, - ACTIONS(4729), 1, + ACTIONS(4757), 1, sym_float, - ACTIONS(4804), 1, + ACTIONS(4835), 1, anon_sym_RBRACK, - STATE(3971), 1, + STATE(3869), 1, sym_string, - STATE(4303), 1, + STATE(4268), 1, sym_dotted_name, - STATE(4431), 1, + STATE(4491), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4948), 2, + STATE(4743), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4723), 3, + ACTIONS(4751), 3, anon_sym__, sym_true, sym_false, - STATE(4305), 10, + STATE(4269), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -215114,48 +216104,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128706] = 19, - ACTIONS(1291), 1, + [125496] = 19, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4702), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(4806), 1, + ACTIONS(4837), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(3850), 1, sym_string, - STATE(4138), 1, + STATE(4151), 1, sym_dotted_name, - STATE(4435), 1, + STATE(4810), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4573), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4716), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4194), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -215166,48 +216156,154 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128777] = 19, - ACTIONS(1291), 1, + [125567] = 20, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(3878), 1, + sym_identifier, + ACTIONS(4839), 1, + anon_sym_COLON, + ACTIONS(4841), 1, + anon_sym_namespace, + ACTIONS(4843), 1, + anon_sym_nogil, + STATE(3000), 1, + sym__signedness, + STATE(3045), 1, + sym_int_type, + STATE(3204), 1, + sym__longness, + STATE(3411), 1, + sym_operator_name, + STATE(3697), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(367), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(369), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3804), 2, + anon_sym_const, + anon_sym_volatile, + STATE(1126), 2, + sym_class_definition, + sym_cvar_def, + STATE(2937), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [125640] = 20, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(3878), 1, + sym_identifier, + ACTIONS(4845), 1, + anon_sym_COLON, + ACTIONS(4847), 1, + anon_sym_namespace, + ACTIONS(4849), 1, + anon_sym_nogil, + STATE(3000), 1, + sym__signedness, + STATE(3045), 1, + sym_int_type, + STATE(3204), 1, + sym__longness, + STATE(3411), 1, + sym_operator_name, + STATE(3680), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(367), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(369), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3804), 2, + anon_sym_const, + anon_sym_volatile, + STATE(506), 2, + sym_class_definition, + sym_cvar_def, + STATE(2936), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [125713] = 19, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4702), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(4808), 1, + ACTIONS(4851), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(3850), 1, sym_string, - STATE(4138), 1, + STATE(4151), 1, sym_dotted_name, - STATE(4510), 1, + STATE(4481), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4573), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4716), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4194), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -215218,48 +216314,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128848] = 19, - ACTIONS(2220), 1, + [125784] = 19, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(4709), 1, + ACTIONS(4737), 1, sym_identifier, - ACTIONS(4711), 1, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4713), 1, + ACTIONS(4741), 1, anon_sym_STAR, - ACTIONS(4715), 1, + ACTIONS(4743), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, + ACTIONS(4745), 1, anon_sym_LBRACK, - ACTIONS(4721), 1, + ACTIONS(4749), 1, anon_sym_DASH, - ACTIONS(4725), 1, + ACTIONS(4753), 1, anon_sym_LBRACE, - ACTIONS(4727), 1, + ACTIONS(4755), 1, sym_integer, - ACTIONS(4729), 1, + ACTIONS(4757), 1, sym_float, - ACTIONS(4810), 1, + ACTIONS(4853), 1, anon_sym_RBRACK, - STATE(3971), 1, + STATE(3869), 1, sym_string, - STATE(4303), 1, + STATE(4268), 1, sym_dotted_name, - STATE(4571), 1, + STATE(4328), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4948), 2, + STATE(4743), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4723), 3, + ACTIONS(4751), 3, anon_sym__, sym_true, sym_false, - STATE(4305), 10, + STATE(4269), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -215270,48 +216366,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128919] = 19, - ACTIONS(1291), 1, + [125855] = 19, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4702), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(4812), 1, + ACTIONS(4855), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(3850), 1, sym_string, - STATE(4138), 1, + STATE(4151), 1, sym_dotted_name, - STATE(4510), 1, + STATE(4810), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4573), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4716), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4194), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -215322,48 +216418,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128990] = 19, - ACTIONS(2220), 1, + [125926] = 19, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(4709), 1, + ACTIONS(4737), 1, sym_identifier, - ACTIONS(4711), 1, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4713), 1, + ACTIONS(4741), 1, anon_sym_STAR, - ACTIONS(4715), 1, + ACTIONS(4743), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, + ACTIONS(4745), 1, anon_sym_LBRACK, - ACTIONS(4721), 1, + ACTIONS(4749), 1, anon_sym_DASH, - ACTIONS(4725), 1, + ACTIONS(4753), 1, anon_sym_LBRACE, - ACTIONS(4727), 1, + ACTIONS(4755), 1, sym_integer, - ACTIONS(4729), 1, + ACTIONS(4757), 1, sym_float, - ACTIONS(4814), 1, + ACTIONS(4857), 1, anon_sym_RBRACK, - STATE(3971), 1, + STATE(3869), 1, sym_string, - STATE(4303), 1, + STATE(4268), 1, sym_dotted_name, - STATE(4571), 1, + STATE(4491), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4948), 2, + STATE(4743), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4723), 3, + ACTIONS(4751), 3, anon_sym__, sym_true, sym_false, - STATE(4305), 10, + STATE(4269), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -215374,48 +216470,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [129061] = 19, - ACTIONS(1291), 1, + [125997] = 19, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4702), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(4816), 1, + ACTIONS(4859), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(3850), 1, sym_string, - STATE(4138), 1, + STATE(4151), 1, sym_dotted_name, - STATE(4510), 1, + STATE(4810), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4573), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4716), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4194), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -215426,48 +216522,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [129132] = 19, - ACTIONS(1291), 1, + [126068] = 19, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4685), 1, + ACTIONS(4702), 1, sym_identifier, - ACTIONS(4687), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(4818), 1, + ACTIONS(4861), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(3850), 1, sym_string, - STATE(4138), 1, + STATE(4151), 1, sym_dotted_name, - STATE(4510), 1, + STATE(4810), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4852), 2, + STATE(4573), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4699), 3, + ACTIONS(4716), 3, anon_sym__, sym_true, sym_false, - STATE(4141), 10, + STATE(4194), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -215478,48 +216574,46 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [129203] = 19, - ACTIONS(2220), 1, + [126139] = 18, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(2226), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(4709), 1, + ACTIONS(4737), 1, sym_identifier, - ACTIONS(4711), 1, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4713), 1, + ACTIONS(4741), 1, anon_sym_STAR, - ACTIONS(4715), 1, + ACTIONS(4743), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, + ACTIONS(4745), 1, anon_sym_LBRACK, - ACTIONS(4721), 1, + ACTIONS(4749), 1, anon_sym_DASH, - ACTIONS(4725), 1, + ACTIONS(4753), 1, anon_sym_LBRACE, - ACTIONS(4727), 1, + ACTIONS(4755), 1, sym_integer, - ACTIONS(4729), 1, + ACTIONS(4757), 1, sym_float, - ACTIONS(4820), 1, - anon_sym_RBRACK, - STATE(3971), 1, + STATE(3869), 1, sym_string, - STATE(4303), 1, + STATE(4268), 1, sym_dotted_name, - STATE(4571), 1, + STATE(4491), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4948), 2, + STATE(4743), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4723), 3, + ACTIONS(4751), 3, anon_sym__, sym_true, sym_false, - STATE(4305), 10, + STATE(4269), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -215530,1193 +216624,248 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [129274] = 19, - ACTIONS(123), 1, - anon_sym_class, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(3859), 1, - sym_identifier, - ACTIONS(4822), 1, - anon_sym_from, - ACTIONS(4824), 1, - anon_sym_COLON, - STATE(2986), 1, - sym__signedness, - STATE(3051), 1, - sym_int_type, - STATE(3185), 1, - sym__longness, - STATE(3434), 1, - sym_operator_name, - STATE(3704), 1, - sym_maybe_typed_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(362), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(364), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3821), 2, - anon_sym_const, - anon_sym_volatile, - STATE(495), 2, - sym_class_definition, - sym_cvar_def, - STATE(2929), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [129344] = 19, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4582), 1, - anon_sym_LPAREN, - ACTIONS(4584), 1, - anon_sym_STAR, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4590), 1, - anon_sym_SLASH, - ACTIONS(4731), 1, - sym_identifier, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(4099), 1, - sym_c_type, - STATE(4764), 1, - sym_tuple_pattern, - STATE(5079), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4592), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3553), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5023), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(4993), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [129414] = 18, - ACTIONS(3663), 1, - sym_identifier, - ACTIONS(3665), 1, - anon_sym_LPAREN, - ACTIONS(3667), 1, - anon_sym_pass, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4826), 1, - sym__dedent, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(3296), 1, - sym_c_type, - STATE(5473), 1, - sym_pass_statement, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3679), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2858), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(2931), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3560), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [129482] = 18, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(3859), 1, - sym_identifier, - ACTIONS(3871), 1, - anon_sym_cppclass, - ACTIONS(4828), 1, - sym__dedent, - STATE(2986), 1, - sym__signedness, - STATE(3051), 1, - sym_int_type, - STATE(3185), 1, - sym__longness, - STATE(3434), 1, - sym_operator_name, - STATE(3667), 1, - sym_maybe_typed_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(362), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(364), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3821), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2933), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(2662), 3, - sym_cvar_def, - sym_cppclass, - aux_sym__cppclass_suite_repeat1, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [129550] = 19, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(3859), 1, - sym_identifier, - ACTIONS(3861), 1, - anon_sym_class, - ACTIONS(4830), 1, - anon_sym_from, - ACTIONS(4832), 1, - anon_sym_COLON, - STATE(2986), 1, - sym__signedness, - STATE(3051), 1, - sym_int_type, - STATE(3185), 1, - sym__longness, - STATE(3434), 1, - sym_operator_name, - STATE(3667), 1, - sym_maybe_typed_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(362), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(364), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3821), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2798), 2, - sym_class_definition, - sym_cvar_def, - STATE(2928), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [129620] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1377), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1375), 26, - anon_sym_case, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_char, - anon_sym_short, - anon_sym_long, - anon_sym_const, - anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [129658] = 19, - ACTIONS(123), 1, + [126207] = 19, + ACTIONS(59), 1, anon_sym_class, - ACTIONS(366), 1, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(4834), 1, + ACTIONS(4863), 1, anon_sym_COLON, - ACTIONS(4836), 1, + ACTIONS(4865), 1, anon_sym_nogil, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3704), 1, + STATE(3697), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - STATE(535), 2, + STATE(1266), 2, sym_class_definition, sym_cvar_def, - STATE(2929), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [129728] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1385), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1383), 26, - anon_sym_case, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_char, - anon_sym_short, - anon_sym_long, - anon_sym_const, - anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [129766] = 18, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(3859), 1, - sym_identifier, - ACTIONS(3871), 1, - anon_sym_cppclass, - ACTIONS(4838), 1, - sym__dedent, - STATE(2986), 1, - sym__signedness, - STATE(3051), 1, - sym_int_type, - STATE(3185), 1, - sym__longness, - STATE(3434), 1, - sym_operator_name, - STATE(3667), 1, - sym_maybe_typed_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(362), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(364), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3821), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2933), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(2666), 3, - sym_cvar_def, - sym_cppclass, - aux_sym__cppclass_suite_repeat1, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [129834] = 18, - ACTIONS(3663), 1, - sym_identifier, - ACTIONS(3665), 1, - anon_sym_LPAREN, - ACTIONS(3667), 1, - anon_sym_pass, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4840), 1, - sym__dedent, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(3296), 1, - sym_c_type, - STATE(5456), 1, - sym_pass_statement, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3679), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2814), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(2931), 2, + STATE(2937), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3560), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129902] = 18, - ACTIONS(366), 1, + [126277] = 18, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, - sym_identifier, - ACTIONS(3871), 1, - anon_sym_cppclass, - ACTIONS(4842), 1, - sym__dedent, - STATE(2986), 1, - sym__signedness, - STATE(3051), 1, - sym_int_type, - STATE(3185), 1, - sym__longness, - STATE(3434), 1, - sym_operator_name, - STATE(3667), 1, - sym_maybe_typed_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(362), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(364), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3821), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2933), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(2669), 3, - sym_cvar_def, - sym_cppclass, - aux_sym__cppclass_suite_repeat1, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [129970] = 18, - ACTIONS(3663), 1, - sym_identifier, - ACTIONS(3665), 1, - anon_sym_LPAREN, - ACTIONS(3667), 1, - anon_sym_pass, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4844), 1, - sym__dedent, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(3296), 1, - sym_c_type, - STATE(5385), 1, - sym_pass_statement, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3679), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2893), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(2931), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3560), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [130038] = 18, - ACTIONS(4846), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(4855), 1, - anon_sym_operator, - ACTIONS(4864), 1, - anon_sym_long, - ACTIONS(4870), 1, + ACTIONS(3890), 1, anon_sym_cppclass, - ACTIONS(4873), 1, + ACTIONS(4867), 1, sym__dedent, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4858), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4861), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4867), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - STATE(2933), 2, + STATE(2945), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(4852), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2666), 3, + STATE(2675), 3, sym_cvar_def, sym_cppclass, aux_sym__cppclass_suite_repeat1, - ACTIONS(4849), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130106] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1389), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1387), 26, - anon_sym_case, + [126345] = 19, + ACTIONS(59), 1, anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_char, - anon_sym_short, - anon_sym_long, - anon_sym_const, - anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [130144] = 19, - ACTIONS(366), 1, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(3861), 1, - anon_sym_class, - ACTIONS(4875), 1, + ACTIONS(4869), 1, + anon_sym_from, + ACTIONS(4871), 1, anon_sym_COLON, - ACTIONS(4877), 1, - anon_sym_nogil, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3697), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - STATE(2848), 2, + STATE(1180), 2, sym_class_definition, sym_cvar_def, - STATE(2928), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [130214] = 18, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(3859), 1, - sym_identifier, - ACTIONS(3871), 1, - anon_sym_cppclass, - ACTIONS(4879), 1, - sym__dedent, - STATE(2986), 1, - sym__signedness, - STATE(3051), 1, - sym_int_type, - STATE(3185), 1, - sym__longness, - STATE(3434), 1, - sym_operator_name, - STATE(3667), 1, - sym_maybe_typed_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(362), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(364), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3821), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2933), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(2666), 3, - sym_cvar_def, - sym_cppclass, - aux_sym__cppclass_suite_repeat1, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [130282] = 18, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(3859), 1, - sym_identifier, - ACTIONS(3871), 1, - anon_sym_cppclass, - ACTIONS(4881), 1, - sym__dedent, - STATE(2986), 1, - sym__signedness, - STATE(3051), 1, - sym_int_type, - STATE(3185), 1, - sym__longness, - STATE(3434), 1, - sym_operator_name, - STATE(3667), 1, - sym_maybe_typed_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(362), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(364), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3821), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2933), 2, + STATE(2937), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2674), 3, - sym_cvar_def, - sym_cppclass, - aux_sym__cppclass_suite_repeat1, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [130350] = 18, - ACTIONS(1291), 1, - anon_sym_None, - ACTIONS(1301), 1, - sym_string_start, - ACTIONS(4685), 1, - sym_identifier, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4691), 1, - anon_sym_STAR, - ACTIONS(4693), 1, - anon_sym_STAR_STAR, - ACTIONS(4695), 1, - anon_sym_LBRACK, - ACTIONS(4697), 1, - anon_sym_DASH, - ACTIONS(4701), 1, - anon_sym_LBRACE, - ACTIONS(4703), 1, - sym_integer, - ACTIONS(4705), 1, - sym_float, - STATE(3855), 1, - sym_string, - STATE(4138), 1, - sym_dotted_name, - STATE(4510), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4852), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(4699), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4141), 10, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_splat_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - sym_none, - [130418] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1381), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1379), 26, - anon_sym_case, - anon_sym_class, - sym_identifier, + ACTIONS(103), 5, anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_char, - anon_sym_short, - anon_sym_long, - anon_sym_const, - anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130456] = 18, - ACTIONS(2220), 1, - anon_sym_None, - ACTIONS(2226), 1, - sym_string_start, - ACTIONS(4709), 1, - sym_identifier, - ACTIONS(4711), 1, - anon_sym_LPAREN, - ACTIONS(4713), 1, - anon_sym_STAR, - ACTIONS(4715), 1, - anon_sym_STAR_STAR, - ACTIONS(4717), 1, - anon_sym_LBRACK, - ACTIONS(4721), 1, - anon_sym_DASH, - ACTIONS(4725), 1, - anon_sym_LBRACE, - ACTIONS(4727), 1, - sym_integer, - ACTIONS(4729), 1, - sym_float, - STATE(3971), 1, - sym_string, - STATE(4303), 1, - sym_dotted_name, - STATE(4571), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4948), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(4723), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4305), 10, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_splat_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - sym_none, - [130524] = 18, - ACTIONS(366), 1, + [126415] = 18, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(3871), 1, + ACTIONS(3890), 1, anon_sym_cppclass, - ACTIONS(4883), 1, + ACTIONS(4873), 1, sym__dedent, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3667), 1, + STATE(3652), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - STATE(2933), 2, + STATE(2945), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2666), 3, + STATE(2675), 3, sym_cvar_def, sym_cppclass, aux_sym__cppclass_suite_repeat1, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [130592] = 19, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4667), 1, - sym_identifier, - ACTIONS(4669), 1, - anon_sym_LPAREN, - ACTIONS(4673), 1, - anon_sym_STAR, - ACTIONS(4675), 1, - anon_sym_STAR_STAR, - ACTIONS(4677), 1, - anon_sym_SLASH, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(4086), 1, - sym_c_type, - STATE(4808), 1, - sym_tuple_pattern, - STATE(5103), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4592), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3553), 2, - sym_int_type, - sym_function_pointer_type, - STATE(4730), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5118), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [130662] = 19, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(3859), 1, - sym_identifier, - ACTIONS(4885), 1, - anon_sym_from, - ACTIONS(4887), 1, - anon_sym_COLON, - STATE(2986), 1, - sym__signedness, - STATE(3051), 1, - sym_int_type, - STATE(3185), 1, - sym__longness, - STATE(3434), 1, - sym_operator_name, - STATE(3648), 1, - sym_maybe_typed_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(362), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(364), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3821), 2, - anon_sym_const, - anon_sym_volatile, - STATE(1108), 2, - sym_class_definition, - sym_cvar_def, - STATE(2930), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [130732] = 18, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(4594), 1, - sym_identifier, - ACTIONS(4596), 1, - anon_sym_LPAREN, - ACTIONS(4598), 1, - anon_sym_STAR, - ACTIONS(4604), 1, - anon_sym_STAR_STAR, - ACTIONS(4606), 1, - anon_sym_LBRACK, - ACTIONS(4608), 1, - anon_sym_DASH, - ACTIONS(4612), 1, - anon_sym_LBRACE, - ACTIONS(4614), 1, - sym_integer, - ACTIONS(4616), 1, - sym_float, - STATE(3809), 1, - sym_string, - STATE(4060), 1, - sym_dotted_name, - STATE(4460), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4360), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(4610), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4066), 10, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_splat_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - sym_none, - [130800] = 18, - ACTIONS(2118), 1, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [126483] = 18, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(2124), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(4889), 1, + ACTIONS(4875), 1, sym_identifier, - ACTIONS(4891), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4893), 1, + ACTIONS(4879), 1, anon_sym_STAR, - ACTIONS(4895), 1, + ACTIONS(4881), 1, anon_sym_STAR_STAR, - ACTIONS(4897), 1, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(4899), 1, + ACTIONS(4885), 1, anon_sym_DASH, - ACTIONS(4903), 1, + ACTIONS(4889), 1, anon_sym_LBRACE, - ACTIONS(4905), 1, + ACTIONS(4891), 1, sym_integer, - ACTIONS(4907), 1, + ACTIONS(4893), 1, sym_float, - STATE(3883), 1, + STATE(3976), 1, sym_string, - STATE(4288), 1, + STATE(4247), 1, sym_dotted_name, - STATE(4851), 1, + STATE(4776), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4947), 2, + STATE(4825), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4901), 3, + ACTIONS(4887), 3, anon_sym__, sym_true, sym_false, - STATE(4299), 10, + STATE(4248), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -216727,46 +216876,96 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [130868] = 18, - ACTIONS(1134), 1, + [126551] = 18, + ACTIONS(3762), 1, + sym_identifier, + ACTIONS(3764), 1, + anon_sym_LPAREN, + ACTIONS(3766), 1, + anon_sym_pass, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4895), 1, + sym__dedent, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(3310), 1, + sym_c_type, + STATE(5521), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(2899), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(2949), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3532), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [126619] = 18, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(4594), 1, + ACTIONS(4613), 1, sym_identifier, - ACTIONS(4596), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4598), 1, + ACTIONS(4617), 1, anon_sym_STAR, - ACTIONS(4604), 1, + ACTIONS(4623), 1, anon_sym_STAR_STAR, - ACTIONS(4606), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(4627), 1, anon_sym_DASH, - ACTIONS(4612), 1, + ACTIONS(4631), 1, anon_sym_LBRACE, - ACTIONS(4614), 1, + ACTIONS(4633), 1, sym_integer, - ACTIONS(4616), 1, + ACTIONS(4635), 1, sym_float, - STATE(3809), 1, + STATE(3824), 1, sym_string, - STATE(4060), 1, + STATE(4123), 1, sym_dotted_name, - STATE(4065), 1, + STATE(4124), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4360), 2, + STATE(4461), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4610), 3, + ACTIONS(4629), 3, anon_sym__, sym_true, sym_false, - STATE(4066), 10, + STATE(4132), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -216777,15 +216976,15 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [130936] = 3, + [126687] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1373), 3, + ACTIONS(1392), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1371), 26, + ACTIONS(1390), 26, anon_sym_case, anon_sym_class, sym_identifier, @@ -216812,223 +217011,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130974] = 23, - ACTIONS(1251), 1, - anon_sym_long, - ACTIONS(4909), 1, + [126725] = 18, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(4613), 1, sym_identifier, - ACTIONS(4911), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4913), 1, - anon_sym_RPAREN, - ACTIONS(4919), 1, + ACTIONS(4617), 1, + anon_sym_STAR, + ACTIONS(4623), 1, + anon_sym_STAR_STAR, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4627), 1, + anon_sym_DASH, + ACTIONS(4631), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + sym_integer, + ACTIONS(4635), 1, + sym_float, + STATE(3824), 1, + sym_string, + STATE(4123), 1, + sym_dotted_name, + STATE(4397), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4461), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(4629), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4132), 10, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + sym_none, + [126793] = 18, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3802), 1, anon_sym_operator, - STATE(2979), 1, + ACTIONS(3878), 1, + sym_identifier, + ACTIONS(3890), 1, + anon_sym_cppclass, + ACTIONS(4897), 1, + sym__dedent, + STATE(3000), 1, sym__signedness, - STATE(2998), 1, + STATE(3045), 1, sym_int_type, - STATE(3169), 1, + STATE(3204), 1, sym__longness, - STATE(3333), 1, - sym_function_pointer_type, - STATE(3429), 1, + STATE(3411), 1, sym_operator_name, - STATE(4277), 1, + STATE(3652), 1, sym_maybe_typed_name, - STATE(4425), 1, - sym_c_type, - STATE(4820), 1, - sym_type_index, - STATE(5400), 1, - sym_type_qualifier, - STATE(5441), 1, - sym__typedargslist, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(4923), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(1243), 3, + STATE(2945), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [131052] = 19, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(3859), 1, + STATE(2667), 3, + sym_cvar_def, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [126861] = 18, + ACTIONS(3762), 1, sym_identifier, - ACTIONS(4925), 1, - anon_sym_COLON, - ACTIONS(4927), 1, - anon_sym_nogil, - STATE(2986), 1, + ACTIONS(3764), 1, + anon_sym_LPAREN, + ACTIONS(3766), 1, + anon_sym_pass, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4899), 1, + sym__dedent, + STATE(3077), 1, sym__signedness, - STATE(3051), 1, - sym_int_type, - STATE(3185), 1, + STATE(3295), 1, sym__longness, - STATE(3434), 1, - sym_operator_name, - STATE(3648), 1, - sym_maybe_typed_name, + STATE(3310), 1, + sym_c_type, + STATE(5483), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3778), 2, anon_sym_const, anon_sym_volatile, - STATE(1113), 2, - sym_class_definition, - sym_cvar_def, - STATE(2930), 2, + STATE(2911), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(2949), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + STATE(3532), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131122] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1978), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1976), 25, - anon_sym_class, + [126929] = 18, + ACTIONS(4901), 1, sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, + ACTIONS(4910), 1, anon_sym_operator, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_char, - anon_sym_short, + ACTIONS(4919), 1, anon_sym_long, - anon_sym_const, - anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, + ACTIONS(4925), 1, anon_sym_cppclass, - anon_sym_fused, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [131159] = 3, + ACTIONS(4928), 1, + sym__dedent, + STATE(3000), 1, + sym__signedness, + STATE(3045), 1, + sym_int_type, + STATE(3204), 1, + sym__longness, + STATE(3411), 1, + sym_operator_name, + STATE(3652), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1460), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1458), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, + ACTIONS(4913), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(4916), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(4922), 2, anon_sym_const, anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, + STATE(2945), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(4907), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(2675), 3, + sym_cvar_def, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(4904), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131196] = 3, + [126997] = 18, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(3878), 1, + sym_identifier, + ACTIONS(3890), 1, + anon_sym_cppclass, + ACTIONS(4930), 1, + sym__dedent, + STATE(3000), 1, + sym__signedness, + STATE(3045), 1, + sym_int_type, + STATE(3204), 1, + sym__longness, + STATE(3411), 1, + sym_operator_name, + STATE(3652), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1464), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1462), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, + STATE(2945), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(2665), 3, + sym_cvar_def, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(103), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131233] = 3, + [127065] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1468), 3, + ACTIONS(1396), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1466), 25, + ACTIONS(1394), 26, + anon_sym_case, anon_sym_class, sym_identifier, anon_sym_api, @@ -217054,49 +217296,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131270] = 3, + [127103] = 19, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4690), 1, + sym_identifier, + ACTIONS(4692), 1, + anon_sym_LPAREN, + ACTIONS(4696), 1, + anon_sym_STAR, + ACTIONS(4698), 1, + anon_sym_STAR_STAR, + ACTIONS(4700), 1, + anon_sym_SLASH, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(4005), 1, + sym_c_type, + STATE(4908), 1, + sym_tuple_pattern, + STATE(5162), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1472), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1470), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(4607), 2, anon_sym_const, anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [131307] = 3, + STATE(3506), 2, + sym_int_type, + sym_function_pointer_type, + STATE(4748), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5191), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [127173] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1476), 3, + ACTIONS(1400), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1474), 25, + ACTIONS(1398), 26, + anon_sym_case, anon_sym_class, sym_identifier, anon_sym_api, @@ -217122,49 +217382,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131344] = 3, + [127211] = 19, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(3878), 1, + sym_identifier, + ACTIONS(3880), 1, + anon_sym_class, + ACTIONS(4932), 1, + anon_sym_from, + ACTIONS(4934), 1, + anon_sym_COLON, + STATE(3000), 1, + sym__signedness, + STATE(3045), 1, + sym_int_type, + STATE(3204), 1, + sym__longness, + STATE(3411), 1, + sym_operator_name, + STATE(3652), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1480), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1478), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, + STATE(2888), 2, + sym_class_definition, + sym_cvar_def, + STATE(2938), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(103), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131381] = 3, + [127281] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1484), 3, + ACTIONS(1388), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1482), 25, + ACTIONS(1386), 26, + anon_sym_case, anon_sym_class, sym_identifier, anon_sym_api, @@ -217190,219 +217468,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131418] = 3, + [127319] = 19, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(3878), 1, + sym_identifier, + ACTIONS(3880), 1, + anon_sym_class, + ACTIONS(4936), 1, + anon_sym_COLON, + ACTIONS(4938), 1, + anon_sym_nogil, + STATE(3000), 1, + sym__signedness, + STATE(3045), 1, + sym_int_type, + STATE(3204), 1, + sym__longness, + STATE(3411), 1, + sym_operator_name, + STATE(3652), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1512), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1510), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, + STATE(2835), 2, + sym_class_definition, + sym_cvar_def, + STATE(2938), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(103), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131455] = 3, + [127389] = 19, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(3878), 1, + sym_identifier, + ACTIONS(4940), 1, + anon_sym_COLON, + ACTIONS(4942), 1, + anon_sym_nogil, + STATE(3000), 1, + sym__signedness, + STATE(3045), 1, + sym_int_type, + STATE(3204), 1, + sym__longness, + STATE(3411), 1, + sym_operator_name, + STATE(3680), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1516), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1514), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, + STATE(536), 2, + sym_class_definition, + sym_cvar_def, + STATE(2936), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(103), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131492] = 3, + [127459] = 18, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(3878), 1, + sym_identifier, + ACTIONS(3890), 1, + anon_sym_cppclass, + ACTIONS(4944), 1, + sym__dedent, + STATE(3000), 1, + sym__signedness, + STATE(3045), 1, + sym_int_type, + STATE(3204), 1, + sym__longness, + STATE(3411), 1, + sym_operator_name, + STATE(3652), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1520), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1518), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, + STATE(2945), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(2675), 3, + sym_cvar_def, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(103), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131529] = 3, + [127527] = 19, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(3878), 1, + sym_identifier, + ACTIONS(4946), 1, + anon_sym_from, + ACTIONS(4948), 1, + anon_sym_COLON, + STATE(3000), 1, + sym__signedness, + STATE(3045), 1, + sym_int_type, + STATE(3204), 1, + sym__longness, + STATE(3411), 1, + sym_operator_name, + STATE(3680), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1522), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, + STATE(495), 2, + sym_class_definition, + sym_cvar_def, + STATE(2936), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(103), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131566] = 3, + [127597] = 18, + ACTIONS(3762), 1, + sym_identifier, + ACTIONS(3764), 1, + anon_sym_LPAREN, + ACTIONS(3766), 1, + anon_sym_pass, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4950), 1, + sym__dedent, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(3310), 1, + sym_c_type, + STATE(5334), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1528), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1526), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(3778), 2, anon_sym_const, anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, + STATE(2843), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(2949), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3532), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(103), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131603] = 3, + [127665] = 19, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4597), 1, + anon_sym_LPAREN, + ACTIONS(4599), 1, + anon_sym_STAR, + ACTIONS(4603), 1, + anon_sym_STAR_STAR, + ACTIONS(4605), 1, + anon_sym_SLASH, + ACTIONS(4773), 1, + sym_identifier, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(4081), 1, + sym_c_type, + STATE(4957), 1, + sym_tuple_pattern, + STATE(5153), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1532), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1530), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(4607), 2, anon_sym_const, anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [131640] = 3, + STATE(3506), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5055), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(4987), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [127735] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1536), 3, + ACTIONS(1384), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1534), 25, + ACTIONS(1382), 26, + anon_sym_case, anon_sym_class, sym_identifier, anon_sym_api, @@ -217428,49 +217807,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131677] = 3, + [127773] = 18, + ACTIONS(1300), 1, + anon_sym_None, + ACTIONS(1312), 1, + sym_string_start, + ACTIONS(4702), 1, + sym_identifier, + ACTIONS(4704), 1, + anon_sym_LPAREN, + ACTIONS(4708), 1, + anon_sym_STAR, + ACTIONS(4710), 1, + anon_sym_STAR_STAR, + ACTIONS(4712), 1, + anon_sym_LBRACK, + ACTIONS(4714), 1, + anon_sym_DASH, + ACTIONS(4718), 1, + anon_sym_LBRACE, + ACTIONS(4720), 1, + sym_integer, + ACTIONS(4722), 1, + sym_float, + STATE(3850), 1, + sym_string, + STATE(4151), 1, + sym_dotted_name, + STATE(4810), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1540), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1538), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, + STATE(4573), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(4716), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4194), 10, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + sym_none, + [127841] = 18, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3802), 1, anon_sym_operator, + ACTIONS(3878), 1, + sym_identifier, + ACTIONS(3890), 1, + anon_sym_cppclass, + ACTIONS(4952), 1, + sym__dedent, + STATE(3000), 1, + sym__signedness, + STATE(3045), 1, + sym_int_type, + STATE(3204), 1, + sym__longness, + STATE(3411), 1, + sym_operator_name, + STATE(3652), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, + STATE(2945), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(2684), 3, + sym_cvar_def, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(103), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131714] = 3, + [127909] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1544), 3, + ACTIONS(1985), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1542), 25, + ACTIONS(1983), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -217496,15 +217941,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131751] = 3, + [127946] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1548), 3, + ACTIONS(1655), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1546), 25, + ACTIONS(1653), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -217530,49 +217975,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131788] = 3, + [127983] = 18, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(3878), 1, + sym_identifier, + ACTIONS(4954), 1, + anon_sym_COLON, + STATE(3000), 1, + sym__signedness, + STATE(3045), 1, + sym_int_type, + STATE(3204), 1, + sym__longness, + STATE(3411), 1, + sym_operator_name, + STATE(3680), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1572), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1570), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, + STATE(550), 2, + sym_class_definition, + sym_cvar_def, + STATE(2936), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(103), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131825] = 3, + [128050] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1576), 3, + ACTIONS(1583), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1574), 25, + ACTIONS(1581), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -217598,83 +218058,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131862] = 3, + [128087] = 18, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(3878), 1, + sym_identifier, + ACTIONS(3880), 1, + anon_sym_class, + ACTIONS(4956), 1, + anon_sym_COLON, + STATE(3000), 1, + sym__signedness, + STATE(3045), 1, + sym_int_type, + STATE(3204), 1, + sym__longness, + STATE(3411), 1, + sym_operator_name, + STATE(3652), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1580), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1578), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, + STATE(2869), 2, + sym_class_definition, + sym_cvar_def, + STATE(2938), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(103), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131899] = 3, + [128154] = 19, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(4615), 1, + anon_sym_LPAREN, + ACTIONS(4625), 1, + anon_sym_LBRACK, + ACTIONS(4627), 1, + anon_sym_DASH, + ACTIONS(4631), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + sym_integer, + ACTIONS(4635), 1, + sym_float, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4881), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + sym_identifier, + ACTIONS(4962), 1, + anon_sym_RBRACE, + STATE(3824), 1, + sym_string, + STATE(4123), 1, + sym_dotted_name, + STATE(4388), 1, + sym_splat_pattern, + STATE(4997), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1584), 3, - sym__dedent, - anon_sym_SEMI, + ACTIONS(4960), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4795), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + sym_none, + [128223] = 19, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(1582), 25, - anon_sym_class, + ACTIONS(4625), 1, + anon_sym_LBRACK, + ACTIONS(4627), 1, + anon_sym_DASH, + ACTIONS(4631), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + sym_integer, + ACTIONS(4635), 1, + sym_float, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4881), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_char, - anon_sym_short, - anon_sym_long, - anon_sym_const, - anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [131936] = 3, + ACTIONS(4964), 1, + anon_sym_RBRACE, + STATE(3824), 1, + sym_string, + STATE(4123), 1, + sym_dotted_name, + STATE(4388), 1, + sym_splat_pattern, + STATE(4997), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4960), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4795), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + sym_none, + [128292] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1588), 3, + ACTIONS(1587), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1586), 25, + ACTIONS(1585), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -217700,15 +218241,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131973] = 3, + [128329] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1600), 3, + ACTIONS(1591), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1598), 25, + ACTIONS(1589), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -217734,64 +218275,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132010] = 18, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(366), 1, + [128366] = 18, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(4929), 1, - anon_sym_COLON, - STATE(2986), 1, + ACTIONS(4966), 1, + anon_sym_class, + ACTIONS(4970), 1, + anon_sym_enum, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3648), 1, + STATE(3656), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - STATE(1193), 2, - sym_class_definition, - sym_cvar_def, - STATE(2930), 2, + ACTIONS(4968), 2, + anon_sym_struct, + anon_sym_union, + STATE(2620), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132077] = 3, + [128433] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1962), 3, + ACTIONS(1917), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1960), 25, + ACTIONS(1915), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -217817,63 +218358,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132114] = 17, - ACTIONS(3663), 1, - sym_identifier, - ACTIONS(3665), 1, - anon_sym_LPAREN, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4555), 1, - anon_sym_class, - ACTIONS(4559), 1, - anon_sym_enum, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(3301), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3679), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4557), 2, - anon_sym_struct, - anon_sym_union, - STATE(2615), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3560), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [132179] = 3, + [128470] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1966), 3, + ACTIONS(1595), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1964), 25, + ACTIONS(1593), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -217899,23 +218392,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132216] = 3, + [128507] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1970), 3, + ACTIONS(3859), 3, sym__dedent, - anon_sym_SEMI, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1968), 25, + ACTIONS(4972), 25, anon_sym_class, sym_identifier, anon_sym_api, - anon_sym_extern, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_int, anon_sym_double, anon_sym_complex, - anon_sym_operator, anon_sym_signed, anon_sym_unsigned, anon_sym_char, @@ -217933,15 +218426,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132253] = 3, + [128544] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1966), 3, + ACTIONS(1599), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1964), 25, + ACTIONS(1597), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -217967,81 +218460,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132290] = 3, + [128581] = 18, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(3878), 1, + sym_identifier, + ACTIONS(4974), 1, + anon_sym_COLON, + STATE(3000), 1, + sym__signedness, + STATE(3045), 1, + sym_int_type, + STATE(3204), 1, + sym__longness, + STATE(3411), 1, + sym_operator_name, + STATE(3697), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1966), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1964), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, + STATE(1243), 2, + sym_class_definition, + sym_cvar_def, + STATE(2937), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(103), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132327] = 19, - ACTIONS(1134), 1, + [128648] = 19, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(4596), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4606), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(4627), 1, anon_sym_DASH, - ACTIONS(4612), 1, + ACTIONS(4631), 1, anon_sym_LBRACE, - ACTIONS(4614), 1, + ACTIONS(4633), 1, sym_integer, - ACTIONS(4616), 1, + ACTIONS(4635), 1, sym_float, - ACTIONS(4893), 1, + ACTIONS(4879), 1, anon_sym_STAR, - ACTIONS(4895), 1, + ACTIONS(4881), 1, anon_sym_STAR_STAR, - ACTIONS(4931), 1, + ACTIONS(4958), 1, sym_identifier, - ACTIONS(4935), 1, + ACTIONS(4976), 1, anon_sym_RBRACE, - STATE(3809), 1, + STATE(3824), 1, sym_string, - STATE(4060), 1, + STATE(4123), 1, sym_dotted_name, - STATE(4389), 1, + STATE(4388), 1, sym_splat_pattern, - STATE(5078), 1, + STATE(4997), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4933), 3, + ACTIONS(4960), 3, anon_sym__, sym_true, sym_false, - STATE(4700), 9, + STATE(4795), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -218051,47 +218559,47 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [132396] = 19, - ACTIONS(1134), 1, + [128717] = 19, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(4596), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4606), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(4627), 1, anon_sym_DASH, - ACTIONS(4612), 1, + ACTIONS(4631), 1, anon_sym_LBRACE, - ACTIONS(4614), 1, + ACTIONS(4633), 1, sym_integer, - ACTIONS(4616), 1, + ACTIONS(4635), 1, sym_float, - ACTIONS(4893), 1, + ACTIONS(4879), 1, anon_sym_STAR, - ACTIONS(4895), 1, + ACTIONS(4881), 1, anon_sym_STAR_STAR, - ACTIONS(4931), 1, + ACTIONS(4958), 1, sym_identifier, - ACTIONS(4937), 1, + ACTIONS(4978), 1, anon_sym_RBRACE, - STATE(3809), 1, + STATE(3824), 1, sym_string, - STATE(4060), 1, + STATE(4123), 1, sym_dotted_name, - STATE(4389), 1, + STATE(4388), 1, sym_splat_pattern, - STATE(5078), 1, + STATE(4997), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4933), 3, + ACTIONS(4960), 3, anon_sym__, sym_true, sym_false, - STATE(4700), 9, + STATE(4795), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -218101,130 +218609,47 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [132465] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3465), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(4939), 26, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_class, - sym_identifier, - anon_sym_await, - anon_sym_api, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_char, - anon_sym_short, - anon_sym_long, - anon_sym_const, - anon_sym_volatile, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [132502] = 18, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(3859), 1, - sym_identifier, - ACTIONS(4941), 1, - anon_sym_class, - ACTIONS(4945), 1, - anon_sym_enum, - STATE(2986), 1, - sym__signedness, - STATE(3051), 1, - sym_int_type, - STATE(3185), 1, - sym__longness, - STATE(3434), 1, - sym_operator_name, - STATE(3705), 1, - sym_maybe_typed_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(362), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(364), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3821), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4943), 2, - anon_sym_struct, - anon_sym_union, - STATE(2615), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [132569] = 19, - ACTIONS(1134), 1, + [128786] = 19, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(4596), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4606), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(4627), 1, anon_sym_DASH, - ACTIONS(4612), 1, + ACTIONS(4631), 1, anon_sym_LBRACE, - ACTIONS(4614), 1, + ACTIONS(4633), 1, sym_integer, - ACTIONS(4616), 1, + ACTIONS(4635), 1, sym_float, - ACTIONS(4893), 1, + ACTIONS(4879), 1, anon_sym_STAR, - ACTIONS(4895), 1, + ACTIONS(4881), 1, anon_sym_STAR_STAR, - ACTIONS(4931), 1, + ACTIONS(4958), 1, sym_identifier, - ACTIONS(4947), 1, + ACTIONS(4980), 1, anon_sym_RBRACE, - STATE(3809), 1, + STATE(3824), 1, sym_string, - STATE(4060), 1, + STATE(4123), 1, sym_dotted_name, - STATE(4389), 1, + STATE(4388), 1, sym_splat_pattern, - STATE(5078), 1, + STATE(4997), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4933), 3, + ACTIONS(4960), 3, anon_sym__, sym_true, sym_false, - STATE(4700), 9, + STATE(4795), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -218234,47 +218659,47 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [132638] = 19, - ACTIONS(1134), 1, + [128855] = 19, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(4596), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4606), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(4627), 1, anon_sym_DASH, - ACTIONS(4612), 1, + ACTIONS(4631), 1, anon_sym_LBRACE, - ACTIONS(4614), 1, + ACTIONS(4633), 1, sym_integer, - ACTIONS(4616), 1, + ACTIONS(4635), 1, sym_float, - ACTIONS(4893), 1, + ACTIONS(4879), 1, anon_sym_STAR, - ACTIONS(4895), 1, + ACTIONS(4881), 1, anon_sym_STAR_STAR, - ACTIONS(4931), 1, + ACTIONS(4958), 1, sym_identifier, - ACTIONS(4949), 1, + ACTIONS(4982), 1, anon_sym_RBRACE, - STATE(3809), 1, + STATE(3824), 1, sym_string, - STATE(4060), 1, + STATE(4123), 1, sym_dotted_name, - STATE(4389), 1, + STATE(4388), 1, sym_splat_pattern, - STATE(5078), 1, + STATE(4997), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4933), 3, + ACTIONS(4960), 3, anon_sym__, sym_true, sym_false, - STATE(4700), 9, + STATE(4795), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -218284,15 +218709,15 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [132707] = 3, + [128924] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 3, + ACTIONS(1687), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1674), 25, + ACTIONS(1685), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -218318,23 +218743,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132744] = 3, + [128961] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4195), 3, + ACTIONS(1731), 3, sym__dedent, - sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(4197), 25, + ACTIONS(1729), 25, anon_sym_class, sym_identifier, anon_sym_api, - anon_sym_cdef, - anon_sym_cpdef, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, + anon_sym_operator, anon_sym_signed, anon_sym_unsigned, anon_sym_char, @@ -218352,23 +218777,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132781] = 3, + [128998] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4159), 3, + ACTIONS(1837), 3, sym__dedent, - sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(4161), 25, + ACTIONS(1835), 25, anon_sym_class, sym_identifier, anon_sym_api, - anon_sym_cdef, - anon_sym_cpdef, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, + anon_sym_operator, anon_sym_signed, anon_sym_unsigned, anon_sym_char, @@ -218386,15 +218811,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132818] = 3, + [129035] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 3, + ACTIONS(1611), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1690), 25, + ACTIONS(1609), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -218420,15 +218845,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132855] = 3, + [129072] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 3, + ACTIONS(1743), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1702), 25, + ACTIONS(1741), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -218454,15 +218879,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132892] = 3, + [129109] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1708), 3, + ACTIONS(1747), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1706), 25, + ACTIONS(1745), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -218488,64 +218913,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132929] = 18, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(3859), 1, - sym_identifier, - ACTIONS(4951), 1, - anon_sym_COLON, - STATE(2986), 1, - sym__signedness, - STATE(3051), 1, - sym_int_type, - STATE(3185), 1, - sym__longness, - STATE(3434), 1, - sym_operator_name, - STATE(3648), 1, - sym_maybe_typed_name, + [129146] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(1751), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1749), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(1174), 2, - sym_class_definition, - sym_cvar_def, - STATE(2930), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132996] = 3, + [129183] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 3, + ACTIONS(1755), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1710), 25, + ACTIONS(1753), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -218571,15 +218981,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133033] = 3, + [129220] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1716), 3, + ACTIONS(1687), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1714), 25, + ACTIONS(1685), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -218605,64 +219015,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133070] = 18, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(3859), 1, - sym_identifier, - ACTIONS(3861), 1, - anon_sym_class, - ACTIONS(4953), 1, - anon_sym_COLON, - STATE(2986), 1, - sym__signedness, - STATE(3051), 1, - sym_int_type, - STATE(3185), 1, - sym__longness, - STATE(3434), 1, - sym_operator_name, - STATE(3667), 1, - sym_maybe_typed_name, + [129257] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(2017), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(2015), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(2836), 2, - sym_class_definition, - sym_cvar_def, - STATE(2928), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133137] = 3, + [129294] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 3, + ACTIONS(1695), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1674), 25, + ACTIONS(1693), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -218688,15 +219083,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133174] = 3, + [129331] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1644), 3, + ACTIONS(1407), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1642), 25, + ACTIONS(1405), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -218722,15 +219117,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133211] = 3, + [129368] = 18, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(3878), 1, + sym_identifier, + ACTIONS(4984), 1, + anon_sym_COLON, + STATE(3000), 1, + sym__signedness, + STATE(3045), 1, + sym_int_type, + STATE(3204), 1, + sym__longness, + STATE(3411), 1, + sym_operator_name, + STATE(3697), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(367), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(369), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3804), 2, + anon_sym_const, + anon_sym_volatile, + STATE(1271), 2, + sym_class_definition, + sym_cvar_def, + STATE(2937), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [129435] = 19, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(4615), 1, + anon_sym_LPAREN, + ACTIONS(4625), 1, + anon_sym_LBRACK, + ACTIONS(4627), 1, + anon_sym_DASH, + ACTIONS(4631), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + sym_integer, + ACTIONS(4635), 1, + sym_float, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4881), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + sym_identifier, + ACTIONS(4986), 1, + anon_sym_RBRACE, + STATE(3824), 1, + sym_string, + STATE(4123), 1, + sym_dotted_name, + STATE(4388), 1, + sym_splat_pattern, + STATE(4997), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4960), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4795), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + sym_none, + [129504] = 19, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(4615), 1, + anon_sym_LPAREN, + ACTIONS(4625), 1, + anon_sym_LBRACK, + ACTIONS(4627), 1, + anon_sym_DASH, + ACTIONS(4631), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + sym_integer, + ACTIONS(4635), 1, + sym_float, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4881), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + sym_identifier, + ACTIONS(4988), 1, + anon_sym_RBRACE, + STATE(3824), 1, + sym_string, + STATE(4123), 1, + sym_dotted_name, + STATE(4388), 1, + sym_splat_pattern, + STATE(4997), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4960), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4795), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + sym_none, + [129573] = 19, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(4615), 1, + anon_sym_LPAREN, + ACTIONS(4625), 1, + anon_sym_LBRACK, + ACTIONS(4627), 1, + anon_sym_DASH, + ACTIONS(4631), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + sym_integer, + ACTIONS(4635), 1, + sym_float, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4881), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + sym_identifier, + ACTIONS(4990), 1, + anon_sym_RBRACE, + STATE(3824), 1, + sym_string, + STATE(4123), 1, + sym_dotted_name, + STATE(4388), 1, + sym_splat_pattern, + STATE(4997), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1704), 3, + ACTIONS(4960), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4795), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + sym_none, + [129642] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1743), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1702), 25, + ACTIONS(1741), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -218756,15 +219350,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133248] = 3, + [129679] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1986), 3, + ACTIONS(2025), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1984), 25, + ACTIONS(2023), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -218790,15 +219384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133285] = 3, + [129716] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1676), 3, + ACTIONS(1687), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1674), 25, + ACTIONS(1685), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -218824,47 +219418,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133322] = 19, - ACTIONS(1134), 1, + [129753] = 19, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(4596), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4606), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(4627), 1, anon_sym_DASH, - ACTIONS(4612), 1, + ACTIONS(4631), 1, anon_sym_LBRACE, - ACTIONS(4614), 1, + ACTIONS(4633), 1, sym_integer, - ACTIONS(4616), 1, + ACTIONS(4635), 1, sym_float, - ACTIONS(4893), 1, + ACTIONS(4879), 1, anon_sym_STAR, - ACTIONS(4895), 1, + ACTIONS(4881), 1, anon_sym_STAR_STAR, - ACTIONS(4931), 1, + ACTIONS(4958), 1, sym_identifier, - ACTIONS(4955), 1, + ACTIONS(4992), 1, anon_sym_RBRACE, - STATE(3809), 1, + STATE(3824), 1, sym_string, - STATE(4060), 1, + STATE(4123), 1, sym_dotted_name, - STATE(4231), 1, + STATE(4239), 1, sym_splat_pattern, - STATE(4551), 1, + STATE(4629), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4933), 3, + ACTIONS(4960), 3, anon_sym__, sym_true, sym_false, - STATE(4700), 9, + STATE(4795), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -218874,96 +219468,97 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [133391] = 18, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(3859), 1, + [129822] = 19, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(4615), 1, + anon_sym_LPAREN, + ACTIONS(4625), 1, + anon_sym_LBRACK, + ACTIONS(4627), 1, + anon_sym_DASH, + ACTIONS(4631), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + sym_integer, + ACTIONS(4635), 1, + sym_float, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4881), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, sym_identifier, - ACTIONS(3861), 1, - anon_sym_class, - ACTIONS(4957), 1, - anon_sym_COLON, - STATE(2986), 1, - sym__signedness, - STATE(3051), 1, - sym_int_type, - STATE(3185), 1, - sym__longness, - STATE(3434), 1, - sym_operator_name, - STATE(3667), 1, - sym_maybe_typed_name, + ACTIONS(4994), 1, + anon_sym_RBRACE, + STATE(3824), 1, + sym_string, + STATE(4123), 1, + sym_dotted_name, + STATE(4388), 1, + sym_splat_pattern, + STATE(4997), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(364), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3821), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2867), 2, - sym_class_definition, - sym_cvar_def, - STATE(2928), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [133458] = 19, - ACTIONS(1134), 1, + ACTIONS(4960), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4795), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + sym_none, + [129891] = 19, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(4596), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4606), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(4627), 1, anon_sym_DASH, - ACTIONS(4612), 1, + ACTIONS(4631), 1, anon_sym_LBRACE, - ACTIONS(4614), 1, + ACTIONS(4633), 1, sym_integer, - ACTIONS(4616), 1, + ACTIONS(4635), 1, sym_float, - ACTIONS(4893), 1, + ACTIONS(4879), 1, anon_sym_STAR, - ACTIONS(4895), 1, + ACTIONS(4881), 1, anon_sym_STAR_STAR, - ACTIONS(4931), 1, + ACTIONS(4958), 1, sym_identifier, - ACTIONS(4959), 1, + ACTIONS(4996), 1, anon_sym_RBRACE, - STATE(3809), 1, + STATE(3824), 1, sym_string, - STATE(4060), 1, + STATE(4123), 1, sym_dotted_name, - STATE(4389), 1, + STATE(4388), 1, sym_splat_pattern, - STATE(5078), 1, + STATE(4997), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4933), 3, + ACTIONS(4960), 3, anon_sym__, sym_true, sym_false, - STATE(4700), 9, + STATE(4795), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -218973,47 +219568,47 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [133527] = 19, - ACTIONS(1134), 1, + [129960] = 19, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(4596), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4606), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(4627), 1, anon_sym_DASH, - ACTIONS(4612), 1, + ACTIONS(4631), 1, anon_sym_LBRACE, - ACTIONS(4614), 1, + ACTIONS(4633), 1, sym_integer, - ACTIONS(4616), 1, + ACTIONS(4635), 1, sym_float, - ACTIONS(4893), 1, + ACTIONS(4879), 1, anon_sym_STAR, - ACTIONS(4895), 1, + ACTIONS(4881), 1, anon_sym_STAR_STAR, - ACTIONS(4931), 1, + ACTIONS(4958), 1, sym_identifier, - ACTIONS(4961), 1, + ACTIONS(4998), 1, anon_sym_RBRACE, - STATE(3809), 1, + STATE(3824), 1, sym_string, - STATE(4060), 1, + STATE(4123), 1, sym_dotted_name, - STATE(4389), 1, + STATE(4388), 1, sym_splat_pattern, - STATE(5078), 1, + STATE(4997), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4933), 3, + ACTIONS(4960), 3, anon_sym__, sym_true, sym_false, - STATE(4700), 9, + STATE(4795), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -219023,81 +219618,97 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [133596] = 3, + [130029] = 19, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(4615), 1, + anon_sym_LPAREN, + ACTIONS(4625), 1, + anon_sym_LBRACK, + ACTIONS(4627), 1, + anon_sym_DASH, + ACTIONS(4631), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + sym_integer, + ACTIONS(4635), 1, + sym_float, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4881), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + sym_identifier, + ACTIONS(5000), 1, + anon_sym_RBRACE, + STATE(3824), 1, + sym_string, + STATE(4123), 1, + sym_dotted_name, + STATE(4388), 1, + sym_splat_pattern, + STATE(4997), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1456), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1454), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_char, - anon_sym_short, - anon_sym_long, - anon_sym_const, - anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [133633] = 19, - ACTIONS(1134), 1, + ACTIONS(4960), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4795), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + sym_none, + [130098] = 19, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(4596), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4606), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(4627), 1, anon_sym_DASH, - ACTIONS(4612), 1, + ACTIONS(4631), 1, anon_sym_LBRACE, - ACTIONS(4614), 1, + ACTIONS(4633), 1, sym_integer, - ACTIONS(4616), 1, + ACTIONS(4635), 1, sym_float, - ACTIONS(4893), 1, + ACTIONS(4879), 1, anon_sym_STAR, - ACTIONS(4895), 1, + ACTIONS(4881), 1, anon_sym_STAR_STAR, - ACTIONS(4931), 1, + ACTIONS(4958), 1, sym_identifier, - ACTIONS(4963), 1, + ACTIONS(5002), 1, anon_sym_RBRACE, - STATE(3809), 1, + STATE(3824), 1, sym_string, - STATE(4060), 1, + STATE(4123), 1, sym_dotted_name, - STATE(4389), 1, + STATE(4388), 1, sym_splat_pattern, - STATE(5078), 1, + STATE(4997), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4933), 3, + ACTIONS(4960), 3, anon_sym__, sym_true, sym_false, - STATE(4700), 9, + STATE(4795), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -219107,15 +219718,15 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [133702] = 3, + [130167] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1684), 3, + ACTIONS(1981), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1682), 25, + ACTIONS(1979), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -219141,15 +219752,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133739] = 3, + [130204] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1396), 3, + ACTIONS(1921), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1394), 25, + ACTIONS(1919), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -219175,15 +219786,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133776] = 3, + [130241] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1744), 3, + ACTIONS(1941), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1742), 25, + ACTIONS(1939), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -219209,15 +219820,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133813] = 3, + [130278] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1748), 3, + ACTIONS(1783), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1746), 25, + ACTIONS(1781), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -219243,15 +219854,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133850] = 3, + [130315] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2046), 3, + ACTIONS(1787), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2044), 25, + ACTIONS(1785), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -219277,15 +219888,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133887] = 3, + [130352] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2050), 3, + ACTIONS(2001), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2048), 25, + ACTIONS(1999), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -219311,64 +219922,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133924] = 18, - ACTIONS(123), 1, - anon_sym_class, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(3859), 1, - sym_identifier, - ACTIONS(4965), 1, - anon_sym_COLON, - STATE(2986), 1, - sym__signedness, - STATE(3051), 1, - sym_int_type, - STATE(3185), 1, - sym__longness, - STATE(3434), 1, - sym_operator_name, - STATE(3704), 1, - sym_maybe_typed_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(362), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(364), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3821), 2, - anon_sym_const, - anon_sym_volatile, - STATE(518), 2, - sym_class_definition, - sym_cvar_def, - STATE(2929), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [133991] = 3, + [130389] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2054), 3, + ACTIONS(2005), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2052), 25, + ACTIONS(2003), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -219394,15 +219956,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134028] = 3, + [130426] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 3, + ACTIONS(1933), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1792), 25, + ACTIONS(1931), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -219428,15 +219990,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134065] = 3, + [130463] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2058), 3, + ACTIONS(2085), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2056), 25, + ACTIONS(2083), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -219462,15 +220024,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134102] = 3, + [130500] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1802), 3, + ACTIONS(2089), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1800), 25, + ACTIONS(2087), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -219496,15 +220058,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134139] = 3, + [130537] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2062), 3, + ACTIONS(2093), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2060), 25, + ACTIONS(2091), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -219530,15 +220092,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134176] = 3, + [130574] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2066), 3, + ACTIONS(2097), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2064), 25, + ACTIONS(2095), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -219564,47 +220126,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134213] = 19, - ACTIONS(1134), 1, + [130611] = 19, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(4596), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4606), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(4627), 1, anon_sym_DASH, - ACTIONS(4612), 1, + ACTIONS(4631), 1, anon_sym_LBRACE, - ACTIONS(4614), 1, + ACTIONS(4633), 1, sym_integer, - ACTIONS(4616), 1, + ACTIONS(4635), 1, sym_float, - ACTIONS(4893), 1, + ACTIONS(4879), 1, anon_sym_STAR, - ACTIONS(4895), 1, + ACTIONS(4881), 1, anon_sym_STAR_STAR, - ACTIONS(4931), 1, + ACTIONS(4958), 1, sym_identifier, - ACTIONS(4967), 1, + ACTIONS(5004), 1, anon_sym_RBRACE, - STATE(3809), 1, + STATE(3824), 1, sym_string, - STATE(4060), 1, + STATE(4123), 1, sym_dotted_name, - STATE(4276), 1, + STATE(4388), 1, sym_splat_pattern, - STATE(4487), 1, + STATE(4997), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4933), 3, + ACTIONS(4960), 3, anon_sym__, sym_true, sym_false, - STATE(4700), 9, + STATE(4795), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -219614,15 +220176,15 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [134282] = 3, + [130680] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2078), 3, + ACTIONS(2101), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2076), 25, + ACTIONS(2099), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -219648,15 +220210,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134319] = 3, + [130717] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2082), 3, + ACTIONS(1833), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2080), 25, + ACTIONS(1831), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -219682,15 +220244,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134356] = 3, + [130754] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2046), 3, + ACTIONS(1841), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2044), 25, + ACTIONS(1839), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -219716,15 +220278,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134393] = 3, + [130791] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2086), 3, + ACTIONS(2105), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2084), 25, + ACTIONS(2103), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -219750,65 +220312,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134430] = 19, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(4596), 1, - anon_sym_LPAREN, - ACTIONS(4606), 1, - anon_sym_LBRACK, - ACTIONS(4608), 1, - anon_sym_DASH, - ACTIONS(4612), 1, - anon_sym_LBRACE, - ACTIONS(4614), 1, - sym_integer, - ACTIONS(4616), 1, - sym_float, - ACTIONS(4893), 1, - anon_sym_STAR, - ACTIONS(4895), 1, - anon_sym_STAR_STAR, - ACTIONS(4931), 1, + [130828] = 18, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(4969), 1, - anon_sym_RBRACE, - STATE(3809), 1, - sym_string, - STATE(4060), 1, - sym_dotted_name, - STATE(4198), 1, - sym_splat_pattern, - STATE(4760), 1, - sym__key_value_pattern, + ACTIONS(3880), 1, + anon_sym_class, + ACTIONS(5006), 1, + anon_sym_COLON, + STATE(3000), 1, + sym__signedness, + STATE(3045), 1, + sym_int_type, + STATE(3204), 1, + sym__longness, + STATE(3411), 1, + sym_operator_name, + STATE(3652), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4933), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4700), 9, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - sym_none, - [134499] = 3, + ACTIONS(367), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(369), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3804), 2, + anon_sym_const, + anon_sym_volatile, + STATE(2818), 2, + sym_class_definition, + sym_cvar_def, + STATE(2938), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [130895] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2090), 3, + ACTIONS(2117), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2088), 25, + ACTIONS(2115), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -219834,64 +220395,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134536] = 18, - ACTIONS(123), 1, - anon_sym_class, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(3859), 1, - sym_identifier, - ACTIONS(4971), 1, - anon_sym_COLON, - STATE(2986), 1, - sym__signedness, - STATE(3051), 1, - sym_int_type, - STATE(3185), 1, - sym__longness, - STATE(3434), 1, - sym_operator_name, - STATE(3704), 1, - sym_maybe_typed_name, + [130932] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(2121), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(2119), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(548), 2, - sym_class_definition, - sym_cvar_def, - STATE(2929), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134603] = 3, + [130969] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2054), 3, + ACTIONS(2085), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2052), 25, + ACTIONS(2083), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -219917,15 +220463,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134640] = 3, + [131006] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2098), 3, + ACTIONS(2125), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2096), 25, + ACTIONS(2123), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -219951,97 +220497,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134677] = 19, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(4596), 1, - anon_sym_LPAREN, - ACTIONS(4606), 1, - anon_sym_LBRACK, - ACTIONS(4608), 1, - anon_sym_DASH, - ACTIONS(4612), 1, - anon_sym_LBRACE, - ACTIONS(4614), 1, - sym_integer, - ACTIONS(4616), 1, - sym_float, - ACTIONS(4893), 1, - anon_sym_STAR, - ACTIONS(4895), 1, - anon_sym_STAR_STAR, - ACTIONS(4931), 1, + [131043] = 17, + ACTIONS(3762), 1, sym_identifier, - ACTIONS(4973), 1, - anon_sym_RBRACE, - STATE(3809), 1, - sym_string, - STATE(4060), 1, - sym_dotted_name, - STATE(4389), 1, - sym_splat_pattern, - STATE(5078), 1, - sym__key_value_pattern, + ACTIONS(3764), 1, + anon_sym_LPAREN, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4553), 1, + anon_sym_class, + ACTIONS(4559), 1, + anon_sym_enum, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(3342), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4933), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4700), 9, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - sym_none, - [134746] = 19, - ACTIONS(1134), 1, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3778), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4557), 2, + anon_sym_struct, + anon_sym_union, + STATE(2620), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3532), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [131108] = 19, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1144), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(4596), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4606), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(4627), 1, anon_sym_DASH, - ACTIONS(4612), 1, + ACTIONS(4631), 1, anon_sym_LBRACE, - ACTIONS(4614), 1, + ACTIONS(4633), 1, sym_integer, - ACTIONS(4616), 1, + ACTIONS(4635), 1, sym_float, - ACTIONS(4893), 1, + ACTIONS(4879), 1, anon_sym_STAR, - ACTIONS(4895), 1, + ACTIONS(4881), 1, anon_sym_STAR_STAR, - ACTIONS(4931), 1, + ACTIONS(4958), 1, sym_identifier, - ACTIONS(4975), 1, + ACTIONS(5008), 1, anon_sym_RBRACE, - STATE(3809), 1, + STATE(3824), 1, sym_string, - STATE(4060), 1, + STATE(4123), 1, sym_dotted_name, - STATE(4389), 1, + STATE(4251), 1, sym_splat_pattern, - STATE(5078), 1, + STATE(4823), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4933), 3, + ACTIONS(4960), 3, anon_sym__, sym_true, sym_false, - STATE(4700), 9, + STATE(4795), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -220051,15 +220595,15 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [134815] = 3, + [131177] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2062), 3, + ACTIONS(2005), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2060), 25, + ACTIONS(2003), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -220085,115 +220629,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134852] = 19, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(4596), 1, - anon_sym_LPAREN, - ACTIONS(4606), 1, - anon_sym_LBRACK, - ACTIONS(4608), 1, - anon_sym_DASH, - ACTIONS(4612), 1, - anon_sym_LBRACE, - ACTIONS(4614), 1, - sym_integer, - ACTIONS(4616), 1, - sym_float, - ACTIONS(4893), 1, - anon_sym_STAR, - ACTIONS(4895), 1, - anon_sym_STAR_STAR, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(4977), 1, - anon_sym_RBRACE, - STATE(3809), 1, - sym_string, - STATE(4060), 1, - sym_dotted_name, - STATE(4389), 1, - sym_splat_pattern, - STATE(5078), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4933), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4700), 9, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - sym_none, - [134921] = 19, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(4596), 1, - anon_sym_LPAREN, - ACTIONS(4606), 1, - anon_sym_LBRACK, - ACTIONS(4608), 1, - anon_sym_DASH, - ACTIONS(4612), 1, - anon_sym_LBRACE, - ACTIONS(4614), 1, - sym_integer, - ACTIONS(4616), 1, - sym_float, - ACTIONS(4893), 1, - anon_sym_STAR, - ACTIONS(4895), 1, - anon_sym_STAR_STAR, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(4979), 1, - anon_sym_RBRACE, - STATE(3809), 1, - sym_string, - STATE(4060), 1, - sym_dotted_name, - STATE(4389), 1, - sym_splat_pattern, - STATE(5078), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4933), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4700), 9, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - sym_none, - [134990] = 3, + [131214] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1826), 3, + ACTIONS(1965), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1824), 25, + ACTIONS(1963), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -220219,15 +220663,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135027] = 3, + [131251] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1842), 3, + ACTIONS(2005), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1840), 25, + ACTIONS(2003), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -220253,15 +220697,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135064] = 3, + [131288] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1942), 3, + ACTIONS(2129), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1940), 25, + ACTIONS(2127), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -220287,165 +220731,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135101] = 19, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(4596), 1, - anon_sym_LPAREN, - ACTIONS(4606), 1, - anon_sym_LBRACK, - ACTIONS(4608), 1, - anon_sym_DASH, - ACTIONS(4612), 1, - anon_sym_LBRACE, - ACTIONS(4614), 1, - sym_integer, - ACTIONS(4616), 1, - sym_float, - ACTIONS(4893), 1, - anon_sym_STAR, - ACTIONS(4895), 1, - anon_sym_STAR_STAR, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(4981), 1, - anon_sym_RBRACE, - STATE(3809), 1, - sym_string, - STATE(4060), 1, - sym_dotted_name, - STATE(4159), 1, - sym_splat_pattern, - STATE(4616), 1, - sym__key_value_pattern, + [131325] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4933), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4700), 9, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - sym_none, - [135170] = 19, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(4596), 1, + ACTIONS(3484), 2, anon_sym_LPAREN, - ACTIONS(4606), 1, - anon_sym_LBRACK, - ACTIONS(4608), 1, - anon_sym_DASH, - ACTIONS(4612), 1, - anon_sym_LBRACE, - ACTIONS(4614), 1, - sym_integer, - ACTIONS(4616), 1, - sym_float, - ACTIONS(4893), 1, - anon_sym_STAR, - ACTIONS(4895), 1, - anon_sym_STAR_STAR, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(4983), 1, - anon_sym_RBRACE, - STATE(3809), 1, - sym_string, - STATE(4060), 1, - sym_dotted_name, - STATE(4389), 1, - sym_splat_pattern, - STATE(5078), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4933), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4700), 9, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - sym_none, - [135239] = 19, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(4596), 1, - anon_sym_LPAREN, - ACTIONS(4606), 1, - anon_sym_LBRACK, - ACTIONS(4608), 1, - anon_sym_DASH, - ACTIONS(4612), 1, - anon_sym_LBRACE, - ACTIONS(4614), 1, - sym_integer, - ACTIONS(4616), 1, - sym_float, - ACTIONS(4893), 1, - anon_sym_STAR, - ACTIONS(4895), 1, - anon_sym_STAR_STAR, - ACTIONS(4931), 1, + anon_sym_COLON, + ACTIONS(5010), 26, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_class, sym_identifier, - ACTIONS(4985), 1, - anon_sym_RBRACE, - STATE(3809), 1, - sym_string, - STATE(4060), 1, - sym_dotted_name, - STATE(4389), 1, - sym_splat_pattern, - STATE(5078), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4933), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4700), 9, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - sym_none, - [135308] = 3, + anon_sym_await, + anon_sym_api, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [131362] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1946), 3, + ACTIONS(2093), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1944), 25, + ACTIONS(2091), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -220471,115 +220799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135345] = 19, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(4596), 1, - anon_sym_LPAREN, - ACTIONS(4606), 1, - anon_sym_LBRACK, - ACTIONS(4608), 1, - anon_sym_DASH, - ACTIONS(4612), 1, - anon_sym_LBRACE, - ACTIONS(4614), 1, - sym_integer, - ACTIONS(4616), 1, - sym_float, - ACTIONS(4893), 1, - anon_sym_STAR, - ACTIONS(4895), 1, - anon_sym_STAR_STAR, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(4987), 1, - anon_sym_RBRACE, - STATE(3809), 1, - sym_string, - STATE(4060), 1, - sym_dotted_name, - STATE(4389), 1, - sym_splat_pattern, - STATE(5078), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4933), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4700), 9, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - sym_none, - [135414] = 19, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(4596), 1, - anon_sym_LPAREN, - ACTIONS(4606), 1, - anon_sym_LBRACK, - ACTIONS(4608), 1, - anon_sym_DASH, - ACTIONS(4612), 1, - anon_sym_LBRACE, - ACTIONS(4614), 1, - sym_integer, - ACTIONS(4616), 1, - sym_float, - ACTIONS(4893), 1, - anon_sym_STAR, - ACTIONS(4895), 1, - anon_sym_STAR_STAR, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(4989), 1, - anon_sym_RBRACE, - STATE(3809), 1, - sym_string, - STATE(4060), 1, - sym_dotted_name, - STATE(4389), 1, - sym_splat_pattern, - STATE(5078), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4933), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4700), 9, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - sym_none, - [135483] = 3, + [131399] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1436), 3, + ACTIONS(2133), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1434), 25, + ACTIONS(2131), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -220605,15 +220833,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135520] = 3, + [131436] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1484), 3, + ACTIONS(2101), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1482), 25, + ACTIONS(2099), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -220639,15 +220867,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135557] = 3, + [131473] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1894), 3, + ACTIONS(1447), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1892), 25, + ACTIONS(1445), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -220673,15 +220901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135594] = 3, + [131510] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1902), 3, + ACTIONS(1495), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1900), 25, + ACTIONS(1493), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -220707,15 +220935,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135631] = 3, + [131547] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1444), 3, + ACTIONS(1455), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1442), 25, + ACTIONS(1453), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -220741,15 +220969,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135668] = 3, + [131584] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1926), 3, + ACTIONS(1459), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1924), 25, + ACTIONS(1457), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -220775,15 +221003,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135705] = 3, + [131621] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1448), 3, + ACTIONS(1463), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1446), 25, + ACTIONS(1461), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -220809,49 +221037,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135742] = 3, + [131658] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3738), 3, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - ACTIONS(4991), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_char, - anon_sym_short, - anon_sym_long, - anon_sym_const, - anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [135779] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1452), 3, + ACTIONS(1467), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1450), 25, + ACTIONS(1465), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -220877,63 +221071,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135816] = 17, - ACTIONS(3663), 1, + [131695] = 17, + ACTIONS(3762), 1, sym_identifier, - ACTIONS(3665), 1, + ACTIONS(3764), 1, anon_sym_LPAREN, - ACTIONS(3677), 1, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(4528), 1, + ACTIONS(4567), 1, anon_sym_class, - ACTIONS(4534), 1, + ACTIONS(4571), 1, anon_sym_enum, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(3359), 1, + STATE(3323), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(3679), 2, + ACTIONS(3778), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4532), 2, + ACTIONS(4569), 2, anon_sym_struct, anon_sym_union, - STATE(2615), 2, + STATE(2620), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3560), 2, + STATE(3532), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135881] = 3, + [131760] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1798), 3, + ACTIONS(1471), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1796), 25, + ACTIONS(1469), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -220959,63 +221153,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135918] = 17, - ACTIONS(3663), 1, - sym_identifier, - ACTIONS(3665), 1, - anon_sym_LPAREN, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(4941), 1, - anon_sym_class, - ACTIONS(4945), 1, - anon_sym_enum, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(3309), 1, - sym_c_type, + [131797] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(1475), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1473), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, anon_sym_char, anon_sym_short, - ACTIONS(3679), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - ACTIONS(4943), 2, + anon_sym_ctypedef, anon_sym_struct, anon_sym_union, - STATE(2615), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3560), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3671), 3, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [131834] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1479), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1477), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135983] = 3, + [131871] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1834), 3, + ACTIONS(1483), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1832), 25, + ACTIONS(1481), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221041,15 +221255,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136020] = 3, + [131908] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1866), 3, + ACTIONS(1487), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1864), 25, + ACTIONS(1485), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221075,15 +221289,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136057] = 3, + [131945] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1878), 3, + ACTIONS(1491), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1876), 25, + ACTIONS(1489), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221109,15 +221323,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136094] = 3, + [131982] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1882), 3, + ACTIONS(1495), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1880), 25, + ACTIONS(1493), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221143,64 +221357,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136131] = 19, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(4596), 1, - anon_sym_LPAREN, - ACTIONS(4606), 1, - anon_sym_LBRACK, - ACTIONS(4608), 1, - anon_sym_DASH, - ACTIONS(4612), 1, - anon_sym_LBRACE, - ACTIONS(4614), 1, - sym_integer, - ACTIONS(4616), 1, - sym_float, - ACTIONS(4893), 1, - anon_sym_STAR, - ACTIONS(4895), 1, - anon_sym_STAR_STAR, - ACTIONS(4931), 1, + [132019] = 17, + ACTIONS(3762), 1, sym_identifier, - ACTIONS(4993), 1, - anon_sym_RBRACE, - STATE(3809), 1, - sym_string, - STATE(4060), 1, - sym_dotted_name, - STATE(4389), 1, - sym_splat_pattern, - STATE(5078), 1, - sym__key_value_pattern, + ACTIONS(3764), 1, + anon_sym_LPAREN, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(4966), 1, + anon_sym_class, + ACTIONS(4970), 1, + anon_sym_enum, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(3314), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4933), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4700), 9, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - sym_none, - [136200] = 3, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3778), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4968), 2, + anon_sym_struct, + anon_sym_union, + STATE(2620), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3532), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [132084] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1656), 2, + ACTIONS(1865), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1654), 25, + anon_sym_LPAREN, + ACTIONS(1863), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221226,14 +221439,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136236] = 3, + [132121] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1552), 2, + ACTIONS(1881), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1550), 25, + anon_sym_LPAREN, + ACTIONS(1879), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221259,68 +221473,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136272] = 16, - ACTIONS(4995), 1, - sym_identifier, - ACTIONS(4998), 1, + [132158] = 19, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(5013), 1, - anon_sym_long, - ACTIONS(5019), 1, - sym__dedent, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(3296), 1, - sym_c_type, + ACTIONS(4625), 1, + anon_sym_LBRACK, + ACTIONS(4627), 1, + anon_sym_DASH, + ACTIONS(4631), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + sym_integer, + ACTIONS(4635), 1, + sym_float, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4881), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_RBRACE, + STATE(3824), 1, + sym_string, + STATE(4123), 1, + sym_dotted_name, + STATE(4303), 1, + sym_splat_pattern, + STATE(4916), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4960), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4795), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + sym_none, + [132227] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5007), 2, + ACTIONS(1873), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1871), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5010), 2, anon_sym_char, anon_sym_short, - ACTIONS(5016), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(2797), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(2931), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3560), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5004), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(5001), 5, - anon_sym_api, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136334] = 3, + [132264] = 19, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(4615), 1, + anon_sym_LPAREN, + ACTIONS(4625), 1, + anon_sym_LBRACK, + ACTIONS(4627), 1, + anon_sym_DASH, + ACTIONS(4631), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + sym_integer, + ACTIONS(4635), 1, + sym_float, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4881), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + sym_identifier, + ACTIONS(5014), 1, + anon_sym_RBRACE, + STATE(3824), 1, + sym_string, + STATE(4123), 1, + sym_dotted_name, + STATE(4388), 1, + sym_splat_pattern, + STATE(4997), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1604), 2, + ACTIONS(4960), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4795), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + sym_none, + [132333] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4178), 3, sym__dedent, - anon_sym_SEMI, - ACTIONS(1602), 25, + sym_string_start, + anon_sym_LPAREN, + ACTIONS(4180), 25, anon_sym_class, sym_identifier, anon_sym_api, - anon_sym_extern, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_int, anon_sym_double, anon_sym_complex, - anon_sym_operator, anon_sym_signed, anon_sym_unsigned, anon_sym_char, @@ -221338,14 +221641,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136370] = 3, + [132370] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1608), 2, + ACTIONS(1523), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1606), 25, + anon_sym_LPAREN, + ACTIONS(1521), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221371,14 +221675,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136406] = 3, + [132407] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1612), 2, + ACTIONS(1527), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1610), 25, + anon_sym_LPAREN, + ACTIONS(1525), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221404,14 +221709,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136442] = 3, + [132444] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4210), 3, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + ACTIONS(4212), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [132481] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1556), 2, + ACTIONS(1531), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1554), 25, + anon_sym_LPAREN, + ACTIONS(1529), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221437,14 +221777,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136478] = 3, + [132518] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1560), 2, + ACTIONS(1905), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1558), 25, + anon_sym_LPAREN, + ACTIONS(1903), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221470,14 +221811,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136514] = 3, + [132555] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1616), 2, + ACTIONS(1535), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1614), 25, + anon_sym_LPAREN, + ACTIONS(1533), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221503,14 +221845,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136550] = 3, + [132592] = 18, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(3878), 1, + sym_identifier, + ACTIONS(5016), 1, + anon_sym_COLON, + STATE(3000), 1, + sym__signedness, + STATE(3045), 1, + sym_int_type, + STATE(3204), 1, + sym__longness, + STATE(3411), 1, + sym_operator_name, + STATE(3680), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1620), 2, + ACTIONS(367), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(369), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3804), 2, + anon_sym_const, + anon_sym_volatile, + STATE(519), 2, + sym_class_definition, + sym_cvar_def, + STATE(2936), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [132659] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1539), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1618), 25, + anon_sym_LPAREN, + ACTIONS(1537), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221536,14 +221928,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136586] = 3, + [132696] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1624), 2, + ACTIONS(1543), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1622), 25, + anon_sym_LPAREN, + ACTIONS(1541), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221569,14 +221962,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136622] = 3, + [132733] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1938), 2, + ACTIONS(1547), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1936), 25, + anon_sym_LPAREN, + ACTIONS(1545), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221602,14 +221996,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136658] = 3, + [132770] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1628), 2, + ACTIONS(1551), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1626), 25, + anon_sym_LPAREN, + ACTIONS(1549), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221635,14 +222030,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136694] = 3, + [132807] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1632), 2, + ACTIONS(1555), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1630), 25, + anon_sym_LPAREN, + ACTIONS(1553), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221668,14 +222064,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136730] = 3, + [132844] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1636), 2, + ACTIONS(1559), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1634), 25, + anon_sym_LPAREN, + ACTIONS(1557), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221701,14 +222098,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136766] = 3, + [132881] = 19, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(4615), 1, + anon_sym_LPAREN, + ACTIONS(4625), 1, + anon_sym_LBRACK, + ACTIONS(4627), 1, + anon_sym_DASH, + ACTIONS(4631), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + sym_integer, + ACTIONS(4635), 1, + sym_float, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4881), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + sym_identifier, + ACTIONS(5018), 1, + anon_sym_RBRACE, + STATE(3824), 1, + sym_string, + STATE(4123), 1, + sym_dotted_name, + STATE(4174), 1, + sym_splat_pattern, + STATE(4495), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4960), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4795), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + sym_none, + [132950] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1640), 2, + ACTIONS(2009), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1638), 25, + anon_sym_LPAREN, + ACTIONS(2007), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221734,14 +222182,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136802] = 3, + [132987] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1564), 2, + ACTIONS(1607), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1562), 25, + ACTIONS(1605), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221767,14 +222215,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136838] = 3, + [133023] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1568), 2, + ACTIONS(2033), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1566), 25, + ACTIONS(2031), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221800,14 +222248,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136874] = 3, + [133059] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1994), 2, + ACTIONS(1627), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1992), 25, + ACTIONS(1625), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221833,60 +222281,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136910] = 16, - ACTIONS(3663), 1, + [133095] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1631), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(1629), 25, + anon_sym_class, sym_identifier, - ACTIONS(3665), 1, - anon_sym_LPAREN, - ACTIONS(3677), 1, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, anon_sym_long, - ACTIONS(5021), 1, - sym__dedent, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(3296), 1, - sym_c_type, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [133131] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(2037), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(2035), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, anon_sym_char, anon_sym_short, - ACTIONS(3679), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(2797), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(2931), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3560), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3671), 3, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [133167] = 3, + ACTIONS(3484), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5010), 26, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_class, + sym_identifier, + anon_sym_await, + anon_sym_api, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(101), 5, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [133203] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2045), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(2043), 25, + anon_sym_class, + sym_identifier, anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136972] = 3, + [133239] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1998), 2, + ACTIONS(2049), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1996), 25, + ACTIONS(2047), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221912,14 +222446,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137008] = 3, + [133275] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2006), 2, + ACTIONS(2057), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2004), 25, + ACTIONS(2055), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221945,14 +222479,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137044] = 3, + [133311] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2014), 2, + ACTIONS(2061), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2012), 25, + ACTIONS(2059), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -221978,14 +222512,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137080] = 3, + [133347] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1504), 2, + ACTIONS(2065), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1502), 25, + ACTIONS(2063), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222011,14 +222545,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137116] = 3, + [133383] = 3, + ACTIONS(3484), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5010), 26, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_class, + sym_identifier, + anon_sym_await, + anon_sym_api, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [133419] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2018), 2, + ACTIONS(2073), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2016), 25, + ACTIONS(2071), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222044,14 +222611,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137152] = 3, + [133455] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2022), 2, + ACTIONS(2077), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2020), 25, + ACTIONS(2075), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222077,14 +222644,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137188] = 3, + [133491] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1508), 2, + ACTIONS(2081), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1506), 25, + ACTIONS(2079), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222110,14 +222677,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137224] = 3, + [133527] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2030), 2, + ACTIONS(1735), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2028), 25, + ACTIONS(1733), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222143,14 +222710,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137260] = 3, + [133563] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1648), 2, + ACTIONS(1739), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1646), 25, + ACTIONS(1737), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222176,14 +222743,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137296] = 3, + [133599] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2034), 2, + ACTIONS(1759), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2032), 25, + ACTIONS(1757), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222209,14 +222776,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137332] = 3, + [133635] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2038), 2, + ACTIONS(1763), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2036), 25, + ACTIONS(1761), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222242,14 +222809,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137368] = 3, + [133671] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1488), 2, + ACTIONS(1767), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1486), 25, + ACTIONS(1765), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222275,14 +222842,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137404] = 3, + [133707] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1492), 2, + ACTIONS(1771), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1490), 25, + ACTIONS(1769), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222308,14 +222875,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137440] = 3, + [133743] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2042), 2, + ACTIONS(1775), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2040), 25, + ACTIONS(1773), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222341,14 +222908,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137476] = 3, + [133779] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1652), 2, + ACTIONS(1779), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1650), 25, + ACTIONS(1777), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222374,14 +222941,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137512] = 3, + [133815] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1660), 2, + ACTIONS(1635), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1658), 25, + ACTIONS(1633), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222407,14 +222974,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137548] = 3, + [133851] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 2, + ACTIONS(1791), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1662), 25, + ACTIONS(1789), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222440,14 +223007,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137584] = 3, + [133887] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1668), 2, + ACTIONS(1795), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1666), 25, + ACTIONS(1793), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222473,14 +223040,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137620] = 3, + [133923] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 2, + ACTIONS(1639), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1670), 25, + ACTIONS(1637), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222506,14 +223073,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137656] = 3, + [133959] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1680), 2, + ACTIONS(1643), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1678), 25, + ACTIONS(1641), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222539,14 +223106,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137692] = 3, + [133995] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1982), 2, + ACTIONS(1849), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1980), 25, + ACTIONS(1847), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222572,14 +223139,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137728] = 3, + [134031] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 2, + ACTIONS(1869), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1694), 25, + ACTIONS(1867), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222605,14 +223172,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137764] = 3, + [134067] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1700), 2, + ACTIONS(1647), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1698), 25, + ACTIONS(1645), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222638,14 +223205,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137800] = 3, + [134103] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 2, + ACTIONS(1651), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1718), 25, + ACTIONS(1649), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222671,14 +223238,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137836] = 3, + [134139] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1724), 2, + ACTIONS(1799), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1722), 25, + ACTIONS(1797), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222704,14 +223271,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137872] = 3, + [134175] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 2, + ACTIONS(1803), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1726), 25, + ACTIONS(1801), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222737,14 +223304,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137908] = 3, + [134211] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1732), 2, + ACTIONS(1807), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1730), 25, + ACTIONS(1805), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222770,14 +223337,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137944] = 3, + [134247] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1736), 2, + ACTIONS(1811), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1734), 25, + ACTIONS(1809), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222803,14 +223370,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137980] = 3, + [134283] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1740), 2, + ACTIONS(1451), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1738), 25, + ACTIONS(1449), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222836,14 +223403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138016] = 3, + [134319] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1496), 2, + ACTIONS(1821), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1494), 25, + ACTIONS(1819), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222869,14 +223436,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138052] = 3, + [134355] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1752), 2, + ACTIONS(1825), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1750), 25, + ACTIONS(1823), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222902,14 +223469,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138088] = 3, + [134391] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1756), 2, + ACTIONS(1603), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1754), 25, + ACTIONS(1601), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -222935,21 +223502,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138124] = 3, - ACTIONS(3465), 1, - anon_sym_COLON, + [134427] = 16, + ACTIONS(3762), 1, + sym_identifier, + ACTIONS(3764), 1, + anon_sym_LPAREN, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(5020), 1, + sym__dedent, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(3310), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4939), 26, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(2861), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(2949), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3532), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [134489] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1845), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(1843), 25, anon_sym_class, sym_identifier, - anon_sym_await, anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -222961,21 +223571,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_long, anon_sym_const, anon_sym_volatile, + anon_sym_ctypedef, anon_sym_struct, anon_sym_union, anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138160] = 3, + [134525] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1760), 2, + ACTIONS(1945), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1758), 25, + ACTIONS(1943), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223001,14 +223614,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138196] = 3, + [134561] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1764), 2, + ACTIONS(1989), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1762), 25, + ACTIONS(1987), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223034,14 +223647,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138232] = 3, + [134597] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1768), 2, + ACTIONS(1829), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1766), 25, + ACTIONS(1827), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223067,14 +223680,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138268] = 3, + [134633] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1772), 2, + ACTIONS(1567), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1770), 25, + ACTIONS(1565), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223100,14 +223713,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138304] = 3, + [134669] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1782), 2, + ACTIONS(1949), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1780), 25, + ACTIONS(1947), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223133,14 +223746,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138340] = 3, + [134705] = 9, + ACTIONS(4022), 1, + anon_sym_EQ, + ACTIONS(4027), 1, + anon_sym_not, + ACTIONS(4030), 1, + anon_sym_is, + STATE(2850), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1990), 2, + ACTIONS(4033), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1813), 2, + sym__not_in, + sym__is_not, + ACTIONS(4024), 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(4020), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_nogil, + [134753] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1579), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1988), 25, + ACTIONS(1577), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223166,14 +223818,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138376] = 3, + [134789] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1786), 2, + ACTIONS(1925), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1784), 25, + ACTIONS(1923), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223199,14 +223851,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138412] = 3, + [134825] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1934), 2, + ACTIONS(1659), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1932), 25, + ACTIONS(1657), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223232,14 +223884,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138448] = 3, + [134861] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2002), 2, + ACTIONS(1663), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2000), 25, + ACTIONS(1661), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223265,14 +223917,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138484] = 3, + [134897] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2010), 2, + ACTIONS(1667), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2008), 25, + ACTIONS(1665), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223298,99 +223950,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138520] = 16, - ACTIONS(3663), 1, + [134933] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1671), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(1669), 25, + anon_sym_class, sym_identifier, - ACTIONS(3665), 1, - anon_sym_LPAREN, - ACTIONS(3677), 1, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, anon_sym_long, - ACTIONS(5023), 1, - sym__dedent, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(3296), 1, - sym_c_type, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [134969] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(2137), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(2135), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, anon_sym_char, anon_sym_short, - ACTIONS(3679), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(2797), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(2931), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3560), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3671), 3, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [135005] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1415), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(1413), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138582] = 9, - ACTIONS(3966), 1, - anon_sym_not, - ACTIONS(3972), 1, - anon_sym_is, - ACTIONS(4015), 1, - anon_sym_EQ, - STATE(2898), 1, - aux_sym_comparison_operator_repeat1, + [135041] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3974), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1836), 2, - sym__not_in, - sym__is_not, - ACTIONS(3952), 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(4013), 13, - sym__newline, + ACTIONS(1419), 2, + sym__dedent, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_with, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_nogil, - [138630] = 3, + ACTIONS(1417), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [135077] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1592), 2, + ACTIONS(1423), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1590), 25, + ACTIONS(1421), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223416,14 +224115,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138666] = 3, + [135113] = 16, + ACTIONS(5022), 1, + sym_identifier, + ACTIONS(5025), 1, + anon_sym_LPAREN, + ACTIONS(5040), 1, + anon_sym_long, + ACTIONS(5046), 1, + sym__dedent, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(3310), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5034), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(5037), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5043), 2, + anon_sym_const, + anon_sym_volatile, + STATE(2861), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(2949), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3532), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(5031), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(5028), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [135175] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2026), 2, + ACTIONS(1575), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2024), 25, + ACTIONS(1573), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223449,14 +224194,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138702] = 3, + [135211] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1596), 2, + ACTIONS(1431), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1594), 25, + ACTIONS(1429), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223482,14 +224227,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138738] = 3, + [135247] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1500), 2, + ACTIONS(1435), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1498), 25, + ACTIONS(1433), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223515,14 +224260,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138774] = 3, + [135283] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1400), 2, + ACTIONS(1439), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1398), 25, + ACTIONS(1437), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223548,14 +224293,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138810] = 3, + [135319] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2074), 2, + ACTIONS(1443), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2072), 25, + ACTIONS(1441), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223581,14 +224326,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138846] = 3, + [135355] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1404), 2, + ACTIONS(1937), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1402), 25, + ACTIONS(1935), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223614,14 +224359,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138882] = 3, + [135391] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1814), 2, + ACTIONS(1571), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1812), 25, + ACTIONS(1569), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223647,14 +224392,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138918] = 3, + [135427] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1818), 2, + ACTIONS(1853), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1816), 25, + ACTIONS(1851), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223680,14 +224425,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138954] = 3, + [135463] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1822), 2, + ACTIONS(1857), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1820), 25, + ACTIONS(1855), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223713,14 +224458,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138990] = 3, + [135499] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2094), 2, + ACTIONS(1861), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2092), 25, + ACTIONS(1859), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223746,14 +224491,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139026] = 3, + [135535] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1846), 2, + ACTIONS(2021), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1844), 25, + ACTIONS(2019), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223779,14 +224524,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139062] = 3, + [135571] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1408), 2, + ACTIONS(2029), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1406), 25, + ACTIONS(2027), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223812,14 +224557,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139098] = 3, + [135607] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1412), 2, + ACTIONS(1675), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1410), 25, + ACTIONS(1673), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223845,21 +224590,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139134] = 3, - ACTIONS(3465), 1, - anon_sym_COLON, + [135643] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4939), 26, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + ACTIONS(1679), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(1677), 25, anon_sym_class, sym_identifier, - anon_sym_await, anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -223871,21 +224613,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_long, anon_sym_const, anon_sym_volatile, + anon_sym_ctypedef, anon_sym_struct, anon_sym_union, anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139170] = 3, + [135679] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1870), 2, + ACTIONS(1683), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1868), 25, + ACTIONS(1681), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223911,14 +224656,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139206] = 3, + [135715] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1874), 2, + ACTIONS(1499), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1872), 25, + ACTIONS(1497), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223944,14 +224689,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139242] = 3, + [135751] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1890), 2, + ACTIONS(1953), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1888), 25, + ACTIONS(1951), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -223977,14 +224722,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139278] = 3, + [135787] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1416), 2, + ACTIONS(1503), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1414), 25, + ACTIONS(1501), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224010,14 +224755,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139314] = 3, + [135823] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1420), 2, + ACTIONS(1957), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1418), 25, + ACTIONS(1955), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224043,14 +224788,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139350] = 3, + [135859] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1424), 2, + ACTIONS(1961), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1422), 25, + ACTIONS(1959), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224076,14 +224821,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139386] = 3, + [135895] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1428), 2, + ACTIONS(1969), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1426), 25, + ACTIONS(1967), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224109,14 +224854,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139422] = 3, + [135931] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1432), 2, + ACTIONS(1507), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1430), 25, + ACTIONS(1505), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224142,62 +224887,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139458] = 18, - ACTIONS(1134), 1, - anon_sym_None, - ACTIONS(1144), 1, - sym_string_start, - ACTIONS(4596), 1, - anon_sym_LPAREN, - ACTIONS(4606), 1, - anon_sym_LBRACK, - ACTIONS(4608), 1, - anon_sym_DASH, - ACTIONS(4612), 1, - anon_sym_LBRACE, - ACTIONS(4614), 1, - sym_integer, - ACTIONS(4616), 1, - sym_float, - ACTIONS(4893), 1, - anon_sym_STAR, - ACTIONS(4895), 1, - anon_sym_STAR_STAR, - ACTIONS(4931), 1, - sym_identifier, - STATE(3809), 1, - sym_string, - STATE(4060), 1, - sym_dotted_name, - STATE(4389), 1, - sym_splat_pattern, - STATE(5078), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4933), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4700), 9, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - sym_none, - [139524] = 3, + [135967] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1688), 2, + ACTIONS(1691), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1686), 25, + ACTIONS(1689), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224223,14 +224920,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139560] = 3, + [136003] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1906), 2, + ACTIONS(1973), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1904), 25, + ACTIONS(1971), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224256,14 +224953,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139596] = 3, + [136039] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1910), 2, + ACTIONS(1511), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1908), 25, + ACTIONS(1509), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224289,14 +224986,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139632] = 3, + [136075] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1950), 2, + ACTIONS(1515), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1948), 25, + ACTIONS(1513), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224322,14 +225019,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139668] = 3, + [136111] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1954), 2, + ACTIONS(1615), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1952), 25, + ACTIONS(1613), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224355,14 +225052,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139704] = 3, + [136147] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1958), 2, + ACTIONS(1519), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1956), 25, + ACTIONS(1517), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224388,14 +225085,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139740] = 3, + [136183] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1974), 2, + ACTIONS(2041), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1972), 25, + ACTIONS(2039), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224421,14 +225118,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139776] = 3, + [136219] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2070), 2, + ACTIONS(1885), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2068), 25, + ACTIONS(1883), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224454,14 +225151,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139812] = 3, + [136255] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1440), 2, + ACTIONS(1619), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1438), 25, + ACTIONS(1617), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224487,61 +225184,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139848] = 16, - ACTIONS(3663), 1, - sym_identifier, - ACTIONS(3665), 1, - anon_sym_LPAREN, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(5025), 1, - sym__dedent, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(3296), 1, - sym_c_type, + [136291] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(1623), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(1621), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, anon_sym_char, anon_sym_short, - ACTIONS(3679), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(2797), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(2931), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3560), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139910] = 4, - ACTIONS(1778), 1, - sym__dedent, - ACTIONS(5027), 1, - anon_sym_SEMI, + [136327] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1774), 25, + ACTIONS(1977), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(1975), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224567,14 +225250,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139948] = 3, + [136363] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1790), 2, + ACTIONS(2053), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1788), 25, + ACTIONS(2051), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224600,14 +225283,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139984] = 3, + [136399] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1810), 2, + ACTIONS(1877), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1808), 25, + ACTIONS(1875), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224633,14 +225316,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140020] = 3, + [136435] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1830), 2, + ACTIONS(1997), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1828), 25, + ACTIONS(1995), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224666,32 +225349,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140056] = 9, + [136471] = 9, ACTIONS(3985), 1, - anon_sym_EQ, - ACTIONS(3990), 1, anon_sym_not, - ACTIONS(3993), 1, + ACTIONS(3991), 1, anon_sym_is, - STATE(2898), 1, + ACTIONS(4018), 1, + anon_sym_EQ, + STATE(2850), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3996), 2, + ACTIONS(3993), 2, anon_sym_LT, anon_sym_GT, - STATE(1836), 2, + STATE(1813), 2, sym__not_in, sym__is_not, - ACTIONS(3987), 6, + ACTIONS(3971), 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(3983), 13, + ACTIONS(4016), 13, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -224705,14 +225388,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_nogil, - [140104] = 3, + [136519] = 16, + ACTIONS(3762), 1, + sym_identifier, + ACTIONS(3764), 1, + anon_sym_LPAREN, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(5048), 1, + sym__dedent, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(3310), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(2861), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(2949), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3532), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [136581] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2069), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(2067), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [136617] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1838), 2, + ACTIONS(2113), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1836), 25, + ACTIONS(2111), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224738,14 +225500,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140140] = 3, + [136653] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1850), 2, + ACTIONS(1411), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1848), 25, + ACTIONS(1409), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224771,14 +225533,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140176] = 3, + [136689] = 18, + ACTIONS(1139), 1, + anon_sym_None, + ACTIONS(1151), 1, + sym_string_start, + ACTIONS(4615), 1, + anon_sym_LPAREN, + ACTIONS(4625), 1, + anon_sym_LBRACK, + ACTIONS(4627), 1, + anon_sym_DASH, + ACTIONS(4631), 1, + anon_sym_LBRACE, + ACTIONS(4633), 1, + sym_integer, + ACTIONS(4635), 1, + sym_float, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4881), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + sym_identifier, + STATE(3824), 1, + sym_string, + STATE(4123), 1, + sym_dotted_name, + STATE(4388), 1, + sym_splat_pattern, + STATE(4997), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4960), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4795), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + sym_none, + [136755] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1854), 2, + ACTIONS(1699), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1852), 25, + ACTIONS(1697), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224804,14 +225614,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140212] = 3, + [136791] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1858), 2, + ACTIONS(2013), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1856), 25, + ACTIONS(2011), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224837,14 +225647,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140248] = 3, + [136827] = 4, + ACTIONS(1817), 1, + sym__dedent, + ACTIONS(5050), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1862), 2, + ACTIONS(1813), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [136865] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1889), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1860), 25, + ACTIONS(1887), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224870,14 +225714,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140284] = 3, + [136901] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1886), 2, + ACTIONS(2109), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1884), 25, + ACTIONS(2107), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224903,14 +225747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140320] = 3, + [136937] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1898), 2, + ACTIONS(1993), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1896), 25, + ACTIONS(1991), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224936,14 +225780,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140356] = 3, + [136973] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1893), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(1891), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [137009] = 16, + ACTIONS(3762), 1, + sym_identifier, + ACTIONS(3764), 1, + anon_sym_LPAREN, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(5052), 1, + sym__dedent, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(3310), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(2861), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(2949), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3532), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [137071] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1914), 2, + ACTIONS(1897), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1912), 25, + ACTIONS(1895), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -224969,14 +225892,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140392] = 3, + [137107] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1918), 2, + ACTIONS(1901), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1916), 25, + ACTIONS(1899), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -225002,14 +225925,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140428] = 3, + [137143] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1922), 2, + ACTIONS(1563), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1920), 25, + ACTIONS(1561), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -225035,14 +225958,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140464] = 3, + [137179] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1930), 2, + ACTIONS(1909), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1928), 25, + ACTIONS(1907), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -225068,14 +225991,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140500] = 3, + [137215] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1806), 2, + ACTIONS(1913), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1804), 25, + ACTIONS(1911), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -225101,13 +226024,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140536] = 3, - ACTIONS(2144), 1, - sym__dedent, + [137251] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2142), 25, + ACTIONS(1929), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(1927), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -225133,13 +226057,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140571] = 3, - ACTIONS(2132), 1, - sym__dedent, + [137287] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2130), 25, + ACTIONS(1427), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(1425), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -225165,41 +226090,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140606] = 16, - ACTIONS(1134), 1, + [137323] = 16, + ACTIONS(1719), 1, anon_sym_None, - ACTIONS(1144), 1, + ACTIONS(1727), 1, sym_string_start, - ACTIONS(4596), 1, + ACTIONS(4877), 1, anon_sym_LPAREN, - ACTIONS(4598), 1, + ACTIONS(4879), 1, anon_sym_STAR, - ACTIONS(4604), 1, + ACTIONS(4881), 1, anon_sym_STAR_STAR, - ACTIONS(4606), 1, + ACTIONS(4883), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(4885), 1, anon_sym_DASH, - ACTIONS(4612), 1, + ACTIONS(4889), 1, anon_sym_LBRACE, - ACTIONS(4614), 1, + ACTIONS(4891), 1, sym_integer, - ACTIONS(4616), 1, + ACTIONS(4893), 1, sym_float, - ACTIONS(4931), 1, + ACTIONS(5054), 1, sym_identifier, - STATE(3809), 1, + STATE(3976), 1, sym_string, - STATE(4060), 1, + STATE(4247), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5029), 3, + ACTIONS(5056), 3, anon_sym__, sym_true, sym_false, - STATE(4054), 10, + STATE(4262), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -225210,13 +226135,45 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [140667] = 3, - ACTIONS(2152), 1, + [137384] = 3, + ACTIONS(2141), 1, + sym__dedent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2139), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [137419] = 3, + ACTIONS(2145), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2150), 25, + ACTIONS(2143), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -225242,41 +226199,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140702] = 16, - ACTIONS(2220), 1, + [137454] = 16, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(2226), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4711), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4713), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4715), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4721), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4725), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4727), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4729), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(5031), 1, + ACTIONS(5058), 1, sym_identifier, - STATE(3971), 1, + STATE(3850), 1, sym_string, - STATE(4303), 1, + STATE(4151), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5033), 3, + ACTIONS(5060), 3, anon_sym__, sym_true, sym_false, - STATE(4146), 10, + STATE(4236), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -225287,41 +226244,41 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [140763] = 16, - ACTIONS(2220), 1, + [137515] = 16, + ACTIONS(1300), 1, anon_sym_None, - ACTIONS(2226), 1, + ACTIONS(1312), 1, sym_string_start, - ACTIONS(4711), 1, + ACTIONS(4704), 1, anon_sym_LPAREN, - ACTIONS(4713), 1, + ACTIONS(4708), 1, anon_sym_STAR, - ACTIONS(4715), 1, + ACTIONS(4710), 1, anon_sym_STAR_STAR, - ACTIONS(4717), 1, + ACTIONS(4712), 1, anon_sym_LBRACK, - ACTIONS(4721), 1, + ACTIONS(4714), 1, anon_sym_DASH, - ACTIONS(4725), 1, + ACTIONS(4718), 1, anon_sym_LBRACE, - ACTIONS(4727), 1, + ACTIONS(4720), 1, sym_integer, - ACTIONS(4729), 1, + ACTIONS(4722), 1, sym_float, - ACTIONS(5031), 1, + ACTIONS(5058), 1, sym_identifier, - STATE(3971), 1, + STATE(3850), 1, sym_string, - STATE(4303), 1, + STATE(4151), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5035), 3, + ACTIONS(5062), 3, anon_sym__, sym_true, sym_false, - STATE(4155), 10, + STATE(4240), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -225332,41 +226289,41 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [140824] = 16, - ACTIONS(1134), 1, + [137576] = 16, + ACTIONS(2245), 1, anon_sym_None, - ACTIONS(1144), 1, + ACTIONS(2253), 1, sym_string_start, - ACTIONS(4596), 1, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4598), 1, + ACTIONS(4741), 1, anon_sym_STAR, - ACTIONS(4604), 1, + ACTIONS(4743), 1, anon_sym_STAR_STAR, - ACTIONS(4606), 1, + ACTIONS(4745), 1, anon_sym_LBRACK, - ACTIONS(4608), 1, + ACTIONS(4749), 1, anon_sym_DASH, - ACTIONS(4612), 1, + ACTIONS(4753), 1, anon_sym_LBRACE, - ACTIONS(4614), 1, + ACTIONS(4755), 1, sym_integer, - ACTIONS(4616), 1, + ACTIONS(4757), 1, sym_float, - ACTIONS(4931), 1, + ACTIONS(5064), 1, sym_identifier, - STATE(3809), 1, + STATE(3869), 1, sym_string, - STATE(4060), 1, + STATE(4268), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5037), 3, + ACTIONS(5066), 3, anon_sym__, sym_true, sym_false, - STATE(4047), 10, + STATE(4167), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -225377,13 +226334,13 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [140885] = 3, - ACTIONS(2156), 1, + [137637] = 3, + ACTIONS(2157), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2154), 25, + ACTIONS(2155), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -225409,13 +226366,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140920] = 3, - ACTIONS(2128), 1, + [137672] = 16, + ACTIONS(2245), 1, + anon_sym_None, + ACTIONS(2253), 1, + sym_string_start, + ACTIONS(4739), 1, + anon_sym_LPAREN, + ACTIONS(4741), 1, + anon_sym_STAR, + ACTIONS(4743), 1, + anon_sym_STAR_STAR, + ACTIONS(4745), 1, + anon_sym_LBRACK, + ACTIONS(4749), 1, + anon_sym_DASH, + ACTIONS(4753), 1, + anon_sym_LBRACE, + ACTIONS(4755), 1, + sym_integer, + ACTIONS(4757), 1, + sym_float, + ACTIONS(5064), 1, + sym_identifier, + STATE(3869), 1, + sym_string, + STATE(4268), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5068), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4169), 10, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + sym_none, + [137733] = 3, + ACTIONS(2153), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2126), 25, + ACTIONS(2151), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -225441,41 +226443,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140955] = 16, - ACTIONS(2118), 1, + [137768] = 16, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(2124), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(4891), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4893), 1, + ACTIONS(4617), 1, anon_sym_STAR, - ACTIONS(4895), 1, + ACTIONS(4623), 1, anon_sym_STAR_STAR, - ACTIONS(4897), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4899), 1, + ACTIONS(4627), 1, anon_sym_DASH, - ACTIONS(4903), 1, + ACTIONS(4631), 1, anon_sym_LBRACE, - ACTIONS(4905), 1, + ACTIONS(4633), 1, sym_integer, - ACTIONS(4907), 1, + ACTIONS(4635), 1, sym_float, - ACTIONS(5039), 1, + ACTIONS(4958), 1, sym_identifier, - STATE(3883), 1, + STATE(3824), 1, sym_string, - STATE(4288), 1, + STATE(4123), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5041), 3, + ACTIONS(5070), 3, anon_sym__, sym_true, sym_false, - STATE(4264), 10, + STATE(4122), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -225486,13 +226488,13 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [141016] = 3, - ACTIONS(2148), 1, + [137829] = 3, + ACTIONS(2181), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2146), 25, + ACTIONS(2179), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -225518,13 +226520,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141051] = 3, - ACTIONS(2160), 1, + [137864] = 3, + ACTIONS(2215), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2158), 25, + ACTIONS(2213), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -225550,131 +226552,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141086] = 16, - ACTIONS(2118), 1, - anon_sym_None, - ACTIONS(2124), 1, - sym_string_start, - ACTIONS(4891), 1, - anon_sym_LPAREN, - ACTIONS(4893), 1, - anon_sym_STAR, - ACTIONS(4895), 1, - anon_sym_STAR_STAR, - ACTIONS(4897), 1, - anon_sym_LBRACK, - ACTIONS(4899), 1, - anon_sym_DASH, - ACTIONS(4903), 1, - anon_sym_LBRACE, - ACTIONS(4905), 1, - sym_integer, - ACTIONS(4907), 1, - sym_float, - ACTIONS(5039), 1, - sym_identifier, - STATE(3883), 1, - sym_string, - STATE(4288), 1, - sym_dotted_name, + [137899] = 3, + ACTIONS(2149), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5043), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4269), 10, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_splat_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - sym_none, - [141147] = 16, - ACTIONS(1291), 1, - anon_sym_None, - ACTIONS(1301), 1, - sym_string_start, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4691), 1, - anon_sym_STAR, - ACTIONS(4693), 1, - anon_sym_STAR_STAR, - ACTIONS(4695), 1, - anon_sym_LBRACK, - ACTIONS(4697), 1, - anon_sym_DASH, - ACTIONS(4701), 1, - anon_sym_LBRACE, - ACTIONS(4703), 1, - sym_integer, - ACTIONS(4705), 1, - sym_float, - ACTIONS(5045), 1, + ACTIONS(2147), 25, + anon_sym_class, sym_identifier, - STATE(3855), 1, - sym_string, - STATE(4138), 1, - sym_dotted_name, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [137934] = 3, + ACTIONS(2173), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5047), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4282), 10, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_splat_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - sym_none, - [141208] = 16, - ACTIONS(1291), 1, + ACTIONS(2171), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [137969] = 16, + ACTIONS(1139), 1, anon_sym_None, - ACTIONS(1301), 1, + ACTIONS(1151), 1, sym_string_start, - ACTIONS(4687), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4691), 1, + ACTIONS(4617), 1, anon_sym_STAR, - ACTIONS(4693), 1, + ACTIONS(4623), 1, anon_sym_STAR_STAR, - ACTIONS(4695), 1, + ACTIONS(4625), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, + ACTIONS(4627), 1, anon_sym_DASH, - ACTIONS(4701), 1, + ACTIONS(4631), 1, anon_sym_LBRACE, - ACTIONS(4703), 1, + ACTIONS(4633), 1, sym_integer, - ACTIONS(4705), 1, + ACTIONS(4635), 1, sym_float, - ACTIONS(5045), 1, + ACTIONS(4958), 1, sym_identifier, - STATE(3855), 1, + STATE(3824), 1, sym_string, - STATE(4138), 1, + STATE(4123), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5049), 3, + ACTIONS(5072), 3, anon_sym__, sym_true, sym_false, - STATE(4295), 10, + STATE(4101), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -225685,13 +226661,13 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [141269] = 3, - ACTIONS(2140), 1, + [138030] = 3, + ACTIONS(2177), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2138), 25, + ACTIONS(2175), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -225717,221 +226693,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141304] = 3, - ACTIONS(2136), 1, - sym__dedent, + [138065] = 16, + ACTIONS(1719), 1, + anon_sym_None, + ACTIONS(1727), 1, + sym_string_start, + ACTIONS(4877), 1, + anon_sym_LPAREN, + ACTIONS(4879), 1, + anon_sym_STAR, + ACTIONS(4881), 1, + anon_sym_STAR_STAR, + ACTIONS(4883), 1, + anon_sym_LBRACK, + ACTIONS(4885), 1, + anon_sym_DASH, + ACTIONS(4889), 1, + anon_sym_LBRACE, + ACTIONS(4891), 1, + sym_integer, + ACTIONS(4893), 1, + sym_float, + ACTIONS(5054), 1, + sym_identifier, + STATE(3976), 1, + sym_string, + STATE(4247), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2134), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_char, - anon_sym_short, - anon_sym_long, - anon_sym_const, - anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [141339] = 16, - ACTIONS(366), 1, + ACTIONS(5074), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4260), 10, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + sym_none, + [138126] = 16, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(4941), 1, + ACTIONS(4567), 1, anon_sym_class, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3705), 1, + STATE(3683), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - STATE(2615), 2, + STATE(2620), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141399] = 16, - ACTIONS(366), 1, + [138186] = 16, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(4528), 1, + ACTIONS(4553), 1, anon_sym_class, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3717), 1, + STATE(3699), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - STATE(2615), 2, + STATE(2620), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141459] = 16, - ACTIONS(366), 1, + [138246] = 16, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(3859), 1, + ACTIONS(3878), 1, sym_identifier, - ACTIONS(4555), 1, + ACTIONS(4966), 1, anon_sym_class, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3051), 1, + STATE(3045), 1, sym_int_type, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(3434), 1, + STATE(3411), 1, sym_operator_name, - STATE(3678), 1, + STATE(3656), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3821), 2, + ACTIONS(3804), 2, anon_sym_const, anon_sym_volatile, - STATE(2615), 2, + STATE(2620), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(101), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141519] = 14, - ACTIONS(3663), 1, - sym_identifier, - ACTIONS(3665), 1, - anon_sym_LPAREN, - ACTIONS(3677), 1, - anon_sym_long, - STATE(3080), 1, - sym__signedness, - STATE(3266), 1, - sym__longness, - STATE(3309), 1, - sym_c_type, + [138306] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3675), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3679), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2615), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3560), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3671), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [141574] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4159), 4, + ACTIONS(4210), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_GT, - ACTIONS(4161), 20, + ACTIONS(4212), 20, anon_sym_class, sym_identifier, anon_sym_api, @@ -225942,66 +226890,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_complex, anon_sym_operator, anon_sym_signed, - anon_sym_unsigned, - anon_sym_char, - anon_sym_short, - anon_sym_long, - anon_sym_const, - anon_sym_volatile, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [141607] = 15, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(3859), 1, - sym_identifier, - STATE(2986), 1, - sym__signedness, - STATE(3051), 1, - sym_int_type, - STATE(3185), 1, - sym__longness, - STATE(3434), 1, - sym_operator_name, - STATE(3705), 1, - sym_maybe_typed_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(362), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(364), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3821), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2615), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(101), 5, - anon_sym_api, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141664] = 3, + [138339] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4269), 2, + ACTIONS(4298), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4267), 22, + ACTIONS(4296), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -226024,14 +226930,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [141697] = 3, + [138372] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3956), 2, + ACTIONS(4236), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3942), 22, + ACTIONS(4234), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -226054,14 +226960,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [141730] = 3, + [138405] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5076), 12, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_sizeof, + ACTIONS(5078), 12, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + [138438] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4306), 2, + ACTIONS(4255), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4304), 22, + ACTIONS(4253), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -226084,14 +227020,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [141763] = 3, + [138471] = 13, + ACTIONS(3468), 1, + anon_sym_SLASH, + ACTIONS(3478), 1, + anon_sym_COMMA, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3997), 1, + anon_sym_STAR, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(4003), 1, + anon_sym_complex, + STATE(3258), 1, + aux_sym_class_definition_repeat2, + STATE(3279), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3461), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(3423), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3999), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(3457), 9, + anon_sym_GT_GT, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_CARET, + anon_sym_LT_LT, + [138524] = 15, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(3878), 1, + sym_identifier, + STATE(3000), 1, + sym__signedness, + STATE(3045), 1, + sym_int_type, + STATE(3204), 1, + sym__longness, + STATE(3411), 1, + sym_operator_name, + STATE(3656), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(367), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(369), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3804), 2, + anon_sym_const, + anon_sym_volatile, + STATE(2620), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [138581] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4213), 2, + ACTIONS(3975), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4211), 22, + ACTIONS(3961), 22, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -226114,41 +227132,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [141796] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5051), 12, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_sizeof, - ACTIONS(5053), 12, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - sym_ellipsis, - sym_float, - [141829] = 3, + [138614] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5055), 12, + ACTIONS(5080), 12, anon_sym_print, anon_sym_match, anon_sym_async, @@ -226161,7 +227149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, anon_sym_sizeof, - ACTIONS(5057), 12, + ACTIONS(5082), 12, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, @@ -226172,58 +227160,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_TILDE, anon_sym_LT, - sym_ellipsis, + anon_sym_DOT_DOT_DOT, sym_float, - [141862] = 13, - ACTIONS(3449), 1, - anon_sym_SLASH, - ACTIONS(3459), 1, - anon_sym_COMMA, - ACTIONS(4003), 1, - anon_sym_DOT, - ACTIONS(4005), 1, - anon_sym_STAR, - ACTIONS(4009), 1, - anon_sym_LBRACK, - ACTIONS(4011), 1, - anon_sym_complex, - STATE(3249), 1, - aux_sym_class_definition_repeat2, - STATE(3278), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3442), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(3448), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4007), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(3438), 9, - anon_sym_GT_GT, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_CARET, - anon_sym_LT_LT, - [141915] = 3, + [138647] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4195), 4, + ACTIONS(4178), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_GT, - ACTIONS(4197), 20, + ACTIONS(4180), 20, anon_sym_class, sym_identifier, anon_sym_api, @@ -226244,32 +227192,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141948] = 9, - ACTIONS(3966), 1, + [138680] = 14, + ACTIONS(3762), 1, + sym_identifier, + ACTIONS(3764), 1, + anon_sym_LPAREN, + ACTIONS(3776), 1, + anon_sym_long, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(3314), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(3778), 2, + anon_sym_const, + anon_sym_volatile, + STATE(2620), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3532), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [138735] = 9, + ACTIONS(3985), 1, anon_sym_not, - ACTIONS(4015), 1, + ACTIONS(4018), 1, anon_sym_EQ, - ACTIONS(4187), 1, + ACTIONS(4206), 1, anon_sym_is, - STATE(2943), 1, + STATE(2951), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4189), 2, + ACTIONS(4208), 2, anon_sym_LT, anon_sym_GT, - STATE(1871), 2, + STATE(1868), 2, sym__not_in, sym__is_not, - ACTIONS(4171), 6, + ACTIONS(4190), 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(4013), 9, + ACTIONS(4016), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -226279,32 +227268,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [141992] = 9, - ACTIONS(3985), 1, + [138779] = 9, + ACTIONS(4022), 1, anon_sym_EQ, - ACTIONS(3990), 1, + ACTIONS(4027), 1, anon_sym_not, - ACTIONS(4432), 1, + ACTIONS(4464), 1, anon_sym_is, - STATE(2943), 1, + STATE(2951), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4435), 2, + ACTIONS(4467), 2, anon_sym_LT, anon_sym_GT, - STATE(1871), 2, + STATE(1868), 2, sym__not_in, sym__is_not, - ACTIONS(4429), 6, + ACTIONS(4461), 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(3983), 9, + ACTIONS(4020), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -226314,66 +227303,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [142036] = 9, - ACTIONS(3966), 1, + [138823] = 9, + ACTIONS(4022), 1, + anon_sym_EQ, + ACTIONS(4027), 1, anon_sym_not, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4079), 1, + ACTIONS(4399), 1, anon_sym_is, - STATE(2945), 1, + STATE(2952), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4081), 2, + ACTIONS(4402), 2, anon_sym_LT, anon_sym_GT, - STATE(1894), 2, + STATE(1824), 2, sym__not_in, sym__is_not, - ACTIONS(4063), 6, + ACTIONS(4396), 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(4013), 8, + ACTIONS(4020), 8, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [142079] = 9, + sym_type_conversion, + [138866] = 9, ACTIONS(3985), 1, - anon_sym_as, - ACTIONS(3990), 1, anon_sym_not, - ACTIONS(4361), 1, + ACTIONS(4018), 1, + anon_sym_as, + ACTIONS(4102), 1, anon_sym_is, - STATE(2945), 1, + STATE(2957), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4364), 2, + ACTIONS(4104), 2, anon_sym_LT, anon_sym_GT, - STATE(1894), 2, + STATE(1802), 2, sym__not_in, sym__is_not, - ACTIONS(4358), 6, + ACTIONS(4086), 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(3983), 8, + ACTIONS(4016), 8, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -226382,30 +227371,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [142122] = 8, - ACTIONS(3966), 1, + [138909] = 8, + ACTIONS(4027), 1, anon_sym_not, - ACTIONS(4239), 1, + ACTIONS(4478), 1, anon_sym_is, - STATE(2947), 1, + STATE(2954), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4241), 2, + ACTIONS(4481), 2, anon_sym_LT, anon_sym_GT, - STATE(1866), 2, + STATE(1876), 2, sym__not_in, sym__is_not, - ACTIONS(4223), 6, + ACTIONS(4475), 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(4013), 9, + ACTIONS(4020), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -226415,149 +227404,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [142163] = 8, - ACTIONS(3990), 1, + [138950] = 9, + ACTIONS(3985), 1, anon_sym_not, - ACTIONS(4453), 1, + ACTIONS(4018), 1, + anon_sym_EQ, + ACTIONS(4066), 1, anon_sym_is, - STATE(2947), 1, + STATE(2952), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4456), 2, + ACTIONS(4068), 2, anon_sym_LT, anon_sym_GT, - STATE(1866), 2, + STATE(1824), 2, sym__not_in, sym__is_not, - ACTIONS(4450), 6, + ACTIONS(4050), 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(3983), 9, - anon_sym_DOT, + ACTIONS(4016), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [142204] = 9, - ACTIONS(3966), 1, + sym_type_conversion, + [138993] = 8, + ACTIONS(3985), 1, anon_sym_not, - ACTIONS(4015), 1, - anon_sym_EQ, - ACTIONS(4047), 1, + ACTIONS(4355), 1, anon_sym_is, - STATE(2949), 1, + STATE(2954), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4049), 2, + ACTIONS(4357), 2, anon_sym_LT, anon_sym_GT, - STATE(1801), 2, + STATE(1876), 2, sym__not_in, sym__is_not, - ACTIONS(4031), 6, + ACTIONS(4339), 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(4013), 8, + ACTIONS(4016), 9, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [142247] = 9, - ACTIONS(3985), 1, - anon_sym_EQ, - ACTIONS(3990), 1, + [139034] = 9, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4027), 1, anon_sym_not, - ACTIONS(4294), 1, + ACTIONS(4362), 1, anon_sym_is, - STATE(2949), 1, + STATE(2957), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4297), 2, + ACTIONS(4365), 2, anon_sym_LT, anon_sym_GT, - STATE(1801), 2, + STATE(1802), 2, sym__not_in, sym__is_not, - ACTIONS(4291), 6, + ACTIONS(4359), 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(3983), 8, + ACTIONS(4020), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [142290] = 4, + [139077] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3657), 2, + ACTIONS(3682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3661), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(3652), 14, + ACTIONS(3680), 19, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [142322] = 4, + sym_type_conversion, + [139107] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 2, + ACTIONS(3666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3593), 5, - anon_sym_RPAREN, + ACTIONS(3670), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(3438), 14, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(3661), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -226572,241 +227560,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [142354] = 4, - ACTIONS(5059), 1, - anon_sym_STAR, + [139139] = 9, + ACTIONS(3985), 1, + anon_sym_not, + ACTIONS(4018), 1, + anon_sym_as, + ACTIONS(4146), 1, + anon_sym_is, + STATE(2967), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4101), 6, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4091), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + ACTIONS(4148), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1877), 2, + sym__not_in, + sym__is_not, + ACTIONS(4130), 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(4016), 7, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_with, - anon_sym_EQ, - anon_sym_PIPE, + anon_sym_async, + anon_sym_for, anon_sym_and, anon_sym_or, - anon_sym_nogil, - [142386] = 3, + [139181] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3622), 2, + ACTIONS(565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3620), 19, + ACTIONS(596), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(563), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [139213] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3468), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3625), 5, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(3457), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - sym_type_conversion, - [142416] = 16, - ACTIONS(5061), 1, + [139245] = 16, + ACTIONS(5084), 1, sym_identifier, - ACTIONS(5063), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5065), 1, + ACTIONS(5088), 1, anon_sym_COLON, - ACTIONS(5067), 1, + ACTIONS(5090), 1, anon_sym_RBRACK, - ACTIONS(5069), 1, + ACTIONS(5092), 1, sym_integer, - ACTIONS(5077), 1, + ACTIONS(5100), 1, anon_sym_long, - STATE(3202), 1, + STATE(3193), 1, sym__signedness, - STATE(3389), 1, + STATE(3421), 1, sym__longness, - STATE(4137), 1, + STATE(4249), 1, sym_c_type, - STATE(4540), 1, + STATE(4858), 1, sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5073), 2, + ACTIONS(5096), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5075), 2, + ACTIONS(5098), 2, anon_sym_char, anon_sym_short, - ACTIONS(5079), 2, + ACTIONS(5102), 2, anon_sym_const, anon_sym_volatile, - STATE(3312), 2, + STATE(3334), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5071), 3, + ACTIONS(5094), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [142472] = 3, + [139301] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 2, + ACTIONS(565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3624), 19, + ACTIONS(3103), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(563), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - sym_type_conversion, - [142502] = 3, + [139333] = 4, + ACTIONS(5104), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3624), 19, - anon_sym_DOT, + ACTIONS(4120), 6, anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4110), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_STAR_STAR, + anon_sym_with, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - sym_type_conversion, - [142532] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_nogil, + [139365] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 2, + ACTIONS(3468), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3605), 19, + ACTIONS(5106), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(3457), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - sym_type_conversion, - [142562] = 9, - ACTIONS(3966), 1, - anon_sym_not, - ACTIONS(4015), 1, + [139397] = 9, + ACTIONS(4022), 1, anon_sym_as, - ACTIONS(4155), 1, - anon_sym_is, - STATE(2964), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4157), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1826), 2, - sym__not_in, - sym__is_not, - ACTIONS(4139), 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(4013), 7, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [142604] = 9, - ACTIONS(3966), 1, + ACTIONS(4027), 1, anon_sym_not, - ACTIONS(4015), 1, - anon_sym_as, - ACTIONS(4127), 1, + ACTIONS(4455), 1, anon_sym_is, - STATE(2968), 1, + STATE(2967), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4129), 2, + ACTIONS(4458), 2, anon_sym_LT, anon_sym_GT, - STATE(1883), 2, + STATE(1877), 2, sym__not_in, sym__is_not, - ACTIONS(4111), 6, + ACTIONS(4452), 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(4013), 7, + ACTIONS(4020), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -226814,183 +227806,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [142646] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(836), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3080), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(834), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [142678] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3449), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5081), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(3438), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [142710] = 16, - ACTIONS(5063), 1, + [139439] = 16, + ACTIONS(5084), 1, + sym_identifier, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5065), 1, + ACTIONS(5088), 1, anon_sym_COLON, - ACTIONS(5067), 1, + ACTIONS(5100), 1, + anon_sym_long, + ACTIONS(5108), 1, anon_sym_RBRACK, - ACTIONS(5069), 1, + ACTIONS(5110), 1, sym_integer, - ACTIONS(5077), 1, - anon_sym_long, - ACTIONS(5083), 1, - sym_identifier, - STATE(3202), 1, + STATE(3193), 1, sym__signedness, - STATE(3389), 1, + STATE(3421), 1, sym__longness, - STATE(4137), 1, + STATE(4309), 1, sym_c_type, - STATE(4540), 1, + STATE(4612), 1, sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5073), 2, + ACTIONS(5096), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5075), 2, + ACTIONS(5098), 2, anon_sym_char, anon_sym_short, - ACTIONS(5079), 2, + ACTIONS(5102), 2, anon_sym_const, anon_sym_volatile, - STATE(3312), 2, + STATE(3334), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5071), 3, + ACTIONS(5094), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [142766] = 16, - ACTIONS(5063), 1, + [139495] = 16, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5065), 1, + ACTIONS(5088), 1, anon_sym_COLON, - ACTIONS(5077), 1, + ACTIONS(5100), 1, anon_sym_long, - ACTIONS(5083), 1, + ACTIONS(5112), 1, sym_identifier, - ACTIONS(5085), 1, + ACTIONS(5114), 1, anon_sym_RBRACK, - ACTIONS(5087), 1, + ACTIONS(5116), 1, sym_integer, - STATE(3202), 1, + STATE(3193), 1, sym__signedness, - STATE(3389), 1, + STATE(3421), 1, sym__longness, - STATE(4223), 1, + STATE(4253), 1, sym_c_type, - STATE(4814), 1, + STATE(4835), 1, sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5073), 2, + ACTIONS(5096), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5075), 2, + ACTIONS(5098), 2, anon_sym_char, anon_sym_short, - ACTIONS(5079), 2, + ACTIONS(5102), 2, anon_sym_const, anon_sym_volatile, - STATE(3312), 2, + STATE(3334), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5071), 3, + ACTIONS(5094), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [142822] = 9, - ACTIONS(3985), 1, - anon_sym_as, - ACTIONS(3990), 1, - anon_sym_not, - ACTIONS(4441), 1, - anon_sym_is, - STATE(2964), 1, - aux_sym_comparison_operator_repeat1, + [139551] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4444), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1826), 2, - sym__not_in, - sym__is_not, - ACTIONS(4438), 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(3983), 7, + ACTIONS(3623), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3621), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [142864] = 3, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + sym_type_conversion, + [139581] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 2, + ACTIONS(3648), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3605), 19, + ACTIONS(3646), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -227010,14 +227940,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, sym_type_conversion, - [142894] = 3, + [139611] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3591), 2, + ACTIONS(3674), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3589), 19, + ACTIONS(3672), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -227037,136 +227967,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, sym_type_conversion, - [142924] = 4, + [139641] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 2, + ACTIONS(3682), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1192), 5, - anon_sym_RPAREN, + ACTIONS(3680), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(834), 14, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + sym_type_conversion, + [139671] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3678), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3676), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + sym_type_conversion, + [139701] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3678), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3676), 19, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [142956] = 9, + sym_type_conversion, + [139731] = 9, ACTIONS(3985), 1, - anon_sym_as, - ACTIONS(3990), 1, anon_sym_not, - ACTIONS(4423), 1, + ACTIONS(4018), 1, + anon_sym_as, + ACTIONS(4174), 1, anon_sym_is, - STATE(2968), 1, + STATE(2985), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4426), 2, + ACTIONS(4176), 2, anon_sym_LT, anon_sym_GT, - STATE(1883), 2, + STATE(1853), 2, sym__not_in, sym__is_not, - ACTIONS(4420), 6, + ACTIONS(4158), 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(3983), 7, - anon_sym_RPAREN, + ACTIONS(4016), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [142998] = 4, + [139773] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3587), 2, + ACTIONS(565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3459), 5, + ACTIONS(1199), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(3582), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [143030] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3642), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3640), 19, + anon_sym_not, + anon_sym_or, + ACTIONS(563), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - sym_type_conversion, - [143060] = 4, + [139805] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 2, + ACTIONS(3632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3459), 5, + ACTIONS(3625), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(3438), 14, + ACTIONS(3629), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -227181,100 +228137,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143092] = 16, - ACTIONS(5063), 1, + [139837] = 16, + ACTIONS(5084), 1, + sym_identifier, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5065), 1, + ACTIONS(5088), 1, anon_sym_COLON, - ACTIONS(5077), 1, + ACTIONS(5100), 1, anon_sym_long, - ACTIONS(5083), 1, - sym_identifier, - ACTIONS(5089), 1, + ACTIONS(5114), 1, anon_sym_RBRACK, - ACTIONS(5091), 1, + ACTIONS(5116), 1, sym_integer, - STATE(3202), 1, + STATE(3193), 1, sym__signedness, - STATE(3389), 1, + STATE(3421), 1, sym__longness, - STATE(4153), 1, + STATE(4253), 1, sym_c_type, - STATE(4600), 1, + STATE(4835), 1, sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5073), 2, + ACTIONS(5096), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5075), 2, + ACTIONS(5098), 2, anon_sym_char, anon_sym_short, - ACTIONS(5079), 2, + ACTIONS(5102), 2, anon_sym_const, anon_sym_volatile, - STATE(3312), 2, + STATE(3334), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5071), 3, + ACTIONS(5094), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [143148] = 16, - ACTIONS(5063), 1, + [139893] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1201), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1199), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1402), 14, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(5065), 1, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [139925] = 16, + ACTIONS(5084), 1, + sym_identifier, + ACTIONS(5086), 1, + anon_sym_LPAREN, + ACTIONS(5088), 1, anon_sym_COLON, - ACTIONS(5077), 1, + ACTIONS(5100), 1, anon_sym_long, - ACTIONS(5083), 1, - sym_identifier, - ACTIONS(5093), 1, + ACTIONS(5118), 1, anon_sym_RBRACK, - ACTIONS(5095), 1, + ACTIONS(5120), 1, sym_integer, - STATE(3202), 1, + STATE(3193), 1, sym__signedness, - STATE(3389), 1, + STATE(3421), 1, sym__longness, - STATE(4166), 1, + STATE(4208), 1, sym_c_type, - STATE(4765), 1, + STATE(4872), 1, sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5073), 2, + ACTIONS(5096), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5075), 2, + ACTIONS(5098), 2, anon_sym_char, anon_sym_short, - ACTIONS(5079), 2, + ACTIONS(5102), 2, anon_sym_const, anon_sym_volatile, - STATE(3312), 2, + STATE(3334), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5071), 3, + ACTIONS(5094), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [143204] = 4, + [139981] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1194), 2, + ACTIONS(3644), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1192), 5, + ACTIONS(3478), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1391), 14, + ACTIONS(3639), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -227289,20 +228273,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143236] = 4, + [140013] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3614), 2, + ACTIONS(3468), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3618), 5, + ACTIONS(3478), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(3609), 14, + ACTIONS(3457), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -227317,20 +228301,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143268] = 4, + [140045] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 2, + ACTIONS(3655), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(867), 5, + ACTIONS(3659), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(834), 14, + ACTIONS(3650), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -227345,23 +228329,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143300] = 4, + [140077] = 9, + ACTIONS(4022), 1, + anon_sym_as, + ACTIONS(4027), 1, + anon_sym_not, + ACTIONS(4440), 1, + anon_sym_is, + STATE(2985), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4443), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1853), 2, + sym__not_in, + sym__is_not, + ACTIONS(4437), 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(4020), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [140119] = 6, + ACTIONS(5122), 1, + anon_sym_as, + ACTIONS(5125), 1, + anon_sym_and, + ACTIONS(5127), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3598), 2, + ACTIONS(4243), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3593), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(3595), 14, + ACTIONS(4238), 15, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, + anon_sym_if, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -227373,79 +228391,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143332] = 4, - ACTIONS(5097), 1, - anon_sym_and, + [140154] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4213), 2, + ACTIONS(3468), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4211), 17, + ACTIONS(3625), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(3457), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143363] = 7, - ACTIONS(1251), 1, - anon_sym_long, - STATE(3178), 1, - sym__longness, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5103), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5105), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5099), 5, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5101), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [143400] = 7, - ACTIONS(5097), 1, + [140185] = 7, + ACTIONS(5125), 1, anon_sym_and, - ACTIONS(5107), 1, + ACTIONS(5127), 1, + anon_sym_or, + ACTIONS(5129), 1, anon_sym_as, - ACTIONS(5109), 1, + ACTIONS(5131), 1, anon_sym_if, - ACTIONS(5111), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4356), 2, + ACTIONS(4390), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4354), 14, + ACTIONS(4388), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -227460,19 +228448,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143437] = 4, + [140222] = 7, + ACTIONS(5125), 1, + anon_sym_and, + ACTIONS(5127), 1, + anon_sym_or, + ACTIONS(5129), 1, + anon_sym_as, + ACTIONS(5131), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 2, + ACTIONS(4274), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1192), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(834), 14, + ACTIONS(4272), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -227487,19 +228478,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143468] = 4, + [140259] = 7, + ACTIONS(5125), 1, + anon_sym_and, + ACTIONS(5127), 1, + anon_sym_or, + ACTIONS(5129), 1, + anon_sym_as, + ACTIONS(5131), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 2, + ACTIONS(4266), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3080), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(834), 14, + ACTIONS(4264), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -227514,22 +228508,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143499] = 7, - ACTIONS(5097), 1, - anon_sym_and, - ACTIONS(5107), 1, - anon_sym_as, - ACTIONS(5109), 1, - anon_sym_if, - ACTIONS(5111), 1, - anon_sym_or, + [140296] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4334), 2, + ACTIONS(565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4332), 14, + ACTIONS(3103), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(563), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -227544,19 +228535,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143536] = 4, + [140327] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 2, + ACTIONS(565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5081), 4, + ACTIONS(1199), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_not, anon_sym_or, - ACTIONS(3438), 14, + ACTIONS(563), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -227571,25 +228562,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143567] = 7, - ACTIONS(5097), 1, + [140358] = 16, + ACTIONS(1260), 1, + anon_sym_long, + ACTIONS(4827), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5133), 1, + sym_identifier, + ACTIONS(5135), 1, + anon_sym_RPAREN, + STATE(2995), 1, + sym__signedness, + STATE(3085), 1, + sym_int_type, + STATE(3209), 1, + sym__longness, + STATE(3430), 1, + sym_operator_name, + STATE(4185), 1, + sym_maybe_typed_name, + STATE(5230), 1, + sym__typedargslist, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1256), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1258), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5137), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(1252), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [140413] = 5, + ACTIONS(5125), 1, anon_sym_and, - ACTIONS(5107), 1, - anon_sym_as, - ACTIONS(5109), 1, - anon_sym_if, - ACTIONS(5111), 1, + ACTIONS(5127), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4261), 2, + ACTIONS(4251), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4259), 14, + ACTIONS(4249), 16, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -227601,52 +228629,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143604] = 7, - ACTIONS(366), 1, + [140446] = 7, + ACTIONS(1260), 1, anon_sym_long, - STATE(3181), 1, + STATE(3191), 1, sym__longness, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(5143), 2, anon_sym_int, anon_sym_double, - ACTIONS(5115), 2, + ACTIONS(5145), 2, anon_sym_char, anon_sym_short, - ACTIONS(5099), 5, + ACTIONS(5139), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5101), 9, - sym__newline, + ACTIONS(5141), 9, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [143641] = 7, - ACTIONS(5097), 1, + [140483] = 7, + ACTIONS(5125), 1, anon_sym_and, - ACTIONS(5107), 1, + ACTIONS(5127), 1, + anon_sym_or, + ACTIONS(5129), 1, anon_sym_as, - ACTIONS(5109), 1, + ACTIONS(5131), 1, anon_sym_if, - ACTIONS(5111), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4255), 2, + ACTIONS(4282), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4251), 14, + ACTIONS(4280), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -227661,50 +228689,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143678] = 5, - ACTIONS(5097), 1, + [140520] = 7, + ACTIONS(5125), 1, anon_sym_and, - ACTIONS(5111), 1, + ACTIONS(5127), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4205), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4203), 16, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [143711] = 7, - ACTIONS(5097), 1, - anon_sym_and, - ACTIONS(5107), 1, + ACTIONS(5129), 1, anon_sym_as, - ACTIONS(5109), 1, + ACTIONS(5131), 1, anon_sym_if, - ACTIONS(5111), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4341), 2, + ACTIONS(4226), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4339), 14, + ACTIONS(4222), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -227719,22 +228719,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143748] = 6, - ACTIONS(5097), 1, + [140557] = 4, + ACTIONS(5125), 1, anon_sym_and, - ACTIONS(5111), 1, - anon_sym_or, - ACTIONS(5117), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4372), 2, + ACTIONS(4255), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4367), 15, + ACTIONS(4253), 17, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_STAR_STAR, @@ -227743,24 +228740,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143783] = 4, + [140588] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 2, + ACTIONS(3468), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3593), 4, + ACTIONS(5106), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_not, anon_sym_or, - ACTIONS(3438), 14, + ACTIONS(3457), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -227775,54 +228773,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143814] = 14, - ACTIONS(366), 1, + [140619] = 7, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(5120), 1, - sym_identifier, - ACTIONS(5122), 1, - anon_sym_LPAREN, - ACTIONS(5124), 1, - sym__dedent, - STATE(2986), 1, - sym__signedness, - STATE(2996), 1, - aux_sym_fused_repeat1, - STATE(3185), 1, + STATE(3206), 1, sym__longness, - STATE(5182), 1, - sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(364), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(368), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3464), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(360), 3, + ACTIONS(5147), 2, anon_sym_int, anon_sym_double, + ACTIONS(5149), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5139), 5, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5141), 9, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [140656] = 14, + ACTIONS(3459), 1, + anon_sym_DOT, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(5151), 1, + sym_identifier, + ACTIONS(5156), 1, + anon_sym_COLON, + ACTIONS(5158), 1, + anon_sym_LBRACK, + ACTIONS(5162), 1, anon_sym_complex, - [143864] = 4, + STATE(3064), 1, + aux_sym_class_definition_repeat2, + STATE(3294), 1, + sym_type_index, + STATE(3398), 1, + sym_operator_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3466), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3482), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3211), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5153), 4, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [140706] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3614), 2, + ACTIONS(3655), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3618), 3, + ACTIONS(3659), 3, anon_sym_from, anon_sym_COMMA, anon_sym_in, - ACTIONS(3609), 14, + ACTIONS(3650), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -227837,368 +228865,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143894] = 15, - ACTIONS(1251), 1, - anon_sym_long, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5126), 1, - sym_identifier, - ACTIONS(5128), 1, - anon_sym_LPAREN, - STATE(2979), 1, - sym__signedness, - STATE(3009), 1, - sym_int_type, - STATE(3169), 1, - sym__longness, - STATE(3337), 1, - sym_function_pointer_type, - STATE(3446), 1, - sym_operator_name, - STATE(5451), 1, - sym_c_type, + [140736] = 5, + ACTIONS(5166), 1, + anon_sym_DOT, + STATE(3003), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1249), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5130), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(1243), 3, - anon_sym_int, - anon_sym_double, + ACTIONS(5164), 8, + anon_sym_import, + anon_sym_cimport, + anon_sym_as, + anon_sym_STAR, + anon_sym_if, + sym_identifier, anon_sym_complex, - [143946] = 4, - ACTIONS(5134), 1, + anon_sym___stdcall, + ACTIONS(5169), 9, + anon_sym_LPAREN, anon_sym_COMMA, - STATE(2995), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5132), 17, - sym__newline, - anon_sym_SEMI, 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, - [143976] = 14, - ACTIONS(366), 1, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [140768] = 14, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(5120), 1, + ACTIONS(5171), 1, sym_identifier, - ACTIONS(5122), 1, + ACTIONS(5173), 1, anon_sym_LPAREN, - ACTIONS(5137), 1, + ACTIONS(5175), 1, sym__dedent, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3002), 1, + STATE(3025), 1, aux_sym_fused_repeat1, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(5182), 1, + STATE(5120), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(368), 2, + ACTIONS(373), 2, anon_sym_const, anon_sym_volatile, - STATE(3464), 2, + STATE(3420), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [144026] = 15, - ACTIONS(1251), 1, - anon_sym_long, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5139), 1, - sym_identifier, - ACTIONS(5141), 1, - anon_sym_RPAREN, - STATE(2979), 1, - sym__signedness, - STATE(3057), 1, - sym_int_type, - STATE(3169), 1, - sym__longness, - STATE(3429), 1, - sym_operator_name, - STATE(4277), 1, - sym_maybe_typed_name, - STATE(5441), 1, - sym__typedargslist, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1247), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1249), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5143), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(1243), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [144078] = 14, - ACTIONS(4003), 1, + [140818] = 15, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5145), 1, + ACTIONS(5177), 1, sym_identifier, - ACTIONS(5151), 1, - anon_sym_complex, - STATE(3028), 1, - aux_sym_class_definition_repeat2, - STATE(3278), 1, - sym_type_index, - STATE(3441), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4005), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4007), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5149), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3191), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5147), 3, + ACTIONS(5179), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [144128] = 14, - ACTIONS(4003), 1, - anon_sym_DOT, - ACTIONS(4009), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5145), 1, - sym_identifier, - ACTIONS(5156), 1, + ACTIONS(5187), 1, anon_sym_complex, - STATE(3006), 1, + STATE(3011), 1, aux_sym_class_definition_repeat2, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, - STATE(3441), 1, + STATE(3400), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5153), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3189), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3442), 3, - anon_sym_LPAREN, + ACTIONS(5182), 2, anon_sym_RPAREN, anon_sym_COMMA, - [144178] = 4, - ACTIONS(5158), 1, - anon_sym_COMMA, - STATE(2995), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2494), 17, - sym__newline, - anon_sym_SEMI, + ACTIONS(5184), 2, 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, - [144208] = 14, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(4553), 1, - anon_sym_COLON, - ACTIONS(5160), 1, - sym_identifier, - ACTIONS(5162), 1, - anon_sym_LBRACK, - ACTIONS(5166), 1, - anon_sym_complex, - STATE(3024), 1, - aux_sym_class_definition_repeat2, - STATE(3261), 1, - sym_type_index, - STATE(3420), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3447), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3463), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3237), 2, + STATE(3185), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5153), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [144258] = 14, - ACTIONS(5168), 1, - sym_identifier, + [140870] = 14, + ACTIONS(371), 1, + anon_sym_long, ACTIONS(5171), 1, + sym_identifier, + ACTIONS(5173), 1, anon_sym_LPAREN, - ACTIONS(5183), 1, - anon_sym_long, ACTIONS(5189), 1, sym__dedent, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3002), 1, + STATE(3022), 1, aux_sym_fused_repeat1, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(5182), 1, + STATE(5120), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5177), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5180), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5186), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3464), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5174), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [144308] = 5, - ACTIONS(5193), 1, - anon_sym_DOT, - STATE(3003), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5191), 8, - anon_sym_import, - anon_sym_cimport, - anon_sym_as, - anon_sym_STAR, - anon_sym_if, - sym_identifier, + ACTIONS(367), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(369), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(373), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3420), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5196), 9, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [144340] = 14, - ACTIONS(3440), 1, + [140920] = 14, + ACTIONS(3459), 1, anon_sym_DOT, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(5160), 1, + ACTIONS(5151), 1, sym_identifier, - ACTIONS(5162), 1, + ACTIONS(5158), 1, anon_sym_LBRACK, - ACTIONS(5166), 1, + ACTIONS(5162), 1, anon_sym_complex, - ACTIONS(5198), 1, + ACTIONS(5191), 1, anon_sym_COLON, - STATE(3024), 1, + STATE(3064), 1, aux_sym_class_definition_repeat2, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, - STATE(3420), 1, + STATE(3398), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3447), 2, + ACTIONS(3466), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3463), 2, + ACTIONS(3482), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3237), 2, + STATE(3211), 2, sym_type_qualifier, aux_sym_c_type_repeat1, ACTIONS(5153), 4, @@ -228206,267 +229037,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [144390] = 14, - ACTIONS(366), 1, + [140970] = 14, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(5120), 1, + ACTIONS(5171), 1, sym_identifier, - ACTIONS(5122), 1, + ACTIONS(5173), 1, anon_sym_LPAREN, - ACTIONS(5200), 1, + ACTIONS(5193), 1, sym__dedent, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3002), 1, + STATE(3004), 1, aux_sym_fused_repeat1, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(5182), 1, + STATE(5120), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(368), 2, + ACTIONS(373), 2, anon_sym_const, anon_sym_volatile, - STATE(3464), 2, + STATE(3420), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [144440] = 14, - ACTIONS(4003), 1, + [141020] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3644), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3478), 3, + anon_sym_from, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(3639), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [141050] = 14, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5202), 1, + ACTIONS(5195), 1, sym_identifier, - ACTIONS(5208), 1, + ACTIONS(5201), 1, anon_sym_complex, - STATE(3120), 1, + STATE(3035), 1, aux_sym_class_definition_repeat2, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, - STATE(3397), 1, + STATE(3460), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5206), 2, + ACTIONS(5199), 2, anon_sym_COLON, anon_sym_EQ, - STATE(3171), 2, + STATE(3184), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5204), 3, + ACTIONS(5197), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - [144490] = 15, - ACTIONS(4003), 1, + [141100] = 15, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5210), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5212), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5212), 1, anon_sym_complex, - STATE(3010), 1, + STATE(3168), 1, aux_sym_class_definition_repeat2, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, - STATE(3386), 1, + STATE(3432), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5215), 2, + ACTIONS(5208), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(5217), 2, + ACTIONS(5210), 2, anon_sym_COLON, anon_sym_EQ, - STATE(3174), 2, + STATE(3207), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [144542] = 14, - ACTIONS(366), 1, + [141152] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3468), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3478), 3, + anon_sym_from, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(3457), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [141182] = 14, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(5120), 1, + ACTIONS(5171), 1, sym_identifier, - ACTIONS(5122), 1, + ACTIONS(5173), 1, anon_sym_LPAREN, - ACTIONS(5222), 1, + ACTIONS(5214), 1, sym__dedent, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3014), 1, + STATE(3020), 1, aux_sym_fused_repeat1, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(5182), 1, + STATE(5120), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(368), 2, + ACTIONS(373), 2, anon_sym_const, anon_sym_volatile, - STATE(3464), 2, + STATE(3420), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [144592] = 15, - ACTIONS(4003), 1, - anon_sym_DOT, - ACTIONS(4009), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5210), 1, - sym_identifier, - ACTIONS(5224), 1, - anon_sym_LPAREN, - ACTIONS(5231), 1, - anon_sym_complex, - STATE(3072), 1, - aux_sym_class_definition_repeat2, - STATE(3278), 1, - sym_type_index, - STATE(3386), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4005), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4007), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5227), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5229), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3176), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [144644] = 15, - ACTIONS(4003), 1, - anon_sym_DOT, - ACTIONS(4009), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5233), 1, - sym_identifier, - ACTIONS(5235), 1, - anon_sym_LPAREN, - ACTIONS(5242), 1, - anon_sym_complex, - STATE(3120), 1, - aux_sym_class_definition_repeat2, - STATE(3278), 1, - sym_type_index, - STATE(3403), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4005), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4007), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5238), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5240), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3197), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [144696] = 8, - ACTIONS(3966), 1, + [141232] = 8, + ACTIONS(3985), 1, anon_sym_not, - ACTIONS(4416), 1, + ACTIONS(4433), 1, anon_sym_is, - STATE(3019), 1, + STATE(3028), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4418), 2, + ACTIONS(4435), 2, anon_sym_LT, anon_sym_GT, - STATE(1804), 2, + STATE(1859), 2, sym__not_in, sym__is_not, - ACTIONS(4013), 6, + ACTIONS(4016), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(4400), 6, + ACTIONS(4417), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [144734] = 4, + [141270] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 2, + ACTIONS(565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(867), 3, + ACTIONS(596), 3, anon_sym_from, anon_sym_COMMA, anon_sym_in, - ACTIONS(834), 14, + ACTIONS(563), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -228481,152 +229290,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [144764] = 4, + [141300] = 14, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5195), 1, + sym_identifier, + ACTIONS(5216), 1, + anon_sym_complex, + STATE(3021), 1, + aux_sym_class_definition_repeat2, + STATE(3279), 1, + sym_type_index, + STATE(3460), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3657), 2, + ACTIONS(3997), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3661), 3, - anon_sym_from, + anon_sym___stdcall, + ACTIONS(3999), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5153), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3201), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3461), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_in, - ACTIONS(3652), 14, + [141350] = 15, + ACTIONS(1260), 1, + anon_sym_long, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5218), 1, + sym_identifier, + ACTIONS(5220), 1, + anon_sym_LPAREN, + STATE(2995), 1, + sym__signedness, + STATE(3018), 1, + sym_int_type, + STATE(3209), 1, + sym__longness, + STATE(3361), 1, + sym_function_pointer_type, + STATE(3462), 1, + sym_operator_name, + STATE(5472), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1256), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1258), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5222), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(1252), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [141402] = 15, + ACTIONS(3995), 1, anon_sym_DOT, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5177), 1, + sym_identifier, + ACTIONS(5224), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(5231), 1, + anon_sym_complex, + STATE(3054), 1, + aux_sym_class_definition_repeat2, + STATE(3279), 1, + sym_type_index, + STATE(3400), 1, + sym_operator_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3997), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3999), 2, anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5227), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5229), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3210), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [141454] = 14, + ACTIONS(3459), 1, + anon_sym_DOT, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(4565), 1, + anon_sym_COLON, + ACTIONS(5151), 1, + sym_identifier, + ACTIONS(5158), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(5162), 1, + anon_sym_complex, + STATE(3064), 1, + aux_sym_class_definition_repeat2, + STATE(3294), 1, + sym_type_index, + STATE(3398), 1, + sym_operator_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3466), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3482), 2, + anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [144794] = 14, - ACTIONS(366), 1, + STATE(3211), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5153), 4, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [141504] = 14, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(5120), 1, + ACTIONS(5171), 1, sym_identifier, - ACTIONS(5122), 1, + ACTIONS(5173), 1, anon_sym_LPAREN, - ACTIONS(5244), 1, + ACTIONS(5233), 1, sym__dedent, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3002), 1, + STATE(3025), 1, aux_sym_fused_repeat1, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(5182), 1, + STATE(5120), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(368), 2, + ACTIONS(373), 2, anon_sym_const, anon_sym_volatile, - STATE(3464), 2, + STATE(3420), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [144844] = 14, - ACTIONS(3440), 1, + [141554] = 14, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3819), 1, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(4526), 1, - anon_sym_COLON, - ACTIONS(5160), 1, + ACTIONS(5235), 1, sym_identifier, - ACTIONS(5162), 1, - anon_sym_LBRACK, - ACTIONS(5166), 1, + ACTIONS(5241), 1, anon_sym_complex, - STATE(3024), 1, + STATE(3168), 1, aux_sym_class_definition_repeat2, - STATE(3261), 1, + STATE(3279), 1, sym_type_index, - STATE(3420), 1, + STATE(3393), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3447), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3463), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3237), 2, + ACTIONS(5239), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3188), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5153), 4, - sym__newline, + ACTIONS(5237), 3, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - [144894] = 14, - ACTIONS(366), 1, + [141604] = 14, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(5120), 1, + ACTIONS(5171), 1, sym_identifier, - ACTIONS(5122), 1, + ACTIONS(5173), 1, anon_sym_LPAREN, - ACTIONS(5246), 1, + ACTIONS(5243), 1, sym__dedent, - STATE(2986), 1, + STATE(3000), 1, sym__signedness, - STATE(3005), 1, + STATE(3025), 1, aux_sym_fused_repeat1, - STATE(3185), 1, + STATE(3204), 1, sym__longness, - STATE(5182), 1, + STATE(5120), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(368), 2, + ACTIONS(373), 2, anon_sym_const, anon_sym_volatile, - STATE(3464), 2, + STATE(3420), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(360), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [144944] = 4, + [141654] = 14, + ACTIONS(3459), 1, + anon_sym_DOT, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(4551), 1, + anon_sym_COLON, + ACTIONS(5151), 1, + sym_identifier, + ACTIONS(5158), 1, + anon_sym_LBRACK, + ACTIONS(5162), 1, + anon_sym_complex, + STATE(3064), 1, + aux_sym_class_definition_repeat2, + STATE(3294), 1, + sym_type_index, + STATE(3398), 1, + sym_operator_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3466), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3482), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3211), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5153), 4, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [141704] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3587), 2, + ACTIONS(3666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3459), 3, + ACTIONS(3670), 3, anon_sym_from, anon_sym_COMMA, anon_sym_in, - ACTIONS(3582), 14, + ACTIONS(3661), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -228641,84 +229606,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [144974] = 14, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(5160), 1, + [141734] = 14, + ACTIONS(5245), 1, sym_identifier, - ACTIONS(5162), 1, - anon_sym_LBRACK, - ACTIONS(5166), 1, - anon_sym_complex, ACTIONS(5248), 1, - anon_sym_COLON, - STATE(3024), 1, - aux_sym_class_definition_repeat2, - STATE(3261), 1, - sym_type_index, - STATE(3420), 1, - sym_operator_name, + anon_sym_LPAREN, + ACTIONS(5260), 1, + anon_sym_long, + ACTIONS(5266), 1, + sym__dedent, + STATE(3000), 1, + sym__signedness, + STATE(3025), 1, + aux_sym_fused_repeat1, + STATE(3204), 1, + sym__longness, + STATE(5120), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3447), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3463), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3237), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5153), 4, + ACTIONS(5254), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(5257), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5263), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3420), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(5251), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [141784] = 4, + ACTIONS(5268), 1, + anon_sym_COMMA, + STATE(3027), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2527), 17, sym__newline, - anon_sym_LPAREN, + anon_sym_SEMI, + 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, + [141814] = 4, + ACTIONS(5272), 1, anon_sym_COMMA, + STATE(3027), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5270), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_EQ, - [145024] = 8, - ACTIONS(3990), 1, + 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, + [141844] = 8, + ACTIONS(4027), 1, anon_sym_not, - ACTIONS(4480), 1, + ACTIONS(4514), 1, anon_sym_is, - STATE(3019), 1, + STATE(3028), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4483), 2, + ACTIONS(4517), 2, anon_sym_LT, anon_sym_GT, - STATE(1804), 2, + STATE(1859), 2, sym__not_in, sym__is_not, - ACTIONS(3983), 6, + ACTIONS(4020), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(4477), 6, + ACTIONS(4511), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [145062] = 4, + [141882] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 2, + ACTIONS(3468), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3459), 3, - anon_sym_from, + ACTIONS(3478), 2, anon_sym_COMMA, - anon_sym_in, - ACTIONS(3438), 14, + anon_sym_RBRACK, + ACTIONS(3457), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -228733,17 +229749,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [145092] = 4, + [141911] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3459), 2, + ACTIONS(3478), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3587), 2, + ACTIONS(3644), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3582), 14, + ACTIONS(3639), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -228758,113 +229774,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [145121] = 8, - ACTIONS(4163), 1, + [141940] = 13, + ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4165), 1, - anon_sym_LPAREN, - ACTIONS(4175), 1, + ACTIONS(3977), 1, anon_sym_LBRACK, - ACTIONS(5250), 1, + ACTIONS(4184), 1, + anon_sym_LPAREN, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4053), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2448), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4051), 10, - anon_sym_GT_GT, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(5285), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(5287), 1, anon_sym_AMP, + ACTIONS(5289), 1, anon_sym_CARET, - anon_sym_LT_LT, - [145158] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3459), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3587), 2, + ACTIONS(5275), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3582), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5277), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(5283), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(2290), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5281), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [145187] = 13, - ACTIONS(3440), 1, + [141987] = 13, + ACTIONS(3459), 1, anon_sym_DOT, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(5252), 1, + ACTIONS(5291), 1, sym_identifier, - ACTIONS(5254), 1, + ACTIONS(5293), 1, anon_sym_LBRACK, - ACTIONS(5257), 1, + ACTIONS(5297), 1, anon_sym_complex, - STATE(3162), 1, + STATE(3039), 1, aux_sym_class_definition_repeat2, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, - STATE(3384), 1, + STATE(3425), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3447), 2, + ACTIONS(3466), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3463), 2, + ACTIONS(3482), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3233), 2, + STATE(3236), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5206), 4, + ACTIONS(5184), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [145234] = 8, - ACTIONS(4163), 1, + [142034] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5270), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [142059] = 8, + ACTIONS(4182), 1, anon_sym_DOT, - ACTIONS(4165), 1, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(4175), 1, + ACTIONS(4194), 1, anon_sym_LBRACK, - ACTIONS(5250), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4085), 2, + ACTIONS(4108), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2448), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4083), 10, + ACTIONS(4106), 10, anon_sym_GT_GT, anon_sym_AT, anon_sym_DASH, @@ -228875,242 +229894,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [145271] = 14, - ACTIONS(1251), 1, - anon_sym_long, - ACTIONS(3576), 1, - anon_sym_RPAREN, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5139), 1, - sym_identifier, - STATE(2979), 1, - sym__signedness, - STATE(3057), 1, - sym_int_type, - STATE(3169), 1, - sym__longness, - STATE(3429), 1, - sym_operator_name, - STATE(4320), 1, - sym_maybe_typed_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1247), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1249), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5143), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(1243), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [145320] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5259), 18, - anon_sym_from, - anon_sym_COMMA, - 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, - [145345] = 13, - ACTIONS(4003), 1, + [142096] = 13, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5202), 1, + ACTIONS(5235), 1, sym_identifier, - ACTIONS(5261), 1, + ACTIONS(5299), 1, anon_sym_complex, - STATE(3120), 1, + STATE(3168), 1, aux_sym_class_definition_repeat2, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, - STATE(3397), 1, + STATE(3393), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3227), 2, + STATE(3213), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5206), 4, + ACTIONS(5239), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [145392] = 13, - ACTIONS(3440), 1, + [142143] = 13, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3819), 1, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5160), 1, + ACTIONS(5195), 1, sym_identifier, - ACTIONS(5162), 1, - anon_sym_LBRACK, - ACTIONS(5166), 1, + ACTIONS(5301), 1, anon_sym_complex, - STATE(3024), 1, + STATE(3035), 1, aux_sym_class_definition_repeat2, - STATE(3261), 1, + STATE(3279), 1, sym_type_index, - STATE(3420), 1, + STATE(3460), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3447), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3463), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3237), 2, + STATE(3262), 2, sym_type_qualifier, aux_sym_c_type_repeat1, ACTIONS(5153), 4, - sym__newline, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [145439] = 14, - ACTIONS(1251), 1, + [142190] = 14, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5139), 1, + ACTIONS(5133), 1, sym_identifier, - ACTIONS(5263), 1, + ACTIONS(5303), 1, anon_sym_RPAREN, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3057), 1, + STATE(3085), 1, sym_int_type, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(3429), 1, + STATE(3430), 1, sym_operator_name, - STATE(4320), 1, + STATE(4408), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(5143), 2, + ACTIONS(5137), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145488] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3449), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3459), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3438), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [145517] = 13, - ACTIONS(4163), 1, + [142239] = 8, + ACTIONS(4182), 1, anon_sym_DOT, - ACTIONS(4165), 1, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(4175), 1, + ACTIONS(4194), 1, anon_sym_LBRACK, - ACTIONS(5250), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5273), 1, - anon_sym_PIPE, - ACTIONS(5275), 1, - anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5265), 2, + ACTIONS(4076), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5267), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5271), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2448), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5269), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [145564] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3618), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3609), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4074), 10, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -229120,100 +230026,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [145593] = 4, + [142276] = 13, + ACTIONS(3459), 1, + anon_sym_DOT, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(5305), 1, + sym_identifier, + ACTIONS(5307), 1, + anon_sym_LBRACK, + ACTIONS(5310), 1, + anon_sym_complex, + STATE(3129), 1, + aux_sym_class_definition_repeat2, + STATE(3294), 1, + sym_type_index, + STATE(3413), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 2, + ACTIONS(3466), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(867), 2, - anon_sym_RPAREN, + anon_sym___stdcall, + ACTIONS(3482), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3254), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5210), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(834), 14, + anon_sym_EQ, + [142323] = 13, + ACTIONS(3995), 1, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + ACTIONS(4001), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [145622] = 4, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5177), 1, + sym_identifier, + ACTIONS(5312), 1, + anon_sym_complex, + STATE(3054), 1, + aux_sym_class_definition_repeat2, + STATE(3279), 1, + sym_type_index, + STATE(3400), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3657), 2, + ACTIONS(3997), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3661), 2, + anon_sym___stdcall, + ACTIONS(3999), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3217), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5184), 4, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3652), 14, + anon_sym_COLON, + anon_sym_EQ, + [142370] = 13, + ACTIONS(3995), 1, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + ACTIONS(4001), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [145651] = 14, - ACTIONS(1251), 1, - anon_sym_long, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5139), 1, + ACTIONS(5177), 1, sym_identifier, - ACTIONS(5279), 1, - anon_sym_RPAREN, - STATE(2979), 1, - sym__signedness, - STATE(3057), 1, - sym_int_type, - STATE(3169), 1, - sym__longness, - STATE(3429), 1, + ACTIONS(5312), 1, + anon_sym_complex, + STATE(3054), 1, + aux_sym_class_definition_repeat2, + STATE(3279), 1, + sym_type_index, + STATE(3400), 1, sym_operator_name, - STATE(4320), 1, - sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1249), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5143), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(1243), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [145700] = 2, + ACTIONS(3997), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3999), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3218), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5229), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [142417] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5259), 18, - sym__newline, - anon_sym_SEMI, + ACTIONS(3478), 18, + anon_sym_from, anon_sym_COMMA, anon_sym_COLON, + anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -229228,154 +230151,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145725] = 13, - ACTIONS(1251), 1, - anon_sym_long, - ACTIONS(4911), 1, + [142442] = 9, + ACTIONS(4182), 1, + anon_sym_DOT, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, - sym_identifier, - ACTIONS(5283), 1, - anon_sym_RPAREN, - STATE(2979), 1, - sym__signedness, - STATE(3169), 1, - sym__longness, - STATE(4363), 1, - sym_c_type, + ACTIONS(4194), 1, + anon_sym_LBRACK, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1249), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(1253), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3333), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1243), 3, - anon_sym_int, - anon_sym_double, + ACTIONS(5275), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2290), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5281), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 7, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [142481] = 13, + ACTIONS(4122), 1, + anon_sym_DOT, + ACTIONS(4134), 1, + anon_sym_LBRACK, + ACTIONS(4184), 1, + anon_sym_LPAREN, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5285), 1, + anon_sym_PIPE, + ACTIONS(5287), 1, + anon_sym_AMP, + ACTIONS(5289), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5275), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5277), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5283), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2290), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5281), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [142528] = 13, + ACTIONS(3459), 1, + anon_sym_DOT, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(5151), 1, + sym_identifier, + ACTIONS(5162), 1, anon_sym_complex, - [145772] = 13, - ACTIONS(1251), 1, + ACTIONS(5314), 1, + anon_sym_LBRACK, + STATE(3064), 1, + aux_sym_class_definition_repeat2, + STATE(3294), 1, + sym_type_index, + STATE(3398), 1, + sym_operator_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3466), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3482), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3253), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5199), 4, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [142575] = 13, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4911), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5317), 1, sym_identifier, - ACTIONS(5285), 1, + ACTIONS(5319), 1, anon_sym_RPAREN, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(4367), 1, + STATE(4443), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145819] = 8, - ACTIONS(4163), 1, - anon_sym_DOT, - ACTIONS(4165), 1, + [142622] = 13, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(4175), 1, - anon_sym_LBRACK, - ACTIONS(5250), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4021), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2448), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4019), 10, - anon_sym_GT_GT, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(5285), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(5287), 1, anon_sym_AMP, + ACTIONS(5289), 1, anon_sym_CARET, - anon_sym_LT_LT, - [145856] = 10, - ACTIONS(4163), 1, + ACTIONS(5321), 1, anon_sym_DOT, - ACTIONS(4165), 1, - anon_sym_LPAREN, - ACTIONS(4175), 1, + ACTIONS(5323), 1, anon_sym_LBRACK, - ACTIONS(5250), 1, - anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5265), 2, + ACTIONS(5275), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5271), 2, + ACTIONS(5277), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5283), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2448), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5269), 3, + ACTIONS(5281), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4019), 5, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [145897] = 8, - ACTIONS(4163), 1, - anon_sym_DOT, - ACTIONS(4165), 1, - anon_sym_LPAREN, - ACTIONS(4175), 1, - anon_sym_LBRACK, - ACTIONS(5250), 1, - anon_sym_STAR_STAR, + [142669] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4021), 2, + ACTIONS(565), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2448), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4019), 10, + ACTIONS(596), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(563), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -229385,652 +230342,621 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [145934] = 9, - ACTIONS(4163), 1, + [142698] = 13, + ACTIONS(4042), 1, anon_sym_DOT, - ACTIONS(4165), 1, - anon_sym_LPAREN, - ACTIONS(4175), 1, + ACTIONS(4054), 1, anon_sym_LBRACK, - ACTIONS(5250), 1, + ACTIONS(4184), 1, + anon_sym_LPAREN, + ACTIONS(5279), 1, anon_sym_STAR_STAR, + ACTIONS(5285), 1, + anon_sym_PIPE, + ACTIONS(5287), 1, + anon_sym_AMP, + ACTIONS(5289), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5265), 2, + ACTIONS(5275), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2448), 2, + ACTIONS(5277), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5283), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5269), 3, + ACTIONS(5281), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4019), 7, - anon_sym_GT_GT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [145973] = 13, - ACTIONS(4019), 1, + [142745] = 13, + ACTIONS(4038), 1, anon_sym_PIPE, - ACTIONS(4163), 1, + ACTIONS(4182), 1, anon_sym_DOT, - ACTIONS(4165), 1, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(4175), 1, + ACTIONS(4194), 1, anon_sym_LBRACK, - ACTIONS(5250), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5275), 1, + ACTIONS(5287), 1, anon_sym_AMP, - ACTIONS(5277), 1, + ACTIONS(5289), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5265), 2, + ACTIONS(5275), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5267), 2, + ACTIONS(5277), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5271), 2, + ACTIONS(5283), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2448), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5269), 3, + ACTIONS(5281), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [146020] = 12, - ACTIONS(4163), 1, - anon_sym_DOT, - ACTIONS(4165), 1, + [142792] = 13, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(4175), 1, + ACTIONS(4409), 1, + anon_sym_DOT, + ACTIONS(4421), 1, anon_sym_LBRACK, - ACTIONS(5250), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5277), 1, + ACTIONS(5285), 1, + anon_sym_PIPE, + ACTIONS(5287), 1, + anon_sym_AMP, + ACTIONS(5289), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4019), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5265), 2, + ACTIONS(5275), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5267), 2, + ACTIONS(5277), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5271), 2, + ACTIONS(5283), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2448), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5269), 3, + ACTIONS(5281), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [146065] = 11, - ACTIONS(4163), 1, - anon_sym_DOT, - ACTIONS(4165), 1, + [142839] = 13, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(4175), 1, + ACTIONS(4331), 1, + anon_sym_DOT, + ACTIONS(4343), 1, anon_sym_LBRACK, - ACTIONS(5250), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, + ACTIONS(5285), 1, + anon_sym_PIPE, + ACTIONS(5287), 1, + anon_sym_AMP, + ACTIONS(5289), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5265), 2, + ACTIONS(5275), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5267), 2, + ACTIONS(5277), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5271), 2, + ACTIONS(5283), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2448), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4019), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5269), 3, + ACTIONS(5281), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [146108] = 13, - ACTIONS(4165), 1, - anon_sym_LPAREN, - ACTIONS(4191), 1, + [142886] = 13, + ACTIONS(4150), 1, anon_sym_DOT, - ACTIONS(4193), 1, + ACTIONS(4162), 1, anon_sym_LBRACK, - ACTIONS(5250), 1, + ACTIONS(4184), 1, + anon_sym_LPAREN, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5273), 1, + ACTIONS(5285), 1, anon_sym_PIPE, - ACTIONS(5275), 1, + ACTIONS(5287), 1, anon_sym_AMP, - ACTIONS(5277), 1, + ACTIONS(5289), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5265), 2, + ACTIONS(5275), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5267), 2, + ACTIONS(5277), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5271), 2, + ACTIONS(5283), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2448), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5269), 3, + ACTIONS(5281), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [146155] = 13, - ACTIONS(3944), 1, + [142933] = 13, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5325), 1, + anon_sym_complex, + STATE(3168), 1, + aux_sym_class_definition_repeat2, + STATE(3279), 1, + sym_type_index, + STATE(3432), 1, + sym_operator_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3997), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3999), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3223), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5210), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [142980] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5270), 18, + anon_sym_from, + anon_sym_COMMA, + 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, + [143005] = 13, + ACTIONS(4078), 1, anon_sym_DOT, - ACTIONS(3958), 1, + ACTIONS(4090), 1, anon_sym_LBRACK, - ACTIONS(4165), 1, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(5250), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5273), 1, + ACTIONS(5285), 1, anon_sym_PIPE, - ACTIONS(5275), 1, + ACTIONS(5287), 1, anon_sym_AMP, - ACTIONS(5277), 1, + ACTIONS(5289), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5265), 2, + ACTIONS(5275), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5267), 2, + ACTIONS(5277), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5271), 2, + ACTIONS(5283), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2448), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5269), 3, + ACTIONS(5281), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [146202] = 14, - ACTIONS(1251), 1, + [143052] = 14, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5139), 1, + ACTIONS(5133), 1, sym_identifier, - ACTIONS(5287), 1, + ACTIONS(5327), 1, anon_sym_RPAREN, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3057), 1, + STATE(3085), 1, sym_int_type, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(3429), 1, + STATE(3430), 1, sym_operator_name, - STATE(4320), 1, + STATE(4408), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(5143), 2, + ACTIONS(5137), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [146251] = 13, - ACTIONS(4003), 1, - anon_sym_DOT, - ACTIONS(4009), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5145), 1, + [143101] = 13, + ACTIONS(1260), 1, + anon_sym_long, + ACTIONS(4817), 1, + anon_sym_LPAREN, + ACTIONS(5317), 1, sym_identifier, - ACTIONS(5289), 1, - anon_sym_complex, - STATE(3028), 1, - aux_sym_class_definition_repeat2, - STATE(3278), 1, - sym_type_index, - STATE(3441), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4005), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4007), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3217), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5153), 4, + ACTIONS(5329), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [146298] = 13, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(5160), 1, - sym_identifier, - ACTIONS(5166), 1, - anon_sym_complex, - ACTIONS(5291), 1, - anon_sym_LBRACK, - STATE(3024), 1, - aux_sym_class_definition_repeat2, - STATE(3261), 1, - sym_type_index, - STATE(3420), 1, - sym_operator_name, + STATE(2995), 1, + sym__signedness, + STATE(3209), 1, + sym__longness, + STATE(4470), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3447), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3463), 2, + ACTIONS(1256), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1258), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1262), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3345), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1252), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [143148] = 13, + ACTIONS(4184), 1, + anon_sym_LPAREN, + ACTIONS(5279), 1, anon_sym_STAR_STAR, + ACTIONS(5285), 1, + anon_sym_PIPE, + ACTIONS(5287), 1, anon_sym_AMP, - STATE(3250), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5149), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [146345] = 13, - ACTIONS(3440), 1, + ACTIONS(5289), 1, + anon_sym_CARET, + ACTIONS(5331), 1, anon_sym_DOT, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(5294), 1, - sym_identifier, - ACTIONS(5296), 1, + ACTIONS(5333), 1, anon_sym_LBRACK, - ACTIONS(5300), 1, - anon_sym_complex, - STATE(3074), 1, - aux_sym_class_definition_repeat2, - STATE(3261), 1, - sym_type_index, - STATE(3450), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3447), 2, + ACTIONS(5275), 2, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3463), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3243), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5217), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [146392] = 13, - ACTIONS(4103), 1, + anon_sym_SLASH, + ACTIONS(5277), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5283), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2290), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5281), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [143195] = 10, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(5335), 1, + anon_sym_async, + ACTIONS(5337), 1, + anon_sym_def, + ACTIONS(5339), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5343), 2, + anon_sym_cdef, + anon_sym_cpdef, + STATE(3316), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + STATE(3813), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(1445), 3, + sym_function_definition, + sym_class_definition, + sym_cdef_statement, + ACTIONS(5341), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [143236] = 12, + ACTIONS(4182), 1, anon_sym_DOT, - ACTIONS(4115), 1, - anon_sym_LBRACK, - ACTIONS(4165), 1, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(5250), 1, + ACTIONS(4194), 1, + anon_sym_LBRACK, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5273), 1, - anon_sym_PIPE, - ACTIONS(5275), 1, - anon_sym_AMP, - ACTIONS(5277), 1, + ACTIONS(5289), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5265), 2, + ACTIONS(4038), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5275), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5267), 2, + ACTIONS(5277), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5271), 2, + ACTIONS(5283), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2448), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5269), 3, + ACTIONS(5281), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [146439] = 13, - ACTIONS(4165), 1, + [143281] = 13, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(5250), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5273), 1, + ACTIONS(5285), 1, anon_sym_PIPE, - ACTIONS(5275), 1, + ACTIONS(5287), 1, anon_sym_AMP, - ACTIONS(5277), 1, + ACTIONS(5289), 1, anon_sym_CARET, - ACTIONS(5302), 1, + ACTIONS(5345), 1, anon_sym_DOT, - ACTIONS(5304), 1, + ACTIONS(5347), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5265), 2, + ACTIONS(5275), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5267), 2, + ACTIONS(5277), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5271), 2, + ACTIONS(5283), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2448), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5269), 3, + ACTIONS(5281), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [146486] = 13, - ACTIONS(4023), 1, + [143328] = 11, + ACTIONS(4182), 1, anon_sym_DOT, - ACTIONS(4035), 1, - anon_sym_LBRACK, - ACTIONS(4165), 1, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(5250), 1, + ACTIONS(4194), 1, + anon_sym_LBRACK, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5273), 1, - anon_sym_PIPE, - ACTIONS(5275), 1, - anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5265), 2, + ACTIONS(5275), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5267), 2, + ACTIONS(5277), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5271), 2, + ACTIONS(5283), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2448), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5269), 3, + ACTIONS(4038), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5281), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [146533] = 13, - ACTIONS(3440), 1, + [143371] = 13, + ACTIONS(3459), 1, anon_sym_DOT, - ACTIONS(3819), 1, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(5294), 1, + ACTIONS(5349), 1, sym_identifier, - ACTIONS(5300), 1, - anon_sym_complex, - ACTIONS(5306), 1, + ACTIONS(5351), 1, anon_sym_LBRACK, - STATE(3074), 1, + ACTIONS(5354), 1, + anon_sym_complex, + STATE(3129), 1, aux_sym_class_definition_repeat2, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, - STATE(3450), 1, + STATE(3417), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3447), 2, + ACTIONS(3466), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3463), 2, + ACTIONS(3482), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3245), 2, + STATE(3233), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5229), 4, + ACTIONS(5239), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [146580] = 13, - ACTIONS(4003), 1, - anon_sym_DOT, - ACTIONS(4009), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5145), 1, - sym_identifier, - ACTIONS(5289), 1, - anon_sym_complex, - STATE(3028), 1, - aux_sym_class_definition_repeat2, - STATE(3278), 1, - sym_type_index, - STATE(3441), 1, - sym_operator_name, + [143418] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4007), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3220), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5149), 4, - anon_sym_RPAREN, + ACTIONS(5356), 18, + anon_sym_from, anon_sym_COMMA, anon_sym_COLON, + anon_sym_in, anon_sym_EQ, - [146627] = 13, - ACTIONS(4165), 1, - anon_sym_LPAREN, - ACTIONS(4215), 1, - anon_sym_DOT, - ACTIONS(4227), 1, - anon_sym_LBRACK, - ACTIONS(5250), 1, - anon_sym_STAR_STAR, - ACTIONS(5273), 1, - anon_sym_PIPE, - ACTIONS(5275), 1, - anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, + 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, + [143443] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5265), 2, + ACTIONS(3666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5267), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5271), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2448), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5269), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [146674] = 14, - ACTIONS(1251), 1, - anon_sym_long, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5139), 1, - sym_identifier, - ACTIONS(5309), 1, + ACTIONS(3670), 2, anon_sym_RPAREN, - STATE(2979), 1, - sym__signedness, - STATE(3057), 1, - sym_int_type, - STATE(3169), 1, - sym__longness, - STATE(3429), 1, - sym_operator_name, - STATE(4320), 1, - sym_maybe_typed_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1247), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1249), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5143), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(1243), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [146723] = 13, - ACTIONS(4131), 1, + anon_sym_COMMA, + ACTIONS(3661), 14, anon_sym_DOT, - ACTIONS(4143), 1, - anon_sym_LBRACK, - ACTIONS(4165), 1, anon_sym_LPAREN, - ACTIONS(5250), 1, - anon_sym_STAR_STAR, - ACTIONS(5273), 1, - anon_sym_PIPE, - ACTIONS(5275), 1, - anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5265), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5267), 2, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5271), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(2448), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5269), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [146770] = 13, - ACTIONS(4055), 1, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [143472] = 13, + ACTIONS(4184), 1, + anon_sym_LPAREN, + ACTIONS(4214), 1, anon_sym_DOT, - ACTIONS(4067), 1, + ACTIONS(4216), 1, anon_sym_LBRACK, - ACTIONS(4165), 1, - anon_sym_LPAREN, - ACTIONS(5250), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5273), 1, + ACTIONS(5285), 1, anon_sym_PIPE, - ACTIONS(5275), 1, + ACTIONS(5287), 1, anon_sym_AMP, - ACTIONS(5277), 1, + ACTIONS(5289), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5265), 2, + ACTIONS(5275), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5267), 2, + ACTIONS(5277), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5271), 2, + ACTIONS(5283), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2448), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5269), 3, + ACTIONS(5281), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [146817] = 2, + [143519] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5311), 18, + ACTIONS(5358), 18, anon_sym_from, anon_sym_COMMA, anon_sym_COLON, @@ -230049,259 +230975,313 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146842] = 13, - ACTIONS(4165), 1, + [143544] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5164), 8, + anon_sym_import, + anon_sym_cimport, + anon_sym_as, + anon_sym_STAR, + anon_sym_if, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5169), 10, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(5250), 1, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, - ACTIONS(5273), 1, + anon_sym_LBRACK, anon_sym_PIPE, - ACTIONS(5275), 1, anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, - ACTIONS(5313), 1, + anon_sym_GT, + anon_sym_QMARK, + [143571] = 8, + ACTIONS(4182), 1, anon_sym_DOT, - ACTIONS(5315), 1, + ACTIONS(4184), 1, + anon_sym_LPAREN, + ACTIONS(4194), 1, anon_sym_LBRACK, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5265), 2, + ACTIONS(4040), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5267), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5271), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2448), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5269), 3, + ACTIONS(4038), 10, + anon_sym_GT_GT, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [146889] = 13, - ACTIONS(4003), 1, - anon_sym_DOT, - ACTIONS(4009), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5210), 1, - sym_identifier, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [143608] = 13, + ACTIONS(1260), 1, + anon_sym_long, + ACTIONS(4817), 1, + anon_sym_LPAREN, ACTIONS(5317), 1, - anon_sym_complex, - STATE(3072), 1, - aux_sym_class_definition_repeat2, - STATE(3278), 1, - sym_type_index, - STATE(3386), 1, - sym_operator_name, + sym_identifier, + ACTIONS(5360), 1, + anon_sym_RPAREN, + STATE(2995), 1, + sym__signedness, + STATE(3209), 1, + sym__longness, + STATE(4463), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4007), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3242), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5217), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [146936] = 13, - ACTIONS(4165), 1, + ACTIONS(1256), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1258), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1262), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3345), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1252), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [143655] = 13, + ACTIONS(4182), 1, + anon_sym_DOT, + ACTIONS(4184), 1, anon_sym_LPAREN, - ACTIONS(5250), 1, + ACTIONS(4194), 1, + anon_sym_LBRACK, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5273), 1, + ACTIONS(5285), 1, anon_sym_PIPE, - ACTIONS(5275), 1, + ACTIONS(5287), 1, anon_sym_AMP, - ACTIONS(5277), 1, + ACTIONS(5289), 1, anon_sym_CARET, - ACTIONS(5319), 1, - anon_sym_DOT, - ACTIONS(5321), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5265), 2, + ACTIONS(5275), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5267), 2, + ACTIONS(5277), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5271), 2, + ACTIONS(5283), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2448), 2, + STATE(2290), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5269), 3, + ACTIONS(5281), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [146983] = 13, - ACTIONS(4003), 1, + [143702] = 14, + ACTIONS(1260), 1, + anon_sym_long, + ACTIONS(3592), 1, + anon_sym_RPAREN, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5133), 1, + sym_identifier, + STATE(2995), 1, + sym__signedness, + STATE(3085), 1, + sym_int_type, + STATE(3209), 1, + sym__longness, + STATE(3430), 1, + sym_operator_name, + STATE(4408), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1256), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1258), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5137), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(1252), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [143751] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3468), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3478), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3457), 14, anon_sym_DOT, - ACTIONS(4009), 1, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(4921), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [143780] = 13, + ACTIONS(3459), 1, + anon_sym_DOT, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(5210), 1, + ACTIONS(5151), 1, sym_identifier, - ACTIONS(5317), 1, + ACTIONS(5158), 1, + anon_sym_LBRACK, + ACTIONS(5162), 1, anon_sym_complex, - STATE(3072), 1, + STATE(3064), 1, aux_sym_class_definition_repeat2, - STATE(3278), 1, + STATE(3294), 1, sym_type_index, - STATE(3386), 1, + STATE(3398), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3466), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(3482), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3216), 2, + STATE(3211), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5229), 4, - anon_sym_RPAREN, + ACTIONS(5153), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [147030] = 3, + [143827] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5191), 8, - anon_sym_import, - anon_sym_cimport, - anon_sym_as, + ACTIONS(3478), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3644), 2, anon_sym_STAR, - anon_sym_if, - sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5196), 10, + anon_sym_SLASH, + ACTIONS(3639), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [147057] = 2, + anon_sym_CARET, + anon_sym_LT_LT, + [143856] = 7, + ACTIONS(3776), 1, + anon_sym_long, + STATE(3270), 1, + sym__longness, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3459), 18, - anon_sym_from, + ACTIONS(5362), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5364), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5139), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5141), 8, + anon_sym_LPAREN, anon_sym_COMMA, 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, - [147082] = 13, - ACTIONS(1251), 1, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [143891] = 13, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4911), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5317), 1, sym_identifier, - ACTIONS(5323), 1, + ACTIONS(5366), 1, anon_sym_RPAREN, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(4425), 1, + STATE(4394), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [147129] = 10, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(5325), 1, - anon_sym_async, - ACTIONS(5327), 1, - anon_sym_def, - ACTIONS(5329), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5333), 2, - anon_sym_cdef, - anon_sym_cpdef, - STATE(3344), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - STATE(3759), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(1273), 3, - sym_function_definition, - sym_class_definition, - sym_cdef_statement, - ACTIONS(5331), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [147170] = 2, + [143938] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3459), 18, + ACTIONS(5356), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -230320,108 +231300,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [147195] = 13, - ACTIONS(4003), 1, - anon_sym_DOT, - ACTIONS(4009), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5233), 1, - sym_identifier, - ACTIONS(5335), 1, - anon_sym_complex, - STATE(3120), 1, - aux_sym_class_definition_repeat2, - STATE(3278), 1, - sym_type_index, - STATE(3403), 1, - sym_operator_name, + [143963] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3655), 2, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4007), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3205), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5240), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [147242] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5132), 18, - sym__newline, - anon_sym_SEMI, + anon_sym_SLASH, + ACTIONS(3659), 2, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [147267] = 13, - ACTIONS(3440), 1, + anon_sym_RBRACK, + ACTIONS(3650), 14, anon_sym_DOT, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(5337), 1, - sym_identifier, - ACTIONS(5339), 1, - anon_sym_LBRACK, - ACTIONS(5342), 1, - anon_sym_complex, - STATE(3162), 1, - aux_sym_class_definition_repeat2, - STATE(3261), 1, - sym_type_index, - STATE(3440), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3447), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3463), 2, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - STATE(3203), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5240), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [147314] = 4, + anon_sym_CARET, + anon_sym_LT_LT, + [143992] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 2, + ACTIONS(3655), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3459), 2, + ACTIONS(3659), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3438), 14, + ACTIONS(3650), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -230436,40 +231350,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [147343] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5311), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [147368] = 4, + [144021] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(836), 2, + ACTIONS(3666), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(867), 2, + ACTIONS(3670), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(834), 14, + ACTIONS(3661), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -230484,15 +231375,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [147397] = 2, + [144050] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5132), 18, - anon_sym_from, + ACTIONS(5358), 18, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, - anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -230507,22 +231398,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [147422] = 4, + [144075] = 8, + ACTIONS(4182), 1, + anon_sym_DOT, + ACTIONS(4184), 1, + anon_sym_LPAREN, + ACTIONS(4194), 1, + anon_sym_LBRACK, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3614), 2, + ACTIONS(4040), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3618), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3609), 14, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(2290), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4038), 10, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -230532,882 +231427,898 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [147451] = 7, - ACTIONS(3677), 1, - anon_sym_long, - STATE(3286), 1, - sym__longness, + [144112] = 13, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5195), 1, + sym_identifier, + ACTIONS(5301), 1, + anon_sym_complex, + STATE(3035), 1, + aux_sym_class_definition_repeat2, + STATE(3279), 1, + sym_type_index, + STATE(3460), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5344), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5346), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5099), 4, + ACTIONS(3997), 2, anon_sym_STAR, - sym_identifier, - anon_sym_complex, anon_sym___stdcall, - ACTIONS(5101), 8, - anon_sym_LPAREN, + ACTIONS(3999), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3263), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5199), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, + anon_sym_EQ, + [144159] = 13, + ACTIONS(3459), 1, + anon_sym_DOT, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(5291), 1, + sym_identifier, + ACTIONS(5297), 1, + anon_sym_complex, + ACTIONS(5368), 1, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [147486] = 10, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(5348), 1, - anon_sym_async, - ACTIONS(5350), 1, - anon_sym_def, - ACTIONS(5352), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5354), 2, - anon_sym_cdef, - anon_sym_cpdef, - STATE(3344), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - STATE(3792), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(1371), 3, - sym_function_definition, - sym_class_definition, - sym_cdef_statement, - ACTIONS(5331), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [147527] = 4, + STATE(3039), 1, + aux_sym_class_definition_repeat2, + STATE(3294), 1, + sym_type_index, + STATE(3425), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3657), 2, + ACTIONS(3466), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3661), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3652), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, + anon_sym___stdcall, + ACTIONS(3482), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [147556] = 14, - ACTIONS(1251), 1, + STATE(3237), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5229), 4, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [144206] = 14, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(3568), 1, - anon_sym_RPAREN, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5139), 1, + ACTIONS(5133), 1, sym_identifier, - STATE(2979), 1, + ACTIONS(5371), 1, + anon_sym_RPAREN, + STATE(2995), 1, sym__signedness, - STATE(3057), 1, + STATE(3085), 1, sym_int_type, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(3429), 1, + STATE(3430), 1, sym_operator_name, - STATE(4320), 1, + STATE(4408), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(5143), 2, + ACTIONS(5137), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [147605] = 13, - ACTIONS(1251), 1, + [144255] = 14, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4911), 1, - anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5133), 1, sym_identifier, - ACTIONS(5356), 1, + ACTIONS(5373), 1, anon_sym_RPAREN, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3169), 1, + STATE(3085), 1, + sym_int_type, + STATE(3209), 1, sym__longness, - STATE(4415), 1, - sym_c_type, + STATE(3430), 1, + sym_operator_name, + STATE(4408), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(5137), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + ACTIONS(1252), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [144304] = 14, + ACTIONS(1260), 1, + anon_sym_long, + ACTIONS(3582), 1, + anon_sym_RPAREN, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5133), 1, + sym_identifier, + STATE(2995), 1, + sym__signedness, + STATE(3085), 1, sym_int_type, - sym_function_pointer_type, - ACTIONS(1243), 3, + STATE(3209), 1, + sym__longness, + STATE(3430), 1, + sym_operator_name, + STATE(4408), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1256), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1258), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5137), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [147652] = 13, - ACTIONS(4165), 1, - anon_sym_LPAREN, - ACTIONS(4392), 1, + [144353] = 10, + ACTIONS(4182), 1, anon_sym_DOT, - ACTIONS(4404), 1, + ACTIONS(4184), 1, + anon_sym_LPAREN, + ACTIONS(4194), 1, anon_sym_LBRACK, - ACTIONS(5250), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5273), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5275), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5283), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2290), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5281), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4038), 5, + anon_sym_GT_GT, anon_sym_PIPE, - ACTIONS(5275), 1, anon_sym_AMP, - ACTIONS(5277), 1, anon_sym_CARET, + anon_sym_LT_LT, + [144394] = 10, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(5375), 1, + anon_sym_async, + ACTIONS(5377), 1, + anon_sym_def, + ACTIONS(5379), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5381), 2, + anon_sym_cdef, + anon_sym_cpdef, + STATE(3316), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + STATE(3804), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(1297), 3, + sym_function_definition, + sym_class_definition, + sym_cdef_statement, + ACTIONS(5341), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [144435] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5265), 2, + ACTIONS(565), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5267), 2, + ACTIONS(596), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(563), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5271), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(2448), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5269), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [147699] = 12, - ACTIONS(3677), 1, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [144464] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3478), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [144489] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(5358), 1, - sym_identifier, - ACTIONS(5360), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - STATE(3080), 1, + ACTIONS(5317), 1, + sym_identifier, + STATE(2995), 1, sym__signedness, - STATE(3266), 1, + STATE(3209), 1, sym__longness, - STATE(4743), 1, + STATE(4625), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [147743] = 12, - ACTIONS(1251), 1, + [144533] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(4911), 1, - anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5383), 1, sym_identifier, - STATE(2979), 1, + ACTIONS(5385), 1, + anon_sym_LPAREN, + STATE(3077), 1, sym__signedness, - STATE(3169), 1, + STATE(3295), 1, sym__longness, - STATE(4870), 1, + STATE(4732), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [147787] = 12, - ACTIONS(5063), 1, - anon_sym_LPAREN, - ACTIONS(5077), 1, + [144577] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(5083), 1, + ACTIONS(5383), 1, sym_identifier, - STATE(3202), 1, + ACTIONS(5385), 1, + anon_sym_LPAREN, + STATE(3077), 1, sym__signedness, - STATE(3389), 1, + STATE(3295), 1, sym__longness, - STATE(4458), 1, + STATE(5108), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5073), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5075), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(5079), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3312), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5071), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [147831] = 12, - ACTIONS(1251), 1, + [144621] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(4911), 1, - anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5383), 1, sym_identifier, - STATE(2979), 1, + ACTIONS(5385), 1, + anon_sym_LPAREN, + STATE(3077), 1, sym__signedness, - STATE(3169), 1, + STATE(3295), 1, sym__longness, - STATE(4670), 1, + STATE(4990), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [147875] = 6, - ACTIONS(5362), 1, - anon_sym_COMMA, - ACTIONS(5364), 1, - anon_sym_COLON, - ACTIONS(5366), 1, - anon_sym_EQ, - STATE(3000), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5368), 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, - [147907] = 12, - ACTIONS(3677), 1, + [144665] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(5358), 1, - sym_identifier, - ACTIONS(5360), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - STATE(3080), 1, + ACTIONS(5317), 1, + sym_identifier, + STATE(2995), 1, sym__signedness, - STATE(3266), 1, + STATE(3209), 1, sym__longness, - STATE(4605), 1, + STATE(5099), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [147951] = 4, - ACTIONS(5370), 1, - anon_sym_COMMA, - STATE(3108), 1, - aux_sym__patterns_repeat1, + [144709] = 4, + ACTIONS(5391), 1, + anon_sym_long, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2494), 15, + ACTIONS(5387), 7, + anon_sym_STAR, + sym_identifier, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5389), 9, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_STAR_STAR, 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, - [147979] = 12, - ACTIONS(5063), 1, - anon_sym_LPAREN, - ACTIONS(5077), 1, + anon_sym_LBRACK, + anon_sym_AMP, + [144737] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(5083), 1, + ACTIONS(5383), 1, sym_identifier, - STATE(3202), 1, + ACTIONS(5385), 1, + anon_sym_LPAREN, + STATE(3077), 1, sym__signedness, - STATE(3389), 1, + STATE(3295), 1, sym__longness, - STATE(4468), 1, + STATE(4758), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5073), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5075), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(5079), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3312), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5071), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148023] = 12, - ACTIONS(3677), 1, + [144781] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(5358), 1, + ACTIONS(5383), 1, sym_identifier, - ACTIONS(5360), 1, + ACTIONS(5385), 1, anon_sym_LPAREN, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(5084), 1, + STATE(5172), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148067] = 12, - ACTIONS(1251), 1, - anon_sym_long, - ACTIONS(4911), 1, + [144825] = 14, + ACTIONS(3461), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(3472), 1, sym_identifier, - STATE(2979), 1, - sym__signedness, - STATE(3169), 1, - sym__longness, - STATE(5134), 1, - sym_c_type, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(5393), 1, + anon_sym_DOT, + ACTIONS(5397), 1, + anon_sym_COLON, + ACTIONS(5399), 1, + anon_sym_EQ, + ACTIONS(5401), 1, + anon_sym_complex, + STATE(3319), 1, + aux_sym_class_definition_repeat2, + STATE(3366), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1249), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(1253), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3333), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1243), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [148111] = 12, - ACTIONS(1251), 1, + ACTIONS(4821), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4823), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5395), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3597), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [144873] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4911), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5317), 1, sym_identifier, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(4187), 1, + STATE(5019), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148155] = 12, - ACTIONS(1251), 1, + [144917] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(4911), 1, - anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5383), 1, sym_identifier, - STATE(2979), 1, + ACTIONS(5385), 1, + anon_sym_LPAREN, + STATE(3077), 1, sym__signedness, - STATE(3169), 1, + STATE(3295), 1, sym__longness, - STATE(4987), 1, + STATE(5071), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148199] = 12, - ACTIONS(5077), 1, + [144961] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(5372), 1, + ACTIONS(5403), 1, sym_identifier, - ACTIONS(5374), 1, + ACTIONS(5405), 1, anon_sym_LPAREN, - STATE(3202), 1, + STATE(3077), 1, sym__signedness, - STATE(3389), 1, + STATE(3295), 1, sym__longness, - STATE(5270), 1, + STATE(5361), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5073), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5075), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3326), 2, + STATE(3538), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5071), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148243] = 12, - ACTIONS(1251), 1, + [145005] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4911), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5317), 1, sym_identifier, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(4398), 1, + STATE(5084), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148287] = 13, - ACTIONS(1251), 1, + [145049] = 12, + ACTIONS(5100), 1, anon_sym_long, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5139), 1, + ACTIONS(5407), 1, sym_identifier, - STATE(2979), 1, - sym__signedness, - STATE(3057), 1, - sym_int_type, - STATE(3169), 1, - sym__longness, - STATE(3429), 1, - sym_operator_name, - STATE(4320), 1, - sym_maybe_typed_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1247), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1249), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5143), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(1243), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [148333] = 12, - ACTIONS(1251), 1, - anon_sym_long, - ACTIONS(4911), 1, + ACTIONS(5409), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, - sym_identifier, - STATE(2979), 1, + STATE(3193), 1, sym__signedness, - STATE(3169), 1, + STATE(3421), 1, sym__longness, - STATE(5143), 1, + STATE(5278), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(5096), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(5098), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3344), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(5094), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148377] = 12, - ACTIONS(5063), 1, - anon_sym_LPAREN, - ACTIONS(5077), 1, + [145093] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(5083), 1, + ACTIONS(5383), 1, sym_identifier, - STATE(3202), 1, + ACTIONS(5385), 1, + anon_sym_LPAREN, + STATE(3077), 1, sym__signedness, - STATE(3389), 1, + STATE(3295), 1, sym__longness, - STATE(4543), 1, + STATE(4983), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5073), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5075), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(5079), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3312), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5071), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148421] = 12, - ACTIONS(1251), 1, + [145137] = 6, + ACTIONS(5411), 1, + anon_sym_COMMA, + ACTIONS(5413), 1, + anon_sym_COLON, + ACTIONS(5415), 1, + anon_sym_EQ, + STATE(3026), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5417), 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, + [145169] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4911), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5317), 1, sym_identifier, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(4999), 1, + STATE(5043), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148465] = 12, - ACTIONS(3677), 1, + [145213] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(5376), 1, + ACTIONS(5383), 1, sym_identifier, - ACTIONS(5378), 1, + ACTIONS(5385), 1, anon_sym_LPAREN, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(5474), 1, + STATE(5067), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3282), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148509] = 12, - ACTIONS(1251), 1, + [145257] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4911), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5317), 1, sym_identifier, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(5158), 1, + STATE(4476), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148553] = 6, - ACTIONS(5364), 1, - anon_sym_COLON, - ACTIONS(5366), 1, - anon_sym_EQ, - ACTIONS(5380), 1, - anon_sym_COMMA, - STATE(3092), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5368), 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, - [148585] = 5, - ACTIONS(5364), 1, + [145301] = 6, + ACTIONS(5413), 1, anon_sym_COLON, - ACTIONS(5366), 1, + ACTIONS(5415), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5382), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5368), 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, - [148615] = 4, - ACTIONS(5384), 1, + ACTIONS(5419), 1, anon_sym_COMMA, - STATE(3108), 1, + STATE(3153), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5132), 15, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(5417), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231421,1279 +232332,1303 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [148643] = 4, - ACTIONS(5391), 1, + [145333] = 12, + ACTIONS(3776), 1, anon_sym_long, + ACTIONS(5383), 1, + sym_identifier, + ACTIONS(5385), 1, + anon_sym_LPAREN, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(5098), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5387), 7, - anon_sym_STAR, - sym_identifier, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5222), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3291), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5389), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [148671] = 12, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(5393), 1, + [145377] = 12, + ACTIONS(5084), 1, sym_identifier, - ACTIONS(5395), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - STATE(2986), 1, + ACTIONS(5100), 1, + anon_sym_long, + STATE(3193), 1, sym__signedness, - STATE(3185), 1, + STATE(3421), 1, sym__longness, - STATE(5336), 1, + STATE(4399), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(362), 2, + ACTIONS(5096), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(364), 2, + ACTIONS(5098), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(5102), 2, anon_sym_const, anon_sym_volatile, - STATE(3459), 2, + STATE(3334), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(360), 3, + ACTIONS(5094), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148715] = 12, - ACTIONS(1251), 1, + [145421] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(4911), 1, - anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5383), 1, sym_identifier, - STATE(2979), 1, + ACTIONS(5385), 1, + anon_sym_LPAREN, + STATE(3077), 1, sym__signedness, - STATE(3169), 1, + STATE(3295), 1, sym__longness, - STATE(5174), 1, + STATE(4994), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148759] = 12, - ACTIONS(3677), 1, + [145465] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(5358), 1, + ACTIONS(5383), 1, sym_identifier, - ACTIONS(5360), 1, + ACTIONS(5385), 1, anon_sym_LPAREN, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(4679), 1, + STATE(5069), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148803] = 12, - ACTIONS(3677), 1, + [145509] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(5358), 1, + ACTIONS(5383), 1, sym_identifier, - ACTIONS(5360), 1, + ACTIONS(5385), 1, anon_sym_LPAREN, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(5083), 1, + STATE(5070), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148847] = 12, - ACTIONS(1251), 1, + [145553] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4911), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5317), 1, sym_identifier, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(5184), 1, + STATE(4840), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148891] = 12, - ACTIONS(3677), 1, + [145597] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(5397), 1, + ACTIONS(5383), 1, sym_identifier, - ACTIONS(5399), 1, + ACTIONS(5385), 1, anon_sym_LPAREN, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(5474), 1, + STATE(5000), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3493), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148935] = 12, - ACTIONS(1251), 1, + [145641] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(4911), 1, - anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5383), 1, sym_identifier, - STATE(2979), 1, + ACTIONS(5385), 1, + anon_sym_LPAREN, + STATE(3077), 1, sym__signedness, - STATE(3169), 1, + STATE(3295), 1, sym__longness, - STATE(4986), 1, + STATE(5072), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148979] = 12, - ACTIONS(1251), 1, + [145685] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(4911), 1, - anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5383), 1, sym_identifier, - STATE(2979), 1, + ACTIONS(5385), 1, + anon_sym_LPAREN, + STATE(3077), 1, sym__signedness, - STATE(3169), 1, + STATE(3295), 1, sym__longness, - STATE(5020), 1, + STATE(5073), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149023] = 4, - ACTIONS(5401), 1, + [145729] = 13, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5387), 7, - anon_sym_STAR, - sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, + ACTIONS(4829), 1, anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5389), 9, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [149051] = 12, - ACTIONS(1251), 1, - anon_sym_long, - ACTIONS(5128), 1, - anon_sym_LPAREN, - ACTIONS(5403), 1, + ACTIONS(5133), 1, sym_identifier, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3169), 1, + STATE(3085), 1, + sym_int_type, + STATE(3209), 1, sym__longness, - STATE(5451), 1, - sym_c_type, + STATE(3430), 1, + sym_operator_name, + STATE(4408), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(5137), 2, anon_sym_const, anon_sym_volatile, - STATE(3337), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, - anon_sym_double, - anon_sym_complex, - [149095] = 5, - ACTIONS(5405), 1, - anon_sym_DOT, - STATE(3120), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5191), 6, - anon_sym_as, - anon_sym_STAR, - sym_identifier, + anon_sym_double, anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5196), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_AMP, - [149125] = 12, - ACTIONS(3677), 1, + [145775] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(5358), 1, + ACTIONS(5383), 1, sym_identifier, - ACTIONS(5360), 1, + ACTIONS(5385), 1, anon_sym_LPAREN, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(4592), 1, + STATE(4496), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149169] = 12, - ACTIONS(3677), 1, + [145819] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(5358), 1, + ACTIONS(5383), 1, sym_identifier, - ACTIONS(5360), 1, + ACTIONS(5385), 1, anon_sym_LPAREN, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(5061), 1, + STATE(4596), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149213] = 14, - ACTIONS(3442), 1, - anon_sym_LPAREN, - ACTIONS(3453), 1, - sym_identifier, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(5408), 1, - anon_sym_DOT, - ACTIONS(5412), 1, - anon_sym_COLON, - ACTIONS(5414), 1, - anon_sym_EQ, - ACTIONS(5416), 1, - anon_sym_complex, - STATE(3318), 1, - sym_type_index, - STATE(3349), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5410), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3575), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [149261] = 12, - ACTIONS(1251), 1, + [145863] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4911), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5317), 1, sym_identifier, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(4982), 1, + STATE(4995), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149305] = 12, - ACTIONS(3677), 1, + [145907] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(5418), 1, - sym_identifier, - ACTIONS(5420), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - STATE(3080), 1, + ACTIONS(5317), 1, + sym_identifier, + STATE(2995), 1, sym__signedness, - STATE(3266), 1, + STATE(3209), 1, sym__longness, - STATE(5474), 1, + STATE(5076), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3561), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149349] = 12, - ACTIONS(1251), 1, - anon_sym_long, - ACTIONS(4911), 1, - anon_sym_LPAREN, - ACTIONS(5281), 1, + [145951] = 12, + ACTIONS(5084), 1, sym_identifier, - STATE(2979), 1, + ACTIONS(5086), 1, + anon_sym_LPAREN, + ACTIONS(5100), 1, + anon_sym_long, + STATE(3193), 1, sym__signedness, - STATE(3169), 1, + STATE(3421), 1, sym__longness, - STATE(5113), 1, + STATE(4529), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(5096), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(5098), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(5102), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3334), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(5094), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149393] = 12, - ACTIONS(1251), 1, - anon_sym_long, - ACTIONS(4911), 1, + [145995] = 5, + ACTIONS(5421), 1, + anon_sym_DOT, + STATE(3129), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5164), 6, + anon_sym_as, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5169), 9, + sym__newline, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(5281), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [146025] = 12, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(5383), 1, sym_identifier, - STATE(2979), 1, + ACTIONS(5385), 1, + anon_sym_LPAREN, + STATE(3077), 1, sym__signedness, - STATE(3169), 1, + STATE(3295), 1, sym__longness, - STATE(4995), 1, + STATE(5068), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149437] = 12, - ACTIONS(3677), 1, + [146069] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(5358), 1, - sym_identifier, - ACTIONS(5360), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - STATE(3080), 1, + ACTIONS(5317), 1, + sym_identifier, + STATE(2995), 1, sym__signedness, - STATE(3266), 1, + STATE(3209), 1, sym__longness, - STATE(4586), 1, + STATE(5042), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149481] = 12, - ACTIONS(3677), 1, + [146113] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(5358), 1, + ACTIONS(5383), 1, sym_identifier, - ACTIONS(5360), 1, + ACTIONS(5385), 1, anon_sym_LPAREN, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(5069), 1, + STATE(4701), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149525] = 12, - ACTIONS(3677), 1, + [146157] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(5358), 1, + ACTIONS(5383), 1, sym_identifier, - ACTIONS(5360), 1, + ACTIONS(5385), 1, anon_sym_LPAREN, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(5137), 1, + STATE(5008), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149569] = 12, - ACTIONS(1251), 1, + [146201] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4911), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5317), 1, sym_identifier, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(5017), 1, + STATE(5065), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149613] = 12, - ACTIONS(1251), 1, + [146245] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4911), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5317), 1, sym_identifier, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(5060), 1, + STATE(5011), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149657] = 12, - ACTIONS(3677), 1, + [146289] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(5358), 1, - sym_identifier, - ACTIONS(5360), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - STATE(3080), 1, + ACTIONS(5317), 1, + sym_identifier, + STATE(2995), 1, sym__signedness, - STATE(3266), 1, + STATE(3209), 1, sym__longness, - STATE(4640), 1, + STATE(5051), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149701] = 12, - ACTIONS(3677), 1, + [146333] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(5358), 1, - sym_identifier, - ACTIONS(5360), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - STATE(3080), 1, + ACTIONS(5317), 1, + sym_identifier, + STATE(2995), 1, sym__signedness, - STATE(3266), 1, + STATE(3209), 1, sym__longness, - STATE(4997), 1, + STATE(5027), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149745] = 12, - ACTIONS(1251), 1, + [146377] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4911), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5317), 1, sym_identifier, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(4990), 1, + STATE(5017), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149789] = 12, - ACTIONS(3677), 1, + [146421] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(5358), 1, - sym_identifier, - ACTIONS(5360), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - STATE(3080), 1, + ACTIONS(5317), 1, + sym_identifier, + STATE(2995), 1, sym__signedness, - STATE(3266), 1, + STATE(3209), 1, sym__longness, - STATE(4669), 1, + STATE(5058), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149833] = 12, - ACTIONS(3677), 1, - anon_sym_long, - ACTIONS(5358), 1, + [146465] = 12, + ACTIONS(5084), 1, sym_identifier, - ACTIONS(5360), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - STATE(3080), 1, + ACTIONS(5100), 1, + anon_sym_long, + STATE(3193), 1, sym__signedness, - STATE(3266), 1, + STATE(3421), 1, sym__longness, - STATE(4980), 1, + STATE(4332), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(5096), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(5098), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(5102), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3334), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(5094), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149877] = 12, - ACTIONS(1251), 1, + [146509] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4911), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5317), 1, sym_identifier, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(5046), 1, + STATE(5036), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149921] = 12, - ACTIONS(3677), 1, + [146553] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(5358), 1, + ACTIONS(5424), 1, sym_identifier, - ACTIONS(5360), 1, + ACTIONS(5426), 1, anon_sym_LPAREN, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(4698), 1, + STATE(5361), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3547), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149965] = 12, - ACTIONS(3677), 1, + [146597] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(5358), 1, - sym_identifier, - ACTIONS(5360), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - STATE(3080), 1, + ACTIONS(5317), 1, + sym_identifier, + STATE(2995), 1, sym__signedness, - STATE(3266), 1, + STATE(3209), 1, sym__longness, - STATE(5030), 1, + STATE(5061), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150009] = 12, - ACTIONS(1251), 1, + [146641] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4911), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5317), 1, sym_identifier, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(5116), 1, + STATE(5056), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150053] = 12, - ACTIONS(3677), 1, + [146685] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(5358), 1, - sym_identifier, - ACTIONS(5360), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - STATE(3080), 1, + ACTIONS(5317), 1, + sym_identifier, + STATE(2995), 1, sym__signedness, - STATE(3266), 1, + STATE(3209), 1, sym__longness, - STATE(4722), 1, + STATE(5165), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150097] = 12, - ACTIONS(3677), 1, + [146729] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(5358), 1, + ACTIONS(5383), 1, sym_identifier, - ACTIONS(5360), 1, + ACTIONS(5385), 1, anon_sym_LPAREN, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(5107), 1, + STATE(4797), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150141] = 12, - ACTIONS(1251), 1, + [146773] = 5, + ACTIONS(5413), 1, + anon_sym_COLON, + ACTIONS(5415), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5428), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(5417), 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, + [146803] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4911), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5317), 1, sym_identifier, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(5175), 1, + STATE(5100), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150185] = 12, - ACTIONS(3677), 1, + [146847] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(5358), 1, + ACTIONS(5383), 1, sym_identifier, - ACTIONS(5360), 1, + ACTIONS(5385), 1, anon_sym_LPAREN, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(5162), 1, + STATE(4649), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150229] = 12, - ACTIONS(3677), 1, + [146891] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(5358), 1, + ACTIONS(5383), 1, sym_identifier, - ACTIONS(5360), 1, + ACTIONS(5385), 1, anon_sym_LPAREN, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(5072), 1, + STATE(4998), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150273] = 12, - ACTIONS(3677), 1, + [146935] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(5358), 1, - sym_identifier, - ACTIONS(5360), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - STATE(3080), 1, + ACTIONS(5317), 1, + sym_identifier, + STATE(2995), 1, sym__signedness, - STATE(3266), 1, + STATE(3209), 1, sym__longness, - STATE(4977), 1, + STATE(5117), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150317] = 12, - ACTIONS(3677), 1, + [146979] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(5358), 1, - sym_identifier, - ACTIONS(5360), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - STATE(3080), 1, + ACTIONS(5317), 1, + sym_identifier, + STATE(2995), 1, sym__signedness, - STATE(3266), 1, + STATE(3209), 1, sym__longness, - STATE(5068), 1, + STATE(4996), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150361] = 4, - ACTIONS(5059), 1, + [147023] = 4, + ACTIONS(5430), 1, + anon_sym_COMMA, + STATE(3154), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2527), 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, + [147051] = 4, + ACTIONS(5432), 1, + anon_sym_COMMA, + STATE(3154), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5270), 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, + [147079] = 4, + ACTIONS(5104), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4101), 6, + ACTIONS(4120), 6, anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - ACTIONS(4091), 10, + ACTIONS(4110), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -232704,977 +233639,1091 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [150389] = 12, - ACTIONS(3677), 1, + [147107] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(5358), 1, + ACTIONS(5383), 1, sym_identifier, - ACTIONS(5360), 1, + ACTIONS(5385), 1, anon_sym_LPAREN, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(5104), 1, + STATE(4679), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150433] = 12, - ACTIONS(3677), 1, + [147151] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(5358), 1, + ACTIONS(5383), 1, sym_identifier, - ACTIONS(5360), 1, + ACTIONS(5385), 1, anon_sym_LPAREN, - STATE(3080), 1, + STATE(3077), 1, sym__signedness, - STATE(3266), 1, + STATE(3295), 1, sym__longness, - STATE(4984), 1, + STATE(4989), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150477] = 12, - ACTIONS(3677), 1, + [147195] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(5358), 1, - sym_identifier, - ACTIONS(5360), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - STATE(3080), 1, + ACTIONS(5317), 1, + sym_identifier, + STATE(2995), 1, sym__signedness, - STATE(3266), 1, + STATE(3209), 1, sym__longness, - STATE(5070), 1, + STATE(4294), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150521] = 12, - ACTIONS(3677), 1, + [147239] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(5358), 1, - sym_identifier, - ACTIONS(5360), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - STATE(3080), 1, + ACTIONS(5317), 1, + sym_identifier, + STATE(2995), 1, sym__signedness, - STATE(3266), 1, + STATE(3209), 1, sym__longness, - STATE(5071), 1, + STATE(5081), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150565] = 12, - ACTIONS(3677), 1, + [147283] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(5358), 1, - sym_identifier, - ACTIONS(5360), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - STATE(3080), 1, + ACTIONS(5317), 1, + sym_identifier, + STATE(2995), 1, sym__signedness, - STATE(3266), 1, + STATE(3209), 1, sym__longness, - STATE(4994), 1, + STATE(5045), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150609] = 12, - ACTIONS(3677), 1, + [147327] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(5358), 1, - sym_identifier, - ACTIONS(5360), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - STATE(3080), 1, + ACTIONS(5317), 1, + sym_identifier, + STATE(2995), 1, sym__signedness, - STATE(3266), 1, + STATE(3209), 1, sym__longness, - STATE(5073), 1, + STATE(5086), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150653] = 12, - ACTIONS(3677), 1, + [147371] = 12, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(5358), 1, + ACTIONS(5435), 1, sym_identifier, - ACTIONS(5360), 1, + ACTIONS(5437), 1, anon_sym_LPAREN, - STATE(3080), 1, + STATE(3000), 1, sym__signedness, - STATE(3266), 1, + STATE(3204), 1, sym__longness, - STATE(5074), 1, + STATE(5344), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3673), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3675), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(5130), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3265), 2, + STATE(3478), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3671), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150697] = 12, - ACTIONS(1251), 1, + [147415] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4911), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5317), 1, sym_identifier, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(5081), 1, + STATE(5090), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150741] = 12, - ACTIONS(1251), 1, + [147459] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4911), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5317), 1, sym_identifier, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(5040), 1, + STATE(5093), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150785] = 12, - ACTIONS(1251), 1, + [147503] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4911), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5317), 1, sym_identifier, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(5050), 1, + STATE(5147), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150829] = 12, - ACTIONS(1251), 1, + [147547] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(4911), 1, - anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5383), 1, sym_identifier, - STATE(2979), 1, + ACTIONS(5385), 1, + anon_sym_LPAREN, + STATE(3077), 1, sym__signedness, - STATE(3169), 1, + STATE(3295), 1, sym__longness, - STATE(5053), 1, + STATE(5137), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150873] = 12, - ACTIONS(1251), 1, + [147591] = 4, + ACTIONS(5439), 1, anon_sym_long, - ACTIONS(4911), 1, - anon_sym_LPAREN, - ACTIONS(5281), 1, - sym_identifier, - STATE(2979), 1, - sym__signedness, - STATE(3169), 1, - sym__longness, - STATE(5058), 1, - sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1249), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(1253), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3333), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(5387), 7, + anon_sym_STAR, + sym_identifier, anon_sym_int, anon_sym_double, anon_sym_complex, - [150917] = 5, - ACTIONS(5422), 1, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5389), 9, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [147619] = 5, + ACTIONS(5441), 1, anon_sym_DOT, - STATE(3162), 1, + STATE(3168), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5191), 6, + ACTIONS(5164), 6, anon_sym_as, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5196), 9, - sym__newline, - anon_sym_SEMI, + ACTIONS(5169), 9, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, + anon_sym_PIPE, anon_sym_AMP, - [150947] = 12, - ACTIONS(1251), 1, + [147649] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4911), 1, + ACTIONS(5220), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5444), 1, sym_identifier, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(5088), 1, + STATE(5472), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3361), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150991] = 12, - ACTIONS(1251), 1, + [147693] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(4911), 1, - anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5383), 1, sym_identifier, - STATE(2979), 1, + ACTIONS(5385), 1, + anon_sym_LPAREN, + STATE(3077), 1, sym__signedness, - STATE(3169), 1, + STATE(3295), 1, sym__longness, - STATE(5094), 1, + STATE(4708), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151035] = 12, - ACTIONS(1251), 1, + [147737] = 12, + ACTIONS(3776), 1, anon_sym_long, - ACTIONS(4911), 1, + ACTIONS(5383), 1, + sym_identifier, + ACTIONS(5385), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(5029), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3772), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(3774), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5222), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3291), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(3770), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [147781] = 12, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(5383), 1, sym_identifier, - STATE(2979), 1, + ACTIONS(5385), 1, + anon_sym_LPAREN, + STATE(3077), 1, sym__signedness, - STATE(3169), 1, + STATE(3295), 1, sym__longness, - STATE(5097), 1, + STATE(5010), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3291), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151079] = 12, - ACTIONS(1251), 1, + [147825] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4911), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5317), 1, sym_identifier, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(5100), 1, + STATE(5116), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1256), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1258), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1262), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3345), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1252), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [147869] = 12, + ACTIONS(3776), 1, + anon_sym_long, + ACTIONS(5446), 1, + sym_identifier, + ACTIONS(5448), 1, + anon_sym_LPAREN, + STATE(3077), 1, + sym__signedness, + STATE(3295), 1, + sym__longness, + STATE(5361), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(3772), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(3774), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(5222), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3269), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(3770), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151123] = 12, - ACTIONS(1251), 1, + [147913] = 12, + ACTIONS(1260), 1, anon_sym_long, - ACTIONS(4911), 1, + ACTIONS(4817), 1, anon_sym_LPAREN, - ACTIONS(5281), 1, + ACTIONS(5317), 1, sym_identifier, - STATE(2979), 1, + STATE(2995), 1, sym__signedness, - STATE(3169), 1, + STATE(3209), 1, sym__longness, - STATE(5011), 1, + STATE(5182), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1247), 2, + ACTIONS(1256), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1249), 2, + ACTIONS(1258), 2, anon_sym_char, anon_sym_short, - ACTIONS(1253), 2, + ACTIONS(1262), 2, anon_sym_const, anon_sym_volatile, - STATE(3333), 2, + STATE(3345), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1243), 3, + ACTIONS(1252), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151167] = 11, - ACTIONS(4009), 1, + [147957] = 12, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5425), 1, + ACTIONS(5450), 1, sym_identifier, - STATE(3278), 1, + ACTIONS(5452), 1, + anon_sym_LPAREN, + STATE(3279), 1, sym_type_index, - STATE(3395), 1, + STATE(3384), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5429), 2, + ACTIONS(5455), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5457), 2, anon_sym_COLON, anon_sym_EQ, - STATE(3252), 2, + STATE(3190), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5427), 3, + [148000] = 5, + ACTIONS(4118), 1, + anon_sym_as, + ACTIONS(5104), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4120), 6, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4110), 8, anon_sym_COMMA, - [151208] = 4, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [148029] = 11, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5235), 1, + sym_identifier, + STATE(3279), 1, + sym_type_index, + STATE(3393), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5103), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5099), 5, + ACTIONS(3997), 2, anon_sym_STAR, - sym_identifier, - anon_sym_complex, + anon_sym___stdcall, + ACTIONS(3999), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5239), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3188), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5237), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [148070] = 12, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(4829), 1, anon_sym_operator, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + STATE(3279), 1, + sym_type_index, + STATE(3432), 1, + sym_operator_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3997), 2, + anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5101), 9, + ACTIONS(3999), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5208), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5210), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3207), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [148113] = 10, + ACTIONS(4821), 1, + anon_sym_STAR, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(5393), 1, anon_sym_DOT, + ACTIONS(5459), 1, + anon_sym_complex, + STATE(3197), 1, + aux_sym_class_definition_repeat2, + STATE(3366), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3367), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4823), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(3461), 5, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [148152] = 4, + ACTIONS(5104), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4120), 6, + anon_sym_LPAREN, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [151235] = 14, - ACTIONS(3442), 1, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4110), 9, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [148179] = 14, + ACTIONS(3461), 1, anon_sym_LPAREN, - ACTIONS(3453), 1, + ACTIONS(3472), 1, sym_identifier, - ACTIONS(4919), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5408), 1, + ACTIONS(5393), 1, anon_sym_DOT, - ACTIONS(5410), 1, + ACTIONS(5395), 1, anon_sym_COMMA, - ACTIONS(5416), 1, + ACTIONS(5401), 1, anon_sym_complex, - ACTIONS(5431), 1, + ACTIONS(5461), 1, anon_sym_COLON, - ACTIONS(5433), 1, + ACTIONS(5463), 1, anon_sym_EQ, - STATE(3318), 1, - sym_type_index, - STATE(3349), 1, + STATE(3319), 1, aux_sym_class_definition_repeat2, + STATE(3366), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3575), 2, + STATE(3597), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [151282] = 11, - ACTIONS(4009), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5425), 1, + [148226] = 13, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3472), 1, sym_identifier, - STATE(3278), 1, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(5393), 1, + anon_sym_DOT, + ACTIONS(5401), 1, + anon_sym_complex, + ACTIONS(5463), 1, + anon_sym_EQ, + STATE(3319), 1, + aux_sym_class_definition_repeat2, + STATE(3366), 1, sym_type_index, - STATE(3395), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5429), 2, + ACTIONS(5395), 2, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - STATE(3252), 2, + STATE(3597), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5435), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [151323] = 11, - ACTIONS(4009), 1, + [148271] = 11, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5425), 1, + ACTIONS(5235), 1, sym_identifier, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, - STATE(3395), 1, + STATE(3393), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5429), 2, + ACTIONS(5239), 2, anon_sym_COLON, anon_sym_EQ, - STATE(3196), 2, + STATE(3215), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5435), 3, + ACTIONS(5227), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - [151364] = 12, - ACTIONS(4009), 1, + [148312] = 12, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5233), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5235), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, - STATE(3403), 1, + STATE(3432), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5238), 2, + ACTIONS(5208), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(5240), 2, + ACTIONS(5465), 2, anon_sym_COLON, anon_sym_EQ, - STATE(3197), 2, + STATE(3225), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [151407] = 12, - ACTIONS(4009), 1, + [148355] = 11, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5233), 1, + ACTIONS(5468), 1, sym_identifier, - ACTIONS(5235), 1, - anon_sym_LPAREN, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, - STATE(3403), 1, + STATE(3422), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5238), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5437), 2, + ACTIONS(5472), 2, anon_sym_COLON, anon_sym_EQ, - STATE(3208), 2, + STATE(3221), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [151450] = 12, - ACTIONS(4009), 1, + ACTIONS(5470), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [148396] = 12, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5233), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5440), 1, + ACTIONS(5474), 1, anon_sym_LPAREN, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, - STATE(3403), 1, + STATE(3432), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5240), 2, + ACTIONS(5210), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(5427), 2, + ACTIONS(5470), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(3199), 2, + STATE(3200), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [151493] = 12, - ACTIONS(4009), 1, + [148439] = 11, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5233), 1, + ACTIONS(5468), 1, sym_identifier, - ACTIONS(5440), 1, - anon_sym_LPAREN, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, - STATE(3403), 1, + STATE(3422), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5240), 2, + ACTIONS(5472), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(5427), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3208), 2, + STATE(3221), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [151536] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5443), 7, - anon_sym_STAR, - sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5445), 9, - anon_sym_DOT, + ACTIONS(5477), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [151561] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5451), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5447), 5, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5449), 9, + [148480] = 11, + ACTIONS(5479), 1, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [151588] = 10, - ACTIONS(4915), 1, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(4919), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - ACTIONS(5408), 1, - anon_sym_DOT, - ACTIONS(5453), 1, + ACTIONS(5487), 1, anon_sym_complex, - STATE(3003), 1, + STATE(3240), 1, aux_sym_class_definition_repeat2, - STATE(3318), 1, + STATE(3509), 1, sym_type_index, + STATE(4694), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3340), 2, + STATE(3463), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5204), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [151627] = 4, - ACTIONS(5059), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4101), 6, + ACTIONS(3461), 4, anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4091), 9, - anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_EQ, anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [151654] = 4, + [148521] = 12, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5489), 1, + sym_identifier, + ACTIONS(5491), 1, + anon_sym_LPAREN, + STATE(3279), 1, + sym_type_index, + STATE(3390), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5455), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5447), 5, + ACTIONS(3997), 2, anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5449), 9, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3999), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5494), 2, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(5496), 2, anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [151681] = 3, + STATE(3230), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [148564] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5191), 6, - anon_sym_as, + ACTIONS(5502), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5498), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5196), 10, + ACTIONS(5500), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -233683,126 +234732,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_AMP, - [151706] = 11, - ACTIONS(4915), 1, - anon_sym_STAR, - ACTIONS(4919), 1, + [148591] = 11, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(5212), 1, - anon_sym_LPAREN, - ACTIONS(5408), 1, - anon_sym_DOT, - ACTIONS(5457), 1, - anon_sym_complex, - STATE(3186), 1, - aux_sym_class_definition_repeat2, - STATE(3318), 1, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5504), 1, + sym_identifier, + STATE(3279), 1, sym_type_index, + STATE(3380), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3346), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(3997), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5215), 4, - anon_sym_COMMA, + ACTIONS(5508), 2, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [151747] = 11, - ACTIONS(5459), 1, - anon_sym_DOT, - ACTIONS(5461), 1, - anon_sym_STAR, - ACTIONS(5465), 1, - anon_sym_LBRACK, - ACTIONS(5467), 1, - anon_sym_complex, - STATE(3247), 1, - aux_sym_class_definition_repeat2, - STATE(3504), 1, - sym_type_index, - STATE(4488), 1, - aux_sym_global_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3366), 2, + anon_sym_EQ, + STATE(3227), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5463), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(3442), 4, + ACTIONS(5506), 3, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [151788] = 4, + [148632] = 7, + ACTIONS(5139), 1, + anon_sym_STAR, + ACTIONS(5514), 1, + anon_sym_long, + STATE(3428), 1, + sym__longness, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5113), 2, + ACTIONS(5510), 2, anon_sym_int, anon_sym_double, - ACTIONS(5099), 5, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5101), 9, - sym__newline, - anon_sym_DOT, + ACTIONS(5512), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5141), 9, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, - [151815] = 11, - ACTIONS(4915), 1, + anon_sym_complex, + anon_sym___stdcall, + [148665] = 11, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(4919), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5235), 1, + ACTIONS(5179), 1, anon_sym_LPAREN, - ACTIONS(5408), 1, + ACTIONS(5393), 1, anon_sym_DOT, - ACTIONS(5469), 1, + ACTIONS(5516), 1, anon_sym_complex, - STATE(3003), 1, + STATE(3196), 1, aux_sym_class_definition_repeat2, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3325), 2, + STATE(3343), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5238), 4, + ACTIONS(5182), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [151856] = 3, + [148706] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5443), 7, + ACTIONS(5518), 7, anon_sym_STAR, sym_identifier, anon_sym_int, @@ -233810,412 +234831,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5445), 9, - sym__newline, + ACTIONS(5520), 9, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [151881] = 11, - ACTIONS(4009), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5202), 1, - sym_identifier, - STATE(3278), 1, - sym_type_index, - STATE(3397), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4005), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4007), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5206), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3171), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5204), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - [151922] = 11, - ACTIONS(4009), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5202), 1, - sym_identifier, - STATE(3278), 1, - sym_type_index, - STATE(3397), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4005), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4007), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5471), 2, anon_sym_COLON, - anon_sym_EQ, - STATE(3239), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5204), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [151963] = 11, - ACTIONS(4009), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5202), 1, - sym_identifier, - STATE(3278), 1, - sym_type_index, - STATE(3397), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4005), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4007), 2, anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5206), 2, - anon_sym_COLON, anon_sym_EQ, - STATE(3168), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5227), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [152004] = 11, - ACTIONS(4009), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5202), 1, - sym_identifier, - STATE(3278), 1, - sym_type_index, - STATE(3397), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4005), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4007), 2, - anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5206), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3239), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5227), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [152045] = 5, - ACTIONS(4099), 1, - anon_sym_as, - ACTIONS(5059), 1, + [148731] = 11, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4101), 6, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4091), 8, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [152074] = 12, - ACTIONS(4009), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5474), 1, - sym_identifier, - ACTIONS(5476), 1, - anon_sym_LPAREN, - STATE(3278), 1, - sym_type_index, - STATE(3374), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4005), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4007), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5479), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5481), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3231), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [152117] = 13, - ACTIONS(3442), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(3453), 1, - sym_identifier, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(5408), 1, + ACTIONS(5393), 1, anon_sym_DOT, - ACTIONS(5416), 1, + ACTIONS(5522), 1, anon_sym_complex, - ACTIONS(5433), 1, - anon_sym_EQ, - STATE(3318), 1, - sym_type_index, - STATE(3349), 1, + STATE(3003), 1, aux_sym_class_definition_repeat2, + STATE(3366), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, + STATE(3328), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5410), 2, + anon_sym___stdcall, + ACTIONS(5208), 4, anon_sym_COMMA, anon_sym_COLON, - STATE(3575), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [152162] = 10, - ACTIONS(4915), 1, + anon_sym_GT, + anon_sym_QMARK, + [148772] = 10, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(4919), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5408), 1, + ACTIONS(5393), 1, anon_sym_DOT, - ACTIONS(5483), 1, + ACTIONS(5524), 1, anon_sym_complex, - STATE(3179), 1, + STATE(3003), 1, aux_sym_class_definition_repeat2, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3323), 2, + STATE(3332), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(3442), 5, + ACTIONS(5237), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [152201] = 11, - ACTIONS(4009), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5485), 1, - sym_identifier, - STATE(3278), 1, - sym_type_index, - STATE(3455), 1, - sym_operator_name, + [148811] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(5164), 6, + anon_sym_as, anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(4007), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5489), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3222), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5487), 3, + ACTIONS(5169), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - [152242] = 12, - ACTIONS(4009), 1, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [148836] = 11, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5491), 1, + ACTIONS(5235), 1, sym_identifier, - ACTIONS(5493), 1, - anon_sym_LPAREN, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, - STATE(3462), 1, + STATE(3393), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5496), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5498), 2, + ACTIONS(5239), 2, anon_sym_COLON, anon_sym_EQ, - STATE(3223), 2, + STATE(3186), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [152285] = 12, - ACTIONS(4009), 1, + ACTIONS(5227), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [148877] = 12, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5491), 1, + ACTIONS(5450), 1, sym_identifier, - ACTIONS(5493), 1, + ACTIONS(5526), 1, anon_sym_LPAREN, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, - STATE(3462), 1, + STATE(3384), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5496), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5498), 2, + ACTIONS(5457), 2, anon_sym_COLON, anon_sym_EQ, - STATE(3193), 2, + ACTIONS(5529), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3228), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [152328] = 12, - ACTIONS(4009), 1, + [148920] = 11, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5491), 1, + ACTIONS(5235), 1, sym_identifier, - ACTIONS(5500), 1, - anon_sym_LPAREN, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, - STATE(3462), 1, + STATE(3393), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5498), 2, + ACTIONS(5531), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(5503), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3223), 2, + STATE(3215), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [152371] = 4, - ACTIONS(5059), 1, + ACTIONS(5237), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [148961] = 4, + ACTIONS(5104), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4101), 6, + ACTIONS(4120), 6, anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - ACTIONS(4091), 9, + ACTIONS(4110), 9, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [152398] = 3, + [148988] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5191), 6, - anon_sym_as, + ACTIONS(5518), 7, anon_sym_STAR, sym_identifier, + anon_sym_int, + anon_sym_double, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5196), 10, + ACTIONS(5520), 9, sym__newline, - anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -234224,211 +235058,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [152423] = 7, - ACTIONS(5099), 1, - anon_sym_STAR, - ACTIONS(5509), 1, - anon_sym_long, - STATE(3408), 1, - sym__longness, + [149013] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5505), 2, + ACTIONS(5147), 2, anon_sym_int, anon_sym_double, - ACTIONS(5507), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5101), 9, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, + ACTIONS(5139), 5, + anon_sym_STAR, + sym_identifier, anon_sym_complex, - anon_sym___stdcall, - [152456] = 10, - ACTIONS(3819), 1, anon_sym_operator, - ACTIONS(5511), 1, - sym_identifier, - ACTIONS(5513), 1, - anon_sym_LBRACK, - STATE(3261), 1, - sym_type_index, - STATE(3398), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3447), 2, - anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3463), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3271), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5498), 4, + ACTIONS(5141), 9, sym__newline, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [152494] = 10, - ACTIONS(4009), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5485), 1, - sym_identifier, - STATE(3278), 1, - sym_type_index, - STATE(3455), 1, - sym_operator_name, + anon_sym_AMP, + [149040] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(5164), 6, + anon_sym_as, anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(4007), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3222), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5489), 4, + ACTIONS(5169), 10, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [152532] = 10, - ACTIONS(4009), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5491), 1, - sym_identifier, - STATE(3278), 1, - sym_type_index, - STATE(3462), 1, - sym_operator_name, + anon_sym_PIPE, + anon_sym_AMP, + [149065] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(5534), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5498), 5, anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(4007), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3223), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5498), 4, - anon_sym_RPAREN, + ACTIONS(5500), 9, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [152570] = 10, - ACTIONS(5459), 1, - anon_sym_DOT, - ACTIONS(5461), 1, - anon_sym_STAR, - ACTIONS(5465), 1, anon_sym_LBRACK, - ACTIONS(5467), 1, - anon_sym_complex, - STATE(3247), 1, - aux_sym_class_definition_repeat2, - STATE(3504), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3366), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5463), 3, - anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(3442), 4, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [152608] = 10, - ACTIONS(4009), 1, + [149092] = 12, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5491), 1, + ACTIONS(5450), 1, sym_identifier, - STATE(3278), 1, + ACTIONS(5452), 1, + anon_sym_LPAREN, + STATE(3279), 1, sym_type_index, - STATE(3462), 1, + STATE(3384), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3224), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5498), 4, + ACTIONS(5455), 2, anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(5457), 2, anon_sym_COLON, anon_sym_EQ, - [152646] = 9, - ACTIONS(5518), 1, - anon_sym_LPAREN, - ACTIONS(5529), 1, + STATE(3228), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [149135] = 11, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3278), 1, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5468), 1, + sym_identifier, + STATE(3279), 1, sym_type_index, + STATE(3422), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5516), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(5523), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5526), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3210), 2, + ACTIONS(5472), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3192), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5520), 4, + ACTIONS(5477), 3, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [152682] = 3, + [149176] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5532), 6, + ACTIONS(5143), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5139), 5, anon_sym_STAR, - anon_sym_not, - anon_sym_or, sym_identifier, + anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5534), 9, + ACTIONS(5141), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -234438,253 +235210,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [152706] = 8, - ACTIONS(5529), 1, + [149203] = 12, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3278), 1, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5474), 1, + anon_sym_LPAREN, + STATE(3279), 1, sym_type_index, + STATE(3432), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5516), 2, - sym_identifier, + ACTIONS(3997), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3999), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5210), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(5470), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3225), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [149246] = 10, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(5523), 2, + ACTIONS(5349), 1, + sym_identifier, + ACTIONS(5536), 1, + anon_sym_LBRACK, + STATE(3294), 1, + sym_type_index, + STATE(3417), 1, + sym_operator_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3466), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5526), 2, + ACTIONS(3482), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3210), 2, + STATE(3298), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5518), 5, + ACTIONS(5531), 4, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [152740] = 11, - ACTIONS(5235), 1, - anon_sym_LPAREN, - ACTIONS(5459), 1, + [149284] = 11, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(5461), 1, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(5536), 1, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5540), 1, anon_sym_complex, - STATE(3291), 1, + STATE(3168), 1, aux_sym_class_definition_repeat2, - STATE(3504), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3460), 2, + STATE(3444), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5238), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5463), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [152780] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5538), 5, - anon_sym_STAR, - anon_sym_not, - anon_sym_or, - sym_identifier, - anon_sym___stdcall, - ACTIONS(5540), 10, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5208), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, + [149324] = 10, + ACTIONS(4001), 1, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [152804] = 3, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5468), 1, + sym_identifier, + STATE(3279), 1, + sym_type_index, + STATE(3422), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5538), 6, + ACTIONS(3997), 2, anon_sym_STAR, - anon_sym_not, - anon_sym_or, - sym_identifier, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5540), 9, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3999), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3221), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5472), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, + [149362] = 8, + ACTIONS(5552), 1, anon_sym_LBRACK, - anon_sym_AMP, - [152828] = 3, + STATE(3294), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5542), 5, - anon_sym_STAR, - anon_sym_not, - anon_sym_or, + ACTIONS(5542), 2, sym_identifier, + anon_sym_operator, + ACTIONS(5546), 2, + anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5544), 10, - anon_sym_DOT, + ACTIONS(5549), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3214), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5544), 5, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [152852] = 11, - ACTIONS(5212), 1, + [149396] = 9, + ACTIONS(5544), 1, anon_sym_LPAREN, - ACTIONS(5459), 1, - anon_sym_DOT, - ACTIONS(5461), 1, - anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(5564), 1, anon_sym_LBRACK, - ACTIONS(5546), 1, - anon_sym_complex, - STATE(3211), 1, - aux_sym_class_definition_repeat2, - STATE(3504), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3428), 2, + ACTIONS(5542), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(5558), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5561), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5215), 3, + ACTIONS(5555), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5463), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [152892] = 10, - ACTIONS(4009), 1, + [149432] = 10, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5233), 1, + ACTIONS(5203), 1, sym_identifier, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, - STATE(3403), 1, + STATE(3432), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3208), 2, + STATE(3223), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5240), 4, + ACTIONS(5210), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [152930] = 10, - ACTIONS(4009), 1, + [149470] = 10, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5202), 1, + ACTIONS(5203), 1, sym_identifier, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, - STATE(3397), 1, + STATE(3432), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3239), 2, + STATE(3225), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5471), 4, + ACTIONS(5465), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [152968] = 10, - ACTIONS(4009), 1, + [149508] = 10, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5233), 1, + ACTIONS(5203), 1, sym_identifier, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, - STATE(3403), 1, + STATE(3432), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3205), 2, + STATE(3225), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5240), 4, + ACTIONS(5210), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [153006] = 5, - ACTIONS(4099), 1, + [149546] = 5, + ACTIONS(4118), 1, anon_sym_as, - ACTIONS(5059), 1, + ACTIONS(5104), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4101), 6, + ACTIONS(4120), 6, anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - ACTIONS(4091), 7, + ACTIONS(4110), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -234692,45 +235486,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [153034] = 10, - ACTIONS(4009), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5202), 1, - sym_identifier, - STATE(3278), 1, - sym_type_index, - STATE(3397), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4005), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4007), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3239), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5206), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [153072] = 3, + [149574] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5548), 5, + ACTIONS(5567), 5, anon_sym_STAR, anon_sym_not, anon_sym_or, sym_identifier, anon_sym___stdcall, - ACTIONS(5550), 10, + ACTIONS(5569), 10, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -234741,617 +235507,679 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [153096] = 9, - ACTIONS(5518), 1, + [149598] = 9, + ACTIONS(5544), 1, anon_sym_LPAREN, - ACTIONS(5529), 1, + ACTIONS(5564), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5516), 2, + ACTIONS(5542), 2, sym_identifier, anon_sym_operator, - ACTIONS(5523), 2, + ACTIONS(5558), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5526), 2, + ACTIONS(5561), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3210), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5552), 4, + ACTIONS(5571), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [153132] = 9, - ACTIONS(5518), 1, - anon_sym_LPAREN, - ACTIONS(5529), 1, + [149634] = 10, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3278), 1, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5504), 1, + sym_identifier, + STATE(3279), 1, sym_type_index, + STATE(3380), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5516), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(5523), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5526), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3210), 2, + STATE(3227), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5555), 4, + ACTIONS(5508), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [153168] = 10, - ACTIONS(4009), 1, + [149672] = 10, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5474), 1, + ACTIONS(5450), 1, sym_identifier, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, - STATE(3374), 1, + STATE(3384), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3231), 2, + STATE(3228), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5481), 4, + ACTIONS(5457), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [153206] = 10, - ACTIONS(4009), 1, + [149710] = 10, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, + ACTIONS(4829), 1, anon_sym_operator, - ACTIONS(5202), 1, + ACTIONS(5450), 1, sym_identifier, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, - STATE(3397), 1, + STATE(3384), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3997), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3227), 2, + STATE(3229), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5206), 4, + ACTIONS(5457), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [153244] = 3, + [149748] = 9, + ACTIONS(5544), 1, + anon_sym_LPAREN, + ACTIONS(5564), 1, + anon_sym_LBRACK, + STATE(3279), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5542), 6, - anon_sym_STAR, - anon_sym_not, - anon_sym_or, + ACTIONS(5542), 2, sym_identifier, anon_sym_operator, + ACTIONS(5558), 2, + anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5544), 9, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5561), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3244), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5574), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [153268] = 10, - ACTIONS(4009), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, + [149784] = 10, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(5425), 1, + ACTIONS(5577), 1, sym_identifier, - STATE(3278), 1, + ACTIONS(5579), 1, + anon_sym_LBRACK, + STATE(3294), 1, sym_type_index, - STATE(3395), 1, + STATE(3415), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(3466), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(3482), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3252), 2, + STATE(3265), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5429), 4, - anon_sym_RPAREN, + ACTIONS(5496), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [153306] = 10, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(5558), 1, - sym_identifier, - ACTIONS(5560), 1, + [149822] = 9, + ACTIONS(5544), 1, + anon_sym_LPAREN, + ACTIONS(5564), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3279), 1, sym_type_index, - STATE(3381), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3447), 2, + ACTIONS(5542), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(5558), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3463), 2, + ACTIONS(5561), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3270), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5489), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(5582), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [153344] = 10, - ACTIONS(4009), 1, + [149858] = 9, + ACTIONS(5544), 1, + anon_sym_LPAREN, + ACTIONS(5564), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5425), 1, - sym_identifier, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, - STATE(3395), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(5542), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(5558), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(5561), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3204), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5429), 4, + ACTIONS(5585), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [153382] = 10, - ACTIONS(4003), 1, - anon_sym_DOT, - ACTIONS(4005), 1, - anon_sym_STAR, - ACTIONS(4009), 1, + [149894] = 10, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(4011), 1, - anon_sym_complex, - STATE(3249), 1, - aux_sym_class_definition_repeat2, - STATE(3278), 1, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5489), 1, + sym_identifier, + STATE(3279), 1, sym_type_index, + STATE(3390), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3448), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3997), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(3442), 4, - anon_sym_LPAREN, + STATE(3230), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5496), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [153420] = 9, - ACTIONS(5518), 1, + [149932] = 9, + ACTIONS(5544), 1, anon_sym_LPAREN, - ACTIONS(5529), 1, + ACTIONS(5564), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5516), 2, + ACTIONS(5542), 2, sym_identifier, anon_sym_operator, - ACTIONS(5523), 2, + ACTIONS(5558), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5526), 2, + ACTIONS(5561), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3210), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5563), 4, + ACTIONS(5588), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [153456] = 8, - ACTIONS(5572), 1, - anon_sym_LBRACK, - STATE(3261), 1, - sym_type_index, + [149968] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5516), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(5566), 2, + ACTIONS(5591), 5, anon_sym_STAR, + anon_sym_not, + anon_sym_or, + sym_identifier, anon_sym___stdcall, - ACTIONS(5569), 2, + ACTIONS(5593), 10, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, anon_sym_AMP, - STATE(3232), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5518), 5, - sym__newline, + anon_sym_GT, + anon_sym_QMARK, + [149992] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5595), 5, + anon_sym_STAR, + anon_sym_not, + anon_sym_or, + sym_identifier, + anon_sym___stdcall, + ACTIONS(5597), 10, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [153490] = 10, - ACTIONS(3819), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [150016] = 10, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(5575), 1, + ACTIONS(5599), 1, sym_identifier, - ACTIONS(5577), 1, + ACTIONS(5601), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, - STATE(3422), 1, + STATE(3407), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3447), 2, + ACTIONS(3466), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3463), 2, + ACTIONS(3482), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3292), 2, + STATE(3277), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5429), 4, + ACTIONS(5472), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [153528] = 10, - ACTIONS(3819), 1, + [150054] = 10, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(5575), 1, + ACTIONS(5599), 1, sym_identifier, - ACTIONS(5577), 1, + ACTIONS(5601), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, - STATE(3422), 1, + STATE(3407), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3447), 2, + ACTIONS(3466), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3463), 2, + ACTIONS(3482), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3228), 2, + STATE(3252), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5429), 4, + ACTIONS(5472), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [153566] = 11, - ACTIONS(4003), 1, - anon_sym_DOT, - ACTIONS(4005), 1, - anon_sym_STAR, - ACTIONS(4009), 1, + [150092] = 10, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(5305), 1, + sym_identifier, + ACTIONS(5307), 1, anon_sym_LBRACK, - ACTIONS(5235), 1, - anon_sym_LPAREN, - ACTIONS(5580), 1, - anon_sym_complex, - STATE(3120), 1, - aux_sym_class_definition_repeat2, - STATE(3278), 1, + STATE(3294), 1, sym_type_index, + STATE(3413), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3463), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3466), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3482), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5238), 3, - anon_sym_RPAREN, + STATE(3254), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5210), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [153606] = 10, - ACTIONS(3819), 1, + [150130] = 10, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(5252), 1, + ACTIONS(5305), 1, sym_identifier, - ACTIONS(5254), 1, + ACTIONS(5604), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, - STATE(3384), 1, + STATE(3413), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3447), 2, + ACTIONS(3466), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3463), 2, + ACTIONS(3482), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3233), 2, + STATE(3282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5206), 4, + ACTIONS(5465), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [153644] = 10, - ACTIONS(3819), 1, + [150168] = 10, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(5252), 1, + ACTIONS(5305), 1, sym_identifier, - ACTIONS(5582), 1, + ACTIONS(5307), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, - STATE(3384), 1, + STATE(3413), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3447), 2, + ACTIONS(3466), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3463), 2, + ACTIONS(3482), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3263), 2, + STATE(3282), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5471), 4, + ACTIONS(5210), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [153682] = 11, - ACTIONS(4003), 1, + [150206] = 10, + ACTIONS(5479), 1, anon_sym_DOT, - ACTIONS(4005), 1, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - ACTIONS(5212), 1, - anon_sym_LPAREN, - ACTIONS(5586), 1, + ACTIONS(5487), 1, anon_sym_complex, - STATE(3235), 1, + STATE(3240), 1, aux_sym_class_definition_repeat2, - STATE(3278), 1, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3465), 2, + STATE(3463), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5215), 3, - anon_sym_RPAREN, + ACTIONS(3461), 4, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [153722] = 9, - ACTIONS(5518), 1, - anon_sym_LPAREN, - ACTIONS(5529), 1, - anon_sym_LBRACK, - STATE(3278), 1, - sym_type_index, + anon_sym_RBRACK, + [150244] = 4, + ACTIONS(5608), 1, + anon_sym_long, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5516), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(5523), 2, + ACTIONS(5387), 6, anon_sym_STAR, + sym_identifier, + anon_sym_int, + anon_sym_double, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(5526), 2, + ACTIONS(5389), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - STATE(3210), 2, + anon_sym_GT, + anon_sym_QMARK, + [150270] = 10, + ACTIONS(5479), 1, + anon_sym_DOT, + ACTIONS(5481), 1, + anon_sym_STAR, + ACTIONS(5485), 1, + anon_sym_LBRACK, + ACTIONS(5610), 1, + anon_sym_complex, + STATE(3289), 1, + aux_sym_class_definition_repeat2, + STATE(3509), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3467), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5588), 4, - anon_sym_RPAREN, + ACTIONS(5483), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5237), 4, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [153758] = 10, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(5337), 1, - sym_identifier, - ACTIONS(5339), 1, + anon_sym_RBRACK, + [150308] = 11, + ACTIONS(5179), 1, + anon_sym_LPAREN, + ACTIONS(5479), 1, + anon_sym_DOT, + ACTIONS(5481), 1, + anon_sym_STAR, + ACTIONS(5485), 1, anon_sym_LBRACK, - STATE(3261), 1, + ACTIONS(5612), 1, + anon_sym_complex, + STATE(3245), 1, + aux_sym_class_definition_repeat2, + STATE(3509), 1, sym_type_index, - STATE(3440), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3447), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3463), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3203), 2, + STATE(3468), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5240), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(5182), 3, anon_sym_COMMA, anon_sym_EQ, - [153796] = 4, - ACTIONS(5591), 1, - anon_sym_long, + anon_sym_RBRACK, + ACTIONS(5483), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [150348] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5387), 6, + ACTIONS(5614), 5, anon_sym_STAR, + anon_sym_not, + anon_sym_or, sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, anon_sym___stdcall, - ACTIONS(5389), 8, + ACTIONS(5616), 10, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [153822] = 10, - ACTIONS(4009), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5233), 1, + [150372] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5591), 6, + anon_sym_STAR, + anon_sym_not, + anon_sym_or, sym_identifier, - STATE(3278), 1, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5593), 9, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [150396] = 8, + ACTIONS(5564), 1, + anon_sym_LBRACK, + STATE(3279), 1, sym_type_index, - STATE(3403), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, + ACTIONS(5542), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(5558), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4007), 2, + ACTIONS(5561), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3208), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5437), 4, + ACTIONS(5544), 5, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [153860] = 10, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(5337), 1, - sym_identifier, - ACTIONS(5593), 1, + [150430] = 11, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5479), 1, + anon_sym_DOT, + ACTIONS(5481), 1, + anon_sym_STAR, + ACTIONS(5485), 1, anon_sym_LBRACK, - STATE(3261), 1, + ACTIONS(5618), 1, + anon_sym_complex, + STATE(3289), 1, + aux_sym_class_definition_repeat2, + STATE(3509), 1, sym_type_index, - STATE(3440), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3447), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3463), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3275), 2, + STATE(3473), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5437), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(5208), 3, anon_sym_COMMA, anon_sym_EQ, - [153898] = 3, + anon_sym_RBRACK, + ACTIONS(5483), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [150470] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5548), 6, + ACTIONS(5620), 6, anon_sym_STAR, anon_sym_not, anon_sym_or, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5550), 9, + ACTIONS(5622), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -235361,46 +236189,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [153922] = 10, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(5337), 1, - sym_identifier, - ACTIONS(5339), 1, - anon_sym_LBRACK, - STATE(3261), 1, - sym_type_index, - STATE(3440), 1, - sym_operator_name, + [150494] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3447), 2, + ACTIONS(5567), 6, anon_sym_STAR, + anon_sym_not, + anon_sym_or, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(3463), 2, + ACTIONS(5569), 9, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, anon_sym_AMP, - STATE(3275), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5240), 4, - sym__newline, + [150518] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5595), 6, + anon_sym_STAR, + anon_sym_not, + anon_sym_or, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5597), 9, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [153960] = 3, + anon_sym_LBRACK, + anon_sym_AMP, + [150542] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5597), 6, + ACTIONS(5614), 6, anon_sym_STAR, anon_sym_not, anon_sym_or, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5599), 9, + ACTIONS(5616), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -235410,45 +236252,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [153984] = 10, - ACTIONS(5459), 1, - anon_sym_DOT, - ACTIONS(5461), 1, - anon_sym_STAR, - ACTIONS(5465), 1, + [150566] = 10, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(5349), 1, + sym_identifier, + ACTIONS(5351), 1, anon_sym_LBRACK, - ACTIONS(5601), 1, - anon_sym_complex, - STATE(3291), 1, - aux_sym_class_definition_repeat2, - STATE(3504), 1, + STATE(3294), 1, sym_type_index, + STATE(3417), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3427), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5463), 3, + ACTIONS(3466), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3482), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5204), 4, + STATE(3233), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5239), 4, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [154022] = 3, + [150604] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5532), 5, + ACTIONS(5620), 5, anon_sym_STAR, anon_sym_not, anon_sym_or, sym_identifier, anon_sym___stdcall, - ACTIONS(5534), 10, + ACTIONS(5622), 10, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -235459,175 +236301,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [154046] = 10, - ACTIONS(4003), 1, - anon_sym_DOT, - ACTIONS(4005), 1, - anon_sym_STAR, - ACTIONS(4009), 1, + [150628] = 10, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(5624), 1, + sym_identifier, + ACTIONS(5626), 1, anon_sym_LBRACK, - ACTIONS(5603), 1, - anon_sym_complex, - STATE(3120), 1, - aux_sym_class_definition_repeat2, - STATE(3278), 1, + STATE(3294), 1, sym_type_index, + STATE(3457), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3436), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3466), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3482), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5204), 4, + STATE(3296), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5508), 4, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [154084] = 10, - ACTIONS(3819), 1, + [150666] = 10, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(5252), 1, + ACTIONS(5349), 1, sym_identifier, - ACTIONS(5254), 1, + ACTIONS(5351), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, - STATE(3384), 1, + STATE(3417), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3447), 2, + ACTIONS(3466), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3463), 2, + ACTIONS(3482), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3263), 2, + STATE(3298), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5206), 4, + ACTIONS(5239), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [154122] = 10, - ACTIONS(3819), 1, + [150704] = 10, + ACTIONS(3802), 1, anon_sym_operator, - ACTIONS(5511), 1, + ACTIONS(5629), 1, sym_identifier, - ACTIONS(5513), 1, + ACTIONS(5631), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, - STATE(3398), 1, + STATE(3372), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3447), 2, + ACTIONS(3466), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3463), 2, + ACTIONS(3482), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3254), 2, + STATE(3301), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5498), 4, + ACTIONS(5457), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [154160] = 9, - ACTIONS(5518), 1, - anon_sym_LPAREN, - ACTIONS(5529), 1, + [150742] = 10, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5631), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3294), 1, sym_type_index, + STATE(3372), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5516), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(5523), 2, + ACTIONS(3466), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5526), 2, + ACTIONS(3482), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3210), 2, + STATE(3226), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5605), 4, - anon_sym_RPAREN, + ACTIONS(5457), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [154196] = 3, + [150780] = 10, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3997), 1, + anon_sym_STAR, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(4003), 1, + anon_sym_complex, + STATE(3258), 1, + aux_sym_class_definition_repeat2, + STATE(3279), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5597), 5, - anon_sym_STAR, - anon_sym_not, - anon_sym_or, - sym_identifier, + STATE(3423), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3999), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5599), 10, - anon_sym_DOT, + ACTIONS(3461), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, + [150818] = 5, + ACTIONS(4118), 1, + anon_sym_as, + ACTIONS(5104), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4120), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [154220] = 10, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(5608), 1, - sym_identifier, - ACTIONS(5610), 1, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4110), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [150846] = 10, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3997), 1, + anon_sym_STAR, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3261), 1, + ACTIONS(5634), 1, + anon_sym_complex, + STATE(3168), 1, + aux_sym_class_definition_repeat2, + STATE(3279), 1, sym_type_index, - STATE(3414), 1, - sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3447), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3463), 2, + STATE(3434), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3295), 2, + anon_sym___stdcall, + ACTIONS(5237), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [150884] = 11, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3997), 1, + anon_sym_STAR, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(5179), 1, + anon_sym_LPAREN, + ACTIONS(5636), 1, + anon_sym_complex, + STATE(3212), 1, + aux_sym_class_definition_repeat2, + STATE(3279), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3436), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5481), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(3999), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5182), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [154258] = 4, - ACTIONS(5364), 1, + [150924] = 4, + ACTIONS(5413), 1, anon_sym_COLON, - ACTIONS(5366), 1, + ACTIONS(5415), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5368), 13, + ACTIONS(5417), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235641,245 +236543,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [154284] = 5, - ACTIONS(4099), 1, - anon_sym_as, - ACTIONS(5059), 1, - anon_sym_STAR, + [150950] = 10, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5235), 1, + sym_identifier, + STATE(3279), 1, + sym_type_index, + STATE(3393), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4101), 6, - anon_sym_LPAREN, + ACTIONS(3997), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3999), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4091), 7, + STATE(3213), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5239), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [154312] = 11, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(3447), 1, - anon_sym_STAR, - ACTIONS(3457), 1, + anon_sym_COLON, + anon_sym_EQ, + [150988] = 10, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(5212), 1, - anon_sym_LPAREN, - ACTIONS(5613), 1, - anon_sym_complex, - STATE(3261), 1, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5235), 1, + sym_identifier, + STATE(3279), 1, sym_type_index, - STATE(3294), 1, - aux_sym_class_definition_repeat2, + STATE(3393), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5215), 2, - sym__newline, - anon_sym_COLON, - STATE(3487), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3997), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3999), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - [154351] = 5, - ACTIONS(5617), 1, - anon_sym_DOT, - STATE(3285), 1, - aux_sym_type_qualifier_repeat1, + STATE(3215), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5531), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [151026] = 10, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5235), 1, + sym_identifier, + STATE(3279), 1, + sym_type_index, + STATE(3393), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5615), 4, + ACTIONS(3997), 2, anon_sym_STAR, - sym_identifier, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5619), 8, - sym__newline, - anon_sym_LPAREN, + ACTIONS(3999), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3215), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5239), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, + [151064] = 10, + ACTIONS(4001), 1, anon_sym_LBRACK, - anon_sym_AMP, - [154378] = 2, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5468), 1, + sym_identifier, + STATE(3279), 1, + sym_type_index, + STATE(3422), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4304), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + ACTIONS(3997), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3999), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3222), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5472), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_with, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_nogil, - [154399] = 3, + [151102] = 8, + ACTIONS(5638), 1, + anon_sym_LBRACK, + STATE(3294), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5447), 5, - anon_sym_STAR, + ACTIONS(5542), 2, sym_identifier, - anon_sym_complex, anon_sym_operator, + ACTIONS(5546), 2, + anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5449), 9, + ACTIONS(5549), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3214), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5588), 4, sym__newline, - anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [154422] = 5, - ACTIONS(5617), 1, + [151135] = 5, + ACTIONS(5644), 1, anon_sym_DOT, - STATE(3258), 1, + STATE(3266), 1, aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5621), 4, + ACTIONS(5642), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5623), 8, - sym__newline, + ACTIONS(5647), 8, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [154449] = 3, + [151162] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5625), 5, + ACTIONS(5518), 6, anon_sym_STAR, sym_identifier, + anon_sym_int, + anon_sym_double, anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5627), 9, - sym__newline, - anon_sym_DOT, + ACTIONS(5520), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [154472] = 8, - ACTIONS(5629), 1, anon_sym_LBRACK, - STATE(3261), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5516), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(5566), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5569), 2, - anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3232), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5588), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [154505] = 5, - ACTIONS(5637), 1, - anon_sym_LBRACK, - STATE(3332), 1, - sym_type_index, + anon_sym_GT, + anon_sym_QMARK, + [151185] = 5, + ACTIONS(5649), 1, + anon_sym_DOT, + STATE(3268), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5633), 4, + ACTIONS(5642), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5635), 8, - anon_sym_DOT, + ACTIONS(5647), 8, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_AMP, - [154532] = 8, - ACTIONS(4915), 1, + [151212] = 9, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(4919), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5640), 1, + ACTIONS(5224), 1, + anon_sym_LPAREN, + ACTIONS(5652), 1, anon_sym_complex, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3335), 2, + STATE(3347), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5147), 5, - anon_sym_LPAREN, + ACTIONS(5227), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [154565] = 4, + [151247] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5344), 2, + ACTIONS(5654), 2, anon_sym_int, anon_sym_double, - ACTIONS(5099), 4, + ACTIONS(5498), 4, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym___stdcall, - ACTIONS(5101), 8, + ACTIONS(5500), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -235888,11 +236791,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [154590] = 2, + [151272] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4267), 14, + ACTIONS(4296), 14, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -235907,163 +236810,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_nogil, - [154611] = 5, + [151293] = 8, + ACTIONS(5542), 1, + sym_identifier, + ACTIONS(5662), 1, + anon_sym_LBRACK, + STATE(3366), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5656), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5659), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3272), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5544), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [151326] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5139), 5, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5141), 9, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [151349] = 11, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(3802), 1, + anon_sym_operator, + ACTIONS(5665), 1, + sym_identifier, + STATE(3000), 1, + sym__signedness, + STATE(3086), 1, + sym_int_type, + STATE(3204), 1, + sym__longness, + STATE(3405), 1, + sym_operator_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(367), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(369), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [151388] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5642), 2, + ACTIONS(5667), 2, sym__newline, anon_sym_COLON, - ACTIONS(4101), 4, + ACTIONS(4120), 4, anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(5059), 4, + ACTIONS(5104), 4, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym___stdcall, - ACTIONS(5644), 4, + ACTIONS(5669), 4, anon_sym_except, anon_sym_with, anon_sym_nogil, anon_sym_noexcept, - [154638] = 10, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(3447), 1, + [151415] = 9, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(3457), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5646), 1, + ACTIONS(5526), 1, + anon_sym_LPAREN, + ACTIONS(5671), 1, anon_sym_complex, - STATE(3162), 1, - aux_sym_class_definition_repeat2, - STATE(3261), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3486), 2, + STATE(3360), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5204), 3, - sym__newline, - anon_sym_LPAREN, + ACTIONS(5529), 4, + anon_sym_COMMA, anon_sym_COLON, - [154675] = 8, - ACTIONS(5648), 1, + anon_sym_GT, + anon_sym_QMARK, + [151450] = 8, + ACTIONS(5673), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5516), 2, + ACTIONS(5542), 2, sym_identifier, anon_sym_operator, - ACTIONS(5566), 2, + ACTIONS(5546), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5569), 2, + ACTIONS(5549), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3232), 2, + STATE(3214), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5552), 4, + ACTIONS(5571), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [154708] = 8, - ACTIONS(5652), 1, - anon_sym_LBRACK, - STATE(3261), 1, - sym_type_index, + [151483] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5516), 2, + ACTIONS(5677), 5, + anon_sym_STAR, sym_identifier, + anon_sym_complex, anon_sym_operator, - ACTIONS(5566), 2, - anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5569), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3232), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5555), 4, + ACTIONS(5679), 9, sym__newline, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [154741] = 11, - ACTIONS(366), 1, - anon_sym_long, - ACTIONS(3819), 1, - anon_sym_operator, - ACTIONS(5656), 1, - sym_identifier, - STATE(2986), 1, - sym__signedness, - STATE(3056), 1, - sym_int_type, - STATE(3185), 1, - sym__longness, - STATE(3469), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(362), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(364), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(360), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [154780] = 2, + anon_sym_LBRACK, + anon_sym_AMP, + [151506] = 5, + ACTIONS(5683), 1, + anon_sym_DOT, + STATE(3300), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3942), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + ACTIONS(5681), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5685), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_with, + anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_nogil, - [154801] = 3, + anon_sym_LBRACK, + anon_sym_AMP, + [151533] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5099), 5, + ACTIONS(5677), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5101), 9, + ACTIONS(5679), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -236073,36 +237018,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [154824] = 8, - ACTIONS(5658), 1, + [151556] = 8, + ACTIONS(4821), 1, + anon_sym_STAR, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(5687), 1, + anon_sym_complex, + STATE(3366), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3322), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4823), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5470), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [151589] = 8, + ACTIONS(5689), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5516), 2, + ACTIONS(5542), 2, sym_identifier, anon_sym_operator, - ACTIONS(5566), 2, + ACTIONS(5546), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5569), 2, + ACTIONS(5549), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3232), 2, + STATE(3214), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5520), 4, + ACTIONS(5574), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [154857] = 2, + [151622] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4211), 14, + ACTIONS(3961), 14, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -236117,46 +237087,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_nogil, - [154878] = 9, - ACTIONS(4915), 1, - anon_sym_STAR, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(5500), 1, - anon_sym_LPAREN, - ACTIONS(5662), 1, - anon_sym_complex, - STATE(3318), 1, - sym_type_index, + [151643] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3304), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4917), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5503), 4, + ACTIONS(4234), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [154913] = 5, - ACTIONS(5664), 1, - anon_sym_DOT, - STATE(3287), 1, - aux_sym_type_qualifier_repeat1, + anon_sym_with, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_nogil, + [151664] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5621), 4, + ACTIONS(5498), 5, anon_sym_STAR, sym_identifier, + anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5623), 8, + ACTIONS(5500), 9, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -236165,153 +237126,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [154940] = 3, + [151687] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5443), 6, + ACTIONS(5139), 5, anon_sym_STAR, sym_identifier, - anon_sym_int, - anon_sym_double, anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(5445), 8, + ACTIONS(5141), 9, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [154963] = 3, + [151710] = 10, + ACTIONS(3459), 1, + anon_sym_DOT, + ACTIONS(3466), 1, + anon_sym_STAR, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(5693), 1, + anon_sym_complex, + STATE(3129), 1, + aux_sym_class_definition_repeat2, + STATE(3294), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5447), 5, + STATE(3529), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3482), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5237), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [151747] = 11, + ACTIONS(3459), 1, + anon_sym_DOT, + ACTIONS(3466), 1, anon_sym_STAR, - sym_identifier, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(5179), 1, + anon_sym_LPAREN, + ACTIONS(5695), 1, anon_sym_complex, - anon_sym_operator, + STATE(3290), 1, + aux_sym_class_definition_repeat2, + STATE(3294), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5182), 2, + sym__newline, + anon_sym_COLON, + STATE(3533), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3482), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5449), 9, + [151786] = 5, + ACTIONS(5164), 1, + anon_sym_STAR, + ACTIONS(5697), 1, anon_sym_DOT, + STATE(3289), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5169), 11, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_as, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_AMP, - [154986] = 8, - ACTIONS(4915), 1, + anon_sym_complex, + anon_sym___stdcall, + [151813] = 11, + ACTIONS(3459), 1, + anon_sym_DOT, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(4919), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5666), 1, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5700), 1, anon_sym_complex, - STATE(3318), 1, + STATE(3129), 1, + aux_sym_class_definition_repeat2, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3310), 2, + ACTIONS(5208), 2, + sym__newline, + anon_sym_COLON, + STATE(3486), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5427), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [155019] = 9, - ACTIONS(4915), 1, + ACTIONS(3482), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [151852] = 8, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(4919), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5224), 1, - anon_sym_LPAREN, - ACTIONS(5668), 1, + ACTIONS(5702), 1, anon_sym_complex, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3348), 2, + STATE(3309), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5227), 4, + ACTIONS(5197), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [155054] = 3, + [151885] = 5, + ACTIONS(5704), 1, + anon_sym_LBRACK, + STATE(3306), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5099), 5, + ACTIONS(5642), 4, anon_sym_STAR, sym_identifier, - anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5101), 9, - sym__newline, + ACTIONS(5647), 8, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - [155077] = 5, - ACTIONS(5670), 1, - anon_sym_LBRACK, - STATE(3355), 1, - sym_type_index, + [151912] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5633), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5635), 8, + ACTIONS(4253), 14, sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_STAR_STAR, + anon_sym_with, anon_sym_EQ, - anon_sym_AMP, - [155104] = 5, - ACTIONS(5673), 1, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_nogil, + [151933] = 5, + ACTIONS(5707), 1, anon_sym_DOT, - STATE(3285), 1, + STATE(3299), 1, aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5633), 4, + ACTIONS(5681), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5635), 8, + ACTIONS(5685), 8, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, @@ -236320,19 +237339,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [155131] = 4, + [151960] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5676), 2, + ACTIONS(5362), 2, anon_sym_int, anon_sym_double, - ACTIONS(5447), 4, + ACTIONS(5139), 4, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym___stdcall, - ACTIONS(5449), 8, + ACTIONS(5141), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -236341,261 +237360,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [155156] = 5, - ACTIONS(5664), 1, - anon_sym_DOT, - STATE(3293), 1, - aux_sym_type_qualifier_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5615), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5619), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [155183] = 11, - ACTIONS(1251), 1, - anon_sym_long, - ACTIONS(4921), 1, - anon_sym_operator, - ACTIONS(5678), 1, - sym_identifier, - STATE(2979), 1, - sym__signedness, - STATE(3066), 1, - sym_int_type, - STATE(3169), 1, - sym__longness, - STATE(3446), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1247), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1249), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(1243), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [155222] = 8, - ACTIONS(5516), 1, - sym_identifier, - ACTIONS(5686), 1, + [151985] = 8, + ACTIONS(5709), 1, anon_sym_LBRACK, - STATE(3318), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5680), 2, + ACTIONS(5542), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(5546), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5683), 2, + ACTIONS(5549), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3289), 2, + STATE(3214), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5518), 5, + ACTIONS(5582), 4, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [155255] = 3, + anon_sym_EQ, + [152018] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5625), 5, + ACTIONS(5498), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5627), 9, + ACTIONS(5500), 9, + sym__newline, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [155278] = 5, - ACTIONS(5191), 1, - anon_sym_STAR, - ACTIONS(5689), 1, - anon_sym_DOT, - STATE(3291), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5196), 11, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [155305] = 8, - ACTIONS(5692), 1, + [152041] = 8, + ACTIONS(5713), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5516), 2, + ACTIONS(5542), 2, sym_identifier, anon_sym_operator, - ACTIONS(5566), 2, + ACTIONS(5546), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5569), 2, + ACTIONS(5549), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3232), 2, + STATE(3214), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5605), 4, + ACTIONS(5555), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [155338] = 5, - ACTIONS(5696), 1, + [152074] = 5, + ACTIONS(5707), 1, anon_sym_DOT, - STATE(3293), 1, + STATE(3268), 1, aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5633), 4, + ACTIONS(5717), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5635), 8, + ACTIONS(5719), 8, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [155365] = 11, - ACTIONS(3440), 1, + [152101] = 5, + ACTIONS(5683), 1, anon_sym_DOT, - ACTIONS(3447), 1, - anon_sym_STAR, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5235), 1, - anon_sym_LPAREN, - ACTIONS(5699), 1, - anon_sym_complex, - STATE(3162), 1, - aux_sym_class_definition_repeat2, - STATE(3261), 1, - sym_type_index, + STATE(3266), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5238), 2, - sym__newline, + ACTIONS(5717), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5719), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - STATE(3494), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3463), 3, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, anon_sym_AMP, - anon_sym___stdcall, - [155404] = 8, - ACTIONS(5701), 1, + [152128] = 8, + ACTIONS(5721), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5516), 2, + ACTIONS(5542), 2, sym_identifier, anon_sym_operator, - ACTIONS(5566), 2, + ACTIONS(5546), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5569), 2, + ACTIONS(5549), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3232), 2, + STATE(3214), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5563), 4, + ACTIONS(5585), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [155437] = 12, - ACTIONS(5705), 1, + [152161] = 11, + ACTIONS(1260), 1, + anon_sym_long, + ACTIONS(4829), 1, + anon_sym_operator, + ACTIONS(5725), 1, sym_identifier, - ACTIONS(5707), 1, - anon_sym_LPAREN, - ACTIONS(5709), 1, - anon_sym_LBRACK, - STATE(2788), 1, - sym_c_function_definition, - STATE(3732), 1, - sym_c_name, - STATE(3775), 1, - sym_c_parameters, - STATE(4820), 1, - sym_type_index, - STATE(5033), 1, - sym_template_params, - STATE(5446), 1, - sym_type_qualifier, + STATE(2995), 1, + sym__signedness, + STATE(3041), 1, + sym_int_type, + STATE(3209), 1, + sym__longness, + STATE(3462), 1, + sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [155477] = 3, + ACTIONS(1256), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1258), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1252), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [152200] = 5, + ACTIONS(5727), 1, + anon_sym_LBRACK, + STATE(3359), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5538), 4, + ACTIONS(5642), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5540), 9, + ACTIONS(5647), 8, sym__newline, anon_sym_DOT, anon_sym_LPAREN, @@ -236603,1311 +237548,1130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - [155499] = 7, - ACTIONS(4915), 1, + [152227] = 7, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(4919), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3302), 2, + STATE(3332), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5503), 5, + ACTIONS(5237), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [155529] = 11, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(5235), 1, - anon_sym_LPAREN, - ACTIONS(5408), 1, - anon_sym_DOT, - ACTIONS(5711), 1, - sym_identifier, - ACTIONS(5713), 1, - anon_sym_complex, - STATE(3003), 1, - aux_sym_class_definition_repeat2, - STATE(3318), 1, - sym_type_index, + [152257] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(5620), 4, anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(5622), 9, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3570), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [155567] = 11, - ACTIONS(4919), 1, + anon_sym_EQ, anon_sym_LBRACK, - ACTIONS(5204), 1, - anon_sym_LPAREN, - ACTIONS(5408), 1, - anon_sym_DOT, - ACTIONS(5715), 1, - sym_identifier, - ACTIONS(5717), 1, - anon_sym_complex, - STATE(3003), 1, - aux_sym_class_definition_repeat2, - STATE(3318), 1, - sym_type_index, + anon_sym_AMP, + [152279] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(5730), 4, anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(4917), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3593), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [155605] = 12, - ACTIONS(5707), 1, + ACTIONS(5732), 9, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(5709), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, - ACTIONS(5719), 1, - sym_identifier, - STATE(1201), 1, - sym_c_function_definition, - STATE(3746), 1, - sym_c_parameters, - STATE(3806), 1, - sym_c_name, - STATE(4820), 1, - sym_type_index, - STATE(5132), 1, - sym_template_params, - STATE(5446), 1, - sym_type_qualifier, + anon_sym_AMP, + [152301] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(5595), 4, anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(5597), 9, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, anon_sym_AMP, - [155645] = 7, - ACTIONS(4915), 1, + [152323] = 7, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(4919), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, + STATE(3350), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5721), 5, + ACTIONS(5227), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [155675] = 8, - ACTIONS(4915), 1, + [152353] = 7, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(4919), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5723), 1, - anon_sym_LPAREN, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3329), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5721), 4, + ACTIONS(5227), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [155707] = 8, - ACTIONS(4915), 1, - anon_sym_STAR, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(5723), 1, + [152383] = 12, + ACTIONS(5734), 1, + sym_identifier, + ACTIONS(5736), 1, anon_sym_LPAREN, - STATE(3318), 1, + ACTIONS(5738), 1, + anon_sym_LBRACK, + STATE(2712), 1, + sym_c_function_definition, + STATE(3746), 1, + sym_c_parameters, + STATE(3805), 1, + sym_c_name, + STATE(4831), 1, sym_type_index, + STATE(5035), 1, + sym_template_params, + STATE(5279), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(4821), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5721), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [155739] = 8, - ACTIONS(4915), 1, - anon_sym_STAR, - ACTIONS(4919), 1, + [152423] = 11, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5476), 1, + ACTIONS(5237), 1, anon_sym_LPAREN, - STATE(3318), 1, + ACTIONS(5393), 1, + anon_sym_DOT, + ACTIONS(5740), 1, + sym_identifier, + ACTIONS(5742), 1, + anon_sym_complex, + STATE(3003), 1, + aux_sym_class_definition_repeat2, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(4821), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5479), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [155771] = 11, - ACTIONS(4919), 1, + STATE(3625), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [152461] = 11, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5212), 1, + ACTIONS(5179), 1, anon_sym_LPAREN, - ACTIONS(5408), 1, + ACTIONS(5393), 1, anon_sym_DOT, - ACTIONS(5726), 1, + ACTIONS(5744), 1, sym_identifier, - ACTIONS(5728), 1, + ACTIONS(5746), 1, anon_sym_complex, - STATE(3314), 1, + STATE(3315), 1, aux_sym_class_definition_repeat2, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3594), 2, + STATE(3638), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [155809] = 5, - ACTIONS(5730), 1, - anon_sym_as, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4367), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_with, - anon_sym_PIPE, - anon_sym_nogil, - [155835] = 4, - ACTIONS(5059), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4091), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(4101), 6, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [155859] = 12, - ACTIONS(5707), 1, + [152499] = 12, + ACTIONS(5736), 1, anon_sym_LPAREN, - ACTIONS(5709), 1, + ACTIONS(5738), 1, anon_sym_LBRACK, - ACTIONS(5737), 1, + ACTIONS(5748), 1, sym_identifier, - STATE(2790), 1, + STATE(546), 1, sym_c_function_definition, - STATE(3726), 1, + STATE(3785), 1, sym_c_name, - STATE(3775), 1, + STATE(3797), 1, sym_c_parameters, - STATE(4820), 1, + STATE(4831), 1, sym_type_index, - STATE(5033), 1, + STATE(5079), 1, sym_template_params, - STATE(5446), 1, + STATE(5279), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [155899] = 7, - ACTIONS(4915), 1, - anon_sym_STAR, - ACTIONS(4919), 1, + [152539] = 12, + ACTIONS(5736), 1, + anon_sym_LPAREN, + ACTIONS(5738), 1, anon_sym_LBRACK, - STATE(3318), 1, + ACTIONS(5750), 1, + sym_identifier, + STATE(2785), 1, + sym_c_function_definition, + STATE(3746), 1, + sym_c_parameters, + STATE(3780), 1, + sym_c_name, + STATE(4831), 1, sym_type_index, + STATE(5035), 1, + sym_template_params, + STATE(5279), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(4821), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5503), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [155929] = 5, - ACTIONS(5739), 1, + [152579] = 11, + ACTIONS(4825), 1, anon_sym_LBRACK, - STATE(3368), 1, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5393), 1, + anon_sym_DOT, + ACTIONS(5752), 1, + sym_identifier, + ACTIONS(5754), 1, + anon_sym_complex, + STATE(3003), 1, + aux_sym_class_definition_repeat2, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5633), 3, + ACTIONS(4821), 2, anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - ACTIONS(5635), 8, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [155955] = 8, - ACTIONS(5461), 1, - anon_sym_STAR, - ACTIONS(5465), 1, - anon_sym_LBRACK, - ACTIONS(5742), 1, - anon_sym_complex, - STATE(3504), 1, - sym_type_index, + STATE(3589), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [152617] = 4, + ACTIONS(5758), 1, + anon_sym_AT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3367), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5463), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5147), 4, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [155987] = 4, - ACTIONS(5733), 1, + STATE(3316), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(5756), 10, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [152641] = 6, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, + anon_sym_if, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(5767), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4203), 11, + ACTIONS(4222), 9, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_with, anon_sym_PIPE, anon_sym_nogil, - [156011] = 11, - ACTIONS(4919), 1, + [152669] = 7, + ACTIONS(4821), 1, + anon_sym_STAR, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5235), 1, + STATE(3366), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3272), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4823), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5769), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [152699] = 11, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(5237), 1, anon_sym_LPAREN, - ACTIONS(5408), 1, + ACTIONS(5393), 1, anon_sym_DOT, - ACTIONS(5711), 1, + ACTIONS(5740), 1, sym_identifier, - ACTIONS(5744), 1, + ACTIONS(5771), 1, anon_sym_complex, STATE(3003), 1, aux_sym_class_definition_repeat2, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3622), 2, + STATE(3595), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [156049] = 3, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4211), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_with, - anon_sym_PIPE, - anon_sym_or, - anon_sym_nogil, - [156071] = 5, - ACTIONS(5746), 1, + [152737] = 11, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(5179), 1, + anon_sym_LPAREN, + ACTIONS(5393), 1, anon_sym_DOT, - STATE(3316), 1, - aux_sym_type_qualifier_repeat1, + ACTIONS(5744), 1, + sym_identifier, + ACTIONS(5773), 1, + anon_sym_complex, + STATE(3331), 1, + aux_sym_class_definition_repeat2, + STATE(3366), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5633), 3, + ACTIONS(4821), 2, anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - ACTIONS(5635), 8, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(4823), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [156097] = 7, - ACTIONS(4915), 1, + STATE(3604), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [152775] = 7, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(4919), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3340), 2, + STATE(3318), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5204), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156127] = 5, - ACTIONS(5749), 1, - anon_sym_DOT, - STATE(3341), 1, - aux_sym_type_qualifier_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5621), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(5623), 8, + ACTIONS(5529), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [156153] = 7, - ACTIONS(4915), 1, + [152805] = 7, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(4919), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5487), 5, + ACTIONS(5529), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [156183] = 12, - ACTIONS(5707), 1, + [152835] = 12, + ACTIONS(5736), 1, anon_sym_LPAREN, - ACTIONS(5709), 1, + ACTIONS(5738), 1, anon_sym_LBRACK, - ACTIONS(5751), 1, + ACTIONS(5775), 1, sym_identifier, - STATE(1081), 1, + STATE(555), 1, sym_c_function_definition, - STATE(3746), 1, - sym_c_parameters, - STATE(3780), 1, + STATE(3747), 1, sym_c_name, - STATE(4820), 1, + STATE(3797), 1, + sym_c_parameters, + STATE(4831), 1, sym_type_index, - STATE(5132), 1, + STATE(5079), 1, sym_template_params, - STATE(5446), 1, + STATE(5279), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [156223] = 10, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(3447), 1, - anon_sym_STAR, - ACTIONS(3457), 1, + [152875] = 5, + ACTIONS(5777), 1, anon_sym_LBRACK, - ACTIONS(3461), 1, - anon_sym_complex, - STATE(3261), 1, + STATE(3395), 1, sym_type_index, - STATE(3269), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3442), 2, - sym__newline, - anon_sym_LPAREN, - STATE(3483), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3463), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [156259] = 4, - ACTIONS(5387), 1, - anon_sym_STAR, - ACTIONS(5753), 1, - anon_sym_long, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5389), 11, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym___stdcall, - [156283] = 7, - ACTIONS(4915), 1, + ACTIONS(5642), 3, anon_sym_STAR, - ACTIONS(4919), 1, - anon_sym_LBRACK, - STATE(3318), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3289), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4917), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + sym_identifier, anon_sym___stdcall, - ACTIONS(5204), 5, + ACTIONS(5647), 8, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [156313] = 3, + [152901] = 5, + ACTIONS(5780), 1, + anon_sym_DOT, + STATE(3325), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5542), 4, + ACTIONS(5642), 3, anon_sym_STAR, sym_identifier, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5544), 9, - sym__newline, - anon_sym_DOT, + ACTIONS(5647), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [156335] = 8, - ACTIONS(4915), 1, + anon_sym_GT, + anon_sym_QMARK, + [152927] = 7, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(4919), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5493), 1, - anon_sym_LPAREN, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5496), 4, + ACTIONS(5506), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [156367] = 9, - ACTIONS(5224), 1, - anon_sym_LPAREN, - ACTIONS(5461), 1, + [152957] = 9, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(5755), 1, + ACTIONS(5526), 1, + anon_sym_LPAREN, + ACTIONS(5783), 1, anon_sym_complex, - STATE(3504), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3433), 2, + STATE(3448), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5227), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5463), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [156401] = 8, - ACTIONS(4915), 1, + ACTIONS(5529), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [152991] = 8, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(4919), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5493), 1, + ACTIONS(5452), 1, anon_sym_LPAREN, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3305), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5496), 4, + ACTIONS(5455), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [156433] = 8, - ACTIONS(4915), 1, + [153023] = 8, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(4919), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5500), 1, + ACTIONS(5452), 1, anon_sym_LPAREN, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, + STATE(3362), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5503), 4, + ACTIONS(5455), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [156465] = 8, - ACTIONS(4915), 1, + [153055] = 8, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(4919), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5757), 1, + ACTIONS(5526), 1, anon_sym_LPAREN, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5760), 4, + ACTIONS(5529), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [156497] = 7, - ACTIONS(4915), 1, + [153087] = 11, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5393), 1, + anon_sym_DOT, + ACTIONS(5752), 1, + sym_identifier, + ACTIONS(5785), 1, + anon_sym_complex, + STATE(3003), 1, + aux_sym_class_definition_repeat2, + STATE(3366), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4821), 2, anon_sym_STAR, - ACTIONS(4919), 1, + anon_sym___stdcall, + ACTIONS(4823), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3610), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [153125] = 7, + ACTIONS(4821), 1, + anon_sym_STAR, + ACTIONS(4825), 1, anon_sym_LBRACK, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3351), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5227), 5, + ACTIONS(5477), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [156527] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5548), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5550), 9, - sym__newline, + [153155] = 5, + ACTIONS(5787), 1, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [156549] = 3, + STATE(3325), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5762), 4, + ACTIONS(5717), 3, anon_sym_STAR, sym_identifier, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5764), 9, - anon_sym_DOT, + ACTIONS(5719), 8, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [156571] = 8, - ACTIONS(4005), 1, + anon_sym_GT, + anon_sym_QMARK, + [153181] = 8, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - ACTIONS(5766), 1, + ACTIONS(5789), 1, anon_sym_complex, - STATE(3278), 1, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3385), 2, + STATE(3464), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5147), 4, + ACTIONS(5197), 4, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [156603] = 9, - ACTIONS(4005), 1, - anon_sym_STAR, - ACTIONS(4009), 1, - anon_sym_LBRACK, - ACTIONS(5500), 1, - anon_sym_LPAREN, - ACTIONS(5768), 1, - anon_sym_complex, - STATE(3278), 1, - sym_type_index, + anon_sym_RBRACK, + [153213] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3431), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4007), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(5614), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(5503), 3, - anon_sym_RPAREN, + ACTIONS(5616), 9, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [156637] = 7, - ACTIONS(4915), 1, + anon_sym_LBRACK, + anon_sym_AMP, + [153235] = 7, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(4919), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, + STATE(3326), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5227), 5, + ACTIONS(5477), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [156667] = 8, - ACTIONS(5461), 1, + [153265] = 8, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5770), 1, - anon_sym_complex, - STATE(3504), 1, + ACTIONS(5791), 1, + anon_sym_LPAREN, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3445), 2, + STATE(3356), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5463), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5427), 4, - anon_sym_LPAREN, + ACTIONS(5769), 4, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [156699] = 9, - ACTIONS(4005), 1, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [153297] = 8, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5224), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5772), 1, - anon_sym_complex, - STATE(3278), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3457), 2, + STATE(3328), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5227), 3, - anon_sym_RPAREN, + ACTIONS(5208), 4, anon_sym_COMMA, - anon_sym_EQ, - [156733] = 11, - ACTIONS(3442), 1, - anon_sym_LPAREN, - ACTIONS(3453), 1, - sym_identifier, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(5408), 1, - anon_sym_DOT, - ACTIONS(5774), 1, - anon_sym_complex, - STATE(3300), 1, - aux_sym_class_definition_repeat2, - STATE(3318), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3585), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [156771] = 12, - ACTIONS(5707), 1, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [153329] = 12, + ACTIONS(5736), 1, anon_sym_LPAREN, - ACTIONS(5709), 1, + ACTIONS(5738), 1, anon_sym_LBRACK, - ACTIONS(5776), 1, + ACTIONS(5794), 1, sym_identifier, - STATE(544), 1, + STATE(1110), 1, sym_c_function_definition, - STATE(3779), 1, + STATE(3748), 1, sym_c_parameters, - STATE(3781), 1, + STATE(3755), 1, sym_c_name, - STATE(4820), 1, + STATE(4831), 1, sym_type_index, - STATE(5085), 1, + STATE(5189), 1, sym_template_params, - STATE(5446), 1, + STATE(5279), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [156811] = 7, - ACTIONS(4915), 1, + [153369] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5266), 2, + sym__dedent, + anon_sym_LPAREN, + ACTIONS(5796), 11, + sym_identifier, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + [153391] = 4, + ACTIONS(5387), 1, anon_sym_STAR, - ACTIONS(4919), 1, - anon_sym_LBRACK, - STATE(3318), 1, - sym_type_index, + ACTIONS(5798), 1, + anon_sym_long, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(5389), 11, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, + anon_sym_int, + anon_sym_double, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(5435), 5, + [153415] = 12, + ACTIONS(5736), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156841] = 5, - ACTIONS(5749), 1, - anon_sym_DOT, - STATE(3316), 1, - aux_sym_type_qualifier_repeat1, + ACTIONS(5738), 1, + anon_sym_LBRACK, + ACTIONS(5800), 1, + sym_identifier, + STATE(1185), 1, + sym_c_function_definition, + STATE(3737), 1, + sym_c_name, + STATE(3748), 1, + sym_c_parameters, + STATE(4831), 1, + sym_type_index, + STATE(5189), 1, + sym_template_params, + STATE(5279), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5615), 3, + ACTIONS(4821), 2, anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - ACTIONS(5619), 8, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(4823), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [156867] = 7, - ACTIONS(4915), 1, + [153455] = 8, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(4919), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - STATE(3318), 1, + ACTIONS(5205), 1, + anon_sym_LPAREN, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3319), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5435), 5, - anon_sym_LPAREN, + ACTIONS(5208), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [156897] = 3, - ACTIONS(5191), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5196), 12, - anon_sym_DOT, + [153487] = 9, + ACTIONS(5224), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [156919] = 4, - ACTIONS(5780), 1, - anon_sym_AT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3344), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(5778), 10, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_api, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [156943] = 8, - ACTIONS(4915), 1, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(4919), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - ACTIONS(5235), 1, - anon_sym_LPAREN, - STATE(3318), 1, + ACTIONS(5802), 1, + anon_sym_complex, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3325), 2, + STATE(3469), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(5227), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5238), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156975] = 8, - ACTIONS(4915), 1, + [153521] = 8, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4919), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(5235), 1, - anon_sym_LPAREN, - STATE(3318), 1, + ACTIONS(5804), 1, + anon_sym_complex, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, + STATE(3427), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5238), 4, + ACTIONS(5197), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [157007] = 8, - ACTIONS(4915), 1, + anon_sym_EQ, + [153553] = 8, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(4919), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5440), 1, + ACTIONS(5474), 1, anon_sym_LPAREN, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3328), 2, + STATE(3330), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5427), 4, + ACTIONS(5470), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [157039] = 8, - ACTIONS(4915), 1, + [153585] = 8, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(4919), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5440), 1, + ACTIONS(5474), 1, anon_sym_LPAREN, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5427), 4, + ACTIONS(5470), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [157071] = 11, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(5204), 1, - anon_sym_LPAREN, - ACTIONS(5408), 1, - anon_sym_DOT, - ACTIONS(5715), 1, - sym_identifier, - ACTIONS(5783), 1, - anon_sym_complex, - STATE(3003), 1, - aux_sym_class_definition_repeat2, - STATE(3318), 1, - sym_type_index, + [153617] = 5, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(5806), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3577), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [157109] = 11, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(5212), 1, - anon_sym_LPAREN, - ACTIONS(5408), 1, + ACTIONS(4238), 10, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(5726), 1, - sym_identifier, - ACTIONS(5785), 1, - anon_sym_complex, - STATE(3299), 1, - aux_sym_class_definition_repeat2, - STATE(3318), 1, - sym_type_index, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, + anon_sym_PIPE, + anon_sym_nogil, + [153643] = 3, + ACTIONS(5164), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(5169), 12, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_AMP, - STATE(3587), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [157147] = 7, - ACTIONS(4915), 1, + anon_sym_complex, + anon_sym___stdcall, + [153665] = 7, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(4919), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4917), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5427), 5, + ACTIONS(5470), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [157177] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5189), 2, - sym__dedent, - anon_sym_LPAREN, - ACTIONS(5787), 11, - sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_char, - anon_sym_short, - anon_sym_long, - anon_sym_const, - anon_sym_volatile, - [157199] = 6, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + [153695] = 6, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4251), 9, + ACTIONS(4264), 9, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -237917,101 +238681,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_with, anon_sym_PIPE, anon_sym_nogil, - [157227] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5597), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5599), 9, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [157249] = 3, + [153723] = 4, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5762), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5764), 9, + ACTIONS(4249), 11, sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [157271] = 9, - ACTIONS(5461), 1, + anon_sym_with, + anon_sym_PIPE, + anon_sym_nogil, + [153747] = 8, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - ACTIONS(5500), 1, - anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(5809), 1, anon_sym_complex, - STATE(3504), 1, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3409), 2, + STATE(3471), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5463), 3, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5503), 3, + ACTIONS(5470), 4, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [157305] = 3, + [153779] = 4, + ACTIONS(5104), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5532), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5534), 9, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4110), 6, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(4120), 6, + anon_sym_LPAREN, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [157327] = 6, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + anon_sym_complex, + anon_sym___stdcall, + [153803] = 6, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4354), 9, + ACTIONS(4272), 9, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -238021,459 +238767,407 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_with, anon_sym_PIPE, anon_sym_nogil, - [157355] = 12, - ACTIONS(5707), 1, - anon_sym_LPAREN, - ACTIONS(5709), 1, - anon_sym_LBRACK, - ACTIONS(5795), 1, - sym_identifier, - STATE(553), 1, - sym_c_function_definition, - STATE(3760), 1, - sym_c_name, - STATE(3779), 1, - sym_c_parameters, - STATE(4820), 1, - sym_type_index, - STATE(5085), 1, - sym_template_params, - STATE(5446), 1, - sym_type_qualifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [157395] = 8, - ACTIONS(4005), 1, + [153831] = 8, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5797), 1, - anon_sym_complex, - STATE(3278), 1, + ACTIONS(5811), 1, + anon_sym_LPAREN, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3456), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5427), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5814), 4, anon_sym_COMMA, - anon_sym_EQ, - [157427] = 6, - ACTIONS(5733), 1, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [153863] = 3, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4339), 9, + ACTIONS(4253), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_with, anon_sym_PIPE, + anon_sym_or, anon_sym_nogil, - [157455] = 7, - ACTIONS(5461), 1, - anon_sym_STAR, - ACTIONS(5465), 1, - anon_sym_LBRACK, - STATE(3504), 1, - sym_type_index, + [153885] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3458), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5463), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(5567), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(5487), 4, + ACTIONS(5569), 9, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_RBRACK, - [157484] = 3, + anon_sym_LBRACK, + anon_sym_AMP, + [153907] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5621), 4, + ACTIONS(5730), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5623), 8, + ACTIONS(5732), 9, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [157505] = 7, - ACTIONS(5461), 1, + [153929] = 8, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - STATE(3504), 1, + ACTIONS(5791), 1, + anon_sym_LPAREN, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3427), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5463), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5204), 4, - anon_sym_LPAREN, + ACTIONS(5769), 4, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [157534] = 7, - ACTIONS(4005), 1, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [153961] = 9, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3278), 1, + ACTIONS(5224), 1, + anon_sym_LPAREN, + ACTIONS(5816), 1, + anon_sym_complex, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3437), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5799), 4, + ACTIONS(5227), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [157563] = 7, - ACTIONS(5461), 1, + [153995] = 8, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - STATE(3504), 1, + ACTIONS(5491), 1, + anon_sym_LPAREN, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3458), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5463), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5204), 4, - anon_sym_LPAREN, + ACTIONS(5494), 4, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [157592] = 7, - ACTIONS(5461), 1, - anon_sym_STAR, - ACTIONS(5465), 1, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [154027] = 11, + ACTIONS(3461), 1, + anon_sym_LPAREN, + ACTIONS(3472), 1, + sym_identifier, + ACTIONS(4825), 1, anon_sym_LBRACK, - STATE(3504), 1, + ACTIONS(5393), 1, + anon_sym_DOT, + ACTIONS(5818), 1, + anon_sym_complex, + STATE(3311), 1, + aux_sym_class_definition_repeat2, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3458), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5463), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5227), 4, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [157621] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5762), 3, + ACTIONS(4821), 2, anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - ACTIONS(5764), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(4823), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [157642] = 8, - ACTIONS(4005), 1, + STATE(3583), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [154065] = 9, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - ACTIONS(5757), 1, + ACTIONS(5526), 1, anon_sym_LPAREN, - STATE(3278), 1, + ACTIONS(5820), 1, + anon_sym_complex, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3476), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5760), 3, - anon_sym_RPAREN, + ACTIONS(5529), 3, anon_sym_COMMA, anon_sym_EQ, - [157673] = 7, - ACTIONS(5461), 1, - anon_sym_STAR, - ACTIONS(5465), 1, - anon_sym_LBRACK, - STATE(3504), 1, - sym_type_index, + anon_sym_RBRACK, + [154099] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3435), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5463), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(5591), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(5227), 4, + ACTIONS(5593), 9, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_RBRACK, - [157702] = 7, - ACTIONS(4005), 1, - anon_sym_STAR, - ACTIONS(4009), 1, anon_sym_LBRACK, - STATE(3278), 1, - sym_type_index, + anon_sym_AMP, + [154121] = 5, + ACTIONS(5787), 1, + anon_sym_DOT, + STATE(3333), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4007), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(5681), 3, + anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(5801), 4, - anon_sym_RPAREN, + ACTIONS(5685), 8, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - [157731] = 7, - ACTIONS(4005), 1, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [154147] = 7, + ACTIONS(4821), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(4823), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5803), 4, - anon_sym_RPAREN, + ACTIONS(5237), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - [157760] = 7, - ACTIONS(4005), 1, + anon_sym_GT, + anon_sym_QMARK, + [154177] = 8, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3278), 1, + ACTIONS(5822), 1, + anon_sym_complex, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3440), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5805), 4, + ACTIONS(5470), 4, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [157789] = 7, - ACTIONS(4005), 1, + [154209] = 10, + ACTIONS(3459), 1, + anon_sym_DOT, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - STATE(3278), 1, + ACTIONS(3480), 1, + anon_sym_complex, + STATE(3287), 1, + aux_sym_class_definition_repeat2, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3382), 2, + ACTIONS(3461), 2, + sym__newline, + anon_sym_LPAREN, + STATE(3555), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5807), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [157818] = 13, - ACTIONS(5809), 1, + [154245] = 13, + ACTIONS(5824), 1, anon_sym_COMMA, - ACTIONS(5811), 1, + ACTIONS(5826), 1, anon_sym_as, - ACTIONS(5813), 1, + ACTIONS(5828), 1, anon_sym_if, - ACTIONS(5815), 1, + ACTIONS(5830), 1, anon_sym_COLON, - ACTIONS(5817), 1, + ACTIONS(5832), 1, anon_sym_async, - ACTIONS(5819), 1, + ACTIONS(5834), 1, anon_sym_for, - ACTIONS(5821), 1, + ACTIONS(5836), 1, anon_sym_RBRACE, - ACTIONS(5823), 1, + ACTIONS(5838), 1, anon_sym_and, - ACTIONS(5825), 1, + ACTIONS(5840), 1, anon_sym_or, - STATE(3870), 1, + STATE(3975), 1, sym_for_in_clause, - STATE(4788), 1, + STATE(4821), 1, aux_sym__collection_elements_repeat1, - STATE(5531), 1, + STATE(5362), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [157859] = 7, - ACTIONS(3447), 1, + [154286] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(5827), 1, + ACTIONS(5844), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3232), 2, + STATE(3214), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5799), 4, + ACTIONS(5842), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [157888] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5830), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5832), 8, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [157909] = 7, - ACTIONS(3447), 1, + [154315] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5849), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3232), 2, + STATE(3414), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5834), 4, + ACTIONS(5847), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [157938] = 3, + [154344] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5839), 4, + ACTIONS(5139), 4, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym___stdcall, - ACTIONS(5841), 8, + ACTIONS(5141), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -238482,967 +239176,928 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [157959] = 7, - ACTIONS(4005), 1, - anon_sym_STAR, - ACTIONS(4009), 1, - anon_sym_LBRACK, - STATE(3278), 1, - sym_type_index, + [154365] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3396), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4007), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(5681), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(5503), 4, + ACTIONS(5685), 8, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [157988] = 7, - ACTIONS(3447), 1, + anon_sym_LBRACK, + anon_sym_AMP, + [154386] = 7, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(5845), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3468), 2, + STATE(3467), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5843), 4, - sym__newline, + ACTIONS(5237), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [158017] = 7, - ACTIONS(4005), 1, + anon_sym_RBRACK, + [154415] = 7, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3470), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5848), 4, - anon_sym_RPAREN, + ACTIONS(5227), 4, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [158046] = 7, - ACTIONS(3447), 1, + anon_sym_RBRACK, + [154444] = 8, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(5850), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3261), 1, + ACTIONS(5791), 1, + anon_sym_LPAREN, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3232), 2, + STATE(3450), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5805), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(5769), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [158075] = 7, - ACTIONS(3447), 1, + [154475] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(5855), 1, + ACTIONS(5854), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3416), 2, + STATE(3214), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5853), 4, + ACTIONS(5852), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [158104] = 7, - ACTIONS(4005), 1, + [154504] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5227), 4, - anon_sym_LPAREN, + ACTIONS(5857), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [158133] = 7, - ACTIONS(4005), 1, + [154533] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3401), 2, + STATE(3388), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5858), 4, + ACTIONS(5859), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [158162] = 8, - ACTIONS(4005), 1, + [154562] = 7, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - ACTIONS(5493), 1, - anon_sym_LPAREN, - STATE(3278), 1, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + STATE(3472), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5496), 3, - anon_sym_RPAREN, + ACTIONS(5477), 4, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [158193] = 7, - ACTIONS(4005), 1, + anon_sym_RBRACK, + [154591] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5427), 4, - anon_sym_LPAREN, + ACTIONS(5842), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [158222] = 4, - ACTIONS(5099), 1, + [154620] = 8, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5481), 1, anon_sym_STAR, + ACTIONS(5485), 1, + anon_sym_LBRACK, + STATE(3509), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5505), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5101), 9, - anon_sym_LPAREN, + STATE(3473), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5208), 3, anon_sym_COMMA, - anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_RBRACK, + ACTIONS(5483), 3, + anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym_complex, anon_sym___stdcall, - [158245] = 7, - ACTIONS(3447), 1, + [154651] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(5862), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3232), 2, + STATE(3389), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5860), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [158274] = 13, - ACTIONS(5809), 1, + ACTIONS(5847), 4, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(5811), 1, - anon_sym_as, - ACTIONS(5813), 1, - anon_sym_if, - ACTIONS(5815), 1, anon_sym_COLON, - ACTIONS(5817), 1, - anon_sym_async, - ACTIONS(5819), 1, - anon_sym_for, - ACTIONS(5821), 1, - anon_sym_RBRACE, - ACTIONS(5823), 1, - anon_sym_and, - ACTIONS(5825), 1, - anon_sym_or, - STATE(3870), 1, - sym_for_in_clause, - STATE(4788), 1, - aux_sym__collection_elements_repeat1, - STATE(5196), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [158315] = 3, + anon_sym_EQ, + [154680] = 8, + ACTIONS(5474), 1, + anon_sym_LPAREN, + ACTIONS(5481), 1, + anon_sym_STAR, + ACTIONS(5485), 1, + anon_sym_LBRACK, + STATE(3509), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5447), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5449), 8, - anon_sym_LPAREN, + STATE(3474), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5470), 3, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(5483), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [158336] = 8, - ACTIONS(4005), 1, + anon_sym___stdcall, + [154711] = 7, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - ACTIONS(5440), 1, - anon_sym_LPAREN, - STATE(3278), 1, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3437), 2, + STATE(3475), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5427), 3, - anon_sym_RPAREN, + ACTIONS(5529), 4, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [158367] = 7, - ACTIONS(4005), 1, + anon_sym_RBRACK, + [154740] = 8, + ACTIONS(5452), 1, + anon_sym_LPAREN, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3477), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(5455), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5865), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [158396] = 7, - ACTIONS(4005), 1, + [154771] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5867), 4, + ACTIONS(5861), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [158425] = 7, - ACTIONS(4005), 1, + [154800] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5721), 4, - anon_sym_LPAREN, + ACTIONS(5863), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [158454] = 7, - ACTIONS(4005), 1, + [154829] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3394), 2, + STATE(3397), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5853), 4, + ACTIONS(5865), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [158483] = 7, - ACTIONS(3447), 1, + [154858] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(5871), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3411), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5869), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(5867), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [158512] = 8, - ACTIONS(5461), 1, + [154887] = 8, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - ACTIONS(5757), 1, + ACTIONS(5791), 1, anon_sym_LPAREN, - STATE(3504), 1, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3458), 2, + STATE(3426), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5463), 3, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5760), 3, + ACTIONS(5769), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [158543] = 7, - ACTIONS(5461), 1, + [154918] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3504), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3362), 2, + STATE(3419), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5463), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5435), 4, - anon_sym_LPAREN, + ACTIONS(5869), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACK, - [158572] = 7, - ACTIONS(4005), 1, - anon_sym_STAR, - ACTIONS(4009), 1, - anon_sym_LBRACK, - STATE(3278), 1, - sym_type_index, + [154947] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(5498), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5500), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [154968] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5730), 3, + anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(5874), 4, - anon_sym_RPAREN, + ACTIONS(5732), 9, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - [158601] = 8, - ACTIONS(5235), 1, - anon_sym_LPAREN, - ACTIONS(5461), 1, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [154989] = 8, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3504), 1, + ACTIONS(5474), 1, + anon_sym_LPAREN, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3460), 2, + STATE(3445), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5238), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5463), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [158632] = 7, - ACTIONS(4005), 1, + ACTIONS(5470), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [155020] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3461), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5876), 4, + ACTIONS(5852), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [158661] = 9, - ACTIONS(3447), 1, + [155049] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(3457), 1, + ACTIONS(5873), 1, anon_sym_LBRACK, - ACTIONS(5500), 1, - anon_sym_LPAREN, - ACTIONS(5878), 1, - anon_sym_complex, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5503), 2, - sym__newline, - anon_sym_COLON, - STATE(3471), 2, + STATE(3416), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [158694] = 7, - ACTIONS(5461), 1, + ACTIONS(5871), 4, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [155078] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3504), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3458), 2, + STATE(3447), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5463), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5721), 4, + ACTIONS(5529), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [158723] = 7, - ACTIONS(4005), 1, + [155107] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3431), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5880), 4, + ACTIONS(5876), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [158752] = 13, - ACTIONS(5809), 1, - anon_sym_COMMA, - ACTIONS(5811), 1, - anon_sym_as, - ACTIONS(5813), 1, - anon_sym_if, - ACTIONS(5815), 1, - anon_sym_COLON, - ACTIONS(5817), 1, - anon_sym_async, - ACTIONS(5819), 1, - anon_sym_for, - ACTIONS(5821), 1, - anon_sym_RBRACE, - ACTIONS(5823), 1, - anon_sym_and, - ACTIONS(5825), 1, - anon_sym_or, - STATE(3870), 1, - sym_for_in_clause, - STATE(4788), 1, - aux_sym__collection_elements_repeat1, - STATE(5263), 1, - sym__comprehension_clauses, + [155136] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [158793] = 4, - ACTIONS(5447), 1, + ACTIONS(5677), 4, anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5679), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [155157] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5882), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5449), 9, + ACTIONS(5104), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4120), 8, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [158816] = 8, - ACTIONS(5461), 1, + anon_sym_GT, + anon_sym_QMARK, + [155178] = 8, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(5723), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - STATE(3504), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3458), 2, + STATE(3444), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5463), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5721), 3, + ACTIONS(5208), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [158847] = 8, - ACTIONS(5440), 1, + [155209] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5878), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5880), 8, anon_sym_LPAREN, - ACTIONS(5461), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [155230] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(5884), 1, anon_sym_LBRACK, - STATE(3504), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3466), 2, + STATE(3439), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5427), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [158878] = 7, - ACTIONS(3447), 1, + ACTIONS(5882), 4, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [155259] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5889), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3232), 2, + STATE(3214), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5803), 4, + ACTIONS(5887), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [158907] = 7, - ACTIONS(3447), 1, + [155288] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(5887), 1, + ACTIONS(5894), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3232), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5874), 4, + ACTIONS(5892), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [158936] = 7, - ACTIONS(4005), 1, + [155317] = 8, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3278), 1, + ACTIONS(5452), 1, + anon_sym_LPAREN, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3388), 2, + STATE(3449), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5227), 4, - anon_sym_LPAREN, + ACTIONS(5455), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [158965] = 7, - ACTIONS(3447), 1, + [155348] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(5890), 1, + ACTIONS(5897), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3419), 2, + STATE(3214), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5807), 4, + ACTIONS(5861), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [158994] = 13, - ACTIONS(5809), 1, - anon_sym_COMMA, - ACTIONS(5811), 1, - anon_sym_as, - ACTIONS(5813), 1, - anon_sym_if, - ACTIONS(5815), 1, - anon_sym_COLON, - ACTIONS(5817), 1, - anon_sym_async, - ACTIONS(5819), 1, - anon_sym_for, - ACTIONS(5821), 1, - anon_sym_RBRACE, - ACTIONS(5823), 1, - anon_sym_and, - ACTIONS(5825), 1, - anon_sym_or, - STATE(3870), 1, - sym_for_in_clause, - STATE(4788), 1, - aux_sym__collection_elements_repeat1, - STATE(5461), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [159035] = 7, - ACTIONS(3447), 1, + [155377] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(5893), 1, + ACTIONS(5902), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3232), 2, + STATE(3214), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5865), 4, + ACTIONS(5900), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [159064] = 8, - ACTIONS(5461), 1, + [155406] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(5907), 1, anon_sym_LBRACK, - ACTIONS(5476), 1, - anon_sym_LPAREN, - STATE(3504), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3458), 2, + STATE(3410), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5479), 3, + ACTIONS(5905), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [159095] = 7, - ACTIONS(4005), 1, + [155435] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(5912), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3214), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5487), 4, + ACTIONS(5910), 4, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [159124] = 7, - ACTIONS(3447), 1, + [155464] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(5896), 1, + ACTIONS(5917), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3232), 2, + STATE(3371), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5848), 4, + ACTIONS(5915), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [159153] = 7, - ACTIONS(3447), 1, + [155493] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(5901), 1, + ACTIONS(5920), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3383), 2, + STATE(3214), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5899), 4, + ACTIONS(5863), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [159182] = 13, - ACTIONS(5809), 1, - anon_sym_COMMA, - ACTIONS(5811), 1, - anon_sym_as, - ACTIONS(5813), 1, - anon_sym_if, - ACTIONS(5815), 1, - anon_sym_COLON, - ACTIONS(5817), 1, - anon_sym_async, - ACTIONS(5819), 1, - anon_sym_for, - ACTIONS(5821), 1, - anon_sym_RBRACE, - ACTIONS(5823), 1, - anon_sym_and, - ACTIONS(5825), 1, - anon_sym_or, - STATE(3870), 1, - sym_for_in_clause, - STATE(4788), 1, - aux_sym__collection_elements_repeat1, - STATE(5542), 1, - sym__comprehension_clauses, + [155522] = 7, + ACTIONS(3466), 1, + anon_sym_STAR, + ACTIONS(5923), 1, + anon_sym_LBRACK, + STATE(3294), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159223] = 7, - ACTIONS(3447), 1, + STATE(3378), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3482), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5865), 4, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [155551] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(5904), 1, + ACTIONS(5926), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3378), 2, + STATE(3214), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, @@ -239451,38 +240106,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [159252] = 7, - ACTIONS(3447), 1, + [155580] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(5907), 1, + ACTIONS(5929), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3232), 2, + STATE(3406), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5880), 4, + ACTIONS(5869), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [159281] = 3, + [155609] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5099), 4, + ACTIONS(5932), 4, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym___stdcall, - ACTIONS(5101), 8, + ACTIONS(5934), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -239491,1777 +240146,2078 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [159302] = 13, - ACTIONS(5809), 1, + [155630] = 7, + ACTIONS(3997), 1, + anon_sym_STAR, + ACTIONS(4001), 1, + anon_sym_LBRACK, + STATE(3279), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3244), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3999), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5887), 4, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(5811), 1, - anon_sym_as, - ACTIONS(5813), 1, - anon_sym_if, - ACTIONS(5815), 1, anon_sym_COLON, - ACTIONS(5817), 1, - anon_sym_async, - ACTIONS(5819), 1, - anon_sym_for, - ACTIONS(5821), 1, - anon_sym_RBRACE, - ACTIONS(5823), 1, - anon_sym_and, - ACTIONS(5825), 1, - anon_sym_or, - STATE(3870), 1, - sym_for_in_clause, - STATE(4788), 1, - aux_sym__collection_elements_repeat1, - STATE(5356), 1, - sym__comprehension_clauses, + anon_sym_EQ, + [155659] = 8, + ACTIONS(3466), 1, + anon_sym_STAR, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(5936), 1, + anon_sym_complex, + STATE(3294), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159343] = 13, - ACTIONS(5809), 1, - anon_sym_COMMA, - ACTIONS(5811), 1, - anon_sym_as, - ACTIONS(5813), 1, - anon_sym_if, - ACTIONS(5815), 1, + STATE(3511), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3482), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5197), 3, + sym__newline, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(5817), 1, - anon_sym_async, - ACTIONS(5819), 1, - anon_sym_for, - ACTIONS(5821), 1, - anon_sym_RBRACE, - ACTIONS(5823), 1, - anon_sym_and, - ACTIONS(5825), 1, - anon_sym_or, - STATE(3870), 1, - sym_for_in_clause, - STATE(4788), 1, - aux_sym__collection_elements_repeat1, - STATE(5346), 1, - sym__comprehension_clauses, + [155690] = 4, + ACTIONS(5139), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159384] = 7, - ACTIONS(5461), 1, + ACTIONS(5510), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5141), 9, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [155713] = 7, + ACTIONS(3997), 1, + anon_sym_STAR, + ACTIONS(4001), 1, + anon_sym_LBRACK, + STATE(3279), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3379), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3999), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5892), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [155742] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3504), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3458), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5463), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5435), 4, + ACTIONS(5237), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [159413] = 8, - ACTIONS(5235), 1, + [155771] = 3, + ACTIONS(5518), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5520), 11, anon_sym_LPAREN, - ACTIONS(5461), 1, + anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym___stdcall, + [155792] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(5938), 1, anon_sym_LBRACK, - STATE(3504), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3458), 2, + STATE(3412), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5238), 3, + ACTIONS(3482), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5876), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5463), 3, + [155821] = 8, + ACTIONS(5481), 1, + anon_sym_STAR, + ACTIONS(5485), 1, + anon_sym_LBRACK, + ACTIONS(5811), 1, + anon_sym_LPAREN, + STATE(3509), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3435), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [159444] = 7, - ACTIONS(4005), 1, + ACTIONS(5814), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + [155852] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3406), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5910), 4, + ACTIONS(5227), 4, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [159473] = 13, - ACTIONS(5809), 1, - anon_sym_COMMA, - ACTIONS(5811), 1, - anon_sym_as, - ACTIONS(5813), 1, - anon_sym_if, - ACTIONS(5815), 1, - anon_sym_COLON, - ACTIONS(5817), 1, - anon_sym_async, - ACTIONS(5819), 1, - anon_sym_for, - ACTIONS(5821), 1, - anon_sym_RBRACE, - ACTIONS(5823), 1, - anon_sym_and, - ACTIONS(5825), 1, - anon_sym_or, - STATE(3870), 1, - sym_for_in_clause, - STATE(4788), 1, - aux_sym__collection_elements_repeat1, - STATE(5500), 1, - sym__comprehension_clauses, + [155881] = 4, + ACTIONS(5498), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [159514] = 8, - ACTIONS(4005), 1, + ACTIONS(5941), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5500), 9, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [155904] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(5723), 1, - anon_sym_LPAREN, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5721), 3, + ACTIONS(5943), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [159545] = 8, - ACTIONS(3447), 1, + [155933] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(3457), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, - anon_sym_complex, - STATE(3261), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3491), 2, + STATE(3465), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5427), 3, - sym__newline, - anon_sym_LPAREN, + ACTIONS(5905), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - [159576] = 8, - ACTIONS(5440), 1, - anon_sym_LPAREN, - ACTIONS(5461), 1, + anon_sym_EQ, + [155962] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3504), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3458), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5427), 3, + ACTIONS(3999), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5910), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5463), 3, + [155991] = 7, + ACTIONS(3997), 1, + anon_sym_STAR, + ACTIONS(4001), 1, + anon_sym_LBRACK, + STATE(3279), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3382), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [159607] = 7, - ACTIONS(3447), 1, + ACTIONS(5915), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [156020] = 8, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(5914), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - STATE(3261), 1, + ACTIONS(5945), 1, + anon_sym_complex, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3423), 2, + STATE(3510), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5910), 4, + ACTIONS(5470), 3, sym__newline, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [159636] = 7, - ACTIONS(5461), 1, + anon_sym_COLON, + [156051] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3504), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3458), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5463), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5427), 4, + ACTIONS(5477), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [159665] = 7, - ACTIONS(4005), 1, + [156080] = 7, + ACTIONS(5947), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(5953), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3435), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(5950), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5435), 4, + ACTIONS(5544), 4, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [159694] = 8, - ACTIONS(4005), 1, + anon_sym_RBRACK, + [156109] = 8, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(5500), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5503), 3, + ACTIONS(5208), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [159725] = 7, - ACTIONS(4005), 1, + [156140] = 8, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3278), 1, + ACTIONS(5474), 1, + anon_sym_LPAREN, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3418), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5435), 4, - anon_sym_LPAREN, + ACTIONS(5470), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [159754] = 8, - ACTIONS(4005), 1, + [156171] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(5476), 1, - anon_sym_LPAREN, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5479), 3, + ACTIONS(5470), 4, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [159785] = 7, - ACTIONS(3447), 1, + [156200] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(5917), 1, + ACTIONS(5956), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, + STATE(3214), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5876), 4, + ACTIONS(5943), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [159814] = 7, - ACTIONS(4005), 1, + [156229] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3373), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5899), 4, + ACTIONS(5529), 4, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [159843] = 3, + [156258] = 13, + ACTIONS(5824), 1, + anon_sym_COMMA, + ACTIONS(5826), 1, + anon_sym_as, + ACTIONS(5828), 1, + anon_sym_if, + ACTIONS(5830), 1, + anon_sym_COLON, + ACTIONS(5832), 1, + anon_sym_async, + ACTIONS(5834), 1, + anon_sym_for, + ACTIONS(5836), 1, + anon_sym_RBRACE, + ACTIONS(5838), 1, + anon_sym_and, + ACTIONS(5840), 1, + anon_sym_or, + STATE(3975), 1, + sym_for_in_clause, + STATE(4821), 1, + aux_sym__collection_elements_repeat1, + STATE(5417), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5625), 4, + [156299] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - sym_identifier, - anon_sym_complex, + ACTIONS(4001), 1, + anon_sym_LBRACK, + STATE(3279), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3244), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3999), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5627), 8, + ACTIONS(5506), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_EQ, + [156328] = 9, + ACTIONS(3466), 1, + anon_sym_STAR, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(5526), 1, + anon_sym_LPAREN, + ACTIONS(5959), 1, + anon_sym_complex, + STATE(3294), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5529), 2, + sym__newline, anon_sym_COLON, + STATE(3484), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3482), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [159864] = 7, - ACTIONS(4005), 1, + anon_sym___stdcall, + [156361] = 8, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3278), 1, + ACTIONS(5452), 1, + anon_sym_LPAREN, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3436), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5204), 4, - anon_sym_LPAREN, + ACTIONS(5455), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [159893] = 3, + [156392] = 8, + ACTIONS(3997), 1, + anon_sym_STAR, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(5526), 1, + anon_sym_LPAREN, + STATE(3279), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5059), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, + STATE(3244), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3999), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(4101), 8, - anon_sym_LPAREN, + ACTIONS(5529), 3, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_EQ, + [156423] = 13, + ACTIONS(5824), 1, + anon_sym_COMMA, + ACTIONS(5826), 1, + anon_sym_as, + ACTIONS(5828), 1, + anon_sym_if, + ACTIONS(5830), 1, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [159914] = 7, - ACTIONS(5461), 1, + ACTIONS(5832), 1, + anon_sym_async, + ACTIONS(5834), 1, + anon_sym_for, + ACTIONS(5836), 1, + anon_sym_RBRACE, + ACTIONS(5838), 1, + anon_sym_and, + ACTIONS(5840), 1, + anon_sym_or, + STATE(3975), 1, + sym_for_in_clause, + STATE(4821), 1, + aux_sym__collection_elements_repeat1, + STATE(5224), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [156464] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3504), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3458), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5463), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5503), 4, + ACTIONS(5769), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [159943] = 7, - ACTIONS(4005), 1, + [156493] = 8, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3278), 1, + ACTIONS(5791), 1, + anon_sym_LPAREN, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3365), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5920), 4, + ACTIONS(5769), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [159972] = 7, - ACTIONS(5461), 1, + [156524] = 8, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3504), 1, + ACTIONS(5491), 1, + anon_sym_LPAREN, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3405), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5463), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5503), 4, - anon_sym_LPAREN, + ACTIONS(5494), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [160001] = 7, - ACTIONS(4005), 1, + [156555] = 8, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3278), 1, + ACTIONS(5811), 1, + anon_sym_LPAREN, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5204), 4, - anon_sym_LPAREN, + ACTIONS(5814), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [160030] = 3, - ACTIONS(5443), 1, - anon_sym_STAR, + [156586] = 13, + ACTIONS(5824), 1, + anon_sym_COMMA, + ACTIONS(5826), 1, + anon_sym_as, + ACTIONS(5828), 1, + anon_sym_if, + ACTIONS(5830), 1, + anon_sym_COLON, + ACTIONS(5832), 1, + anon_sym_async, + ACTIONS(5834), 1, + anon_sym_for, + ACTIONS(5836), 1, + anon_sym_RBRACE, + ACTIONS(5838), 1, + anon_sym_and, + ACTIONS(5840), 1, + anon_sym_or, + STATE(3975), 1, + sym_for_in_clause, + STATE(4821), 1, + aux_sym__collection_elements_repeat1, + STATE(5390), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [156627] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5445), 11, + ACTIONS(5681), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5685), 8, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym___stdcall, - [160051] = 7, - ACTIONS(3447), 1, + [156648] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(5922), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3412), 2, + STATE(3434), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5858), 4, - sym__newline, + ACTIONS(5237), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [160080] = 8, - ACTIONS(4005), 1, + [156677] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(5961), 1, anon_sym_LBRACK, - ACTIONS(5723), 1, - anon_sym_LPAREN, - STATE(3278), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3369), 2, + STATE(3214), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5721), 3, - anon_sym_RPAREN, + ACTIONS(5857), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [160111] = 8, - ACTIONS(5461), 1, + [156706] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(5723), 1, - anon_sym_LPAREN, - STATE(3504), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3399), 2, + STATE(3438), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5463), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5721), 3, + ACTIONS(5227), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [160142] = 8, - ACTIONS(5461), 1, + [156735] = 13, + ACTIONS(5824), 1, + anon_sym_COMMA, + ACTIONS(5826), 1, + anon_sym_as, + ACTIONS(5828), 1, + anon_sym_if, + ACTIONS(5830), 1, + anon_sym_COLON, + ACTIONS(5832), 1, + anon_sym_async, + ACTIONS(5834), 1, + anon_sym_for, + ACTIONS(5836), 1, + anon_sym_RBRACE, + ACTIONS(5838), 1, + anon_sym_and, + ACTIONS(5840), 1, + anon_sym_or, + STATE(3975), 1, + sym_for_in_clause, + STATE(4821), 1, + aux_sym__collection_elements_repeat1, + STATE(5304), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [156776] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(5964), 1, anon_sym_LBRACK, - ACTIONS(5493), 1, - anon_sym_LPAREN, - STATE(3504), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3417), 2, + STATE(3409), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5496), 3, + ACTIONS(5859), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [160173] = 7, - ACTIONS(4005), 1, + [156805] = 13, + ACTIONS(5824), 1, + anon_sym_COMMA, + ACTIONS(5826), 1, + anon_sym_as, + ACTIONS(5828), 1, + anon_sym_if, + ACTIONS(5830), 1, + anon_sym_COLON, + ACTIONS(5832), 1, + anon_sym_async, + ACTIONS(5834), 1, + anon_sym_for, + ACTIONS(5836), 1, + anon_sym_RBRACE, + ACTIONS(5838), 1, + anon_sym_and, + ACTIONS(5840), 1, + anon_sym_or, + STATE(3975), 1, + sym_for_in_clause, + STATE(4821), 1, + aux_sym__collection_elements_repeat1, + STATE(5474), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [156846] = 13, + ACTIONS(5824), 1, + anon_sym_COMMA, + ACTIONS(5826), 1, + anon_sym_as, + ACTIONS(5828), 1, + anon_sym_if, + ACTIONS(5830), 1, + anon_sym_COLON, + ACTIONS(5832), 1, + anon_sym_async, + ACTIONS(5834), 1, + anon_sym_for, + ACTIONS(5836), 1, + anon_sym_RBRACE, + ACTIONS(5838), 1, + anon_sym_and, + ACTIONS(5840), 1, + anon_sym_or, + STATE(3975), 1, + sym_for_in_clause, + STATE(4821), 1, + aux_sym__collection_elements_repeat1, + STATE(5503), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [156887] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3391), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5834), 4, + ACTIONS(5871), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [160202] = 7, - ACTIONS(4005), 1, + [156916] = 13, + ACTIONS(5824), 1, + anon_sym_COMMA, + ACTIONS(5826), 1, + anon_sym_as, + ACTIONS(5828), 1, + anon_sym_if, + ACTIONS(5830), 1, + anon_sym_COLON, + ACTIONS(5832), 1, + anon_sym_async, + ACTIONS(5834), 1, + anon_sym_for, + ACTIONS(5836), 1, + anon_sym_RBRACE, + ACTIONS(5838), 1, + anon_sym_and, + ACTIONS(5840), 1, + anon_sym_or, + STATE(3975), 1, + sym_for_in_clause, + STATE(4821), 1, + aux_sym__collection_elements_repeat1, + STATE(5507), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [156957] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3371), 2, + STATE(3429), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5843), 4, + ACTIONS(5882), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [160231] = 7, - ACTIONS(4005), 1, + [156986] = 7, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3435), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5503), 4, + ACTIONS(5237), 4, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [160260] = 8, - ACTIONS(4005), 1, + anon_sym_RBRACK, + [157015] = 7, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - ACTIONS(5440), 1, - anon_sym_LPAREN, - STATE(3278), 1, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3435), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5427), 3, - anon_sym_RPAREN, + ACTIONS(5227), 4, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [160291] = 7, - ACTIONS(5925), 1, + anon_sym_RBRACK, + [157044] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(5931), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(3504), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3458), 2, + STATE(3244), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5928), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5518), 4, - anon_sym_LPAREN, + ACTIONS(5900), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACK, - [160320] = 9, - ACTIONS(3447), 1, + [157073] = 7, + ACTIONS(3997), 1, anon_sym_STAR, - ACTIONS(3457), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(5224), 1, - anon_sym_LPAREN, - ACTIONS(5934), 1, - anon_sym_complex, - STATE(3261), 1, + STATE(3279), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5227), 2, - sym__newline, - anon_sym_COLON, - STATE(3488), 2, + STATE(3442), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3999), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [160353] = 8, - ACTIONS(5461), 1, + ACTIONS(5477), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [157102] = 7, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - ACTIONS(5493), 1, - anon_sym_LPAREN, - STATE(3504), 1, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3458), 2, + STATE(3435), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5463), 3, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5496), 3, + ACTIONS(5477), 4, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [160384] = 7, - ACTIONS(4005), 1, + [157131] = 8, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3435), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5208), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(5483), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [157162] = 8, + ACTIONS(5474), 1, + anon_sym_LPAREN, + ACTIONS(5481), 1, + anon_sym_STAR, + ACTIONS(5485), 1, + anon_sym_LBRACK, + STATE(3509), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3435), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(5470), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5860), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [160413] = 7, - ACTIONS(4005), 1, + [157193] = 7, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - STATE(3278), 1, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3372), 2, + STATE(3435), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5869), 4, - anon_sym_RPAREN, + ACTIONS(5470), 4, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [160442] = 8, - ACTIONS(4005), 1, + anon_sym_RBRACK, + [157222] = 7, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - ACTIONS(5493), 1, - anon_sym_LPAREN, - STATE(3278), 1, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3435), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5496), 3, - anon_sym_RPAREN, + ACTIONS(5529), 4, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [160473] = 8, - ACTIONS(3447), 1, + anon_sym_RBRACK, + [157251] = 7, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(3457), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - ACTIONS(5936), 1, - anon_sym_complex, - STATE(3261), 1, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3484), 2, + STATE(3435), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5147), 3, - sym__newline, + ACTIONS(5506), 4, anon_sym_LPAREN, - anon_sym_COLON, - [160504] = 8, - ACTIONS(4005), 1, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + [157280] = 8, + ACTIONS(5452), 1, + anon_sym_LPAREN, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - ACTIONS(5235), 1, - anon_sym_LPAREN, - STATE(3278), 1, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3210), 2, + STATE(3435), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(5455), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5238), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [160535] = 8, - ACTIONS(5461), 1, + [157311] = 8, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - ACTIONS(5500), 1, + ACTIONS(5526), 1, anon_sym_LPAREN, - STATE(3504), 1, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3458), 2, + STATE(3435), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5463), 3, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5503), 3, + ACTIONS(5529), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [160566] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5621), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5623), 8, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [160587] = 7, - ACTIONS(3447), 1, + [157342] = 7, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(5938), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3232), 2, + STATE(3435), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5801), 4, - sym__newline, + ACTIONS(5769), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [160616] = 7, - ACTIONS(3447), 1, + anon_sym_RBRACK, + [157371] = 8, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(5941), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - STATE(3261), 1, + ACTIONS(5791), 1, + anon_sym_LPAREN, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3376), 2, + STATE(3435), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5920), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(5769), 3, anon_sym_COMMA, anon_sym_EQ, - [160645] = 8, - ACTIONS(4005), 1, + anon_sym_RBRACK, + [157402] = 8, + ACTIONS(5481), 1, anon_sym_STAR, - ACTIONS(4009), 1, + ACTIONS(5485), 1, anon_sym_LBRACK, - ACTIONS(5235), 1, + ACTIONS(5491), 1, anon_sym_LPAREN, - STATE(3278), 1, + STATE(3509), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3463), 2, + STATE(3435), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4007), 3, + ACTIONS(5483), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5238), 3, - anon_sym_RPAREN, + ACTIONS(5494), 3, anon_sym_COMMA, anon_sym_EQ, - [160676] = 8, - ACTIONS(3447), 1, + anon_sym_RBRACK, + [157433] = 9, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(3457), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5723), 1, + ACTIONS(5224), 1, anon_sym_LPAREN, - STATE(3261), 1, + ACTIONS(5967), 1, + anon_sym_complex, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5721), 2, + ACTIONS(5227), 2, sym__newline, anon_sym_COLON, - STATE(3232), 2, + STATE(3546), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [160706] = 12, - ACTIONS(5821), 1, - anon_sym_RBRACK, - ACTIONS(5944), 1, + [157466] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(5969), 1, + anon_sym_LBRACE, + ACTIONS(5973), 1, + anon_sym_BSLASH, + ACTIONS(5975), 1, + sym_string_end, + STATE(3803), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(5971), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3566), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [157496] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(5969), 1, + anon_sym_LBRACE, + ACTIONS(5973), 1, + anon_sym_BSLASH, + ACTIONS(5977), 1, + sym_string_end, + STATE(3803), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(5971), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3481), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [157526] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(5969), 1, + anon_sym_LBRACE, + ACTIONS(5973), 1, + anon_sym_BSLASH, + ACTIONS(5979), 1, + sym_string_end, + STATE(3803), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(5971), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3567), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [157556] = 12, + ACTIONS(5981), 1, + anon_sym_RPAREN, + ACTIONS(5983), 1, anon_sym_COMMA, - ACTIONS(5946), 1, + ACTIONS(5985), 1, anon_sym_as, - ACTIONS(5948), 1, + ACTIONS(5987), 1, anon_sym_if, - ACTIONS(5950), 1, + ACTIONS(5989), 1, anon_sym_async, - ACTIONS(5952), 1, + ACTIONS(5991), 1, anon_sym_for, - ACTIONS(5954), 1, + ACTIONS(5993), 1, anon_sym_and, - ACTIONS(5956), 1, + ACTIONS(5995), 1, anon_sym_or, STATE(3948), 1, sym_for_in_clause, - STATE(4905), 1, + STATE(4627), 1, aux_sym__collection_elements_repeat1, - STATE(5328), 1, + STATE(5257), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160744] = 10, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(5962), 1, - anon_sym_EQ, - ACTIONS(5964), 1, - anon_sym_LBRACK, - ACTIONS(5967), 1, - sym__newline, - ACTIONS(5969), 1, - sym_string_start, - STATE(3887), 1, - sym_string, - STATE(4818), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5958), 2, - anon_sym_LPAREN, - sym_identifier, - STATE(3890), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [160778] = 12, - ACTIONS(5972), 1, - anon_sym_RPAREN, - ACTIONS(5974), 1, - anon_sym_COMMA, - ACTIONS(5976), 1, + [157594] = 12, + ACTIONS(5985), 1, anon_sym_as, - ACTIONS(5978), 1, + ACTIONS(5987), 1, anon_sym_if, - ACTIONS(5980), 1, + ACTIONS(5989), 1, anon_sym_async, - ACTIONS(5982), 1, + ACTIONS(5991), 1, anon_sym_for, - ACTIONS(5984), 1, + ACTIONS(5993), 1, anon_sym_and, - ACTIONS(5986), 1, + ACTIONS(5995), 1, anon_sym_or, - STATE(3881), 1, + ACTIONS(5997), 1, + anon_sym_RPAREN, + ACTIONS(5999), 1, + anon_sym_COMMA, + STATE(3948), 1, sym_for_in_clause, - STATE(4826), 1, + STATE(4616), 1, aux_sym_argument_list_repeat1, - STATE(5448), 1, + STATE(5257), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160816] = 9, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(5427), 1, - anon_sym_LPAREN, - ACTIONS(5988), 1, - sym_identifier, - ACTIONS(5990), 1, - anon_sym_complex, - STATE(3318), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3620), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [160848] = 10, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(5964), 1, - anon_sym_LBRACK, - ACTIONS(5969), 1, - sym_string_start, - ACTIONS(5992), 1, - anon_sym_EQ, - ACTIONS(5994), 1, - sym__newline, - STATE(3834), 1, - sym_string, - STATE(4915), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5958), 2, - anon_sym_LPAREN, - sym_identifier, - STATE(3882), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [160882] = 8, - ACTIONS(3447), 1, + [157632] = 8, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(3457), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5723), 1, + ACTIONS(5791), 1, anon_sym_LPAREN, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5721), 2, + ACTIONS(5769), 2, sym__newline, anon_sym_COLON, - STATE(3502), 2, + STATE(3214), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [160912] = 9, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(6000), 1, - anon_sym_COMMA, - STATE(4446), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5996), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5998), 3, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - [160944] = 3, - ACTIONS(3), 2, + [157662] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(5621), 3, + ACTIONS(5969), 1, + anon_sym_LBRACE, + ACTIONS(5973), 1, + anon_sym_BSLASH, + ACTIONS(6001), 1, + sym_string_end, + STATE(3803), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(5971), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3501), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [157692] = 8, + ACTIONS(3466), 1, anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(5623), 8, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [160964] = 9, - ACTIONS(4919), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5500), 1, + ACTIONS(5452), 1, anon_sym_LPAREN, - ACTIONS(6002), 1, - sym_identifier, - ACTIONS(6004), 1, - anon_sym_complex, - STATE(3318), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3638), 2, + ACTIONS(5455), 2, + sym__newline, + anon_sym_COLON, + STATE(3214), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [160996] = 5, - ACTIONS(5633), 1, - anon_sym_STAR, - ACTIONS(6006), 1, - anon_sym_DOT, - STATE(3481), 1, - aux_sym_type_qualifier_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5635), 8, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(3482), 3, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym___stdcall, - [161020] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6009), 11, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - anon_sym_api, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [161038] = 7, - ACTIONS(3447), 1, + [157722] = 8, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(3457), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - STATE(3261), 1, + ACTIONS(5491), 1, + anon_sym_LPAREN, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3232), 2, + ACTIONS(5494), 2, + sym__newline, + anon_sym_COLON, + STATE(3214), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5204), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [161066] = 7, - ACTIONS(3447), 1, + [157752] = 8, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(3457), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - STATE(3261), 1, + ACTIONS(5811), 1, + anon_sym_LPAREN, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3232), 2, + ACTIONS(5814), 2, + sym__newline, + anon_sym_COLON, + STATE(3214), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5227), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [161094] = 8, + [157782] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6011), 1, + ACTIONS(5969), 1, anon_sym_LBRACE, - ACTIONS(6015), 1, + ACTIONS(5973), 1, anon_sym_BSLASH, - ACTIONS(6017), 1, + ACTIONS(6003), 1, sym_string_end, - STATE(3798), 2, + STATE(3803), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6013), 3, + ACTIONS(5971), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3518), 3, + STATE(3490), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [161124] = 7, - ACTIONS(3447), 1, - anon_sym_STAR, - ACTIONS(3457), 1, - anon_sym_LBRACK, - STATE(3261), 1, - sym_type_index, + [157812] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(5969), 1, + anon_sym_LBRACE, + ACTIONS(5973), 1, + anon_sym_BSLASH, + ACTIONS(6005), 1, + sym_string_end, + STATE(3803), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(5971), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3567), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [157842] = 12, + ACTIONS(5983), 1, + anon_sym_COMMA, + ACTIONS(5985), 1, + anon_sym_as, + ACTIONS(5987), 1, + anon_sym_if, + ACTIONS(5989), 1, + anon_sym_async, + ACTIONS(5991), 1, + anon_sym_for, + ACTIONS(5993), 1, + anon_sym_and, + ACTIONS(5995), 1, + anon_sym_or, + ACTIONS(6007), 1, + anon_sym_RPAREN, + STATE(3948), 1, + sym_for_in_clause, + STATE(4627), 1, + aux_sym__collection_elements_repeat1, + STATE(5450), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3232), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3463), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5435), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [161152] = 8, - ACTIONS(3447), 1, - anon_sym_STAR, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5235), 1, - anon_sym_LPAREN, - STATE(3261), 1, - sym_type_index, + [157880] = 12, + ACTIONS(5985), 1, + anon_sym_as, + ACTIONS(5987), 1, + anon_sym_if, + ACTIONS(5989), 1, + anon_sym_async, + ACTIONS(5991), 1, + anon_sym_for, + ACTIONS(5993), 1, + anon_sym_and, + ACTIONS(5995), 1, + anon_sym_or, + ACTIONS(6009), 1, + anon_sym_RPAREN, + ACTIONS(6011), 1, + anon_sym_COMMA, + STATE(3948), 1, + sym_for_in_clause, + STATE(4661), 1, + aux_sym_argument_list_repeat1, + STATE(5450), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5238), 2, - sym__newline, - anon_sym_COLON, - STATE(3232), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3463), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [161182] = 8, - ACTIONS(3447), 1, + [157918] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(5969), 1, + anon_sym_LBRACE, + ACTIONS(5973), 1, + anon_sym_BSLASH, + ACTIONS(6013), 1, + sym_string_end, + STATE(3803), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(5971), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3495), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [157948] = 8, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(3457), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5440), 1, + ACTIONS(5526), 1, anon_sym_LPAREN, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5427), 2, + ACTIONS(5529), 2, sym__newline, anon_sym_COLON, - STATE(3232), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3463), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [161212] = 7, - ACTIONS(3447), 1, - anon_sym_STAR, - ACTIONS(3457), 1, - anon_sym_LBRACK, - STATE(3261), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3232), 2, + STATE(3214), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5427), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [161240] = 8, + [157978] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6019), 1, + ACTIONS(5969), 1, anon_sym_LBRACE, - ACTIONS(6025), 1, + ACTIONS(5973), 1, anon_sym_BSLASH, - ACTIONS(6028), 1, + ACTIONS(6015), 1, sym_string_end, - STATE(3798), 2, + STATE(3803), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6022), 3, + ACTIONS(5971), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3490), 3, + STATE(3567), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [161270] = 7, - ACTIONS(3447), 1, - anon_sym_STAR, - ACTIONS(3457), 1, - anon_sym_LBRACK, - STATE(3261), 1, - sym_type_index, + [158008] = 12, + ACTIONS(5983), 1, + anon_sym_COMMA, + ACTIONS(5985), 1, + anon_sym_as, + ACTIONS(5987), 1, + anon_sym_if, + ACTIONS(5989), 1, + anon_sym_async, + ACTIONS(5991), 1, + anon_sym_for, + ACTIONS(5993), 1, + anon_sym_and, + ACTIONS(5995), 1, + anon_sym_or, + ACTIONS(6017), 1, + anon_sym_RPAREN, + STATE(3948), 1, + sym_for_in_clause, + STATE(4627), 1, + aux_sym__collection_elements_repeat1, + STATE(5478), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3232), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3463), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5503), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [161298] = 7, - ACTIONS(3447), 1, - anon_sym_STAR, - ACTIONS(3457), 1, - anon_sym_LBRACK, - STATE(3261), 1, - sym_type_index, + [158046] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3232), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3463), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(5681), 3, + anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(5487), 3, - sym__newline, + ACTIONS(5685), 8, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_COLON, - [161326] = 9, - ACTIONS(4919), 1, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(5224), 1, - anon_sym_LPAREN, - ACTIONS(6030), 1, - sym_identifier, - ACTIONS(6032), 1, - anon_sym_complex, - STATE(3318), 1, - sym_type_index, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [158066] = 12, + ACTIONS(5985), 1, + anon_sym_as, + ACTIONS(5987), 1, + anon_sym_if, + ACTIONS(5989), 1, + anon_sym_async, + ACTIONS(5991), 1, + anon_sym_for, + ACTIONS(5993), 1, + anon_sym_and, + ACTIONS(5995), 1, + anon_sym_or, + ACTIONS(6019), 1, + anon_sym_RPAREN, + ACTIONS(6021), 1, + anon_sym_COMMA, + STATE(3948), 1, + sym_for_in_clause, + STATE(4693), 1, + aux_sym_argument_list_repeat1, + STATE(5478), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3589), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [161358] = 8, - ACTIONS(3447), 1, - anon_sym_STAR, - ACTIONS(3457), 1, + [158104] = 10, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6027), 1, + anon_sym_EQ, + ACTIONS(6029), 1, anon_sym_LBRACK, - ACTIONS(5493), 1, - anon_sym_LPAREN, - STATE(3261), 1, - sym_type_index, + ACTIONS(6032), 1, + sym__newline, + ACTIONS(6034), 1, + sym_string_start, + STATE(3998), 1, + sym_string, + STATE(4921), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5496), 2, - sym__newline, - anon_sym_COLON, - STATE(3232), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3463), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [161388] = 8, - ACTIONS(3447), 1, - anon_sym_STAR, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5500), 1, + ACTIONS(6023), 2, anon_sym_LPAREN, - STATE(3261), 1, + sym_identifier, + STATE(4000), 2, sym_type_index, - ACTIONS(3), 2, + aux_sym_cvar_decl_repeat1, + [158138] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(5503), 2, - sym__newline, - anon_sym_COLON, - STATE(3232), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3463), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [161418] = 8, + ACTIONS(5969), 1, + anon_sym_LBRACE, + ACTIONS(5973), 1, + anon_sym_BSLASH, + ACTIONS(6037), 1, + sym_string_end, + STATE(3803), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(5971), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3502), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [158168] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6011), 1, + ACTIONS(5969), 1, anon_sym_LBRACE, - ACTIONS(6015), 1, + ACTIONS(5973), 1, anon_sym_BSLASH, - ACTIONS(6034), 1, + ACTIONS(6039), 1, sym_string_end, - STATE(3798), 2, + STATE(3803), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6013), 3, + ACTIONS(5971), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3497), 3, + STATE(3567), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [161448] = 8, + [158198] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6011), 1, + ACTIONS(5969), 1, anon_sym_LBRACE, - ACTIONS(6015), 1, + ACTIONS(5973), 1, anon_sym_BSLASH, - ACTIONS(6036), 1, + ACTIONS(6041), 1, sym_string_end, - STATE(3798), 2, + STATE(3803), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6013), 3, + ACTIONS(5971), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3490), 3, + STATE(3567), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [161478] = 12, - ACTIONS(5976), 1, + [158228] = 12, + ACTIONS(5983), 1, + anon_sym_COMMA, + ACTIONS(5985), 1, anon_sym_as, - ACTIONS(5978), 1, + ACTIONS(5987), 1, anon_sym_if, - ACTIONS(5980), 1, + ACTIONS(5989), 1, anon_sym_async, - ACTIONS(5982), 1, + ACTIONS(5991), 1, anon_sym_for, - ACTIONS(5984), 1, + ACTIONS(5993), 1, anon_sym_and, - ACTIONS(5986), 1, + ACTIONS(5995), 1, anon_sym_or, - ACTIONS(6038), 1, + ACTIONS(6043), 1, anon_sym_RPAREN, - ACTIONS(6040), 1, - anon_sym_COMMA, - STATE(3881), 1, + STATE(3948), 1, sym_for_in_clause, - STATE(4568), 1, + STATE(4627), 1, aux_sym__collection_elements_repeat1, - STATE(5240), 1, + STATE(5357), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161516] = 7, - ACTIONS(3447), 1, - anon_sym_STAR, - ACTIONS(3457), 1, - anon_sym_LBRACK, - STATE(3261), 1, - sym_type_index, + [158266] = 12, + ACTIONS(5983), 1, + anon_sym_COMMA, + ACTIONS(5985), 1, + anon_sym_as, + ACTIONS(5987), 1, + anon_sym_if, + ACTIONS(5989), 1, + anon_sym_async, + ACTIONS(5991), 1, + anon_sym_for, + ACTIONS(5993), 1, + anon_sym_and, + ACTIONS(5995), 1, + anon_sym_or, + ACTIONS(6045), 1, + anon_sym_RPAREN, + STATE(3948), 1, + sym_for_in_clause, + STATE(4627), 1, + aux_sym__collection_elements_repeat1, + STATE(5414), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3232), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3463), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5721), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [161544] = 12, - ACTIONS(5976), 1, + [158304] = 12, + ACTIONS(5985), 1, anon_sym_as, - ACTIONS(5978), 1, + ACTIONS(5987), 1, anon_sym_if, - ACTIONS(5980), 1, + ACTIONS(5989), 1, anon_sym_async, - ACTIONS(5982), 1, + ACTIONS(5991), 1, anon_sym_for, - ACTIONS(5984), 1, + ACTIONS(5993), 1, anon_sym_and, - ACTIONS(5986), 1, + ACTIONS(5995), 1, anon_sym_or, - ACTIONS(6042), 1, + ACTIONS(6047), 1, anon_sym_RPAREN, - ACTIONS(6044), 1, + ACTIONS(6049), 1, anon_sym_COMMA, - STATE(3881), 1, + STATE(3948), 1, sym_for_in_clause, - STATE(4602), 1, + STATE(4717), 1, aux_sym_argument_list_repeat1, - STATE(5240), 1, + STATE(5357), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161582] = 8, - ACTIONS(3447), 1, - anon_sym_STAR, - ACTIONS(3457), 1, + [158342] = 9, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5476), 1, + ACTIONS(5197), 1, anon_sym_LPAREN, - STATE(3261), 1, + ACTIONS(6051), 1, + sym_identifier, + ACTIONS(6053), 1, + anon_sym_complex, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5479), 2, - sym__newline, - anon_sym_COLON, - STATE(3232), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(4821), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - [161612] = 8, - ACTIONS(3447), 1, - anon_sym_STAR, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5757), 1, - anon_sym_LPAREN, - STATE(3261), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5760), 2, - sym__newline, - anon_sym_COLON, - STATE(3232), 2, + STATE(3603), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [161642] = 7, - ACTIONS(3447), 1, + [158374] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(5969), 1, + anon_sym_LBRACE, + ACTIONS(5973), 1, + anon_sym_BSLASH, + ACTIONS(6055), 1, + sym_string_end, + STATE(3803), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(5971), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3512), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [158404] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(3457), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3486), 2, + STATE(3529), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5204), 3, + ACTIONS(5237), 3, sym__newline, anon_sym_LPAREN, anon_sym_COLON, - [161670] = 5, - ACTIONS(5621), 1, + [158432] = 5, + ACTIONS(5681), 1, anon_sym_STAR, - ACTIONS(6046), 1, + ACTIONS(6057), 1, anon_sym_DOT, - STATE(3557), 1, + STATE(3524), 1, aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5623), 8, + ACTIONS(5685), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -241270,136 +242226,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP, anon_sym___stdcall, - [161694] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6011), 1, - anon_sym_LBRACE, - ACTIONS(6015), 1, - anon_sym_BSLASH, - ACTIONS(6048), 1, - sym_string_end, - STATE(3798), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6013), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3508), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [161724] = 8, - ACTIONS(3447), 1, + [158456] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(3457), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5493), 1, - anon_sym_LPAREN, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5496), 2, - sym__newline, - anon_sym_COLON, - STATE(3501), 2, + STATE(3214), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [161754] = 10, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(5964), 1, - anon_sym_LBRACK, - ACTIONS(5969), 1, - sym_string_start, - ACTIONS(6050), 1, - anon_sym_EQ, - ACTIONS(6052), 1, + ACTIONS(5529), 3, sym__newline, - STATE(3956), 1, - sym_string, - STATE(4853), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_LPAREN, + anon_sym_COLON, + [158484] = 7, + ACTIONS(3466), 1, + anon_sym_STAR, + ACTIONS(3476), 1, + anon_sym_LBRACK, + STATE(3294), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5958), 2, + STATE(3214), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3482), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5227), 3, + sym__newline, anon_sym_LPAREN, - sym_identifier, - STATE(3831), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [161788] = 8, + anon_sym_COLON, + [158512] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6011), 1, + ACTIONS(5969), 1, anon_sym_LBRACE, - ACTIONS(6015), 1, + ACTIONS(5973), 1, anon_sym_BSLASH, - ACTIONS(6054), 1, + ACTIONS(6059), 1, sym_string_end, - STATE(3798), 2, + STATE(3803), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6013), 3, + ACTIONS(5971), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3490), 3, + STATE(3567), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [161818] = 12, - ACTIONS(5976), 1, + [158542] = 12, + ACTIONS(5983), 1, + anon_sym_COMMA, + ACTIONS(5985), 1, anon_sym_as, - ACTIONS(5978), 1, + ACTIONS(5987), 1, anon_sym_if, - ACTIONS(5980), 1, + ACTIONS(5989), 1, anon_sym_async, - ACTIONS(5982), 1, + ACTIONS(5991), 1, anon_sym_for, - ACTIONS(5984), 1, + ACTIONS(5993), 1, anon_sym_and, - ACTIONS(5986), 1, + ACTIONS(5995), 1, anon_sym_or, - ACTIONS(6040), 1, - anon_sym_COMMA, - ACTIONS(6056), 1, + ACTIONS(6061), 1, anon_sym_RPAREN, - STATE(3881), 1, + STATE(3948), 1, sym_for_in_clause, - STATE(4568), 1, + STATE(4627), 1, aux_sym__collection_elements_repeat1, - STATE(5437), 1, + STATE(5497), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161856] = 7, - ACTIONS(3447), 1, + [158580] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(3457), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3489), 2, + STATE(3551), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, @@ -241407,1277 +242337,1474 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_LPAREN, anon_sym_COLON, - [161884] = 10, - ACTIONS(5960), 1, + [158608] = 12, + ACTIONS(5836), 1, + anon_sym_RBRACK, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(5964), 1, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6067), 1, + anon_sym_if, + ACTIONS(6069), 1, + anon_sym_async, + ACTIONS(6071), 1, + anon_sym_for, + ACTIONS(6073), 1, + anon_sym_and, + ACTIONS(6075), 1, + anon_sym_or, + STATE(3982), 1, + sym_for_in_clause, + STATE(4836), 1, + aux_sym__collection_elements_repeat1, + STATE(5241), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [158646] = 10, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6029), 1, anon_sym_LBRACK, - ACTIONS(5969), 1, + ACTIONS(6034), 1, sym_string_start, - ACTIONS(6058), 1, + ACTIONS(6077), 1, anon_sym_EQ, - ACTIONS(6060), 1, + ACTIONS(6079), 1, sym__newline, - STATE(3910), 1, + STATE(3971), 1, sym_string, - STATE(4484), 1, + STATE(4807), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5958), 2, + ACTIONS(6023), 2, anon_sym_LPAREN, sym_identifier, - STATE(3911), 2, + STATE(3972), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [161918] = 12, - ACTIONS(5976), 1, + [158680] = 12, + ACTIONS(5985), 1, anon_sym_as, - ACTIONS(5978), 1, + ACTIONS(5987), 1, anon_sym_if, - ACTIONS(5980), 1, + ACTIONS(5989), 1, anon_sym_async, - ACTIONS(5982), 1, + ACTIONS(5991), 1, anon_sym_for, - ACTIONS(5984), 1, + ACTIONS(5993), 1, anon_sym_and, - ACTIONS(5986), 1, + ACTIONS(5995), 1, anon_sym_or, - ACTIONS(6062), 1, + ACTIONS(6081), 1, anon_sym_RPAREN, - ACTIONS(6064), 1, + ACTIONS(6083), 1, anon_sym_COMMA, - STATE(3881), 1, + STATE(3948), 1, sym_for_in_clause, - STATE(4652), 1, + STATE(4764), 1, aux_sym_argument_list_repeat1, - STATE(5437), 1, + STATE(5497), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161956] = 8, + [158718] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6011), 1, + ACTIONS(5969), 1, anon_sym_LBRACE, - ACTIONS(6015), 1, + ACTIONS(5973), 1, anon_sym_BSLASH, - ACTIONS(6066), 1, + ACTIONS(6085), 1, sym_string_end, - STATE(3798), 2, + STATE(3803), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6013), 3, + ACTIONS(5971), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3515), 3, + STATE(3519), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [161986] = 12, - ACTIONS(5976), 1, - anon_sym_as, - ACTIONS(5978), 1, - anon_sym_if, - ACTIONS(5980), 1, - anon_sym_async, - ACTIONS(5982), 1, - anon_sym_for, - ACTIONS(5984), 1, - anon_sym_and, - ACTIONS(5986), 1, - anon_sym_or, - ACTIONS(6068), 1, - anon_sym_RPAREN, - ACTIONS(6070), 1, - anon_sym_COMMA, - STATE(3881), 1, - sym_for_in_clause, - STATE(4855), 1, - aux_sym_argument_list_repeat1, - STATE(5552), 1, - sym__comprehension_clauses, + [158748] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(5969), 1, + anon_sym_LBRACE, + ACTIONS(5973), 1, + anon_sym_BSLASH, + ACTIONS(6087), 1, + sym_string_end, + STATE(3803), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(5971), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3567), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [158778] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(5969), 1, + anon_sym_LBRACE, + ACTIONS(5973), 1, + anon_sym_BSLASH, + ACTIONS(6089), 1, + sym_string_end, + STATE(3803), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(5971), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3521), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [158808] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(5969), 1, + anon_sym_LBRACE, + ACTIONS(5973), 1, + anon_sym_BSLASH, + ACTIONS(6091), 1, + sym_string_end, + STATE(3803), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(5971), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3567), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [158838] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(5969), 1, + anon_sym_LBRACE, + ACTIONS(5973), 1, + anon_sym_BSLASH, + ACTIONS(6093), 1, + sym_string_end, + STATE(3803), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(5971), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3525), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [158868] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(5969), 1, + anon_sym_LBRACE, + ACTIONS(5973), 1, + anon_sym_BSLASH, + ACTIONS(6095), 1, + sym_string_end, + STATE(3803), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(5971), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3569), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [158898] = 5, + ACTIONS(5717), 1, + anon_sym_STAR, + ACTIONS(6057), 1, + anon_sym_DOT, + STATE(3536), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162024] = 8, + ACTIONS(5719), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [158922] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6011), 1, + ACTIONS(5969), 1, anon_sym_LBRACE, - ACTIONS(6015), 1, + ACTIONS(5973), 1, anon_sym_BSLASH, - ACTIONS(6072), 1, + ACTIONS(6097), 1, sym_string_end, - STATE(3798), 2, + STATE(3803), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6013), 3, + ACTIONS(5971), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3490), 3, + STATE(3567), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [162054] = 12, - ACTIONS(5976), 1, + [158952] = 7, + ACTIONS(3466), 1, + anon_sym_STAR, + ACTIONS(3476), 1, + anon_sym_LBRACK, + STATE(3294), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3562), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3482), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5477), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [158980] = 10, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6029), 1, + anon_sym_LBRACK, + ACTIONS(6034), 1, + sym_string_start, + ACTIONS(6099), 1, + anon_sym_EQ, + ACTIONS(6101), 1, + sym__newline, + STATE(3961), 1, + sym_string, + STATE(4752), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6023), 2, + anon_sym_LPAREN, + sym_identifier, + STATE(3963), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [159014] = 8, + ACTIONS(3466), 1, + anon_sym_STAR, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(5205), 1, + anon_sym_LPAREN, + STATE(3294), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5208), 2, + sym__newline, + anon_sym_COLON, + STATE(3486), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3482), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [159044] = 7, + ACTIONS(3466), 1, + anon_sym_STAR, + ACTIONS(3476), 1, + anon_sym_LBRACK, + STATE(3294), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3214), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3482), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5477), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [159072] = 12, + ACTIONS(5983), 1, + anon_sym_COMMA, + ACTIONS(5985), 1, anon_sym_as, - ACTIONS(5978), 1, + ACTIONS(5987), 1, anon_sym_if, - ACTIONS(5980), 1, + ACTIONS(5989), 1, anon_sym_async, - ACTIONS(5982), 1, + ACTIONS(5991), 1, anon_sym_for, - ACTIONS(5984), 1, + ACTIONS(5993), 1, anon_sym_and, - ACTIONS(5986), 1, + ACTIONS(5995), 1, anon_sym_or, - ACTIONS(6040), 1, - anon_sym_COMMA, - ACTIONS(6074), 1, + ACTIONS(6103), 1, anon_sym_RPAREN, - STATE(3881), 1, + STATE(3948), 1, sym_for_in_clause, - STATE(4568), 1, + STATE(4627), 1, aux_sym__collection_elements_repeat1, - STATE(5492), 1, + STATE(5348), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162092] = 12, - ACTIONS(5976), 1, + [159110] = 8, + ACTIONS(3466), 1, + anon_sym_STAR, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(5474), 1, + anon_sym_LPAREN, + STATE(3294), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5470), 2, + sym__newline, + anon_sym_COLON, + STATE(3494), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3482), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [159140] = 9, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(5197), 1, + anon_sym_LPAREN, + ACTIONS(6051), 1, + sym_identifier, + ACTIONS(6105), 1, + anon_sym_complex, + STATE(3366), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4821), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4823), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3613), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [159172] = 8, + ACTIONS(3466), 1, + anon_sym_STAR, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(5205), 1, + anon_sym_LPAREN, + STATE(3294), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5208), 2, + sym__newline, + anon_sym_COLON, + STATE(3214), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3482), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [159202] = 7, + ACTIONS(3466), 1, + anon_sym_STAR, + ACTIONS(3476), 1, + anon_sym_LBRACK, + STATE(3294), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3563), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3482), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5529), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [159230] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6107), 11, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [159248] = 5, + ACTIONS(5642), 1, + anon_sym_STAR, + ACTIONS(6109), 1, + anon_sym_DOT, + STATE(3536), 1, + aux_sym_type_qualifier_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5647), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [159272] = 8, + ACTIONS(3466), 1, + anon_sym_STAR, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_LPAREN, + STATE(3294), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5455), 2, + sym__newline, + anon_sym_COLON, + STATE(3487), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3482), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [159302] = 9, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(5224), 1, + anon_sym_LPAREN, + ACTIONS(6112), 1, + sym_identifier, + ACTIONS(6114), 1, + anon_sym_complex, + STATE(3366), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4821), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4823), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3606), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [159334] = 12, + ACTIONS(5836), 1, + anon_sym_RBRACK, + ACTIONS(6063), 1, + anon_sym_COMMA, + ACTIONS(6065), 1, anon_sym_as, - ACTIONS(5978), 1, + ACTIONS(6067), 1, anon_sym_if, - ACTIONS(5980), 1, + ACTIONS(6069), 1, anon_sym_async, - ACTIONS(5982), 1, + ACTIONS(6071), 1, anon_sym_for, - ACTIONS(5984), 1, + ACTIONS(6073), 1, anon_sym_and, - ACTIONS(5986), 1, + ACTIONS(6075), 1, anon_sym_or, - ACTIONS(6076), 1, - anon_sym_RPAREN, - ACTIONS(6078), 1, - anon_sym_COMMA, - STATE(3881), 1, + STATE(3982), 1, sym_for_in_clause, - STATE(4683), 1, - aux_sym_argument_list_repeat1, - STATE(5492), 1, + STATE(4836), 1, + aux_sym__collection_elements_repeat1, + STATE(5547), 1, sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [162130] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6011), 1, - anon_sym_LBRACE, - ACTIONS(6015), 1, - anon_sym_BSLASH, - ACTIONS(6080), 1, - sym_string_end, - STATE(3798), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6013), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3490), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162160] = 10, - ACTIONS(5960), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [159372] = 8, + ACTIONS(3466), 1, + anon_sym_STAR, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(5791), 1, + anon_sym_LPAREN, + STATE(3294), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5769), 2, + sym__newline, + anon_sym_COLON, + STATE(3488), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3482), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [159402] = 10, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(5964), 1, + ACTIONS(6029), 1, anon_sym_LBRACK, - ACTIONS(5969), 1, + ACTIONS(6034), 1, sym_string_start, - ACTIONS(6082), 1, + ACTIONS(6116), 1, anon_sym_EQ, - ACTIONS(6084), 1, + ACTIONS(6118), 1, sym__newline, - STATE(3876), 1, + STATE(3881), 1, sym_string, - STATE(4942), 1, + STATE(4882), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5958), 2, + ACTIONS(6023), 2, anon_sym_LPAREN, sym_identifier, - STATE(3878), 2, + STATE(3882), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [162194] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6011), 1, - anon_sym_LBRACE, - ACTIONS(6015), 1, - anon_sym_BSLASH, - ACTIONS(6086), 1, - sym_string_end, - STATE(3798), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6013), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3521), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162224] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6011), 1, - anon_sym_LBRACE, - ACTIONS(6015), 1, - anon_sym_BSLASH, - ACTIONS(6088), 1, - sym_string_end, - STATE(3798), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6013), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3490), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162254] = 12, - ACTIONS(5976), 1, + [159436] = 12, + ACTIONS(5985), 1, anon_sym_as, - ACTIONS(5978), 1, + ACTIONS(5987), 1, anon_sym_if, - ACTIONS(5980), 1, + ACTIONS(5989), 1, anon_sym_async, - ACTIONS(5982), 1, + ACTIONS(5991), 1, anon_sym_for, - ACTIONS(5984), 1, + ACTIONS(5993), 1, anon_sym_and, - ACTIONS(5986), 1, + ACTIONS(5995), 1, anon_sym_or, - ACTIONS(6040), 1, - anon_sym_COMMA, - ACTIONS(6090), 1, + ACTIONS(6103), 1, anon_sym_RPAREN, - STATE(3881), 1, + ACTIONS(6120), 1, + anon_sym_COMMA, + STATE(3948), 1, sym_for_in_clause, - STATE(4568), 1, + STATE(4627), 1, aux_sym__collection_elements_repeat1, - STATE(5342), 1, + STATE(5348), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162292] = 12, - ACTIONS(5976), 1, + [159474] = 12, + ACTIONS(5985), 1, anon_sym_as, - ACTIONS(5978), 1, + ACTIONS(5987), 1, anon_sym_if, - ACTIONS(5980), 1, + ACTIONS(5989), 1, anon_sym_async, - ACTIONS(5982), 1, + ACTIONS(5991), 1, anon_sym_for, - ACTIONS(5984), 1, + ACTIONS(5993), 1, anon_sym_and, - ACTIONS(5986), 1, + ACTIONS(5995), 1, anon_sym_or, - ACTIONS(6092), 1, + ACTIONS(6123), 1, anon_sym_RPAREN, - ACTIONS(6094), 1, + ACTIONS(6125), 1, anon_sym_COMMA, - STATE(3881), 1, + STATE(3948), 1, sym_for_in_clause, - STATE(4709), 1, + STATE(4891), 1, aux_sym_argument_list_repeat1, - STATE(5342), 1, + STATE(5348), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162330] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6011), 1, - anon_sym_LBRACE, - ACTIONS(6015), 1, - anon_sym_BSLASH, - ACTIONS(6096), 1, - sym_string_end, - STATE(3798), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6013), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3525), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162360] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6011), 1, - anon_sym_LBRACE, - ACTIONS(6015), 1, - anon_sym_BSLASH, - ACTIONS(6098), 1, - sym_string_end, - STATE(3798), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6013), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3490), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162390] = 12, - ACTIONS(5976), 1, - anon_sym_as, - ACTIONS(5978), 1, - anon_sym_if, - ACTIONS(5980), 1, - anon_sym_async, - ACTIONS(5982), 1, - anon_sym_for, - ACTIONS(5984), 1, - anon_sym_and, - ACTIONS(5986), 1, - anon_sym_or, - ACTIONS(6040), 1, + [159512] = 12, + ACTIONS(5836), 1, + anon_sym_RBRACK, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(6100), 1, - anon_sym_RPAREN, - STATE(3881), 1, - sym_for_in_clause, - STATE(4568), 1, - aux_sym__collection_elements_repeat1, - STATE(5487), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [162428] = 12, - ACTIONS(5976), 1, + ACTIONS(6065), 1, anon_sym_as, - ACTIONS(5978), 1, + ACTIONS(6067), 1, anon_sym_if, - ACTIONS(5980), 1, + ACTIONS(6069), 1, anon_sym_async, - ACTIONS(5982), 1, + ACTIONS(6071), 1, anon_sym_for, - ACTIONS(5984), 1, + ACTIONS(6073), 1, anon_sym_and, - ACTIONS(5986), 1, + ACTIONS(6075), 1, anon_sym_or, - ACTIONS(6102), 1, - anon_sym_RPAREN, - ACTIONS(6104), 1, - anon_sym_COMMA, - STATE(3881), 1, + STATE(3982), 1, sym_for_in_clause, - STATE(4751), 1, - aux_sym_argument_list_repeat1, - STATE(5487), 1, + STATE(4836), 1, + aux_sym__collection_elements_repeat1, + STATE(5376), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162466] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6011), 1, - anon_sym_LBRACE, - ACTIONS(6015), 1, - anon_sym_BSLASH, - ACTIONS(6106), 1, - sym_string_end, - STATE(3798), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6013), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3530), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162496] = 9, - ACTIONS(4919), 1, + [159550] = 9, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5427), 1, + ACTIONS(5470), 1, anon_sym_LPAREN, - ACTIONS(5988), 1, + ACTIONS(6127), 1, sym_identifier, - ACTIONS(6108), 1, + ACTIONS(6129), 1, anon_sym_complex, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3566), 2, + STATE(3599), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [162528] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6011), 1, - anon_sym_LBRACE, - ACTIONS(6015), 1, - anon_sym_BSLASH, - ACTIONS(6110), 1, - sym_string_end, - STATE(3798), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6013), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3490), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162558] = 8, - ACTIONS(3), 1, + [159582] = 8, + ACTIONS(3466), 1, + anon_sym_STAR, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(5474), 1, + anon_sym_LPAREN, + STATE(3294), 1, + sym_type_index, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6011), 1, - anon_sym_LBRACE, - ACTIONS(6015), 1, - anon_sym_BSLASH, + ACTIONS(5470), 2, + sym__newline, + anon_sym_COLON, + STATE(3214), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3482), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [159612] = 9, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(5224), 1, + anon_sym_LPAREN, ACTIONS(6112), 1, - sym_string_end, - STATE(3798), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6013), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3532), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162588] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6011), 1, - anon_sym_LBRACE, - ACTIONS(6015), 1, - anon_sym_BSLASH, - ACTIONS(6114), 1, - sym_string_end, - STATE(3798), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6013), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3490), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162618] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6011), 1, - anon_sym_LBRACE, - ACTIONS(6015), 1, - anon_sym_BSLASH, - ACTIONS(6116), 1, - sym_string_end, - STATE(3798), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6013), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3534), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162648] = 8, - ACTIONS(3), 1, + sym_identifier, + ACTIONS(6131), 1, + anon_sym_complex, + STATE(3366), 1, + sym_type_index, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6011), 1, - anon_sym_LBRACE, - ACTIONS(6015), 1, - anon_sym_BSLASH, - ACTIONS(6118), 1, - sym_string_end, - STATE(3798), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6013), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3490), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162678] = 12, - ACTIONS(5976), 1, - anon_sym_as, - ACTIONS(5978), 1, - anon_sym_if, - ACTIONS(5980), 1, - anon_sym_async, - ACTIONS(5982), 1, - anon_sym_for, - ACTIONS(5984), 1, - anon_sym_and, - ACTIONS(5986), 1, - anon_sym_or, - ACTIONS(6120), 1, - anon_sym_RPAREN, - ACTIONS(6122), 1, + ACTIONS(4821), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4823), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3627), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [159644] = 10, + ACTIONS(6025), 1, anon_sym_COMMA, - STATE(3881), 1, - sym_for_in_clause, - STATE(4581), 1, - aux_sym_argument_list_repeat1, - STATE(5318), 1, - sym__comprehension_clauses, + ACTIONS(6029), 1, + anon_sym_LBRACK, + ACTIONS(6034), 1, + sym_string_start, + ACTIONS(6133), 1, + anon_sym_EQ, + ACTIONS(6135), 1, + sym__newline, + STATE(3892), 1, + sym_string, + STATE(4503), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162716] = 12, - ACTIONS(5821), 1, + ACTIONS(6023), 2, + anon_sym_LPAREN, + sym_identifier, + STATE(3900), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [159678] = 12, + ACTIONS(5836), 1, anon_sym_RBRACK, - ACTIONS(5944), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(5946), 1, + ACTIONS(6065), 1, anon_sym_as, - ACTIONS(5948), 1, + ACTIONS(6067), 1, anon_sym_if, - ACTIONS(5950), 1, + ACTIONS(6069), 1, anon_sym_async, - ACTIONS(5952), 1, + ACTIONS(6071), 1, anon_sym_for, - ACTIONS(5954), 1, + ACTIONS(6073), 1, anon_sym_and, - ACTIONS(5956), 1, + ACTIONS(6075), 1, anon_sym_or, - STATE(3948), 1, + STATE(3982), 1, sym_for_in_clause, - STATE(4905), 1, + STATE(4836), 1, aux_sym__collection_elements_repeat1, - STATE(5464), 1, + STATE(5265), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162754] = 10, - ACTIONS(5960), 1, + [159716] = 10, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(5964), 1, + ACTIONS(6029), 1, anon_sym_LBRACK, - ACTIONS(5969), 1, + ACTIONS(6034), 1, sym_string_start, - ACTIONS(6124), 1, + ACTIONS(6137), 1, anon_sym_EQ, - ACTIONS(6126), 1, + ACTIONS(6139), 1, sym__newline, - STATE(3993), 1, + STATE(3889), 1, sym_string, - STATE(4903), 1, + STATE(4931), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5958), 2, + ACTIONS(6023), 2, anon_sym_LPAREN, sym_identifier, - STATE(3920), 2, + STATE(3890), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [162788] = 12, - ACTIONS(5821), 1, + [159750] = 7, + ACTIONS(3466), 1, + anon_sym_STAR, + ACTIONS(3476), 1, + anon_sym_LBRACK, + STATE(3294), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3214), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3482), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5470), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [159778] = 12, + ACTIONS(5836), 1, anon_sym_RBRACK, - ACTIONS(5944), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(5946), 1, + ACTIONS(6065), 1, anon_sym_as, - ACTIONS(5948), 1, + ACTIONS(6067), 1, anon_sym_if, - ACTIONS(5950), 1, + ACTIONS(6069), 1, anon_sym_async, - ACTIONS(5952), 1, + ACTIONS(6071), 1, anon_sym_for, - ACTIONS(5954), 1, + ACTIONS(6073), 1, anon_sym_and, - ACTIONS(5956), 1, + ACTIONS(6075), 1, anon_sym_or, - STATE(3948), 1, + STATE(3982), 1, sym_for_in_clause, - STATE(4905), 1, + STATE(4836), 1, aux_sym__collection_elements_repeat1, - STATE(5530), 1, + STATE(5459), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162826] = 8, - ACTIONS(3), 1, + [159816] = 12, + ACTIONS(5985), 1, + anon_sym_as, + ACTIONS(5987), 1, + anon_sym_if, + ACTIONS(5989), 1, + anon_sym_async, + ACTIONS(5991), 1, + anon_sym_for, + ACTIONS(5993), 1, + anon_sym_and, + ACTIONS(5995), 1, + anon_sym_or, + ACTIONS(6141), 1, + anon_sym_RPAREN, + ACTIONS(6143), 1, + anon_sym_COMMA, + STATE(3948), 1, + sym_for_in_clause, + STATE(4521), 1, + aux_sym_argument_list_repeat1, + STATE(5319), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6011), 1, - anon_sym_LBRACE, - ACTIONS(6015), 1, - anon_sym_BSLASH, - ACTIONS(6128), 1, - sym_string_end, - STATE(3798), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6013), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3549), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162856] = 12, - ACTIONS(5821), 1, + [159854] = 12, + ACTIONS(5836), 1, anon_sym_RBRACK, - ACTIONS(5944), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(5946), 1, + ACTIONS(6065), 1, anon_sym_as, - ACTIONS(5948), 1, + ACTIONS(6067), 1, anon_sym_if, - ACTIONS(5950), 1, + ACTIONS(6069), 1, anon_sym_async, - ACTIONS(5952), 1, + ACTIONS(6071), 1, anon_sym_for, - ACTIONS(5954), 1, + ACTIONS(6073), 1, anon_sym_and, - ACTIONS(5956), 1, + ACTIONS(6075), 1, anon_sym_or, - STATE(3948), 1, + STATE(3982), 1, sym_for_in_clause, - STATE(4905), 1, + STATE(4836), 1, aux_sym__collection_elements_repeat1, - STATE(5249), 1, + STATE(5479), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162894] = 7, - ACTIONS(3447), 1, + [159892] = 7, + ACTIONS(3466), 1, anon_sym_STAR, - ACTIONS(3457), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - STATE(3261), 1, + STATE(3294), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3499), 2, + STATE(3214), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(3482), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5503), 3, + ACTIONS(5237), 3, sym__newline, anon_sym_LPAREN, anon_sym_COLON, - [162922] = 8, - ACTIONS(3447), 1, - anon_sym_STAR, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5440), 1, - anon_sym_LPAREN, - STATE(3261), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5427), 2, - sym__newline, - anon_sym_COLON, - STATE(3495), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3463), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [162952] = 5, - ACTIONS(5633), 1, - anon_sym_STAR, - ACTIONS(6130), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5635), 8, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [162976] = 12, - ACTIONS(5821), 1, + [159920] = 12, + ACTIONS(5836), 1, anon_sym_RBRACK, - ACTIONS(5944), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(5946), 1, + ACTIONS(6065), 1, anon_sym_as, - ACTIONS(5948), 1, + ACTIONS(6067), 1, anon_sym_if, - ACTIONS(5950), 1, + ACTIONS(6069), 1, anon_sym_async, - ACTIONS(5952), 1, + ACTIONS(6071), 1, anon_sym_for, - ACTIONS(5954), 1, + ACTIONS(6073), 1, anon_sym_and, - ACTIONS(5956), 1, + ACTIONS(6075), 1, anon_sym_or, - STATE(3948), 1, + STATE(3982), 1, sym_for_in_clause, - STATE(4905), 1, + STATE(4836), 1, aux_sym__collection_elements_repeat1, - STATE(5438), 1, + STATE(5359), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163014] = 12, - ACTIONS(5821), 1, - anon_sym_RBRACK, - ACTIONS(5944), 1, - anon_sym_COMMA, - ACTIONS(5946), 1, + [159958] = 12, + ACTIONS(5985), 1, anon_sym_as, - ACTIONS(5948), 1, + ACTIONS(5987), 1, anon_sym_if, - ACTIONS(5950), 1, + ACTIONS(5989), 1, anon_sym_async, - ACTIONS(5952), 1, + ACTIONS(5991), 1, anon_sym_for, - ACTIONS(5954), 1, + ACTIONS(5993), 1, anon_sym_and, - ACTIONS(5956), 1, + ACTIONS(5995), 1, anon_sym_or, + ACTIONS(6145), 1, + anon_sym_RPAREN, + ACTIONS(6147), 1, + anon_sym_COMMA, STATE(3948), 1, sym_for_in_clause, - STATE(4905), 1, - aux_sym__collection_elements_repeat1, - STATE(5495), 1, + STATE(4542), 1, + aux_sym_argument_list_repeat1, + STATE(5414), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163052] = 12, - ACTIONS(5821), 1, + [159996] = 9, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(5470), 1, + anon_sym_LPAREN, + ACTIONS(6127), 1, + sym_identifier, + ACTIONS(6149), 1, + anon_sym_complex, + STATE(3366), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4821), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4823), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3626), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [160028] = 12, + ACTIONS(5836), 1, anon_sym_RBRACK, - ACTIONS(5944), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - ACTIONS(5946), 1, + ACTIONS(6065), 1, anon_sym_as, - ACTIONS(5948), 1, + ACTIONS(6067), 1, anon_sym_if, - ACTIONS(5950), 1, + ACTIONS(6069), 1, anon_sym_async, - ACTIONS(5952), 1, + ACTIONS(6071), 1, anon_sym_for, - ACTIONS(5954), 1, + ACTIONS(6073), 1, anon_sym_and, - ACTIONS(5956), 1, + ACTIONS(6075), 1, anon_sym_or, - STATE(3948), 1, + STATE(3982), 1, sym_for_in_clause, - STATE(4905), 1, + STATE(4836), 1, aux_sym__collection_elements_repeat1, - STATE(5343), 1, + STATE(5499), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163090] = 9, - ACTIONS(4919), 1, + [160066] = 9, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5500), 1, + ACTIONS(5526), 1, anon_sym_LPAREN, - ACTIONS(6002), 1, + ACTIONS(6151), 1, sym_identifier, - ACTIONS(6133), 1, + ACTIONS(6153), 1, anon_sym_complex, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3604), 2, + STATE(3587), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [163122] = 12, - ACTIONS(5821), 1, - anon_sym_RBRACK, - ACTIONS(5944), 1, + [160098] = 12, + ACTIONS(5983), 1, anon_sym_COMMA, - ACTIONS(5946), 1, + ACTIONS(5985), 1, anon_sym_as, - ACTIONS(5948), 1, + ACTIONS(5987), 1, anon_sym_if, - ACTIONS(5950), 1, + ACTIONS(5989), 1, anon_sym_async, - ACTIONS(5952), 1, + ACTIONS(5991), 1, anon_sym_for, - ACTIONS(5954), 1, + ACTIONS(5993), 1, anon_sym_and, - ACTIONS(5956), 1, + ACTIONS(5995), 1, anon_sym_or, + ACTIONS(6155), 1, + anon_sym_RPAREN, STATE(3948), 1, sym_for_in_clause, - STATE(4905), 1, + STATE(4627), 1, aux_sym__collection_elements_repeat1, - STATE(5491), 1, + STATE(5319), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163160] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6011), 1, - anon_sym_LBRACE, - ACTIONS(6015), 1, - anon_sym_BSLASH, - ACTIONS(6135), 1, - sym_string_end, - STATE(3798), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6013), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3490), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [163190] = 12, - ACTIONS(5976), 1, - anon_sym_as, - ACTIONS(5978), 1, - anon_sym_if, - ACTIONS(5980), 1, - anon_sym_async, - ACTIONS(5982), 1, - anon_sym_for, - ACTIONS(5984), 1, - anon_sym_and, - ACTIONS(5986), 1, - anon_sym_or, - ACTIONS(6040), 1, - anon_sym_COMMA, - ACTIONS(6137), 1, - anon_sym_RPAREN, - STATE(3881), 1, - sym_for_in_clause, - STATE(4568), 1, - aux_sym__collection_elements_repeat1, - STATE(5318), 1, - sym__comprehension_clauses, + [160136] = 7, + ACTIONS(3466), 1, + anon_sym_STAR, + ACTIONS(3476), 1, + anon_sym_LBRACK, + STATE(3294), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163228] = 12, - ACTIONS(5976), 1, - anon_sym_as, - ACTIONS(5978), 1, - anon_sym_if, - ACTIONS(5980), 1, - anon_sym_async, - ACTIONS(5982), 1, - anon_sym_for, - ACTIONS(5984), 1, - anon_sym_and, - ACTIONS(5986), 1, - anon_sym_or, - ACTIONS(6139), 1, - anon_sym_RPAREN, - ACTIONS(6141), 1, - anon_sym_COMMA, - STATE(3881), 1, - sym_for_in_clause, - STATE(4568), 1, - aux_sym__collection_elements_repeat1, - STATE(5448), 1, - sym__comprehension_clauses, + STATE(3214), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3482), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5506), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [160164] = 7, + ACTIONS(3466), 1, + anon_sym_STAR, + ACTIONS(3476), 1, + anon_sym_LBRACK, + STATE(3294), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163266] = 12, - ACTIONS(5976), 1, - anon_sym_as, - ACTIONS(5978), 1, - anon_sym_if, - ACTIONS(5980), 1, - anon_sym_async, - ACTIONS(5982), 1, - anon_sym_for, - ACTIONS(5984), 1, - anon_sym_and, - ACTIONS(5986), 1, - anon_sym_or, - ACTIONS(6040), 1, - anon_sym_COMMA, - ACTIONS(6144), 1, - anon_sym_RPAREN, - STATE(3881), 1, - sym_for_in_clause, - STATE(4568), 1, - aux_sym__collection_elements_repeat1, - STATE(5552), 1, - sym__comprehension_clauses, + STATE(3214), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3482), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5769), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [160192] = 5, + ACTIONS(5642), 1, + anon_sym_STAR, + ACTIONS(6157), 1, + anon_sym_LBRACK, + STATE(3581), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163304] = 9, - ACTIONS(4919), 1, + ACTIONS(5647), 8, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [160216] = 9, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5147), 1, + ACTIONS(5526), 1, anon_sym_LPAREN, - ACTIONS(6146), 1, + ACTIONS(6151), 1, sym_identifier, - ACTIONS(6148), 1, + ACTIONS(6160), 1, anon_sym_complex, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3608), 2, + STATE(3585), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [163336] = 8, + [160248] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6011), 1, + ACTIONS(5969), 1, anon_sym_LBRACE, - ACTIONS(6015), 1, + ACTIONS(5973), 1, anon_sym_BSLASH, - ACTIONS(6150), 1, + ACTIONS(6162), 1, sym_string_end, - STATE(3798), 2, + STATE(3803), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6013), 3, + ACTIONS(5971), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3555), 3, + STATE(3567), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [163366] = 8, + [160278] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6011), 1, + ACTIONS(6164), 1, anon_sym_LBRACE, - ACTIONS(6015), 1, + ACTIONS(6170), 1, anon_sym_BSLASH, - ACTIONS(6152), 1, + ACTIONS(6173), 1, sym_string_end, - STATE(3798), 2, + STATE(3803), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6013), 3, + ACTIONS(6167), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3490), 3, + STATE(3567), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [163396] = 12, - ACTIONS(5976), 1, + [160308] = 9, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5978), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(5980), 1, - anon_sym_async, - ACTIONS(5982), 1, - anon_sym_for, - ACTIONS(5984), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(5986), 1, + ACTIONS(5767), 1, anon_sym_or, - ACTIONS(6040), 1, + ACTIONS(6179), 1, anon_sym_COMMA, - ACTIONS(6139), 1, - anon_sym_RPAREN, - STATE(3881), 1, - sym_for_in_clause, - STATE(4568), 1, - aux_sym__collection_elements_repeat1, - STATE(5448), 1, - sym__comprehension_clauses, + STATE(4389), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163434] = 5, - ACTIONS(5615), 1, - anon_sym_STAR, - ACTIONS(6046), 1, + ACTIONS(6175), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6177), 3, anon_sym_DOT, - STATE(3481), 1, - aux_sym_type_qualifier_repeat1, + anon_sym_COLON, + anon_sym_PIPE, + [160340] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(5969), 1, + anon_sym_LBRACE, + ACTIONS(5973), 1, + anon_sym_BSLASH, + ACTIONS(6181), 1, + sym_string_end, + STATE(3803), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(5971), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3567), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [160370] = 5, + ACTIONS(6183), 1, + anon_sym_as, + ACTIONS(6186), 1, + anon_sym_and, + ACTIONS(6188), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5619), 8, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR_STAR, + ACTIONS(4238), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_if, + anon_sym_COLON, anon_sym_EQ, + anon_sym_PIPE, + [160393] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [163458] = 7, - ACTIONS(3447), 1, - anon_sym_STAR, - ACTIONS(3457), 1, - anon_sym_LBRACK, - STATE(3261), 1, + ACTIONS(5237), 1, + anon_sym_LPAREN, + ACTIONS(5740), 1, + sym_identifier, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3492), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + ACTIONS(4821), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5435), 3, + STATE(3625), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [160422] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4368), 10, sym__newline, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - [163486] = 8, - ACTIONS(3447), 1, - anon_sym_STAR, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5235), 1, - anon_sym_LPAREN, - STATE(3261), 1, - sym_type_index, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [160439] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5238), 2, + ACTIONS(4307), 10, sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - STATE(3494), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3463), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [160456] = 3, + ACTIONS(5498), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5500), 9, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - [163516] = 9, - ACTIONS(4919), 1, + [160475] = 8, + ACTIONS(4821), 1, + anon_sym___stdcall, + ACTIONS(4823), 1, + anon_sym_AMP, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5147), 1, - anon_sym_LPAREN, - ACTIONS(6146), 1, - sym_identifier, - ACTIONS(6154), 1, - anon_sym_complex, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(5769), 2, + anon_sym_LPAREN, anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3588), 2, + ACTIONS(6190), 2, + anon_sym_STAR, + sym_identifier, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [163548] = 9, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(5224), 1, + [160504] = 4, + ACTIONS(5393), 1, + anon_sym_DOT, + STATE(3003), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6192), 8, + anon_sym_import, + anon_sym_cimport, anon_sym_LPAREN, - ACTIONS(6030), 1, - sym_identifier, - ACTIONS(6156), 1, - anon_sym_complex, - STATE(3318), 1, - sym_type_index, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [160525] = 6, + ACTIONS(6186), 1, + anon_sym_and, + ACTIONS(6188), 1, + anon_sym_or, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6196), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3598), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [163580] = 8, - ACTIONS(4919), 1, + ACTIONS(6177), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [160550] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(6030), 1, + ACTIONS(6112), 1, sym_identifier, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3599), 2, + STATE(3614), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [163609] = 8, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(5723), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - sym_identifier, - STATE(3318), 1, - sym_type_index, + [160579] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4311), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [160596] = 3, + ACTIONS(5567), 1, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3595), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [163638] = 4, - ACTIONS(6164), 1, - anon_sym_LBRACK_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6162), 2, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(6160), 7, - anon_sym_RPAREN, + ACTIONS(5569), 9, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym___stdcall, - [163659] = 3, - ACTIONS(5099), 1, + [160615] = 3, + ACTIONS(5730), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5101), 9, + ACTIONS(5732), 9, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -242685,121 +243812,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [163678] = 8, - ACTIONS(4915), 1, anon_sym___stdcall, - ACTIONS(4917), 1, - anon_sym_AMP, - ACTIONS(4919), 1, - anon_sym_LBRACK, - STATE(3318), 1, - sym_type_index, + [160634] = 3, + ACTIONS(5104), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5503), 2, + ACTIONS(4120), 9, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR_STAR, - ACTIONS(6002), 2, - anon_sym_STAR, - sym_identifier, - STATE(3289), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [163707] = 8, - ACTIONS(4919), 1, + anon_sym_EQ, anon_sym_LBRACK, - ACTIONS(5723), 1, - anon_sym_LPAREN, - ACTIONS(6158), 1, - sym_identifier, - STATE(3318), 1, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [160653] = 5, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3596), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [163736] = 8, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(5235), 1, - anon_sym_LPAREN, - ACTIONS(5711), 1, - sym_identifier, - STATE(3318), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(5740), 3, anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(5237), 4, + anon_sym_LPAREN, anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3622), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [163765] = 8, - ACTIONS(4915), 1, - anon_sym___stdcall, - ACTIONS(4917), 1, - anon_sym_AMP, - ACTIONS(4919), 1, anon_sym_LBRACK, - STATE(3318), 1, - sym_type_index, + anon_sym_AMP, + [160676] = 3, + ACTIONS(5932), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5487), 2, + ACTIONS(5934), 9, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_STAR_STAR, - ACTIONS(6166), 2, - anon_sym_STAR, - sym_identifier, - STATE(3289), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [163794] = 9, - ACTIONS(4915), 1, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(4917), 1, + [160695] = 9, + ACTIONS(4821), 1, + anon_sym___stdcall, + ACTIONS(4823), 1, anon_sym_AMP, - ACTIONS(4919), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5496), 1, + ACTIONS(5769), 1, anon_sym_STAR_STAR, - STATE(3318), 1, + ACTIONS(5791), 1, + anon_sym_LPAREN, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6168), 2, + ACTIONS(6190), 2, anon_sym_STAR, sym_identifier, - STATE(3289), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [163825] = 3, - ACTIONS(5447), 1, + [160726] = 3, + ACTIONS(5595), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5449), 9, + ACTIONS(5597), 9, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -242807,553 +243900,424 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, - anon_sym_complex, anon_sym___stdcall, - [163844] = 8, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(5440), 1, + [160745] = 6, + ACTIONS(5791), 1, anon_sym_LPAREN, - ACTIONS(5988), 1, - sym_identifier, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3623), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [163873] = 9, - ACTIONS(4915), 1, - anon_sym___stdcall, - ACTIONS(4917), 1, - anon_sym_AMP, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(5500), 1, - anon_sym_LPAREN, - ACTIONS(5503), 1, + ACTIONS(5769), 3, anon_sym_STAR_STAR, - STATE(3318), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6002), 2, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(6190), 3, anon_sym_STAR, sym_identifier, - STATE(3289), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [163904] = 3, - ACTIONS(5839), 1, + anon_sym___stdcall, + [160770] = 3, + ACTIONS(5614), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5841), 9, + ACTIONS(5616), 9, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [163923] = 8, - ACTIONS(4915), 1, anon_sym___stdcall, - ACTIONS(4917), 1, - anon_sym_AMP, - ACTIONS(4919), 1, - anon_sym_LBRACK, - STATE(3318), 1, + [160789] = 6, + ACTIONS(5452), 1, + anon_sym_LPAREN, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5204), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(5715), 2, - anon_sym_STAR, - sym_identifier, - STATE(3289), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [163952] = 8, - ACTIONS(4919), 1, + ACTIONS(5455), 3, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(5204), 1, - anon_sym_LPAREN, - ACTIONS(5715), 1, + anon_sym_AMP, + ACTIONS(6198), 3, + anon_sym_STAR, sym_identifier, - STATE(3318), 1, + anon_sym___stdcall, + [160814] = 6, + ACTIONS(5491), 1, + anon_sym_LPAREN, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3577), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [163981] = 8, - ACTIONS(4915), 1, - anon_sym___stdcall, - ACTIONS(4917), 1, + ACTIONS(5494), 3, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(4919), 1, + ACTIONS(6200), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + [160839] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - STATE(3318), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5435), 2, + ACTIONS(5237), 1, anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(6170), 2, - anon_sym_STAR, + ACTIONS(5740), 1, sym_identifier, - STATE(3289), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [164010] = 4, - ACTIONS(6172), 1, - anon_sym_LBRACK_RBRACK, + STATE(3366), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6162), 2, + ACTIONS(4821), 2, anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(6160), 7, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym___stdcall, + ACTIONS(4823), 2, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AMP, - anon_sym___stdcall, - [164031] = 3, - ACTIONS(5625), 1, + STATE(3595), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [160868] = 3, + ACTIONS(5878), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5627), 9, + ACTIONS(5880), 9, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - [164050] = 8, - ACTIONS(4919), 1, + [160887] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5435), 1, + ACTIONS(5477), 1, anon_sym_LPAREN, - ACTIONS(6170), 1, + ACTIONS(6202), 1, sym_identifier, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3569), 2, + STATE(3620), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164079] = 8, - ACTIONS(4919), 1, + [160916] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5235), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5711), 1, + ACTIONS(5752), 1, sym_identifier, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3570), 2, + STATE(3589), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164108] = 8, - ACTIONS(4919), 1, + [160945] = 8, + ACTIONS(4821), 1, + anon_sym___stdcall, + ACTIONS(4823), 1, + anon_sym_AMP, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5440), 1, - anon_sym_LPAREN, - ACTIONS(5988), 1, - sym_identifier, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(5477), 2, + anon_sym_LPAREN, anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3573), 2, + ACTIONS(6202), 2, + anon_sym_STAR, + sym_identifier, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164137] = 4, - ACTIONS(5408), 1, - anon_sym_DOT, - STATE(3618), 1, - aux_sym_class_definition_repeat2, + [160974] = 3, + ACTIONS(5932), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6174), 8, - anon_sym_import, - anon_sym_cimport, + ACTIONS(5934), 9, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [164158] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4263), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [164175] = 5, - STATE(3318), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [160993] = 8, + ACTIONS(4821), 1, + anon_sym___stdcall, + ACTIONS(4823), 1, + anon_sym_AMP, + ACTIONS(4825), 1, + anon_sym_LBRACK, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5715), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(5204), 4, + ACTIONS(5237), 2, anon_sym_LPAREN, anon_sym_STAR_STAR, + ACTIONS(5740), 2, + anon_sym_STAR, + sym_identifier, + STATE(3272), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [161022] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - anon_sym_AMP, - [164198] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4374), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [164215] = 9, - ACTIONS(4915), 1, - anon_sym___stdcall, - ACTIONS(4917), 1, - anon_sym_AMP, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(5235), 1, + ACTIONS(5227), 1, anon_sym_LPAREN, - ACTIONS(5238), 1, - anon_sym_STAR_STAR, - STATE(3318), 1, + ACTIONS(6112), 1, + sym_identifier, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5711), 2, + ACTIONS(4821), 2, anon_sym_STAR, - sym_identifier, - STATE(3289), 2, + anon_sym___stdcall, + ACTIONS(4823), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3629), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164246] = 5, - STATE(3318), 1, + [161051] = 5, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6030), 3, + ACTIONS(6151), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - ACTIONS(5227), 4, + ACTIONS(5529), 4, anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - [164269] = 9, - ACTIONS(4915), 1, - anon_sym___stdcall, - ACTIONS(4917), 1, - anon_sym_AMP, - ACTIONS(4919), 1, + [161074] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5427), 1, - anon_sym_STAR_STAR, - ACTIONS(5440), 1, + ACTIONS(5474), 1, anon_sym_LPAREN, - STATE(3318), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5988), 2, - anon_sym_STAR, + ACTIONS(6127), 1, sym_identifier, - STATE(3289), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [164300] = 6, - ACTIONS(6176), 1, - anon_sym_as, - ACTIONS(6178), 1, - anon_sym_if, - ACTIONS(6180), 1, - anon_sym_and, - ACTIONS(6182), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5998), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [164325] = 8, - ACTIONS(6184), 1, - anon_sym_COMMA, - ACTIONS(6186), 1, - anon_sym_as, - ACTIONS(6188), 1, - anon_sym_if, - ACTIONS(6192), 1, - anon_sym_and, - ACTIONS(6194), 1, - anon_sym_or, - STATE(4092), 1, - aux_sym_assert_statement_repeat1, + STATE(3366), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6190), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [164354] = 3, - ACTIONS(5059), 1, + ACTIONS(4821), 2, anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4101), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym___stdcall, + ACTIONS(4823), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [164373] = 5, - STATE(3318), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3289), 2, + STATE(3609), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6170), 3, - anon_sym_STAR, - sym_identifier, + [161103] = 9, + ACTIONS(4821), 1, anon_sym___stdcall, - ACTIONS(5435), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + ACTIONS(4823), 1, anon_sym_AMP, - [164396] = 6, - ACTIONS(5235), 1, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(5491), 1, anon_sym_LPAREN, - STATE(3318), 1, + ACTIONS(5494), 1, + anon_sym_STAR_STAR, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, + ACTIONS(6200), 2, + anon_sym_STAR, + sym_identifier, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5238), 3, + [161134] = 3, + ACTIONS(5591), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5593), 9, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, - ACTIONS(5711), 3, - anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - [164421] = 9, - ACTIONS(4915), 1, + [161153] = 8, + ACTIONS(4821), 1, anon_sym___stdcall, - ACTIONS(4917), 1, + ACTIONS(4823), 1, anon_sym_AMP, - ACTIONS(4919), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5757), 1, - anon_sym_LPAREN, - ACTIONS(5760), 1, - anon_sym_STAR_STAR, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6196), 2, + ACTIONS(5227), 2, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + ACTIONS(6112), 2, anon_sym_STAR, sym_identifier, - STATE(3289), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164452] = 6, - ACTIONS(5757), 1, + [161182] = 9, + ACTIONS(4821), 1, + anon_sym___stdcall, + ACTIONS(4823), 1, + anon_sym_AMP, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(5205), 1, anon_sym_LPAREN, - STATE(3318), 1, + ACTIONS(5208), 1, + anon_sym_STAR_STAR, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5760), 3, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(6196), 3, + ACTIONS(5752), 2, anon_sym_STAR, sym_identifier, - anon_sym___stdcall, - [164477] = 8, - ACTIONS(4919), 1, + STATE(3272), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [161213] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5227), 1, + ACTIONS(5452), 1, anon_sym_LPAREN, - ACTIONS(6030), 1, + ACTIONS(6198), 1, sym_identifier, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3639), 2, + STATE(3601), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164506] = 6, - ACTIONS(5440), 1, + [161242] = 6, + ACTIONS(5474), 1, anon_sym_LPAREN, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5427), 3, + ACTIONS(5470), 3, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(5988), 3, + ACTIONS(6127), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - [164531] = 5, - STATE(3318), 1, + [161267] = 6, + ACTIONS(5811), 1, + anon_sym_LPAREN, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5988), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(5427), 4, - anon_sym_LPAREN, + ACTIONS(5814), 3, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - [164554] = 3, - ACTIONS(5762), 1, + ACTIONS(6204), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + [161292] = 3, + ACTIONS(5139), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5764), 9, - anon_sym_DOT, + ACTIONS(5141), 9, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -243361,111 +244325,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - [164573] = 8, - ACTIONS(4915), 1, - anon_sym___stdcall, - ACTIONS(4917), 1, - anon_sym_AMP, - ACTIONS(4919), 1, - anon_sym_LBRACK, - STATE(3318), 1, + [161311] = 6, + ACTIONS(5526), 1, + anon_sym_LPAREN, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5721), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(6158), 2, - anon_sym_STAR, - sym_identifier, - STATE(3289), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164602] = 3, - ACTIONS(5059), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4101), 9, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5529), 3, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [164621] = 3, - ACTIONS(5542), 1, + ACTIONS(6151), 3, anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5544), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, + sym_identifier, anon_sym___stdcall, - [164640] = 9, - ACTIONS(4915), 1, + [161336] = 9, + ACTIONS(4821), 1, anon_sym___stdcall, - ACTIONS(4917), 1, + ACTIONS(4823), 1, anon_sym_AMP, - ACTIONS(4919), 1, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5721), 1, - anon_sym_STAR_STAR, - ACTIONS(5723), 1, + ACTIONS(5452), 1, anon_sym_LPAREN, - STATE(3318), 1, + ACTIONS(5455), 1, + anon_sym_STAR_STAR, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6158), 2, + ACTIONS(6198), 2, anon_sym_STAR, sym_identifier, - STATE(3289), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164671] = 9, - ACTIONS(4915), 1, - anon_sym___stdcall, - ACTIONS(4917), 1, - anon_sym_AMP, - ACTIONS(4919), 1, + [161367] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5476), 1, + ACTIONS(5529), 1, anon_sym_LPAREN, - ACTIONS(5479), 1, - anon_sym_STAR_STAR, - STATE(3318), 1, + ACTIONS(6151), 1, + sym_identifier, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6198), 2, + ACTIONS(4821), 2, anon_sym_STAR, - sym_identifier, - STATE(3289), 2, + anon_sym___stdcall, + ACTIONS(4823), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3634), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164702] = 3, - ACTIONS(5830), 1, + [161396] = 3, + ACTIONS(5104), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5832), 9, + ACTIONS(4120), 9, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -243475,90 +244405,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - [164721] = 8, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(5503), 1, - anon_sym_LPAREN, - ACTIONS(6002), 1, - sym_identifier, - STATE(3318), 1, + [161415] = 5, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3636), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164750] = 8, - ACTIONS(4915), 1, + ACTIONS(6112), 3, + anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(4917), 1, - anon_sym_AMP, - ACTIONS(4919), 1, + ACTIONS(5227), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, anon_sym_LBRACK, - STATE(3318), 1, + anon_sym_AMP, + [161438] = 5, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5227), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(6030), 2, - anon_sym_STAR, - sym_identifier, - STATE(3289), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164779] = 3, - ACTIONS(5538), 1, + ACTIONS(6127), 3, anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5540), 9, - anon_sym_DOT, + sym_identifier, + anon_sym___stdcall, + ACTIONS(5470), 4, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym___stdcall, - [164798] = 8, - ACTIONS(4919), 1, + [161461] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5503), 1, + ACTIONS(5477), 1, anon_sym_LPAREN, - ACTIONS(6002), 1, + ACTIONS(6202), 1, sym_identifier, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3601), 2, + STATE(3632), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164827] = 2, + [161490] = 4, + ACTIONS(5393), 1, + anon_sym_DOT, + STATE(3576), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6206), 8, + anon_sym_import, + anon_sym_cimport, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [161511] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4378), 10, + ACTIONS(4392), 10, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -243569,71 +244494,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [164844] = 8, - ACTIONS(4919), 1, + [161528] = 4, + ACTIONS(6212), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6210), 2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(6208), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AMP, + anon_sym___stdcall, + [161549] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5493), 1, + ACTIONS(5452), 1, anon_sym_LPAREN, - ACTIONS(6168), 1, + ACTIONS(6198), 1, sym_identifier, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3626), 2, + STATE(3590), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164873] = 8, - ACTIONS(4919), 1, + [161578] = 5, + STATE(3366), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3272), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6214), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + ACTIONS(5506), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + [161601] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5493), 1, + ACTIONS(5791), 1, anon_sym_LPAREN, - ACTIONS(6168), 1, + ACTIONS(6190), 1, sym_identifier, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3605), 2, + STATE(3607), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164902] = 3, - ACTIONS(5597), 1, - anon_sym_STAR, + [161630] = 8, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5752), 1, + sym_identifier, + STATE(3366), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5599), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4821), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4823), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym___stdcall, - [164921] = 3, - ACTIONS(5830), 1, + STATE(3610), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [161659] = 3, + ACTIONS(5677), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5832), 9, + ACTIONS(5679), 9, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -243643,211 +244608,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - [164940] = 3, - ACTIONS(5532), 1, + [161678] = 8, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(5791), 1, + anon_sym_LPAREN, + ACTIONS(6190), 1, + sym_identifier, + STATE(3366), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4821), 2, anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4823), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3640), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [161707] = 5, + STATE(3366), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5534), 9, - anon_sym_DOT, + STATE(3272), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6202), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + ACTIONS(5477), 4, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, + [161730] = 8, + ACTIONS(4821), 1, anon_sym___stdcall, - [164959] = 8, - ACTIONS(4919), 1, + ACTIONS(4823), 1, + anon_sym_AMP, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5435), 1, + STATE(3366), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5529), 2, anon_sym_LPAREN, - ACTIONS(6170), 1, + anon_sym_STAR_STAR, + ACTIONS(6151), 2, + anon_sym_STAR, sym_identifier, - STATE(3318), 1, + STATE(3272), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [161759] = 9, + ACTIONS(4821), 1, + anon_sym___stdcall, + ACTIONS(4823), 1, + anon_sym_AMP, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(5470), 1, + anon_sym_STAR_STAR, + ACTIONS(5474), 1, + anon_sym_LPAREN, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(6127), 2, anon_sym_STAR, + sym_identifier, + STATE(3272), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [161790] = 9, + ACTIONS(4821), 1, anon_sym___stdcall, - ACTIONS(4917), 2, - anon_sym_STAR_STAR, + ACTIONS(4823), 1, anon_sym_AMP, - STATE(3621), 2, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(5526), 1, + anon_sym_LPAREN, + ACTIONS(5529), 1, + anon_sym_STAR_STAR, + STATE(3366), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6151), 2, + anon_sym_STAR, + sym_identifier, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164988] = 4, - ACTIONS(5408), 1, - anon_sym_DOT, - STATE(3003), 1, - aux_sym_class_definition_repeat2, + [161821] = 8, + ACTIONS(4821), 1, + anon_sym___stdcall, + ACTIONS(4823), 1, + anon_sym_AMP, + ACTIONS(4825), 1, + anon_sym_LBRACK, + STATE(3366), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6200), 8, - anon_sym_import, - anon_sym_cimport, + ACTIONS(5470), 2, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(6127), 2, + anon_sym_STAR, + sym_identifier, + STATE(3272), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [161850] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4405), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [165009] = 3, - ACTIONS(5548), 1, - anon_sym_STAR, + anon_sym_and, + anon_sym_or, + [161867] = 4, + ACTIONS(6216), 1, + anon_sym_LBRACK_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5550), 9, - anon_sym_DOT, + ACTIONS(6210), 2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(6208), 7, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym___stdcall, - [165028] = 5, - STATE(3318), 1, + [161888] = 8, + ACTIONS(4821), 1, + anon_sym___stdcall, + ACTIONS(4823), 1, + anon_sym_AMP, + ACTIONS(4825), 1, + anon_sym_LBRACK, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6002), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(5503), 4, + ACTIONS(5506), 2, anon_sym_LPAREN, anon_sym_STAR_STAR, + ACTIONS(6214), 2, + anon_sym_STAR, + sym_identifier, + STATE(3272), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [161917] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - anon_sym_AMP, - [165051] = 5, - STATE(3318), 1, + ACTIONS(5529), 1, + anon_sym_LPAREN, + ACTIONS(6151), 1, + sym_identifier, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6166), 3, + ACTIONS(4821), 2, anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - ACTIONS(5487), 4, - anon_sym_LPAREN, + ACTIONS(4823), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - [165074] = 6, - ACTIONS(5493), 1, - anon_sym_LPAREN, - STATE(3318), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3289), 2, + STATE(3575), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5496), 3, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(6168), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - [165099] = 6, - ACTIONS(5500), 1, - anon_sym_LPAREN, - STATE(3318), 1, + [161946] = 5, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, + STATE(3272), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5503), 3, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(6002), 3, + ACTIONS(6190), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - [165124] = 3, - ACTIONS(5839), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5841), 9, + ACTIONS(5769), 4, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [165143] = 8, - ACTIONS(6184), 1, + [161969] = 8, + ACTIONS(6218), 1, anon_sym_COMMA, - ACTIONS(6186), 1, + ACTIONS(6220), 1, anon_sym_as, - ACTIONS(6188), 1, + ACTIONS(6222), 1, anon_sym_if, - ACTIONS(6192), 1, + ACTIONS(6226), 1, anon_sym_and, - ACTIONS(6194), 1, + ACTIONS(6228), 1, anon_sym_or, - STATE(4092), 1, + STATE(4103), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6202), 4, + ACTIONS(6224), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [165172] = 6, - ACTIONS(5476), 1, - anon_sym_LPAREN, - STATE(3318), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3289), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5479), 3, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(6198), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - [165197] = 2, + [161998] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4316), 10, + ACTIONS(4327), 10, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -243858,67 +244861,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [165214] = 6, - ACTIONS(6176), 1, - anon_sym_as, - ACTIONS(6178), 1, - anon_sym_if, - ACTIONS(6180), 1, - anon_sym_and, - ACTIONS(6182), 1, - anon_sym_or, + [162015] = 3, + ACTIONS(5620), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4251), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(5622), 9, anon_sym_DOT, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_PIPE, - [165239] = 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [162034] = 6, + ACTIONS(5205), 1, + anon_sym_LPAREN, + STATE(3366), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4350), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [165256] = 5, - ACTIONS(6180), 1, + STATE(3272), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5208), 3, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(5752), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + [162059] = 6, + ACTIONS(6186), 1, anon_sym_and, - ACTIONS(6182), 1, + ACTIONS(6188), 1, anon_sym_or, - ACTIONS(6204), 1, + ACTIONS(6194), 1, anon_sym_as, + ACTIONS(6196), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4367), 7, + ACTIONS(4222), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [165279] = 4, - ACTIONS(6180), 1, + [162084] = 9, + ACTIONS(4821), 1, + anon_sym___stdcall, + ACTIONS(4823), 1, + anon_sym_AMP, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(5811), 1, + anon_sym_LPAREN, + ACTIONS(5814), 1, + anon_sym_STAR_STAR, + STATE(3366), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6204), 2, + anon_sym_STAR, + sym_identifier, + STATE(3272), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [162115] = 4, + ACTIONS(6186), 1, anon_sym_and, - ACTIONS(6182), 1, + ACTIONS(6188), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4203), 8, + ACTIONS(4249), 8, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -243927,13 +244954,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [165300] = 3, - ACTIONS(6180), 1, + [162136] = 3, + ACTIONS(6186), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4211), 9, + ACTIONS(4253), 9, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -243943,143 +244970,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_PIPE, anon_sym_or, - [165319] = 6, - ACTIONS(6176), 1, - anon_sym_as, - ACTIONS(6178), 1, - anon_sym_if, - ACTIONS(6180), 1, + [162155] = 6, + ACTIONS(6186), 1, anon_sym_and, - ACTIONS(6182), 1, + ACTIONS(6188), 1, anon_sym_or, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6196), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4339), 6, + ACTIONS(4264), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [165344] = 2, + [162180] = 6, + ACTIONS(6186), 1, + anon_sym_and, + ACTIONS(6188), 1, + anon_sym_or, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6196), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4199), 10, + ACTIONS(4272), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [165361] = 6, - ACTIONS(6176), 1, + [162205] = 8, + ACTIONS(6218), 1, + anon_sym_COMMA, + ACTIONS(6220), 1, anon_sym_as, - ACTIONS(6178), 1, + ACTIONS(6222), 1, anon_sym_if, - ACTIONS(6180), 1, + ACTIONS(6226), 1, anon_sym_and, - ACTIONS(6182), 1, + ACTIONS(6228), 1, anon_sym_or, + STATE(4103), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4354), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(6230), 4, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [165386] = 5, - STATE(3318), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3289), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6158), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(5721), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - [165409] = 8, - ACTIONS(4919), 1, + anon_sym_RBRACE, + sym_type_conversion, + [162234] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(5204), 1, + ACTIONS(5474), 1, anon_sym_LPAREN, - ACTIONS(5715), 1, + ACTIONS(6127), 1, sym_identifier, - STATE(3318), 1, + STATE(3366), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3593), 2, + STATE(3628), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [165438] = 6, - ACTIONS(5723), 1, - anon_sym_LPAREN, - STATE(3318), 1, - sym_type_index, + [162263] = 3, + ACTIONS(5878), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3289), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5721), 3, + ACTIONS(5880), 9, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, - ACTIONS(6158), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - [165463] = 8, - ACTIONS(4915), 1, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(4917), 1, - anon_sym_AMP, - ACTIONS(4919), 1, - anon_sym_LBRACK, - STATE(3318), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5427), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(5988), 2, - anon_sym_STAR, - sym_identifier, - STATE(3289), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165492] = 2, + [162282] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4350), 9, + ACTIONS(4234), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -244089,798 +245080,1050 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [165508] = 8, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(6207), 1, - sym_identifier, - ACTIONS(6209), 1, - sym__newline, - STATE(4820), 1, - sym_type_index, - STATE(5454), 1, - sym_type_qualifier, + [162298] = 6, + ACTIONS(6220), 1, + anon_sym_as, + ACTIONS(6222), 1, + anon_sym_if, + ACTIONS(6226), 1, + anon_sym_and, + ACTIONS(6228), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4222), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [162322] = 6, + ACTIONS(6220), 1, + anon_sym_as, + ACTIONS(6222), 1, + anon_sym_if, + ACTIONS(6226), 1, + anon_sym_and, + ACTIONS(6228), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4264), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [162346] = 3, + ACTIONS(6234), 1, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6232), 8, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, anon_sym_AMP, - [165536] = 6, - ACTIONS(5811), 1, - anon_sym_as, - ACTIONS(5813), 1, - anon_sym_if, - ACTIONS(5823), 1, + anon_sym___stdcall, + [162364] = 10, + ACTIONS(6236), 1, + anon_sym_LPAREN, + ACTIONS(6238), 1, + anon_sym_COMMA, + ACTIONS(6240), 1, + anon_sym_EQ, + ACTIONS(6242), 1, + anon_sym_LBRACK, + ACTIONS(6244), 1, + sym__newline, + STATE(2893), 1, + sym_c_function_definition, + STATE(3746), 1, + sym_c_parameters, + STATE(4691), 1, + aux_sym_cvar_def_repeat1, + STATE(5035), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [162396] = 5, + ACTIONS(6226), 1, anon_sym_and, - ACTIONS(5825), 1, + ACTIONS(6228), 1, anon_sym_or, + ACTIONS(6246), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4339), 5, + ACTIONS(4238), 6, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, - [165560] = 8, - ACTIONS(4919), 1, + sym_type_conversion, + [162418] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(6207), 1, + ACTIONS(6249), 1, sym_identifier, - ACTIONS(6211), 1, + ACTIONS(6251), 1, sym__newline, - STATE(4820), 1, + STATE(4831), 1, sym_type_index, - STATE(5454), 1, + STATE(5409), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [165588] = 8, - ACTIONS(4919), 1, + [162446] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(6207), 1, + ACTIONS(6249), 1, sym_identifier, - ACTIONS(6213), 1, + ACTIONS(6253), 1, sym__newline, - STATE(4820), 1, + STATE(4831), 1, sym_type_index, - STATE(5454), 1, + STATE(5409), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [165616] = 9, - ACTIONS(3457), 1, + [162474] = 10, + ACTIONS(6236), 1, + anon_sym_LPAREN, + ACTIONS(6242), 1, anon_sym_LBRACK, - ACTIONS(3503), 1, - sym_string_start, - ACTIONS(5960), 1, + ACTIONS(6253), 1, + sym__newline, + ACTIONS(6255), 1, anon_sym_COMMA, - ACTIONS(6215), 1, + ACTIONS(6257), 1, anon_sym_EQ, - ACTIONS(6217), 1, - sym__newline, - STATE(3953), 1, - sym_string, - STATE(4961), 1, - aux_sym_cvar_decl_repeat2, + STATE(2834), 1, + sym_c_function_definition, + STATE(3746), 1, + sym_c_parameters, + STATE(4762), 1, + aux_sym_cvar_def_repeat1, + STATE(5035), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3826), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [165646] = 6, - ACTIONS(6219), 1, - anon_sym_as, - ACTIONS(6221), 1, - anon_sym_if, - ACTIONS(6223), 1, + [162506] = 4, + ACTIONS(6226), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(6228), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5998), 5, - anon_sym_DOT, + ACTIONS(4249), 7, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [165670] = 8, - ACTIONS(4919), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [162526] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4253), 9, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [162542] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(6207), 1, + ACTIONS(6249), 1, sym_identifier, - ACTIONS(6227), 1, + ACTIONS(6259), 1, sym__newline, - STATE(4820), 1, + STATE(4831), 1, sym_type_index, - STATE(5454), 1, + STATE(5409), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [165698] = 10, - ACTIONS(6229), 1, - anon_sym_LPAREN, - ACTIONS(6231), 1, + [162570] = 9, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(3528), 1, + sym_string_start, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6233), 1, + ACTIONS(6099), 1, anon_sym_EQ, - ACTIONS(6235), 1, - anon_sym_LBRACK, - ACTIONS(6237), 1, + ACTIONS(6101), 1, sym__newline, - STATE(1145), 1, - sym_c_function_definition, - STATE(3746), 1, - sym_c_parameters, - STATE(4575), 1, - aux_sym_cvar_def_repeat1, - STATE(5132), 1, - sym_template_params, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [165730] = 3, - ACTIONS(5059), 1, - anon_sym_STAR, + STATE(3961), 1, + sym_string, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4101), 8, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [165748] = 2, + STATE(3963), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [162600] = 3, + ACTIONS(6226), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4304), 9, + ACTIONS(4253), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_and, anon_sym_or, sym_type_conversion, - [165764] = 4, - ACTIONS(6192), 1, + [162618] = 6, + ACTIONS(6261), 1, + anon_sym_as, + ACTIONS(6263), 1, + anon_sym_if, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(6194), 1, + ACTIONS(6267), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4203), 7, + ACTIONS(6177), 5, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [162642] = 6, + ACTIONS(6220), 1, anon_sym_as, + ACTIONS(6222), 1, anon_sym_if, + ACTIONS(6226), 1, + anon_sym_and, + ACTIONS(6228), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4272), 5, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [165784] = 9, - ACTIONS(3457), 1, + [162666] = 8, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6269), 1, + sym__newline, + STATE(4831), 1, + sym_type_index, + STATE(5409), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4821), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4823), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [162694] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(3503), 1, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6271), 1, + sym__newline, + STATE(4831), 1, + sym_type_index, + STATE(5409), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4821), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4823), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [162722] = 9, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(3528), 1, sym_string_start, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6239), 1, + ACTIONS(6273), 1, anon_sym_EQ, - ACTIONS(6241), 1, + ACTIONS(6275), 1, sym__newline, - STATE(3849), 1, + STATE(3992), 1, sym_string, - STATE(4868), 1, + STATE(4876), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3852), 2, + STATE(3993), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [165814] = 3, - ACTIONS(6162), 1, - anon_sym_STAR, + [162752] = 9, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(3528), 1, + sym_string_start, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6277), 1, + anon_sym_EQ, + ACTIONS(6279), 1, + sym__newline, + STATE(3994), 1, + sym_string, + STATE(4881), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6160), 8, + STATE(3996), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [162782] = 8, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6281), 1, sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, + STATE(4831), 1, + sym_type_index, + STATE(5409), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4821), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4823), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym___stdcall, - [165832] = 9, - ACTIONS(3457), 1, + [162810] = 9, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(3503), 1, + ACTIONS(3528), 1, sym_string_start, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6243), 1, + ACTIONS(6283), 1, anon_sym_EQ, - ACTIONS(6245), 1, + ACTIONS(6285), 1, sym__newline, - STATE(3922), 1, + STATE(3836), 1, sym_string, - STATE(4508), 1, + STATE(4974), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3934), 2, + STATE(3837), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [165862] = 3, - ACTIONS(6249), 1, - anon_sym_STAR, + [162840] = 9, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(3528), 1, + sym_string_start, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6077), 1, + anon_sym_EQ, + ACTIONS(6079), 1, + sym__newline, + STATE(3971), 1, + sym_string, + STATE(4804), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6247), 8, - sym__newline, - anon_sym_LPAREN, + STATE(3972), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [162870] = 6, + ACTIONS(6287), 1, + anon_sym_as, + ACTIONS(6289), 1, + anon_sym_if, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4222), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [165880] = 8, - ACTIONS(4919), 1, + anon_sym_COLON, + anon_sym_else, + anon_sym_PIPE, + [162894] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(6207), 1, + ACTIONS(6249), 1, sym_identifier, - ACTIONS(6251), 1, + ACTIONS(6295), 1, sym__newline, - STATE(4820), 1, + STATE(4831), 1, sym_type_index, - STATE(5454), 1, + STATE(5409), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [165908] = 2, + [162922] = 5, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(6297), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4211), 9, + ACTIONS(4238), 6, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_PIPE, + [162944] = 6, + ACTIONS(6220), 1, anon_sym_as, + ACTIONS(6222), 1, anon_sym_if, + ACTIONS(6226), 1, + anon_sym_and, + ACTIONS(6228), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6300), 5, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, + sym_type_conversion, + [162968] = 4, + ACTIONS(6291), 1, anon_sym_and, + ACTIONS(6293), 1, anon_sym_or, - sym_type_conversion, - [165924] = 8, - ACTIONS(4919), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4249), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_PIPE, + [162988] = 3, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4253), 8, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_PIPE, + anon_sym_or, + [163006] = 6, + ACTIONS(6287), 1, + anon_sym_as, + ACTIONS(6289), 1, + anon_sym_if, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4264), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_PIPE, + [163030] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(6207), 1, + ACTIONS(6249), 1, sym_identifier, - ACTIONS(6253), 1, + ACTIONS(6302), 1, sym__newline, - STATE(4820), 1, + STATE(4831), 1, sym_type_index, - STATE(5454), 1, + STATE(5409), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [165952] = 5, - ACTIONS(4205), 1, + [163058] = 6, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(5823), 1, + ACTIONS(6289), 1, + anon_sym_if, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(5825), 1, + ACTIONS(6293), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4203), 6, + ACTIONS(4272), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [165974] = 9, - ACTIONS(3457), 1, + anon_sym_else, + anon_sym_PIPE, + [163082] = 10, + ACTIONS(6236), 1, + anon_sym_LPAREN, + ACTIONS(6242), 1, anon_sym_LBRACK, - ACTIONS(3503), 1, - sym_string_start, - ACTIONS(5960), 1, + ACTIONS(6304), 1, anon_sym_COMMA, - ACTIONS(6255), 1, + ACTIONS(6306), 1, anon_sym_EQ, - ACTIONS(6257), 1, + ACTIONS(6308), 1, sym__newline, - STATE(3853), 1, - sym_string, - STATE(4892), 1, - aux_sym_cvar_decl_repeat2, + STATE(497), 1, + sym_c_function_definition, + STATE(3797), 1, + sym_c_parameters, + STATE(4832), 1, + aux_sym_cvar_def_repeat1, + STATE(5079), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3889), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [166004] = 8, - ACTIONS(4919), 1, + [163114] = 6, + ACTIONS(6261), 1, + anon_sym_as, + ACTIONS(6263), 1, + anon_sym_if, + ACTIONS(6265), 1, + anon_sym_and, + ACTIONS(6267), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4222), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [163138] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(6207), 1, + ACTIONS(6249), 1, sym_identifier, - ACTIONS(6259), 1, + ACTIONS(6310), 1, sym__newline, - STATE(4820), 1, + STATE(4831), 1, sym_type_index, - STATE(5454), 1, + STATE(5409), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [166032] = 9, - ACTIONS(3457), 1, + [163166] = 10, + ACTIONS(6236), 1, + anon_sym_LPAREN, + ACTIONS(6242), 1, anon_sym_LBRACK, - ACTIONS(3503), 1, - sym_string_start, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(5992), 1, - anon_sym_EQ, - ACTIONS(5994), 1, + ACTIONS(6310), 1, sym__newline, - STATE(3834), 1, - sym_string, - STATE(4911), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3882), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [166062] = 9, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(3503), 1, - sym_string_start, - ACTIONS(5960), 1, + ACTIONS(6312), 1, anon_sym_COMMA, - ACTIONS(6261), 1, + ACTIONS(6314), 1, anon_sym_EQ, - ACTIONS(6263), 1, - sym__newline, - STATE(3912), 1, - sym_string, - STATE(4958), 1, - aux_sym_cvar_decl_repeat2, + STATE(504), 1, + sym_c_function_definition, + STATE(3797), 1, + sym_c_parameters, + STATE(4880), 1, + aux_sym_cvar_def_repeat1, + STATE(5079), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3952), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [166092] = 6, + [163198] = 5, ACTIONS(6265), 1, - anon_sym_as, - ACTIONS(6267), 1, - anon_sym_if, - ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6267), 1, anon_sym_or, + ACTIONS(6316), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4339), 5, + ACTIONS(4238), 6, anon_sym_DOT, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_RBRACK, anon_sym_PIPE, - [166116] = 3, - ACTIONS(6249), 1, - anon_sym_STAR, + [163220] = 4, + ACTIONS(6265), 1, + anon_sym_and, + ACTIONS(6267), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6247), 8, - anon_sym_RPAREN, + ACTIONS(4249), 7, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [166134] = 3, - ACTIONS(6192), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [163240] = 3, + ACTIONS(6265), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4211), 8, + ACTIONS(4253), 8, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_or, - sym_type_conversion, - [166152] = 10, - ACTIONS(6229), 1, - anon_sym_LPAREN, - ACTIONS(6235), 1, + [163258] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(6273), 1, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6319), 1, + sym__newline, + STATE(4831), 1, + sym_type_index, + STATE(5409), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4821), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4823), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [163286] = 9, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(3528), 1, + sym_string_start, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6275), 1, + ACTIONS(6137), 1, anon_sym_EQ, - ACTIONS(6277), 1, + ACTIONS(6139), 1, sym__newline, - STATE(2800), 1, - sym_c_function_definition, - STATE(3775), 1, - sym_c_parameters, - STATE(4758), 1, - aux_sym_cvar_def_repeat1, - STATE(5033), 1, - sym_template_params, + STATE(3889), 1, + sym_string, + STATE(4929), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166184] = 6, - ACTIONS(6186), 1, - anon_sym_as, - ACTIONS(6188), 1, - anon_sym_if, - ACTIONS(6192), 1, - anon_sym_and, - ACTIONS(6194), 1, - anon_sym_or, + STATE(3890), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [163316] = 8, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6321), 1, + sym__newline, + STATE(4831), 1, + sym_type_index, + STATE(5409), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4251), 5, + ACTIONS(4821), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4823), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [163344] = 9, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(3528), 1, + sym_string_start, + ACTIONS(6025), 1, anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(6323), 1, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [166208] = 6, - ACTIONS(6186), 1, - anon_sym_as, - ACTIONS(6188), 1, - anon_sym_if, - ACTIONS(6192), 1, - anon_sym_and, - ACTIONS(6194), 1, - anon_sym_or, + ACTIONS(6325), 1, + sym__newline, + STATE(3896), 1, + sym_string, + STATE(4971), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3897), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [163374] = 9, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(3528), 1, + sym_string_start, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6327), 1, + anon_sym_EQ, + ACTIONS(6329), 1, + sym__newline, + STATE(3898), 1, + sym_string, + STATE(4972), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4339), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [166232] = 9, - ACTIONS(3457), 1, + STATE(3899), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [163404] = 8, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6331), 1, + sym__newline, + STATE(4831), 1, + sym_type_index, + STATE(5409), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4821), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4823), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [163432] = 9, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(3503), 1, + ACTIONS(3528), 1, sym_string_start, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6279), 1, + ACTIONS(6333), 1, anon_sym_EQ, - ACTIONS(6281), 1, + ACTIONS(6335), 1, sym__newline, - STATE(3919), 1, + STATE(3907), 1, sym_string, - STATE(4888), 1, + STATE(4518), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3921), 2, + STATE(3908), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [166262] = 3, - ACTIONS(5839), 1, + [163462] = 8, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(6249), 1, + sym_identifier, + ACTIONS(6337), 1, + sym__newline, + STATE(4831), 1, + sym_type_index, + STATE(5409), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4821), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4823), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [163490] = 3, + ACTIONS(6210), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5841), 8, + ACTIONS(6208), 8, sym__newline, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, anon_sym___stdcall, - [166280] = 4, - ACTIONS(4213), 1, - anon_sym_as, - ACTIONS(5823), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4211), 7, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - anon_sym_or, - [166300] = 6, - ACTIONS(6186), 1, + [163508] = 6, + ACTIONS(6261), 1, anon_sym_as, - ACTIONS(6188), 1, + ACTIONS(6263), 1, anon_sym_if, - ACTIONS(6192), 1, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(6194), 1, + ACTIONS(6267), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4354), 5, + ACTIONS(4264), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [163532] = 10, + ACTIONS(6236), 1, + anon_sym_LPAREN, + ACTIONS(6242), 1, + anon_sym_LBRACK, + ACTIONS(6339), 1, + anon_sym_COMMA, + ACTIONS(6341), 1, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [166324] = 5, - ACTIONS(5408), 1, - anon_sym_DOT, - ACTIONS(6283), 1, - anon_sym_EQ, - STATE(3618), 1, - aux_sym_class_definition_repeat2, + ACTIONS(6343), 1, + sym__newline, + STATE(1074), 1, + sym_c_function_definition, + STATE(3748), 1, + sym_c_parameters, + STATE(4647), 1, + aux_sym_cvar_def_repeat1, + STATE(5189), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6174), 6, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [166346] = 8, - ACTIONS(4919), 1, + [163564] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(6207), 1, + ACTIONS(6249), 1, sym_identifier, - ACTIONS(6285), 1, + ACTIONS(6345), 1, sym__newline, - STATE(4820), 1, + STATE(4831), 1, sym_type_index, - STATE(5454), 1, + STATE(5409), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [166374] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4267), 9, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [166390] = 6, - ACTIONS(5811), 1, - anon_sym_as, - ACTIONS(5813), 1, - anon_sym_if, - ACTIONS(5823), 1, - anon_sym_and, - ACTIONS(5825), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4354), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [166414] = 10, - ACTIONS(6229), 1, + [163592] = 10, + ACTIONS(6236), 1, anon_sym_LPAREN, - ACTIONS(6235), 1, + ACTIONS(6242), 1, anon_sym_LBRACK, - ACTIONS(6251), 1, + ACTIONS(6345), 1, sym__newline, - ACTIONS(6287), 1, + ACTIONS(6347), 1, anon_sym_COMMA, - ACTIONS(6289), 1, + ACTIONS(6349), 1, anon_sym_EQ, - STATE(1195), 1, + STATE(1152), 1, sym_c_function_definition, - STATE(3746), 1, + STATE(3748), 1, sym_c_parameters, - STATE(4810), 1, + STATE(4978), 1, aux_sym_cvar_def_repeat1, - STATE(5132), 1, + STATE(5189), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166446] = 9, - ACTIONS(3457), 1, + [163624] = 9, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(3503), 1, + ACTIONS(3528), 1, sym_string_start, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6082), 1, + ACTIONS(6351), 1, anon_sym_EQ, - ACTIONS(6084), 1, + ACTIONS(6353), 1, sym__newline, - STATE(3876), 1, + STATE(3934), 1, sym_string, - STATE(4939), 1, + STATE(4603), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3878), 2, + STATE(3939), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [166476] = 6, - ACTIONS(6219), 1, - anon_sym_as, - ACTIONS(6221), 1, - anon_sym_if, - ACTIONS(6223), 1, - anon_sym_and, - ACTIONS(6225), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4354), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [166500] = 8, - ACTIONS(4919), 1, + [163654] = 8, + ACTIONS(4825), 1, anon_sym_LBRACK, - ACTIONS(6207), 1, + ACTIONS(6249), 1, sym_identifier, - ACTIONS(6291), 1, + ACTIONS(6355), 1, sym__newline, - STATE(4820), 1, + STATE(4831), 1, sym_type_index, - STATE(5454), 1, + STATE(5409), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, + ACTIONS(4821), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(4823), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [166528] = 2, + [163682] = 3, + ACTIONS(5681), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3942), 9, + ACTIONS(5685), 8, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [166544] = 5, - ACTIONS(6192), 1, - anon_sym_and, - ACTIONS(6194), 1, - anon_sym_or, - ACTIONS(6293), 1, - anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [163700] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4367), 6, + ACTIONS(4392), 9, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, sym_type_conversion, - [166566] = 2, + [163716] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4199), 9, + ACTIONS(4405), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -244890,11 +246133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [166582] = 2, + [163732] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4263), 9, + ACTIONS(4327), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -244904,11 +246147,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [166598] = 2, + [163748] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4374), 9, + ACTIONS(4368), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -244918,11 +246161,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [166614] = 2, + [163764] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4378), 9, + ACTIONS(4307), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -244932,72 +246175,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [166630] = 9, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(6298), 1, - anon_sym_from, - ACTIONS(6300), 1, - anon_sym_COMMA, - STATE(4245), 1, - aux_sym_assert_statement_repeat1, + [163780] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6296), 2, - sym__newline, - anon_sym_SEMI, - [166660] = 6, - ACTIONS(5811), 1, + ACTIONS(4311), 9, + anon_sym_COMMA, anon_sym_as, - ACTIONS(5813), 1, anon_sym_if, - ACTIONS(5823), 1, - anon_sym_and, - ACTIONS(5825), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4251), 5, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, - [166684] = 8, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(6207), 1, - sym_identifier, - ACTIONS(6302), 1, - sym__newline, - STATE(4820), 1, - sym_type_index, - STATE(5454), 1, - sym_type_qualifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [166712] = 3, - ACTIONS(5830), 1, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [163796] = 3, + ACTIONS(5104), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5832), 8, + ACTIONS(4120), 8, sym__newline, anon_sym_LPAREN, anon_sym_COLON, @@ -245006,2003 +246204,1970 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - [166730] = 8, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(6207), 1, - sym_identifier, - ACTIONS(6304), 1, - sym__newline, - STATE(4820), 1, - sym_type_index, - STATE(5454), 1, - sym_type_qualifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [166758] = 6, - ACTIONS(6219), 1, - anon_sym_as, - ACTIONS(6221), 1, - anon_sym_if, - ACTIONS(6223), 1, - anon_sym_and, - ACTIONS(6225), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4251), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [166782] = 9, - ACTIONS(3457), 1, + [163814] = 9, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(3503), 1, + ACTIONS(3528), 1, sym_string_start, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6306), 1, + ACTIONS(6357), 1, anon_sym_EQ, - ACTIONS(6308), 1, + ACTIONS(6359), 1, sym__newline, - STATE(3942), 1, + STATE(3932), 1, sym_string, - STATE(4544), 1, + STATE(4490), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3943), 2, + STATE(3933), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [166812] = 8, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(6207), 1, - sym_identifier, - ACTIONS(6310), 1, - sym__newline, - STATE(4820), 1, - sym_type_index, - STATE(5454), 1, - sym_type_qualifier, + [163844] = 3, + ACTIONS(6234), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, + ACTIONS(6232), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(4917), 2, + [163862] = 3, + ACTIONS(5878), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5880), 8, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - [166840] = 9, - ACTIONS(3457), 1, + anon_sym_complex, + anon_sym___stdcall, + [163880] = 9, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(3503), 1, + ACTIONS(3528), 1, sym_string_start, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6312), 1, + ACTIONS(6361), 1, anon_sym_EQ, - ACTIONS(6314), 1, + ACTIONS(6363), 1, sym__newline, - STATE(3879), 1, + STATE(3935), 1, sym_string, - STATE(4963), 1, + STATE(4667), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3880), 2, + STATE(3941), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [166870] = 3, - ACTIONS(5621), 1, + [163910] = 3, + ACTIONS(5932), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5623), 8, + ACTIONS(5934), 8, + sym__newline, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - [166888] = 6, - ACTIONS(6265), 1, + [163928] = 9, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(5767), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4251), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_PIPE, - [166912] = 9, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(3503), 1, - sym_string_start, - ACTIONS(5960), 1, + ACTIONS(6367), 1, + anon_sym_from, + ACTIONS(6369), 1, anon_sym_COMMA, - ACTIONS(6316), 1, - anon_sym_EQ, - ACTIONS(6318), 1, - sym__newline, - STATE(3885), 1, - sym_string, - STATE(4967), 1, - aux_sym_cvar_decl_repeat2, + STATE(4293), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3886), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [166942] = 8, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(6207), 1, - sym_identifier, - ACTIONS(6320), 1, + ACTIONS(6365), 2, sym__newline, - STATE(4820), 1, - sym_type_index, - STATE(5454), 1, - sym_type_qualifier, + anon_sym_SEMI, + [163958] = 3, + ACTIONS(6210), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, + ACTIONS(6208), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, anon_sym_AMP, - [166970] = 6, - ACTIONS(6265), 1, + anon_sym___stdcall, + [163976] = 6, + ACTIONS(5826), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(5828), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(5838), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(5840), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4354), 5, - anon_sym_DOT, + ACTIONS(4222), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, - anon_sym_PIPE, - [166994] = 5, - ACTIONS(6223), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [164000] = 5, + ACTIONS(5838), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(5840), 1, anon_sym_or, - ACTIONS(6322), 1, + ACTIONS(6371), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4367), 6, - anon_sym_DOT, + ACTIONS(4238), 6, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [167016] = 8, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(6207), 1, - sym_identifier, - ACTIONS(6325), 1, - sym__newline, - STATE(4820), 1, - sym_type_index, - STATE(5454), 1, - sym_type_qualifier, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [164022] = 5, + ACTIONS(4251), 1, + anon_sym_as, + ACTIONS(5838), 1, + anon_sym_and, + ACTIONS(5840), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [167044] = 10, - ACTIONS(6229), 1, - anon_sym_LPAREN, - ACTIONS(6235), 1, - anon_sym_LBRACK, - ACTIONS(6327), 1, + ACTIONS(4249), 6, anon_sym_COMMA, - ACTIONS(6329), 1, - anon_sym_EQ, - ACTIONS(6331), 1, - sym__newline, - STATE(497), 1, - sym_c_function_definition, - STATE(3779), 1, - sym_c_parameters, - STATE(4682), 1, - aux_sym_cvar_def_repeat1, - STATE(5085), 1, - sym_template_params, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [164044] = 4, + ACTIONS(4255), 1, + anon_sym_as, + ACTIONS(5838), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167076] = 10, - ACTIONS(6229), 1, - anon_sym_LPAREN, - ACTIONS(6235), 1, - anon_sym_LBRACK, - ACTIONS(6302), 1, - sym__newline, - ACTIONS(6333), 1, + ACTIONS(4253), 7, anon_sym_COMMA, - ACTIONS(6335), 1, - anon_sym_EQ, - STATE(2810), 1, - sym_c_function_definition, - STATE(3775), 1, - sym_c_parameters, - STATE(4849), 1, - aux_sym_cvar_def_repeat1, - STATE(5033), 1, - sym_template_params, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_or, + [164064] = 6, + ACTIONS(5826), 1, + anon_sym_as, + ACTIONS(5828), 1, + anon_sym_if, + ACTIONS(5838), 1, + anon_sym_and, + ACTIONS(5840), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167108] = 4, - ACTIONS(6223), 1, + ACTIONS(4264), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [164088] = 6, + ACTIONS(5826), 1, + anon_sym_as, + ACTIONS(5828), 1, + anon_sym_if, + ACTIONS(5838), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(5840), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4203), 7, + ACTIONS(4272), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [164112] = 5, + ACTIONS(5393), 1, anon_sym_DOT, + ACTIONS(6374), 1, + anon_sym_EQ, + STATE(3576), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6206), 6, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [167128] = 3, - ACTIONS(6223), 1, - anon_sym_and, + [164134] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4211), 8, - anon_sym_DOT, + ACTIONS(3961), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_or, - [167146] = 5, - ACTIONS(6269), 1, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6337), 1, - anon_sym_as, + sym_type_conversion, + [164150] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4367), 6, - anon_sym_DOT, + ACTIONS(4296), 9, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_PIPE, - [167168] = 6, - ACTIONS(6186), 1, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [164166] = 6, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6188), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6192), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6194), 1, + ACTIONS(5767), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6340), 5, - anon_sym_COMMA, + ACTIONS(6177), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [167192] = 4, - ACTIONS(6269), 1, + anon_sym_PIPE, + [164190] = 6, + ACTIONS(6261), 1, + anon_sym_as, + ACTIONS(6263), 1, + anon_sym_if, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6267), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4203), 7, + ACTIONS(4272), 5, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_RBRACK, anon_sym_PIPE, - [167212] = 3, - ACTIONS(6269), 1, + [164214] = 6, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, + anon_sym_if, + ACTIONS(5765), 1, anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4211), 8, - anon_sym_DOT, + ACTIONS(6300), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + [164237] = 9, + ACTIONS(3459), 1, + anon_sym_DOT, + ACTIONS(6376), 1, + anon_sym_LPAREN, + ACTIONS(6378), 1, anon_sym_COLON, - anon_sym_else, - anon_sym_PIPE, - anon_sym_or, - [167230] = 8, - ACTIONS(4919), 1, + ACTIONS(6380), 1, anon_sym_LBRACK, - ACTIONS(6207), 1, - sym_identifier, - ACTIONS(6342), 1, + ACTIONS(6382), 1, sym__newline, - STATE(4820), 1, - sym_type_index, - STATE(5454), 1, - sym_type_qualifier, + STATE(3129), 1, + aux_sym_class_definition_repeat2, + STATE(5305), 1, + sym_argument_list, + STATE(5306), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [167258] = 6, - ACTIONS(6219), 1, + [164266] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6221), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(5767), 1, anon_sym_or, + ACTIONS(6369), 1, + anon_sym_COMMA, + STATE(4293), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4339), 5, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(6224), 2, + sym__newline, + anon_sym_SEMI, + [164293] = 9, + ACTIONS(6384), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [167282] = 9, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(3503), 1, - sym_string_start, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6124), 1, - anon_sym_EQ, - ACTIONS(6126), 1, + ACTIONS(6386), 1, + anon_sym_except, + ACTIONS(6388), 1, + anon_sym_with, + ACTIONS(6390), 1, + anon_sym_nogil, + ACTIONS(6392), 1, + anon_sym_noexcept, + ACTIONS(6394), 1, sym__newline, - STATE(3993), 1, - sym_string, - STATE(4902), 1, - aux_sym_cvar_decl_repeat2, + STATE(3802), 1, + sym_gil_spec, + STATE(4192), 1, + sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3920), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [167312] = 6, - ACTIONS(5733), 1, + [164322] = 9, + ACTIONS(6386), 1, + anon_sym_except, + ACTIONS(6392), 1, + anon_sym_noexcept, + ACTIONS(6396), 1, + anon_sym_COLON, + ACTIONS(6398), 1, + anon_sym_with, + ACTIONS(6400), 1, + anon_sym_nogil, + ACTIONS(6402), 1, + sym__newline, + STATE(4295), 1, + sym_exception_value, + STATE(5175), 1, + sym_gil_spec, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164351] = 5, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6073), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(6075), 1, anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5998), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(6404), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [164372] = 9, + ACTIONS(6386), 1, + anon_sym_except, + ACTIONS(6388), 1, + anon_sym_with, + ACTIONS(6390), 1, + anon_sym_nogil, + ACTIONS(6392), 1, + anon_sym_noexcept, + ACTIONS(6406), 1, anon_sym_COLON, - anon_sym_PIPE, - [167336] = 5, - ACTIONS(5823), 1, + ACTIONS(6408), 1, + sym__newline, + STATE(3756), 1, + sym_gil_spec, + STATE(4172), 1, + sym_exception_value, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164401] = 5, + ACTIONS(5826), 1, + anon_sym_as, + ACTIONS(5838), 1, anon_sym_and, - ACTIONS(5825), 1, + ACTIONS(5840), 1, anon_sym_or, - ACTIONS(6344), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4367), 6, + ACTIONS(6404), 5, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [167358] = 10, - ACTIONS(6229), 1, + [164422] = 9, + ACTIONS(6384), 1, + anon_sym_COLON, + ACTIONS(6386), 1, + anon_sym_except, + ACTIONS(6392), 1, + anon_sym_noexcept, + ACTIONS(6394), 1, + sym__newline, + ACTIONS(6398), 1, + anon_sym_with, + ACTIONS(6400), 1, + anon_sym_nogil, + STATE(4192), 1, + sym_exception_value, + STATE(5123), 1, + sym_gil_spec, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164451] = 9, + ACTIONS(6236), 1, anon_sym_LPAREN, - ACTIONS(6235), 1, + ACTIONS(6242), 1, anon_sym_LBRACK, - ACTIONS(6285), 1, - sym__newline, - ACTIONS(6347), 1, - anon_sym_COMMA, - ACTIONS(6349), 1, - anon_sym_EQ, - STATE(504), 1, + ACTIONS(6410), 1, + sym_identifier, + ACTIONS(6412), 1, + sym_string_start, + STATE(1080), 1, sym_c_function_definition, - STATE(3779), 1, + STATE(3748), 1, sym_c_parameters, - STATE(4813), 1, - aux_sym_cvar_def_repeat1, - STATE(5085), 1, + STATE(4086), 1, + sym_string, + STATE(5189), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167390] = 3, - ACTIONS(6162), 1, - anon_sym_STAR, + [164480] = 6, + ACTIONS(6414), 1, + anon_sym_as, + ACTIONS(6416), 1, + anon_sym_if, + ACTIONS(6418), 1, + anon_sym_and, + ACTIONS(6420), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6160), 8, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6177), 4, + anon_sym_DOT, anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, + anon_sym_PIPE, + [164503] = 9, + ACTIONS(3459), 1, + anon_sym_DOT, + ACTIONS(6380), 1, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [167408] = 2, + ACTIONS(6422), 1, + anon_sym_LPAREN, + ACTIONS(6424), 1, + anon_sym_COLON, + ACTIONS(6426), 1, + sym__newline, + STATE(3789), 1, + aux_sym_class_definition_repeat2, + STATE(5461), 1, + sym_argument_list, + STATE(5462), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4316), 9, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + [164532] = 5, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(6428), 1, anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [167424] = 2, + STATE(3970), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4263), 8, - anon_sym_DOT, + ACTIONS(6206), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [167439] = 6, - ACTIONS(5946), 1, + [164553] = 5, + ACTIONS(5826), 1, anon_sym_as, - ACTIONS(5948), 1, - anon_sym_if, - ACTIONS(5954), 1, + ACTIONS(5838), 1, anon_sym_and, - ACTIONS(5956), 1, + ACTIONS(5840), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4251), 4, + ACTIONS(6404), 5, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [167462] = 6, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + anon_sym_RBRACE, + [164574] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6432), 1, + anon_sym_COMMA, + STATE(4405), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6340), 4, + ACTIONS(6430), 2, sym__newline, anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - [167485] = 9, - ACTIONS(6219), 1, + [164601] = 7, + ACTIONS(2513), 1, + anon_sym_except, + ACTIONS(2517), 1, + anon_sym_except_STAR, + ACTIONS(6434), 1, + anon_sym_finally, + STATE(1515), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(727), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(728), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [164626] = 6, + ACTIONS(6220), 1, anon_sym_as, - ACTIONS(6221), 1, + ACTIONS(6222), 1, anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(6226), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(6228), 1, anon_sym_or, - ACTIONS(6351), 1, - anon_sym_COMMA, - ACTIONS(6353), 1, - anon_sym_COLON, - ACTIONS(6355), 1, - anon_sym_RBRACK, - STATE(4738), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167514] = 5, - ACTIONS(5954), 1, + ACTIONS(6436), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [164649] = 9, + ACTIONS(6261), 1, + anon_sym_as, + ACTIONS(6263), 1, + anon_sym_if, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(5956), 1, + ACTIONS(6267), 1, anon_sym_or, - ACTIONS(6357), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4367), 5, + ACTIONS(6438), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(6440), 1, + anon_sym_COLON, + ACTIONS(6442), 1, anon_sym_RBRACK, - [167535] = 2, + STATE(4620), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4199), 8, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + [164678] = 9, + ACTIONS(6386), 1, + anon_sym_except, + ACTIONS(6388), 1, + anon_sym_with, + ACTIONS(6390), 1, + anon_sym_nogil, + ACTIONS(6392), 1, + anon_sym_noexcept, + ACTIONS(6444), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [167550] = 9, - ACTIONS(6229), 1, + ACTIONS(6446), 1, + sym__newline, + STATE(3736), 1, + sym_gil_spec, + STATE(4163), 1, + sym_exception_value, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164707] = 9, + ACTIONS(6236), 1, anon_sym_LPAREN, - ACTIONS(6235), 1, + ACTIONS(6242), 1, anon_sym_LBRACK, - ACTIONS(6360), 1, - sym_identifier, - ACTIONS(6362), 1, + ACTIONS(6412), 1, sym_string_start, - STATE(2792), 1, + ACTIONS(6448), 1, + sym_identifier, + STATE(566), 1, sym_c_function_definition, - STATE(3775), 1, + STATE(3797), 1, sym_c_parameters, - STATE(3996), 1, + STATE(4071), 1, sym_string, - STATE(5033), 1, + STATE(5079), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167579] = 5, - ACTIONS(4205), 1, - anon_sym_as, - ACTIONS(5954), 1, - anon_sym_and, - ACTIONS(5956), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4203), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [167600] = 5, - ACTIONS(5984), 1, - anon_sym_and, - ACTIONS(5986), 1, - anon_sym_or, - ACTIONS(6364), 1, - anon_sym_as, + [164736] = 9, + ACTIONS(6386), 1, + anon_sym_except, + ACTIONS(6388), 1, + anon_sym_with, + ACTIONS(6390), 1, + anon_sym_nogil, + ACTIONS(6392), 1, + anon_sym_noexcept, + ACTIONS(6450), 1, + anon_sym_COLON, + ACTIONS(6452), 1, + sym__newline, + STATE(3762), 1, + sym_gil_spec, + STATE(4173), 1, + sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4367), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [167621] = 9, - ACTIONS(6219), 1, + [164765] = 9, + ACTIONS(6261), 1, anon_sym_as, - ACTIONS(6221), 1, + ACTIONS(6263), 1, anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(6267), 1, anon_sym_or, - ACTIONS(6353), 1, + ACTIONS(6440), 1, anon_sym_COLON, - ACTIONS(6367), 1, + ACTIONS(6454), 1, anon_sym_COMMA, - ACTIONS(6369), 1, + ACTIONS(6456), 1, anon_sym_RBRACK, - STATE(4970), 1, + STATE(4664), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167650] = 9, - ACTIONS(3440), 1, + [164794] = 9, + ACTIONS(3459), 1, anon_sym_DOT, - ACTIONS(6371), 1, + ACTIONS(6380), 1, + anon_sym_LBRACK, + ACTIONS(6458), 1, anon_sym_LPAREN, - ACTIONS(6373), 1, + ACTIONS(6460), 1, anon_sym_COLON, - ACTIONS(6375), 1, + ACTIONS(6462), 1, + sym__newline, + STATE(3129), 1, + aux_sym_class_definition_repeat2, + STATE(5215), 1, + sym_argument_list, + STATE(5216), 1, + sym_external_definition, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164823] = 9, + ACTIONS(3459), 1, + anon_sym_DOT, + ACTIONS(6380), 1, anon_sym_LBRACK, - ACTIONS(6377), 1, + ACTIONS(6464), 1, + anon_sym_LPAREN, + ACTIONS(6466), 1, + anon_sym_COLON, + ACTIONS(6468), 1, sym__newline, - STATE(3162), 1, + STATE(3129), 1, aux_sym_class_definition_repeat2, - STATE(5271), 1, + STATE(5391), 1, sym_argument_list, - STATE(5273), 1, + STATE(5407), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167679] = 9, - ACTIONS(3440), 1, + [164852] = 9, + ACTIONS(3459), 1, anon_sym_DOT, - ACTIONS(6375), 1, + ACTIONS(6380), 1, anon_sym_LBRACK, - ACTIONS(6379), 1, + ACTIONS(6470), 1, anon_sym_LPAREN, - ACTIONS(6381), 1, + ACTIONS(6472), 1, anon_sym_COLON, - ACTIONS(6383), 1, + ACTIONS(6474), 1, sym__newline, - STATE(3742), 1, + STATE(3751), 1, aux_sym_class_definition_repeat2, - STATE(5286), 1, + STATE(5296), 1, sym_argument_list, - STATE(5287), 1, + STATE(5338), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167708] = 9, - ACTIONS(6229), 1, + [164881] = 7, + ACTIONS(2469), 1, + anon_sym_except, + ACTIONS(2489), 1, + anon_sym_except_STAR, + ACTIONS(6476), 1, + anon_sym_finally, + STATE(1593), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(714), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(723), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [164906] = 9, + ACTIONS(6261), 1, + anon_sym_as, + ACTIONS(6263), 1, + anon_sym_if, + ACTIONS(6265), 1, + anon_sym_and, + ACTIONS(6267), 1, + anon_sym_or, + ACTIONS(6440), 1, + anon_sym_COLON, + ACTIONS(6478), 1, + anon_sym_COMMA, + ACTIONS(6480), 1, + anon_sym_RBRACK, + STATE(4696), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164935] = 9, + ACTIONS(6236), 1, anon_sym_LPAREN, - ACTIONS(6235), 1, + ACTIONS(6242), 1, anon_sym_LBRACK, - ACTIONS(6362), 1, + ACTIONS(6412), 1, sym_string_start, - ACTIONS(6385), 1, + ACTIONS(6482), 1, sym_identifier, - STATE(2790), 1, + STATE(1185), 1, sym_c_function_definition, - STATE(3775), 1, + STATE(3748), 1, sym_c_parameters, - STATE(4042), 1, + STATE(4138), 1, sym_string, - STATE(5033), 1, + STATE(5189), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167737] = 9, - ACTIONS(6219), 1, + [164964] = 9, + ACTIONS(6386), 1, + anon_sym_except, + ACTIONS(6392), 1, + anon_sym_noexcept, + ACTIONS(6398), 1, + anon_sym_with, + ACTIONS(6400), 1, + anon_sym_nogil, + ACTIONS(6484), 1, + anon_sym_COLON, + ACTIONS(6486), 1, + sym__newline, + STATE(4184), 1, + sym_exception_value, + STATE(5001), 1, + sym_gil_spec, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164993] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6221), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(5767), 1, anon_sym_or, - ACTIONS(6353), 1, - anon_sym_COLON, - ACTIONS(6387), 1, + ACTIONS(6179), 1, anon_sym_COMMA, - ACTIONS(6389), 1, - anon_sym_RBRACK, - STATE(4768), 1, - aux_sym_subscript_repeat1, + STATE(4389), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167766] = 6, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + ACTIONS(6175), 2, + sym__newline, + anon_sym_SEMI, + [165020] = 6, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4536), 4, + ACTIONS(3564), 4, sym__newline, anon_sym_COLON, anon_sym_with, anon_sym_nogil, - [167789] = 9, - ACTIONS(6219), 1, + [165043] = 9, + ACTIONS(6261), 1, anon_sym_as, - ACTIONS(6221), 1, + ACTIONS(6263), 1, anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(6267), 1, anon_sym_or, - ACTIONS(6353), 1, + ACTIONS(6440), 1, anon_sym_COLON, - ACTIONS(6391), 1, + ACTIONS(6488), 1, anon_sym_COMMA, - ACTIONS(6393), 1, + ACTIONS(6490), 1, anon_sym_RBRACK, - STATE(4784), 1, + STATE(4720), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167818] = 4, - ACTIONS(4213), 1, - anon_sym_as, - ACTIONS(5954), 1, - anon_sym_and, + [165072] = 7, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(6249), 1, + sym_identifier, + STATE(4831), 1, + sym_type_index, + STATE(5409), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4211), 6, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_or, - [167837] = 9, - ACTIONS(6219), 1, - anon_sym_as, - ACTIONS(6221), 1, - anon_sym_if, - ACTIONS(6223), 1, - anon_sym_and, - ACTIONS(6225), 1, - anon_sym_or, - ACTIONS(6353), 1, + ACTIONS(4821), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4823), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [165097] = 9, + ACTIONS(3459), 1, + anon_sym_DOT, + ACTIONS(6380), 1, + anon_sym_LBRACK, + ACTIONS(6492), 1, + anon_sym_LPAREN, + ACTIONS(6494), 1, anon_sym_COLON, - ACTIONS(6395), 1, - anon_sym_COMMA, - ACTIONS(6397), 1, - anon_sym_RBRACK, - STATE(4793), 1, - aux_sym_subscript_repeat1, + ACTIONS(6496), 1, + sym__newline, + STATE(3129), 1, + aux_sym_class_definition_repeat2, + STATE(5377), 1, + sym_argument_list, + STATE(5378), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167866] = 5, - ACTIONS(4205), 1, - anon_sym_as, - ACTIONS(5984), 1, - anon_sym_and, - ACTIONS(5986), 1, - anon_sym_or, + [165126] = 9, + ACTIONS(6386), 1, + anon_sym_except, + ACTIONS(6392), 1, + anon_sym_noexcept, + ACTIONS(6398), 1, + anon_sym_with, + ACTIONS(6400), 1, + anon_sym_nogil, + ACTIONS(6406), 1, + anon_sym_COLON, + ACTIONS(6408), 1, + sym__newline, + STATE(4172), 1, + sym_exception_value, + STATE(5115), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4203), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [167887] = 5, - ACTIONS(5976), 1, + [165155] = 6, + ACTIONS(5985), 1, anon_sym_as, - ACTIONS(5984), 1, + ACTIONS(5987), 1, + anon_sym_if, + ACTIONS(5993), 1, anon_sym_and, - ACTIONS(5986), 1, + ACTIONS(5995), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6399), 5, + ACTIONS(4272), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - [167908] = 4, - ACTIONS(4213), 1, + [165178] = 6, + ACTIONS(5826), 1, anon_sym_as, - ACTIONS(5984), 1, + ACTIONS(5828), 1, + anon_sym_if, + ACTIONS(5838), 1, anon_sym_and, + ACTIONS(5840), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4211), 6, - anon_sym_RPAREN, + ACTIONS(6498), 4, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_or, - [167927] = 5, - ACTIONS(5976), 1, + anon_sym_RBRACE, + [165201] = 5, + ACTIONS(5826), 1, anon_sym_as, - ACTIONS(5984), 1, + ACTIONS(5838), 1, anon_sym_and, - ACTIONS(5986), 1, + ACTIONS(5840), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6399), 5, - anon_sym_RPAREN, + ACTIONS(6404), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [167948] = 9, - ACTIONS(3440), 1, + anon_sym_RBRACE, + [165222] = 5, + ACTIONS(5479), 1, anon_sym_DOT, - ACTIONS(6375), 1, - anon_sym_LBRACK, - ACTIONS(6401), 1, - anon_sym_LPAREN, - ACTIONS(6403), 1, - anon_sym_COLON, - ACTIONS(6405), 1, - sym__newline, - STATE(3162), 1, + ACTIONS(6500), 1, + anon_sym_EQ, + STATE(3949), 1, aux_sym_class_definition_repeat2, - STATE(5297), 1, - sym_argument_list, - STATE(5298), 1, - sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167977] = 9, - ACTIONS(6407), 1, + ACTIONS(6206), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [165243] = 9, + ACTIONS(6261), 1, + anon_sym_as, + ACTIONS(6263), 1, + anon_sym_if, + ACTIONS(6265), 1, + anon_sym_and, + ACTIONS(6267), 1, + anon_sym_or, + ACTIONS(6440), 1, anon_sym_COLON, - ACTIONS(6409), 1, - anon_sym_except, - ACTIONS(6411), 1, - anon_sym_with, - ACTIONS(6413), 1, - anon_sym_nogil, - ACTIONS(6415), 1, - anon_sym_noexcept, - ACTIONS(6417), 1, - sym__newline, - STATE(3793), 1, - sym_gil_spec, - STATE(4262), 1, - sym_exception_value, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [168006] = 2, + ACTIONS(6502), 1, + anon_sym_COMMA, + ACTIONS(6504), 1, + anon_sym_RBRACK, + STATE(4749), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4316), 8, - anon_sym_DOT, + [165272] = 6, + ACTIONS(6065), 1, anon_sym_as, + ACTIONS(6067), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(6073), 1, anon_sym_and, + ACTIONS(6075), 1, anon_sym_or, - [168021] = 8, - ACTIONS(5733), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4222), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [165295] = 5, + ACTIONS(6073), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(6075), 1, anon_sym_or, - ACTIONS(5789), 1, + ACTIONS(6506), 1, anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(6000), 1, - anon_sym_COMMA, - STATE(4446), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5996), 2, - sym__newline, - anon_sym_SEMI, - [168048] = 9, - ACTIONS(6409), 1, - anon_sym_except, - ACTIONS(6411), 1, - anon_sym_with, - ACTIONS(6413), 1, - anon_sym_nogil, - ACTIONS(6415), 1, - anon_sym_noexcept, - ACTIONS(6419), 1, - anon_sym_COLON, - ACTIONS(6421), 1, - sym__newline, - STATE(3771), 1, - sym_gil_spec, - STATE(4311), 1, - sym_exception_value, + ACTIONS(4238), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [165316] = 5, + ACTIONS(4251), 1, + anon_sym_as, + ACTIONS(6073), 1, + anon_sym_and, + ACTIONS(6075), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168077] = 9, - ACTIONS(6407), 1, - anon_sym_COLON, - ACTIONS(6409), 1, - anon_sym_except, - ACTIONS(6415), 1, - anon_sym_noexcept, - ACTIONS(6417), 1, - sym__newline, - ACTIONS(6423), 1, - anon_sym_with, - ACTIONS(6425), 1, - anon_sym_nogil, - STATE(4262), 1, - sym_exception_value, - STATE(5121), 1, - sym_gil_spec, + ACTIONS(4249), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [165337] = 4, + ACTIONS(4255), 1, + anon_sym_as, + ACTIONS(6073), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168106] = 5, - ACTIONS(5946), 1, + ACTIONS(4253), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_or, + [165356] = 9, + ACTIONS(6261), 1, anon_sym_as, - ACTIONS(5954), 1, + ACTIONS(6263), 1, + anon_sym_if, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(5956), 1, + ACTIONS(6267), 1, anon_sym_or, + ACTIONS(6440), 1, + anon_sym_COLON, + ACTIONS(6509), 1, + anon_sym_COMMA, + ACTIONS(6511), 1, + anon_sym_RBRACK, + STATE(4767), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6399), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [168127] = 7, - ACTIONS(2414), 1, + [165385] = 7, + ACTIONS(2469), 1, anon_sym_except, - ACTIONS(2418), 1, + ACTIONS(2489), 1, anon_sym_except_STAR, - ACTIONS(6427), 1, + ACTIONS(6476), 1, anon_sym_finally, - STATE(1368), 1, + STATE(1330), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(705), 2, + STATE(712), 2, sym_except_clause, aux_sym_try_statement_repeat1, - STATE(706), 2, + STATE(715), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - [168152] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4350), 8, - anon_sym_DOT, + [165410] = 8, + ACTIONS(5761), 1, anon_sym_as, + ACTIONS(5763), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [168167] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6434), 1, - anon_sym_BSLASH, - ACTIONS(6429), 2, - sym_string_end, - anon_sym_LBRACE, - STATE(3751), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6431), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [168190] = 8, - ACTIONS(5733), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(5767), 1, anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(6300), 1, + ACTIONS(6369), 1, anon_sym_COMMA, - STATE(4245), 1, + STATE(4293), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6202), 2, + ACTIONS(5428), 2, sym__newline, anon_sym_SEMI, - [168217] = 9, - ACTIONS(6219), 1, + [165437] = 5, + ACTIONS(5985), 1, anon_sym_as, - ACTIONS(6221), 1, - anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(5993), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(5995), 1, anon_sym_or, - ACTIONS(6353), 1, - anon_sym_COLON, - ACTIONS(6437), 1, - anon_sym_COMMA, - ACTIONS(6439), 1, - anon_sym_RBRACK, - STATE(4796), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [168246] = 9, - ACTIONS(6409), 1, - anon_sym_except, - ACTIONS(6411), 1, - anon_sym_with, - ACTIONS(6413), 1, - anon_sym_nogil, - ACTIONS(6415), 1, - anon_sym_noexcept, - ACTIONS(6441), 1, - anon_sym_COLON, - ACTIONS(6443), 1, - sym__newline, - STATE(3814), 1, - sym_gil_spec, - STATE(4219), 1, - sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168275] = 9, - ACTIONS(6219), 1, + ACTIONS(6404), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [165458] = 9, + ACTIONS(6261), 1, anon_sym_as, - ACTIONS(6221), 1, + ACTIONS(6263), 1, anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(6267), 1, anon_sym_or, - ACTIONS(6353), 1, + ACTIONS(6440), 1, anon_sym_COLON, - ACTIONS(6445), 1, + ACTIONS(6513), 1, anon_sym_COMMA, - ACTIONS(6447), 1, + ACTIONS(6515), 1, anon_sym_RBRACK, - STATE(4606), 1, + STATE(4780), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168304] = 6, - ACTIONS(5733), 1, + [165487] = 8, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, + anon_sym_if, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(5767), 1, anon_sym_or, - ACTIONS(5789), 1, + ACTIONS(6519), 1, + anon_sym_COMMA, + STATE(4371), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6517), 2, + sym__newline, + anon_sym_SEMI, + [165514] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6432), 1, + anon_sym_COMMA, + STATE(4396), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3556), 4, + ACTIONS(6521), 2, sym__newline, - anon_sym_COLON, - anon_sym_with, - anon_sym_nogil, - [168327] = 6, - ACTIONS(5976), 1, + anon_sym_SEMI, + [165541] = 6, + ACTIONS(5985), 1, anon_sym_as, - ACTIONS(5978), 1, + ACTIONS(5987), 1, anon_sym_if, - ACTIONS(5984), 1, + ACTIONS(5993), 1, anon_sym_and, - ACTIONS(5986), 1, + ACTIONS(5995), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4354), 4, + ACTIONS(4264), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_async, anon_sym_for, - [168350] = 7, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(6207), 1, - sym_identifier, - STATE(4820), 1, - sym_type_index, - STATE(5454), 1, - sym_type_qualifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4915), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4917), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [168375] = 4, - ACTIONS(6449), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2615), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(5331), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [168394] = 9, - ACTIONS(6229), 1, + [165564] = 9, + ACTIONS(6236), 1, anon_sym_LPAREN, - ACTIONS(6235), 1, + ACTIONS(6242), 1, anon_sym_LBRACK, - ACTIONS(6362), 1, + ACTIONS(6412), 1, sym_string_start, - ACTIONS(6451), 1, + ACTIONS(6523), 1, sym_identifier, - STATE(564), 1, + STATE(2701), 1, sym_c_function_definition, - STATE(3779), 1, + STATE(3746), 1, sym_c_parameters, - STATE(4113), 1, + STATE(4011), 1, sym_string, - STATE(5085), 1, + STATE(5035), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168423] = 8, - ACTIONS(5733), 1, + [165593] = 5, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6073), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(6075), 1, anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(6300), 1, - anon_sym_COMMA, - STATE(4245), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6453), 2, + ACTIONS(6404), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [165614] = 9, + ACTIONS(3459), 1, + anon_sym_DOT, + ACTIONS(6380), 1, + anon_sym_LBRACK, + ACTIONS(6525), 1, + anon_sym_LPAREN, + ACTIONS(6527), 1, + anon_sym_COLON, + ACTIONS(6529), 1, sym__newline, - anon_sym_SEMI, - [168450] = 5, - ACTIONS(5946), 1, + STATE(3786), 1, + aux_sym_class_definition_repeat2, + STATE(5274), 1, + sym_argument_list, + STATE(5275), 1, + sym_external_definition, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165643] = 6, + ACTIONS(6065), 1, anon_sym_as, - ACTIONS(5954), 1, + ACTIONS(6067), 1, + anon_sym_if, + ACTIONS(6073), 1, anon_sym_and, - ACTIONS(5956), 1, + ACTIONS(6075), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6399), 5, + ACTIONS(4264), 4, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [168471] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4374), 8, - anon_sym_DOT, + [165666] = 9, + ACTIONS(6261), 1, anon_sym_as, + ACTIONS(6263), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(6265), 1, anon_sym_and, + ACTIONS(6267), 1, anon_sym_or, - [168486] = 9, - ACTIONS(6409), 1, - anon_sym_except, - ACTIONS(6415), 1, - anon_sym_noexcept, - ACTIONS(6423), 1, - anon_sym_with, - ACTIONS(6425), 1, - anon_sym_nogil, - ACTIONS(6441), 1, + ACTIONS(6440), 1, anon_sym_COLON, - ACTIONS(6443), 1, - sym__newline, - STATE(4219), 1, - sym_exception_value, - STATE(5125), 1, - sym_gil_spec, + ACTIONS(6531), 1, + anon_sym_COMMA, + ACTIONS(6533), 1, + anon_sym_RBRACK, + STATE(4799), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168515] = 2, + [165695] = 9, + ACTIONS(6236), 1, + anon_sym_LPAREN, + ACTIONS(6242), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + sym_string_start, + ACTIONS(6535), 1, + sym_identifier, + STATE(555), 1, + sym_c_function_definition, + STATE(3797), 1, + sym_c_parameters, + STATE(4025), 1, + sym_string, + STATE(5079), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4378), 8, + [165724] = 9, + ACTIONS(3459), 1, anon_sym_DOT, + ACTIONS(6380), 1, + anon_sym_LBRACK, + ACTIONS(6537), 1, + anon_sym_LPAREN, + ACTIONS(6539), 1, + anon_sym_COLON, + ACTIONS(6541), 1, + sym__newline, + STATE(3129), 1, + aux_sym_class_definition_repeat2, + STATE(5287), 1, + sym_argument_list, + STATE(5288), 1, + sym_external_definition, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165753] = 6, + ACTIONS(5761), 1, anon_sym_as, + ACTIONS(5763), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(5765), 1, anon_sym_and, + ACTIONS(5767), 1, anon_sym_or, - [168530] = 5, - ACTIONS(4003), 1, - anon_sym_DOT, - ACTIONS(6455), 1, - anon_sym_EQ, - STATE(3857), 1, - aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6174), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [168551] = 6, - ACTIONS(5946), 1, + ACTIONS(4545), 4, + sym__newline, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + [165776] = 6, + ACTIONS(6065), 1, anon_sym_as, - ACTIONS(5948), 1, + ACTIONS(6067), 1, anon_sym_if, - ACTIONS(5954), 1, + ACTIONS(6073), 1, anon_sym_and, - ACTIONS(5956), 1, + ACTIONS(6075), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4354), 4, + ACTIONS(4272), 4, anon_sym_COMMA, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [168574] = 9, - ACTIONS(3440), 1, + [165799] = 9, + ACTIONS(3459), 1, anon_sym_DOT, - ACTIONS(6375), 1, + ACTIONS(6380), 1, anon_sym_LBRACK, - ACTIONS(6457), 1, + ACTIONS(6543), 1, anon_sym_LPAREN, - ACTIONS(6459), 1, + ACTIONS(6545), 1, anon_sym_COLON, - ACTIONS(6461), 1, + ACTIONS(6547), 1, sym__newline, - STATE(3162), 1, + STATE(3129), 1, aux_sym_class_definition_repeat2, - STATE(5207), 1, + STATE(5533), 1, sym_argument_list, - STATE(5208), 1, + STATE(5534), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168603] = 6, - ACTIONS(5976), 1, - anon_sym_as, - ACTIONS(5978), 1, - anon_sym_if, - ACTIONS(5984), 1, - anon_sym_and, - ACTIONS(5986), 1, - anon_sym_or, + [165828] = 5, + ACTIONS(6549), 1, + anon_sym_DOT, + ACTIONS(6551), 1, + anon_sym_EQ, + STATE(3988), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4339), 4, - anon_sym_RPAREN, + ACTIONS(6206), 5, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [168626] = 9, - ACTIONS(6409), 1, - anon_sym_except, - ACTIONS(6411), 1, - anon_sym_with, - ACTIONS(6413), 1, - anon_sym_nogil, - ACTIONS(6415), 1, - anon_sym_noexcept, - ACTIONS(6463), 1, - anon_sym_COLON, - ACTIONS(6465), 1, - sym__newline, - STATE(3777), 1, - sym_gil_spec, - STATE(4314), 1, - sym_exception_value, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [168655] = 9, - ACTIONS(6409), 1, - anon_sym_except, - ACTIONS(6415), 1, - anon_sym_noexcept, - ACTIONS(6423), 1, - anon_sym_with, - ACTIONS(6425), 1, - anon_sym_nogil, - ACTIONS(6463), 1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [165849] = 9, + ACTIONS(6261), 1, + anon_sym_as, + ACTIONS(6263), 1, + anon_sym_if, + ACTIONS(6265), 1, + anon_sym_and, + ACTIONS(6267), 1, + anon_sym_or, + ACTIONS(6440), 1, anon_sym_COLON, - ACTIONS(6465), 1, - sym__newline, - STATE(4314), 1, - sym_exception_value, - STATE(4978), 1, - sym_gil_spec, + ACTIONS(6553), 1, + anon_sym_COMMA, + ACTIONS(6555), 1, + anon_sym_RBRACK, + STATE(4549), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168684] = 6, - ACTIONS(6186), 1, + [165878] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6188), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6192), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6194), 1, + ACTIONS(5767), 1, anon_sym_or, + ACTIONS(6369), 1, + anon_sym_COMMA, + STATE(4293), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6467), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [168707] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + ACTIONS(6557), 2, + sym__newline, + anon_sym_SEMI, + [165905] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6300), 1, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6369), 1, anon_sym_COMMA, - STATE(4245), 1, + STATE(4293), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5382), 2, + ACTIONS(6559), 2, sym__newline, anon_sym_SEMI, - [168734] = 8, - ACTIONS(5733), 1, + [165932] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4392), 8, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(5735), 1, anon_sym_or, - ACTIONS(5789), 1, + [165947] = 6, + ACTIONS(5985), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5987), 1, anon_sym_if, - ACTIONS(6471), 1, + ACTIONS(5993), 1, + anon_sym_and, + ACTIONS(5995), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4222), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4444), 1, - aux_sym_assert_statement_repeat1, + anon_sym_async, + anon_sym_for, + [165970] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6469), 2, - sym__newline, - anon_sym_SEMI, - [168761] = 9, - ACTIONS(6409), 1, + ACTIONS(4405), 8, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [165985] = 9, + ACTIONS(6386), 1, anon_sym_except, - ACTIONS(6411), 1, + ACTIONS(6388), 1, anon_sym_with, - ACTIONS(6413), 1, + ACTIONS(6390), 1, anon_sym_nogil, - ACTIONS(6415), 1, + ACTIONS(6392), 1, anon_sym_noexcept, - ACTIONS(6473), 1, + ACTIONS(6561), 1, anon_sym_COLON, - ACTIONS(6475), 1, + ACTIONS(6563), 1, sym__newline, - STATE(3747), 1, + STATE(3827), 1, sym_gil_spec, - STATE(4241), 1, + STATE(4282), 1, sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168790] = 5, - ACTIONS(6477), 1, + [166014] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4327), 8, anon_sym_DOT, - ACTIONS(6479), 1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_EQ, - STATE(3964), 1, - aux_sym_class_definition_repeat2, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [166029] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6174), 5, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4368), 8, + anon_sym_DOT, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [168811] = 9, - ACTIONS(6409), 1, - anon_sym_except, - ACTIONS(6415), 1, - anon_sym_noexcept, - ACTIONS(6423), 1, - anon_sym_with, - ACTIONS(6425), 1, - anon_sym_nogil, - ACTIONS(6481), 1, + anon_sym_if, anon_sym_COLON, - ACTIONS(6483), 1, - sym__newline, - STATE(4201), 1, - sym_exception_value, - STATE(4988), 1, - sym_gil_spec, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [166044] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168840] = 5, - ACTIONS(5946), 1, + ACTIONS(4307), 8, + anon_sym_DOT, anon_sym_as, - ACTIONS(5954), 1, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(5956), 1, anon_sym_or, + [166059] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6399), 5, - anon_sym_COMMA, + ACTIONS(4311), 8, + anon_sym_DOT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [168861] = 9, - ACTIONS(6409), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [166074] = 9, + ACTIONS(6386), 1, anon_sym_except, - ACTIONS(6411), 1, + ACTIONS(6392), 1, + anon_sym_noexcept, + ACTIONS(6398), 1, anon_sym_with, - ACTIONS(6413), 1, + ACTIONS(6400), 1, anon_sym_nogil, - ACTIONS(6415), 1, - anon_sym_noexcept, - ACTIONS(6485), 1, + ACTIONS(6565), 1, anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6567), 1, sym__newline, - STATE(3764), 1, - sym_gil_spec, - STATE(4175), 1, + STATE(4288), 1, sym_exception_value, + STATE(5063), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168890] = 9, - ACTIONS(6229), 1, - anon_sym_LPAREN, - ACTIONS(6235), 1, - anon_sym_LBRACK, - ACTIONS(6362), 1, - sym_string_start, - ACTIONS(6489), 1, - sym_identifier, - STATE(1201), 1, - sym_c_function_definition, - STATE(3746), 1, - sym_c_parameters, - STATE(4006), 1, - sym_string, - STATE(5132), 1, - sym_template_params, + [166103] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(6573), 1, + anon_sym_BSLASH, + ACTIONS(6569), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(3828), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(6571), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [166126] = 4, + ACTIONS(6575), 1, + anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168919] = 9, - ACTIONS(6229), 1, + STATE(2620), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(5341), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [166145] = 9, + ACTIONS(6236), 1, anon_sym_LPAREN, - ACTIONS(6235), 1, + ACTIONS(6242), 1, anon_sym_LBRACK, - ACTIONS(6362), 1, + ACTIONS(6412), 1, sym_string_start, - ACTIONS(6491), 1, + ACTIONS(6577), 1, sym_identifier, - STATE(553), 1, + STATE(2785), 1, sym_c_function_definition, - STATE(3779), 1, + STATE(3746), 1, sym_c_parameters, - STATE(4106), 1, + STATE(4112), 1, sym_string, - STATE(5085), 1, + STATE(5035), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168948] = 7, - ACTIONS(2450), 1, - anon_sym_except, - ACTIONS(2454), 1, - anon_sym_except_STAR, - ACTIONS(6493), 1, - anon_sym_finally, - STATE(1276), 1, - sym_finally_clause, + [166174] = 9, + ACTIONS(3459), 1, + anon_sym_DOT, + ACTIONS(6380), 1, + anon_sym_LBRACK, + ACTIONS(6579), 1, + anon_sym_LPAREN, + ACTIONS(6581), 1, + anon_sym_COLON, + ACTIONS(6583), 1, + sym__newline, + STATE(3750), 1, + aux_sym_class_definition_repeat2, + STATE(5196), 1, + sym_external_definition, + STATE(5395), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(709), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(710), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [168973] = 6, - ACTIONS(5976), 1, - anon_sym_as, - ACTIONS(5978), 1, - anon_sym_if, - ACTIONS(5984), 1, + [166203] = 5, + ACTIONS(5993), 1, anon_sym_and, - ACTIONS(5986), 1, + ACTIONS(5995), 1, anon_sym_or, + ACTIONS(6585), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4251), 4, + ACTIONS(4238), 5, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, - [168996] = 9, - ACTIONS(6219), 1, + [166224] = 9, + ACTIONS(6261), 1, anon_sym_as, - ACTIONS(6221), 1, + ACTIONS(6263), 1, anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(6267), 1, anon_sym_or, - ACTIONS(6353), 1, + ACTIONS(6440), 1, anon_sym_COLON, - ACTIONS(6495), 1, + ACTIONS(6588), 1, anon_sym_COMMA, - ACTIONS(6497), 1, + ACTIONS(6590), 1, anon_sym_RBRACK, - STATE(4655), 1, + STATE(4895), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169025] = 6, - ACTIONS(5946), 1, + [166253] = 5, + ACTIONS(4251), 1, anon_sym_as, - ACTIONS(5948), 1, - anon_sym_if, - ACTIONS(5954), 1, + ACTIONS(5993), 1, anon_sym_and, - ACTIONS(5956), 1, + ACTIONS(5995), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4339), 4, + ACTIONS(4249), 5, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [169048] = 7, - ACTIONS(2414), 1, - anon_sym_except, - ACTIONS(2418), 1, - anon_sym_except_STAR, - ACTIONS(6427), 1, - anon_sym_finally, - STATE(1262), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(715), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(718), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [169073] = 6, - ACTIONS(6499), 1, + [166274] = 4, + ACTIONS(4255), 1, anon_sym_as, - ACTIONS(6501), 1, - anon_sym_if, - ACTIONS(6503), 1, + ACTIONS(5993), 1, anon_sym_and, - ACTIONS(6505), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5998), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [169096] = 9, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(6375), 1, - anon_sym_LBRACK, - ACTIONS(6507), 1, - anon_sym_LPAREN, - ACTIONS(6509), 1, - anon_sym_COLON, - ACTIONS(6511), 1, - sym__newline, - STATE(3796), 1, - aux_sym_class_definition_repeat2, - STATE(5439), 1, - sym_argument_list, - STATE(5440), 1, - sym_external_definition, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169125] = 9, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(6375), 1, - anon_sym_LBRACK, - ACTIONS(6513), 1, - anon_sym_LPAREN, - ACTIONS(6515), 1, - anon_sym_COLON, - ACTIONS(6517), 1, - sym__newline, - STATE(3730), 1, - aux_sym_class_definition_repeat2, - STATE(5368), 1, - sym_argument_list, - STATE(5386), 1, - sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169154] = 5, - ACTIONS(5811), 1, + ACTIONS(4253), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_or, + [166293] = 9, + ACTIONS(6261), 1, anon_sym_as, - ACTIONS(5823), 1, + ACTIONS(6263), 1, + anon_sym_if, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(5825), 1, + ACTIONS(6267), 1, anon_sym_or, + ACTIONS(6440), 1, + anon_sym_COLON, + ACTIONS(6592), 1, + anon_sym_COMMA, + ACTIONS(6594), 1, + anon_sym_RBRACK, + STATE(4580), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6399), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [169175] = 5, - ACTIONS(5976), 1, + [166322] = 5, + ACTIONS(5985), 1, anon_sym_as, - ACTIONS(5984), 1, + ACTIONS(5993), 1, anon_sym_and, - ACTIONS(5986), 1, + ACTIONS(5995), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6399), 5, + ACTIONS(6404), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [169196] = 4, - ACTIONS(6519), 1, + [166343] = 4, + ACTIONS(6596), 1, anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2615), 2, + STATE(2620), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(5331), 5, + ACTIONS(5341), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [169215] = 9, - ACTIONS(6409), 1, - anon_sym_except, - ACTIONS(6415), 1, - anon_sym_noexcept, - ACTIONS(6423), 1, - anon_sym_with, - ACTIONS(6425), 1, - anon_sym_nogil, - ACTIONS(6521), 1, - anon_sym_COLON, - ACTIONS(6523), 1, - sym__newline, - STATE(4304), 1, - sym_exception_value, - STATE(5168), 1, - sym_gil_spec, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169244] = 9, - ACTIONS(6219), 1, - anon_sym_as, - ACTIONS(6221), 1, - anon_sym_if, - ACTIONS(6223), 1, - anon_sym_and, - ACTIONS(6225), 1, - anon_sym_or, - ACTIONS(6353), 1, - anon_sym_COLON, - ACTIONS(6525), 1, - anon_sym_COMMA, - ACTIONS(6527), 1, - anon_sym_RBRACK, - STATE(4686), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169273] = 5, - ACTIONS(5811), 1, + [166362] = 5, + ACTIONS(6065), 1, anon_sym_as, - ACTIONS(5823), 1, + ACTIONS(6073), 1, anon_sym_and, - ACTIONS(5825), 1, + ACTIONS(6075), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6399), 5, + ACTIONS(6404), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [169294] = 9, - ACTIONS(3440), 1, + anon_sym_RBRACK, + [166383] = 9, + ACTIONS(3459), 1, anon_sym_DOT, - ACTIONS(6375), 1, + ACTIONS(6380), 1, anon_sym_LBRACK, - ACTIONS(6529), 1, + ACTIONS(6598), 1, anon_sym_LPAREN, - ACTIONS(6531), 1, + ACTIONS(6600), 1, anon_sym_COLON, - ACTIONS(6533), 1, + ACTIONS(6602), 1, sym__newline, - STATE(3162), 1, + STATE(3729), 1, aux_sym_class_definition_repeat2, - STATE(5518), 1, + STATE(5294), 1, sym_argument_list, - STATE(5521), 1, + STATE(5295), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169323] = 6, - ACTIONS(5811), 1, - anon_sym_as, - ACTIONS(5813), 1, - anon_sym_if, - ACTIONS(5823), 1, - anon_sym_and, - ACTIONS(5825), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6535), 4, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [169346] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6541), 1, - anon_sym_BSLASH, - ACTIONS(6537), 2, - sym_string_end, - anon_sym_LBRACE, - STATE(3751), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6539), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [169369] = 9, - ACTIONS(6219), 1, - anon_sym_as, - ACTIONS(6221), 1, - anon_sym_if, - ACTIONS(6223), 1, - anon_sym_and, - ACTIONS(6225), 1, - anon_sym_or, - ACTIONS(6353), 1, - anon_sym_COLON, - ACTIONS(6543), 1, - anon_sym_COMMA, - ACTIONS(6545), 1, - anon_sym_RBRACK, - STATE(4833), 1, - aux_sym_subscript_repeat1, + [166412] = 7, + ACTIONS(2513), 1, + anon_sym_except, + ACTIONS(2517), 1, + anon_sym_except_STAR, + ACTIONS(6434), 1, + anon_sym_finally, + STATE(1531), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169398] = 6, - ACTIONS(6499), 1, + STATE(730), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(757), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [166437] = 6, + ACTIONS(6414), 1, anon_sym_as, - ACTIONS(6501), 1, + ACTIONS(6416), 1, anon_sym_if, - ACTIONS(6503), 1, + ACTIONS(6418), 1, anon_sym_and, - ACTIONS(6505), 1, + ACTIONS(6420), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4251), 4, + ACTIONS(4222), 4, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [169421] = 5, - ACTIONS(6503), 1, + [166460] = 5, + ACTIONS(6418), 1, anon_sym_and, - ACTIONS(6505), 1, + ACTIONS(6420), 1, anon_sym_or, - ACTIONS(6547), 1, + ACTIONS(6604), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4367), 5, + ACTIONS(4238), 5, anon_sym_DOT, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [169442] = 4, - ACTIONS(6503), 1, + [166481] = 4, + ACTIONS(6418), 1, anon_sym_and, - ACTIONS(6505), 1, + ACTIONS(6420), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4203), 6, + ACTIONS(4249), 6, anon_sym_DOT, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [169461] = 3, - ACTIONS(6503), 1, + [166500] = 3, + ACTIONS(6418), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4211), 7, + ACTIONS(4253), 7, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -247010,22522 +248175,22313 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_PIPE, anon_sym_or, - [169478] = 6, - ACTIONS(6499), 1, + [166517] = 6, + ACTIONS(6414), 1, anon_sym_as, - ACTIONS(6501), 1, + ACTIONS(6416), 1, anon_sym_if, - ACTIONS(6503), 1, + ACTIONS(6418), 1, anon_sym_and, - ACTIONS(6505), 1, + ACTIONS(6420), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4339), 4, + ACTIONS(4264), 4, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [169501] = 6, - ACTIONS(6499), 1, + [166540] = 5, + ACTIONS(5985), 1, anon_sym_as, - ACTIONS(6501), 1, - anon_sym_if, - ACTIONS(6503), 1, + ACTIONS(5993), 1, anon_sym_and, - ACTIONS(6505), 1, + ACTIONS(5995), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4354), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [169524] = 9, - ACTIONS(6229), 1, - anon_sym_LPAREN, - ACTIONS(6235), 1, - anon_sym_LBRACK, - ACTIONS(6362), 1, - sym_string_start, - ACTIONS(6550), 1, - sym_identifier, - STATE(1055), 1, - sym_c_function_definition, - STATE(3746), 1, - sym_c_parameters, - STATE(4020), 1, - sym_string, - STATE(5132), 1, - sym_template_params, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169553] = 9, - ACTIONS(6219), 1, + ACTIONS(6404), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [166561] = 6, + ACTIONS(6414), 1, anon_sym_as, - ACTIONS(6221), 1, + ACTIONS(6416), 1, anon_sym_if, - ACTIONS(6223), 1, - anon_sym_and, - ACTIONS(6225), 1, - anon_sym_or, - ACTIONS(6353), 1, - anon_sym_COLON, - ACTIONS(6552), 1, - anon_sym_COMMA, - ACTIONS(6554), 1, - anon_sym_RBRACK, - STATE(4864), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169582] = 8, - ACTIONS(5733), 1, + ACTIONS(6418), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(6420), 1, anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(6558), 1, - anon_sym_COMMA, - STATE(4365), 1, - aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6556), 2, - sym__newline, - anon_sym_SEMI, - [169609] = 4, - ACTIONS(1144), 1, + ACTIONS(4272), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [166584] = 4, + ACTIONS(1151), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2064), 2, + STATE(2027), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(6560), 5, + ACTIONS(6607), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [169628] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(6300), 1, - anon_sym_COMMA, - STATE(4245), 1, - aux_sym_assert_statement_repeat1, + [166603] = 9, + ACTIONS(6386), 1, + anon_sym_except, + ACTIONS(6388), 1, + anon_sym_with, + ACTIONS(6390), 1, + anon_sym_nogil, + ACTIONS(6392), 1, + anon_sym_noexcept, + ACTIONS(6609), 1, + anon_sym_COLON, + ACTIONS(6611), 1, + sym__newline, + STATE(3732), 1, + sym_gil_spec, + STATE(4181), 1, + sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6562), 2, - sym__newline, - anon_sym_SEMI, - [169655] = 9, - ACTIONS(3440), 1, + [166632] = 9, + ACTIONS(3459), 1, anon_sym_DOT, - ACTIONS(6375), 1, + ACTIONS(6380), 1, anon_sym_LBRACK, - ACTIONS(6564), 1, + ACTIONS(6613), 1, anon_sym_LPAREN, - ACTIONS(6566), 1, + ACTIONS(6615), 1, anon_sym_COLON, - ACTIONS(6568), 1, + ACTIONS(6617), 1, sym__newline, - STATE(3816), 1, + STATE(3761), 1, aux_sym_class_definition_repeat2, - STATE(5266), 1, + STATE(5530), 1, sym_argument_list, - STATE(5267), 1, + STATE(5545), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169684] = 5, - ACTIONS(5811), 1, - anon_sym_as, - ACTIONS(5823), 1, - anon_sym_and, - ACTIONS(5825), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6399), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [169705] = 5, - ACTIONS(5459), 1, - anon_sym_DOT, - ACTIONS(6570), 1, - anon_sym_EQ, - STATE(3929), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6174), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [169726] = 9, - ACTIONS(6409), 1, + [166661] = 9, + ACTIONS(6386), 1, anon_sym_except, - ACTIONS(6415), 1, + ACTIONS(6392), 1, anon_sym_noexcept, - ACTIONS(6423), 1, + ACTIONS(6398), 1, anon_sym_with, - ACTIONS(6425), 1, + ACTIONS(6400), 1, anon_sym_nogil, - ACTIONS(6572), 1, + ACTIONS(6609), 1, anon_sym_COLON, - ACTIONS(6574), 1, + ACTIONS(6611), 1, sym__newline, - STATE(4256), 1, + STATE(4181), 1, sym_exception_value, - STATE(5167), 1, + STATE(5133), 1, sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169755] = 9, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(6375), 1, - anon_sym_LBRACK, - ACTIONS(6576), 1, - anon_sym_LPAREN, - ACTIONS(6578), 1, - anon_sym_COLON, - ACTIONS(6580), 1, - sym__newline, - STATE(3821), 1, - aux_sym_class_definition_repeat2, - STATE(5212), 1, - sym_argument_list, - STATE(5294), 1, - sym_external_definition, - ACTIONS(3), 2, + [166690] = 6, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - [169784] = 9, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(6375), 1, - anon_sym_LBRACK, - ACTIONS(6582), 1, - anon_sym_LPAREN, - ACTIONS(6584), 1, + ACTIONS(6624), 1, + anon_sym_BSLASH, + ACTIONS(6619), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(3828), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(6621), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [166713] = 9, + ACTIONS(6261), 1, + anon_sym_as, + ACTIONS(6263), 1, + anon_sym_if, + ACTIONS(6265), 1, + anon_sym_and, + ACTIONS(6267), 1, + anon_sym_or, + ACTIONS(6440), 1, anon_sym_COLON, - ACTIONS(6586), 1, - sym__newline, - STATE(3162), 1, - aux_sym_class_definition_repeat2, - STATE(5279), 1, - sym_argument_list, - STATE(5280), 1, - sym_external_definition, + ACTIONS(6627), 1, + anon_sym_COMMA, + ACTIONS(6629), 1, + anon_sym_RBRACK, + STATE(4792), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169813] = 9, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(6375), 1, + [166742] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(6588), 1, - anon_sym_LPAREN, - ACTIONS(6590), 1, - anon_sym_COLON, - ACTIONS(6592), 1, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6631), 1, + anon_sym_EQ, + ACTIONS(6633), 1, sym__newline, - STATE(3768), 1, - aux_sym_class_definition_repeat2, - STATE(5188), 1, - sym_external_definition, - STATE(5387), 1, - sym_argument_list, + STATE(4709), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169842] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + STATE(4142), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [166766] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6471), 1, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - STATE(4368), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(6635), 1, + sym__newline, + STATE(4539), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6594), 2, + [166792] = 8, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, + anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6637), 1, sym__newline, - anon_sym_SEMI, - [169869] = 7, - ACTIONS(2450), 1, - anon_sym_except, - ACTIONS(2454), 1, - anon_sym_except_STAR, - ACTIONS(6493), 1, - anon_sym_finally, - STATE(1329), 1, - sym_finally_clause, + STATE(4540), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(711), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(712), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [169894] = 9, - ACTIONS(6219), 1, + [166818] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6221), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(5767), 1, anon_sym_or, - ACTIONS(6353), 1, - anon_sym_COLON, - ACTIONS(6596), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6598), 1, - anon_sym_RBRACK, - STATE(4712), 1, - aux_sym_subscript_repeat1, + ACTIONS(6639), 1, + sym__newline, + STATE(4543), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169923] = 9, - ACTIONS(3440), 1, - anon_sym_DOT, - ACTIONS(6375), 1, + [166844] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(6600), 1, - anon_sym_LPAREN, - ACTIONS(6602), 1, - anon_sym_COLON, - ACTIONS(6604), 1, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6641), 1, + anon_sym_EQ, + ACTIONS(6643), 1, sym__newline, - STATE(3162), 1, - aux_sym_class_definition_repeat2, - STATE(5475), 1, - sym_argument_list, - STATE(5477), 1, - sym_external_definition, + STATE(4546), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169952] = 7, - ACTIONS(3457), 1, + STATE(4142), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [166868] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6239), 1, + ACTIONS(6645), 1, anon_sym_EQ, - ACTIONS(6241), 1, + ACTIONS(6647), 1, sym__newline, - STATE(4819), 1, + STATE(4548), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, + STATE(4142), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [169976] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(5960), 1, + [166892] = 7, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6606), 1, + ACTIONS(6649), 1, + anon_sym_EQ, + ACTIONS(6651), 1, sym__newline, - STATE(4490), 1, + STATE(4551), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170002] = 8, - ACTIONS(6265), 1, - anon_sym_as, - ACTIONS(6267), 1, - anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(6608), 1, + STATE(3844), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [166916] = 7, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6610), 1, - anon_sym_COLON, - STATE(4940), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(6637), 1, + sym__newline, + ACTIONS(6653), 1, + anon_sym_EQ, + STATE(4552), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170028] = 5, - ACTIONS(5976), 1, + STATE(4142), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [166940] = 7, + ACTIONS(2895), 1, + anon_sym_COLON, + ACTIONS(6261), 1, anon_sym_as, - ACTIONS(5984), 1, + ACTIONS(6263), 1, + anon_sym_if, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(5986), 1, + ACTIONS(6267), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6612), 4, - anon_sym_RPAREN, + ACTIONS(2893), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [166964] = 8, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [170048] = 7, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6614), 1, - anon_sym_EQ, - ACTIONS(6616), 1, + ACTIONS(6655), 1, sym__newline, - STATE(4520), 1, + STATE(4583), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [170072] = 6, - ACTIONS(6618), 1, - anon_sym_RPAREN, - ACTIONS(6620), 1, + [166990] = 8, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6623), 1, - anon_sym_async, - ACTIONS(6626), 1, - anon_sym_for, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6657), 1, + sym__newline, + STATE(4585), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3827), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [170094] = 7, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5960), 1, + [167016] = 8, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, + anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6279), 1, - anon_sym_EQ, - ACTIONS(6281), 1, + ACTIONS(6659), 1, sym__newline, - STATE(4728), 1, + STATE(4586), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [170118] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + [167042] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6629), 1, + ACTIONS(6661), 1, sym__newline, - STATE(4741), 1, + STATE(4587), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170144] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + [167068] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6631), 1, + ACTIONS(6663), 1, sym__newline, - STATE(4744), 1, + STATE(4589), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170170] = 7, - ACTIONS(3457), 1, + [167094] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6124), 1, + ACTIONS(6665), 1, anon_sym_EQ, - ACTIONS(6126), 1, + ACTIONS(6667), 1, sym__newline, - STATE(4900), 1, + STATE(4591), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, + STATE(4142), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [170194] = 3, + [167118] = 6, + ACTIONS(5832), 1, + anon_sym_async, + ACTIONS(5834), 1, + anon_sym_for, + ACTIONS(6669), 1, + anon_sym_if, + ACTIONS(6671), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6635), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6633), 5, - anon_sym_COMMA, + STATE(3856), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [167140] = 8, + ACTIONS(5761), 1, anon_sym_as, + ACTIONS(5763), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [170210] = 8, - ACTIONS(6637), 1, - anon_sym_RPAREN, - ACTIONS(6639), 1, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(6673), 1, + sym__newline, + STATE(4611), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167166] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(5767), 1, anon_sym_or, - STATE(4734), 1, - aux_sym_argument_list_repeat1, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6675), 1, + sym__newline, + STATE(4613), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170236] = 7, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5960), 1, + [167192] = 8, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, + anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6649), 1, - anon_sym_EQ, - ACTIONS(6651), 1, + ACTIONS(6677), 1, sym__newline, - STATE(4957), 1, + STATE(4615), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3871), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [170260] = 8, - ACTIONS(5733), 1, + [167218] = 8, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, + anon_sym_if, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(5767), 1, anon_sym_or, - ACTIONS(5789), 1, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6679), 1, + sym__newline, + STATE(4619), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167244] = 4, + ACTIONS(1312), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2180), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(6607), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(5791), 1, + anon_sym_PIPE, + [167262] = 8, + ACTIONS(6287), 1, + anon_sym_as, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(6681), 1, anon_sym_COMMA, - ACTIONS(6653), 1, - sym__newline, - STATE(4770), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6683), 1, + anon_sym_COLON, + STATE(4868), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170286] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + [167288] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6616), 1, + ACTIONS(6685), 1, sym__newline, - STATE(4933), 1, + STATE(4628), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170312] = 8, - ACTIONS(5733), 1, + [167314] = 8, + ACTIONS(3592), 1, + anon_sym_RPAREN, + ACTIONS(3594), 1, + anon_sym_COMMA, + ACTIONS(6687), 1, + anon_sym_as, + ACTIONS(6689), 1, + anon_sym_if, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(6693), 1, anon_sym_or, - ACTIONS(5789), 1, + STATE(4937), 1, + aux_sym__typedargslist_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167340] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6655), 1, + ACTIONS(6695), 1, sym__newline, - STATE(4562), 1, + STATE(4944), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170338] = 8, - ACTIONS(5733), 1, + [167366] = 5, + ACTIONS(5826), 1, + anon_sym_as, + ACTIONS(5838), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(5840), 1, anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6697), 4, anon_sym_if, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6657), 1, - sym__newline, - STATE(4563), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [167386] = 6, + ACTIONS(6699), 1, + anon_sym_if, + ACTIONS(6702), 1, + anon_sym_async, + ACTIONS(6705), 1, + anon_sym_for, + ACTIONS(6708), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170364] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + STATE(3856), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [167408] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6659), 1, + ACTIONS(6710), 1, sym__newline, - STATE(4577), 1, + STATE(4499), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170390] = 8, - ACTIONS(6092), 1, + [167434] = 8, + ACTIONS(3582), 1, anon_sym_RPAREN, - ACTIONS(6094), 1, + ACTIONS(3584), 1, anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(6687), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(6689), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(6693), 1, anon_sym_or, - STATE(4709), 1, - aux_sym_argument_list_repeat1, + STATE(4853), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170416] = 7, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5960), 1, + [167460] = 8, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(6714), 1, + anon_sym_LPAREN, + ACTIONS(6716), 1, + anon_sym_STAR, + STATE(4203), 1, + sym_dotted_name, + STATE(4458), 1, + sym_aliased_import, + STATE(4982), 1, + sym__import_list, + STATE(5005), 1, + sym_wildcard_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167486] = 8, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, + anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6661), 1, - anon_sym_EQ, - ACTIONS(6663), 1, + ACTIONS(6718), 1, sym__newline, - STATE(4615), 1, + STATE(4504), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [170440] = 8, - ACTIONS(6076), 1, - anon_sym_RPAREN, - ACTIONS(6078), 1, - anon_sym_COMMA, - ACTIONS(6641), 1, + [167512] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(5767), 1, anon_sym_or, - STATE(4683), 1, - aux_sym_argument_list_repeat1, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6720), 1, + sym__newline, + STATE(4505), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170466] = 8, - ACTIONS(5733), 1, + [167538] = 5, + ACTIONS(5985), 1, + anon_sym_as, + ACTIONS(5993), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(5995), 1, anon_sym_or, - ACTIONS(5789), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6697), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [167558] = 6, + ACTIONS(6708), 1, + anon_sym_RPAREN, + ACTIONS(6722), 1, + anon_sym_if, + ACTIONS(6725), 1, + anon_sym_async, + ACTIONS(6728), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3863), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [167580] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6325), 1, - sym__newline, - ACTIONS(6665), 1, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - STATE(4787), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(6731), 1, + sym__newline, + STATE(4520), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170492] = 7, - ACTIONS(3457), 1, + [167606] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6306), 1, + ACTIONS(6733), 1, anon_sym_EQ, - ACTIONS(6308), 1, + ACTIONS(6735), 1, sym__newline, - STATE(4965), 1, + STATE(4526), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, + STATE(4142), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [170516] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(5960), 1, + [167630] = 8, + ACTIONS(5832), 1, + anon_sym_async, + ACTIONS(5834), 1, + anon_sym_for, + ACTIONS(6737), 1, anon_sym_COMMA, - ACTIONS(6667), 1, - sym__newline, - STATE(4564), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170542] = 6, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, + ACTIONS(6739), 1, + anon_sym_RBRACE, + STATE(3975), 1, + sym_for_in_clause, + STATE(4494), 1, + aux_sym_dictionary_repeat1, + STATE(5302), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6669), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [170564] = 8, - ACTIONS(6265), 1, + [167656] = 5, + ACTIONS(6065), 1, anon_sym_as, - ACTIONS(6267), 1, - anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6073), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6075), 1, anon_sym_or, - ACTIONS(6608), 1, - anon_sym_COMMA, - ACTIONS(6671), 1, - anon_sym_COLON, - STATE(4940), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170590] = 6, - ACTIONS(5817), 1, + ACTIONS(6697), 4, + anon_sym_if, anon_sym_async, - ACTIONS(5819), 1, anon_sym_for, - ACTIONS(6673), 1, + anon_sym_RBRACK, + [167676] = 6, + ACTIONS(6708), 1, + anon_sym_RBRACK, + ACTIONS(6741), 1, anon_sym_if, - ACTIONS(6675), 1, - anon_sym_RBRACE, + ACTIONS(6744), 1, + anon_sym_async, + ACTIONS(6747), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3928), 3, + STATE(3868), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [170612] = 7, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6677), 1, - anon_sym_EQ, - ACTIONS(6679), 1, - sym__newline, - STATE(4777), 1, - aux_sym_cvar_decl_repeat2, + [167698] = 4, + ACTIONS(2253), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3888), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [170636] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + STATE(2109), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(6607), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(5791), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [167716] = 6, + ACTIONS(5989), 1, + anon_sym_async, + ACTIONS(5991), 1, + anon_sym_for, + ACTIONS(6671), 1, + anon_sym_RPAREN, + ACTIONS(6750), 1, anon_sym_if, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6681), 1, - sym__newline, - STATE(4754), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170662] = 8, - ACTIONS(6202), 1, - anon_sym_RPAREN, - ACTIONS(6641), 1, + STATE(3863), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [167738] = 8, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(6293), 1, anon_sym_or, - ACTIONS(6683), 1, + ACTIONS(6681), 1, anon_sym_COMMA, - STATE(4556), 1, + ACTIONS(6752), 1, + anon_sym_COLON, + STATE(4868), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170688] = 7, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5960), 1, + [167764] = 8, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, + anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6685), 1, - anon_sym_EQ, - ACTIONS(6687), 1, + ACTIONS(6754), 1, sym__newline, - STATE(4809), 1, + STATE(4660), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [170712] = 7, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5960), 1, + [167790] = 8, + ACTIONS(5832), 1, + anon_sym_async, + ACTIONS(5834), 1, + anon_sym_for, + ACTIONS(6756), 1, anon_sym_COMMA, - ACTIONS(6689), 1, - anon_sym_EQ, - ACTIONS(6691), 1, - sym__newline, - STATE(4876), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6758), 1, + anon_sym_RBRACE, + STATE(3975), 1, + sym_for_in_clause, + STATE(4816), 1, + aux_sym_dictionary_repeat1, + STATE(5392), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3916), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [170736] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + [167816] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6693), 1, + ACTIONS(6760), 1, sym__newline, - STATE(4565), 1, + STATE(4666), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170762] = 4, - ACTIONS(1301), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2192), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(6560), 4, + [167842] = 8, + ACTIONS(6141), 1, anon_sym_RPAREN, + ACTIONS(6143), 1, anon_sym_COMMA, + ACTIONS(6687), 1, anon_sym_as, - anon_sym_PIPE, - [170780] = 8, - ACTIONS(5733), 1, + ACTIONS(6689), 1, + anon_sym_if, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(6693), 1, anon_sym_or, - ACTIONS(5789), 1, + STATE(4521), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167868] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6695), 1, + ACTIONS(6762), 1, sym__newline, - STATE(4497), 1, + STATE(4674), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170806] = 4, - ACTIONS(4003), 1, - anon_sym_DOT, - STATE(3120), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6200), 5, - anon_sym_LPAREN, + [167894] = 8, + ACTIONS(6145), 1, anon_sym_RPAREN, + ACTIONS(6147), 1, anon_sym_COMMA, + ACTIONS(6687), 1, anon_sym_as, - anon_sym_PIPE, - [170824] = 8, - ACTIONS(5733), 1, + ACTIONS(6689), 1, + anon_sym_if, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(6693), 1, anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(6320), 1, - sym__newline, - ACTIONS(6697), 1, - anon_sym_COMMA, - STATE(4845), 1, - aux_sym_cvar_def_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170850] = 4, - ACTIONS(5459), 1, - anon_sym_DOT, - STATE(3929), 1, - aux_sym_class_definition_repeat2, + STATE(4542), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6174), 5, - anon_sym_LPAREN, - anon_sym_COMMA, + [167920] = 8, + ACTIONS(5761), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [170868] = 8, - ACTIONS(5733), 1, + ACTIONS(5763), 1, + anon_sym_if, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(5767), 1, anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6699), 1, + ACTIONS(6319), 1, sym__newline, - STATE(4667), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6764), 1, + anon_sym_COMMA, + STATE(4917), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170894] = 8, - ACTIONS(6641), 1, + [167946] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(5767), 1, anon_sym_or, - ACTIONS(6701), 1, - anon_sym_RPAREN, - ACTIONS(6703), 1, + ACTIONS(6269), 1, + sym__newline, + ACTIONS(6766), 1, anon_sym_COMMA, - STATE(4780), 1, - aux_sym_argument_list_repeat1, + STATE(4692), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170920] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(5960), 1, + [167972] = 7, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6705), 1, + ACTIONS(6768), 1, + anon_sym_EQ, + ACTIONS(6770), 1, sym__newline, - STATE(4579), 1, + STATE(4699), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170946] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(5960), 1, + STATE(4142), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [167996] = 7, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6257), 1, + ACTIONS(6772), 1, + anon_sym_EQ, + ACTIONS(6774), 1, sym__newline, - STATE(4811), 1, + STATE(4923), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170972] = 8, - ACTIONS(6265), 1, - anon_sym_as, - ACTIONS(6267), 1, - anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(6608), 1, + STATE(3888), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [168020] = 7, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6707), 1, - anon_sym_COLON, - STATE(4940), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(6137), 1, + anon_sym_EQ, + ACTIONS(6139), 1, + sym__newline, + STATE(4924), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170998] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6709), 1, - sym__newline, - STATE(4499), 1, - aux_sym_cvar_decl_repeat2, + STATE(4142), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [168044] = 4, + ACTIONS(3995), 1, + anon_sym_DOT, + STATE(3970), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171024] = 8, - ACTIONS(6219), 1, + ACTIONS(6206), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6221), 1, + anon_sym_PIPE, + [168062] = 8, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(5767), 1, anon_sym_or, - ACTIONS(6711), 1, + ACTIONS(6259), 1, + sym__newline, + ACTIONS(6776), 1, anon_sym_COMMA, - ACTIONS(6713), 1, - anon_sym_RBRACK, - STATE(4619), 1, - aux_sym_type_index_repeat1, + STATE(4703), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171050] = 8, - ACTIONS(3568), 1, - anon_sym_RPAREN, - ACTIONS(3570), 1, + [168088] = 6, + ACTIONS(4825), 1, + anon_sym_LBRACK, + ACTIONS(6780), 1, + anon_sym_EQ, + STATE(4319), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6778), 2, anon_sym_COMMA, - ACTIONS(6641), 1, + anon_sym_COLON, + ACTIONS(6782), 2, + anon_sym_not, + anon_sym_or, + [168110] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(5767), 1, anon_sym_or, - STATE(4931), 1, - aux_sym__typedargslist_repeat1, + ACTIONS(6321), 1, + sym__newline, + ACTIONS(6784), 1, + anon_sym_COMMA, + STATE(4959), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171076] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + [168136] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6715), 1, + ACTIONS(6329), 1, sym__newline, - STATE(4555), 1, + STATE(4960), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171102] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(5960), 1, + [168162] = 7, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6717), 1, + ACTIONS(6323), 1, + anon_sym_EQ, + ACTIONS(6325), 1, sym__newline, - STATE(4583), 1, + STATE(4962), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171128] = 6, - ACTIONS(5817), 1, - anon_sym_async, - ACTIONS(5819), 1, - anon_sym_for, - ACTIONS(6673), 1, - anon_sym_if, - ACTIONS(6719), 1, - anon_sym_RBRACE, + STATE(4142), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [168186] = 7, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6786), 1, + anon_sym_EQ, + ACTIONS(6788), 1, + sym__newline, + STATE(4967), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3848), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [171150] = 7, - ACTIONS(3457), 1, + STATE(3895), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [168210] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6243), 1, + ACTIONS(6327), 1, anon_sym_EQ, - ACTIONS(6245), 1, + ACTIONS(6329), 1, sym__newline, - STATE(4501), 1, + STATE(4968), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, + STATE(4142), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171174] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + [168234] = 8, + ACTIONS(6261), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(6263), 1, anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(6265), 1, + anon_sym_and, + ACTIONS(6267), 1, + anon_sym_or, + ACTIONS(6790), 1, anon_sym_COMMA, - ACTIONS(6721), 1, - sym__newline, - STATE(4585), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6792), 1, + anon_sym_RBRACK, + STATE(4502), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171200] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(5960), 1, + [168260] = 7, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6723), 1, + ACTIONS(6794), 1, + anon_sym_EQ, + ACTIONS(6796), 1, sym__newline, - STATE(4576), 1, + STATE(4734), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171226] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + STATE(3959), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [168284] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6725), 1, + ACTIONS(6798), 1, sym__newline, - STATE(4633), 1, + STATE(4508), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171252] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + [168310] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6727), 1, + ACTIONS(6800), 1, sym__newline, - STATE(4482), 1, + STATE(4510), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171278] = 7, - ACTIONS(3457), 1, + [168336] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6729), 1, + ACTIONS(6333), 1, anon_sym_EQ, - ACTIONS(6731), 1, + ACTIONS(6335), 1, sym__newline, - STATE(4850), 1, + STATE(4512), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3828), 2, + STATE(4142), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171302] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(5960), 1, + [168360] = 7, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6733), 1, + ACTIONS(6802), 1, + anon_sym_EQ, + ACTIONS(6804), 1, sym__newline, - STATE(4660), 1, + STATE(4513), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171328] = 7, - ACTIONS(3457), 1, + STATE(3905), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [168384] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6255), 1, - anon_sym_EQ, - ACTIONS(6257), 1, + ACTIONS(6798), 1, sym__newline, - STATE(4858), 1, + ACTIONS(6806), 1, + anon_sym_EQ, + STATE(4514), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, + STATE(4142), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171352] = 7, - ACTIONS(3457), 1, + [168408] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6735), 1, + ACTIONS(6808), 1, anon_sym_EQ, - ACTIONS(6737), 1, + ACTIONS(6810), 1, sym__newline, - STATE(4504), 1, + STATE(4515), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3915), 2, + STATE(3906), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171376] = 7, - ACTIONS(3457), 1, + [168432] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6695), 1, + ACTIONS(6800), 1, sym__newline, - ACTIONS(6739), 1, + ACTIONS(6812), 1, anon_sym_EQ, - STATE(4505), 1, + STATE(4516), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, + STATE(4142), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171400] = 6, - ACTIONS(5980), 1, - anon_sym_async, - ACTIONS(5982), 1, - anon_sym_for, - ACTIONS(6719), 1, - anon_sym_RPAREN, - ACTIONS(6741), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3900), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [171422] = 7, - ACTIONS(3457), 1, + [168456] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6316), 1, + ACTIONS(6099), 1, anon_sym_EQ, - ACTIONS(6318), 1, + ACTIONS(6101), 1, sym__newline, - STATE(4959), 1, + STATE(4737), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, + STATE(4142), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171446] = 4, - ACTIONS(2124), 1, - sym_string_start, + [168480] = 8, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, + anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6814), 1, + sym__newline, + STATE(4593), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2020), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(6560), 4, - anon_sym_COMMA, + [168506] = 8, + ACTIONS(5761), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [171464] = 7, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(5763), 1, + anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6743), 1, - anon_sym_EQ, - ACTIONS(6745), 1, + ACTIONS(6816), 1, sym__newline, - STATE(4631), 1, + STATE(4535), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [171488] = 7, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5960), 1, + [168532] = 8, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, + anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6747), 1, - anon_sym_EQ, - ACTIONS(6749), 1, + ACTIONS(6818), 1, sym__newline, - STATE(4506), 1, + STATE(4536), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3917), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [171512] = 7, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5960), 1, + [168558] = 8, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, + anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6709), 1, + ACTIONS(6820), 1, sym__newline, - ACTIONS(6751), 1, - anon_sym_EQ, - STATE(4507), 1, + STATE(4537), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [171536] = 7, - ACTIONS(3457), 1, + [168584] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6753), 1, + ACTIONS(6822), 1, anon_sym_EQ, - ACTIONS(6755), 1, + ACTIONS(6824), 1, sym__newline, - STATE(4907), 1, + STATE(4538), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3977), 2, + STATE(4142), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171560] = 7, - ACTIONS(3457), 1, + [168608] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6757), 1, + ACTIONS(6826), 1, anon_sym_EQ, - ACTIONS(6759), 1, + ACTIONS(6828), 1, sym__newline, - STATE(4735), 1, + STATE(4541), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, + STATE(4142), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171584] = 7, - ACTIONS(3457), 1, + [168632] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6761), 1, + ACTIONS(6830), 1, anon_sym_EQ, - ACTIONS(6763), 1, + ACTIONS(6832), 1, sym__newline, - STATE(4881), 1, + STATE(4544), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, + STATE(3918), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171608] = 7, - ACTIONS(3457), 1, + [168656] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(5992), 1, - anon_sym_EQ, - ACTIONS(5994), 1, + ACTIONS(6818), 1, sym__newline, - STATE(4908), 1, + ACTIONS(6834), 1, + anon_sym_EQ, + STATE(4545), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, + STATE(4142), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171632] = 8, - ACTIONS(6068), 1, - anon_sym_RPAREN, - ACTIONS(6070), 1, - anon_sym_COMMA, - ACTIONS(6641), 1, + [168680] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(5767), 1, anon_sym_or, - STATE(4855), 1, - aux_sym_argument_list_repeat1, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6836), 1, + sym__newline, + STATE(4601), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171658] = 2, + [168706] = 8, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, + anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6838), 1, + sym__newline, + STATE(4604), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4195), 7, - sym__newline, - anon_sym_SEMI, + [168732] = 8, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, + anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_LBRACK, - [171672] = 3, + ACTIONS(6840), 1, + sym__newline, + STATE(4614), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6560), 5, - anon_sym_COMMA, + [168758] = 7, + ACTIONS(6261), 1, anon_sym_as, + ACTIONS(6263), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [171688] = 5, - ACTIONS(5946), 1, - anon_sym_as, - ACTIONS(5954), 1, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(5956), 1, + ACTIONS(6267), 1, anon_sym_or, + ACTIONS(6842), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6612), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [171708] = 6, - ACTIONS(6618), 1, + ACTIONS(3069), 2, + anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(6767), 1, + [168782] = 8, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6770), 1, - anon_sym_async, - ACTIONS(6773), 1, - anon_sym_for, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6844), 1, + sym__newline, + STATE(4559), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3895), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [171730] = 8, - ACTIONS(5817), 1, - anon_sym_async, - ACTIONS(5819), 1, - anon_sym_for, - ACTIONS(6776), 1, + [168808] = 8, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, + anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6778), 1, - anon_sym_RBRACE, - STATE(3870), 1, - sym_for_in_clause, - STATE(4643), 1, - aux_sym_dictionary_repeat1, - STATE(5469), 1, - sym__comprehension_clauses, + ACTIONS(6846), 1, + sym__newline, + STATE(4560), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171756] = 6, - ACTIONS(4009), 1, - anon_sym_LBRACK, - ACTIONS(6782), 1, - anon_sym_EQ, - STATE(4252), 1, - sym_type_index, + [168834] = 8, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, + anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6848), 1, + sym__newline, + STATE(4561), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6780), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(6784), 2, - anon_sym_not, - anon_sym_or, - [171778] = 8, - ACTIONS(6219), 1, + [168860] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6221), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(5767), 1, anon_sym_or, - ACTIONS(6711), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6786), 1, - anon_sym_RBRACK, - STATE(4559), 1, - aux_sym_type_index_repeat1, + ACTIONS(6850), 1, + sym__newline, + STATE(4562), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171804] = 7, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(6788), 1, - anon_sym_DOT, - ACTIONS(6790), 1, - anon_sym___future__, - STATE(4284), 1, - aux_sym_import_prefix_repeat1, - STATE(4362), 1, - sym_import_prefix, + [168886] = 8, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, + anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6852), 1, + sym__newline, + STATE(4563), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5172), 2, - sym_relative_import, - sym_dotted_name, - [171828] = 6, - ACTIONS(5980), 1, - anon_sym_async, - ACTIONS(5982), 1, - anon_sym_for, - ACTIONS(6675), 1, - anon_sym_RPAREN, - ACTIONS(6741), 1, - anon_sym_if, + [168912] = 7, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6854), 1, + anon_sym_EQ, + ACTIONS(6856), 1, + sym__newline, + STATE(4565), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3827), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [171850] = 6, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + STATE(4142), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [168936] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6792), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [171872] = 8, - ACTIONS(5733), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(5767), 1, anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6794), 1, + ACTIONS(6858), 1, sym__newline, - STATE(4847), 1, + STATE(4829), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171898] = 7, - ACTIONS(6219), 1, + [168962] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6221), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(5767), 1, anon_sym_or, - ACTIONS(6796), 1, - anon_sym_COLON, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6860), 1, + sym__newline, + STATE(4570), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3102), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [171922] = 8, - ACTIONS(6202), 1, - anon_sym_RBRACE, - ACTIONS(6798), 1, - anon_sym_COMMA, - ACTIONS(6800), 1, + [168988] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6802), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6804), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6806), 1, + ACTIONS(5767), 1, anon_sym_or, - STATE(4966), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(6862), 1, + sym__newline, + STATE(4571), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171948] = 8, - ACTIONS(6042), 1, - anon_sym_RPAREN, - ACTIONS(6044), 1, - anon_sym_COMMA, - ACTIONS(6641), 1, + [169014] = 6, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(6293), 1, anon_sym_or, - STATE(4602), 1, - aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171974] = 8, - ACTIONS(6219), 1, + ACTIONS(6177), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + [169036] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6221), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(5767), 1, anon_sym_or, - ACTIONS(6711), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6808), 1, - anon_sym_RBRACK, - STATE(4901), 1, - aux_sym_type_index_repeat1, + ACTIONS(6864), 1, + sym__newline, + STATE(4574), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172000] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + [169062] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6810), 1, + ACTIONS(6866), 1, sym__newline, - STATE(4526), 1, + STATE(4577), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172026] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + [169088] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6812), 1, + ACTIONS(6868), 1, sym__newline, - STATE(4527), 1, + STATE(4850), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172052] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + [169114] = 8, + ACTIONS(5832), 1, + anon_sym_async, + ACTIONS(5834), 1, + anon_sym_for, + ACTIONS(6870), 1, + anon_sym_COMMA, + ACTIONS(6872), 1, + anon_sym_RBRACE, + STATE(3975), 1, + sym_for_in_clause, + STATE(4600), 1, + aux_sym_dictionary_repeat1, + STATE(5313), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [169140] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6814), 1, + ACTIONS(6874), 1, sym__newline, - STATE(4569), 1, + STATE(4642), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172078] = 7, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5960), 1, + [169166] = 8, + ACTIONS(6687), 1, + anon_sym_as, + ACTIONS(6689), 1, + anon_sym_if, + ACTIONS(6691), 1, + anon_sym_and, + ACTIONS(6693), 1, + anon_sym_or, + ACTIONS(6876), 1, + anon_sym_RPAREN, + ACTIONS(6878), 1, anon_sym_COMMA, - ACTIONS(6816), 1, - anon_sym_EQ, - ACTIONS(6818), 1, - sym__newline, - STATE(4924), 1, - aux_sym_cvar_decl_repeat2, + STATE(4745), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3822), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [172102] = 7, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5960), 1, + [169192] = 8, + ACTIONS(6261), 1, + anon_sym_as, + ACTIONS(6263), 1, + anon_sym_if, + ACTIONS(6265), 1, + anon_sym_and, + ACTIONS(6267), 1, + anon_sym_or, + ACTIONS(6790), 1, anon_sym_COMMA, - ACTIONS(6082), 1, - anon_sym_EQ, - ACTIONS(6084), 1, - sym__newline, - STATE(4932), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6880), 1, + anon_sym_RBRACK, + STATE(4630), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [172126] = 7, - ACTIONS(3457), 1, + [169218] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6820), 1, + ACTIONS(6351), 1, anon_sym_EQ, - ACTIONS(6822), 1, + ACTIONS(6353), 1, sym__newline, - STATE(4492), 1, + STATE(4856), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3933), 2, + STATE(4142), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172150] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + [169242] = 8, + ACTIONS(6123), 1, + anon_sym_RPAREN, + ACTIONS(6125), 1, + anon_sym_COMMA, + ACTIONS(6687), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(6689), 1, anon_sym_if, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6824), 1, - sym__newline, - STATE(4528), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [172176] = 8, - ACTIONS(5733), 1, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(6693), 1, anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(5960), 1, + STATE(4891), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [169268] = 7, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6318), 1, + ACTIONS(6882), 1, + anon_sym_EQ, + ACTIONS(6884), 1, sym__newline, - STATE(4949), 1, + STATE(4936), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172202] = 7, - ACTIONS(3457), 1, + STATE(3880), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [169292] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6828), 1, + ACTIONS(6858), 1, sym__newline, - STATE(4529), 1, + ACTIONS(6886), 1, + anon_sym_EQ, + STATE(4517), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, + STATE(4142), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172226] = 7, - ACTIONS(3457), 1, + [169316] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6830), 1, + ACTIONS(6888), 1, anon_sym_EQ, - ACTIONS(6832), 1, + ACTIONS(6890), 1, sym__newline, - STATE(4753), 1, + STATE(4722), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, + STATE(3865), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172250] = 7, - ACTIONS(3457), 1, + [169340] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6834), 1, + ACTIONS(6892), 1, anon_sym_EQ, - ACTIONS(6836), 1, + ACTIONS(6894), 1, sym__newline, - STATE(4531), 1, + STATE(4567), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, + STATE(3830), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172274] = 8, - ACTIONS(5817), 1, + [169364] = 8, + ACTIONS(5832), 1, anon_sym_async, - ACTIONS(5819), 1, + ACTIONS(5834), 1, anon_sym_for, - ACTIONS(6838), 1, + ACTIONS(6896), 1, anon_sym_COMMA, - ACTIONS(6840), 1, + ACTIONS(6898), 1, anon_sym_RBRACE, - STATE(3870), 1, + STATE(3975), 1, sym_for_in_clause, - STATE(4726), 1, + STATE(4653), 1, aux_sym_dictionary_repeat1, - STATE(5532), 1, + STATE(5484), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172300] = 7, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5960), 1, + [169390] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4178), 7, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(6842), 1, + anon_sym_COLON, + anon_sym_in, anon_sym_EQ, - ACTIONS(6844), 1, - sym__newline, - STATE(4779), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_LBRACK, + [169404] = 4, + ACTIONS(5479), 1, + anon_sym_DOT, + STATE(3949), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3841), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [172324] = 7, - ACTIONS(3457), 1, + ACTIONS(6206), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [169422] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6215), 1, - anon_sym_EQ, - ACTIONS(6217), 1, + ACTIONS(6760), 1, sym__newline, - STATE(4955), 1, + ACTIONS(6900), 1, + anon_sym_EQ, + STATE(4724), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, + STATE(4142), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172348] = 7, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5960), 1, + [169446] = 8, + ACTIONS(5997), 1, + anon_sym_RPAREN, + ACTIONS(5999), 1, anon_sym_COMMA, - ACTIONS(6846), 1, - anon_sym_EQ, - ACTIONS(6848), 1, - sym__newline, - STATE(4801), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6687), 1, + anon_sym_as, + ACTIONS(6689), 1, + anon_sym_if, + ACTIONS(6691), 1, + anon_sym_and, + ACTIONS(6693), 1, + anon_sym_or, + STATE(4616), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [172372] = 7, - ACTIONS(3457), 1, + [169472] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6850), 1, - anon_sym_EQ, - ACTIONS(6852), 1, + ACTIONS(6868), 1, sym__newline, - STATE(4532), 1, + ACTIONS(6902), 1, + anon_sym_EQ, + STATE(4575), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3990), 2, + STATE(4142), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172396] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + [169496] = 6, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6854), 1, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6904), 3, sym__newline, - STATE(4956), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_SEMI, + anon_sym_COMMA, + [169518] = 8, + ACTIONS(5832), 1, + anon_sym_async, + ACTIONS(5834), 1, + anon_sym_for, + ACTIONS(6906), 1, + anon_sym_COMMA, + ACTIONS(6908), 1, + anon_sym_RBRACE, + STATE(3975), 1, + sym_for_in_clause, + STATE(4682), 1, + aux_sym_dictionary_repeat1, + STATE(5504), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172422] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + [169544] = 8, + ACTIONS(6224), 1, + anon_sym_RBRACE, + ACTIONS(6910), 1, + anon_sym_COMMA, + ACTIONS(6912), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(6914), 1, anon_sym_if, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6856), 1, - sym__newline, - STATE(4969), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6916), 1, + anon_sym_and, + ACTIONS(6918), 1, + anon_sym_or, + STATE(4973), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172448] = 4, - ACTIONS(6477), 1, + [169570] = 7, + ACTIONS(4958), 1, + sym_identifier, + ACTIONS(6920), 1, anon_sym_DOT, - STATE(3964), 1, - aux_sym_class_definition_repeat2, + ACTIONS(6922), 1, + anon_sym___future__, + STATE(4275), 1, + aux_sym_import_prefix_repeat1, + STATE(4375), 1, + sym_import_prefix, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6174), 5, - anon_sym_LPAREN, + STATE(5101), 2, + sym_relative_import, + sym_dotted_name, + [169594] = 8, + ACTIONS(6009), 1, + anon_sym_RPAREN, + ACTIONS(6011), 1, anon_sym_COMMA, + ACTIONS(6687), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [172466] = 8, - ACTIONS(5733), 1, + ACTIONS(6689), 1, + anon_sym_if, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(6693), 1, anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6858), 1, - sym__newline, - STATE(4483), 1, - aux_sym_cvar_decl_repeat2, + STATE(4661), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172492] = 5, - ACTIONS(5811), 1, - anon_sym_as, - ACTIONS(5823), 1, - anon_sym_and, - ACTIONS(5825), 1, - anon_sym_or, + [169620] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6612), 4, - anon_sym_if, + ACTIONS(4210), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_LBRACK, + [169634] = 6, + ACTIONS(5989), 1, anon_sym_async, + ACTIONS(5991), 1, anon_sym_for, - anon_sym_RBRACE, - [172512] = 6, - ACTIONS(6618), 1, - anon_sym_RBRACE, - ACTIONS(6860), 1, + ACTIONS(6750), 1, anon_sym_if, - ACTIONS(6863), 1, - anon_sym_async, - ACTIONS(6866), 1, - anon_sym_for, + ACTIONS(6924), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3928), 3, + STATE(3870), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [172534] = 4, - ACTIONS(5459), 1, + [169656] = 4, + ACTIONS(5479), 1, anon_sym_DOT, - STATE(3291), 1, + STATE(3289), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6200), 5, + ACTIONS(6192), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [172552] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + [169674] = 8, + ACTIONS(5832), 1, + anon_sym_async, + ACTIONS(5834), 1, + anon_sym_for, + ACTIONS(6926), 1, + anon_sym_COMMA, + ACTIONS(6928), 1, + anon_sym_RBRACE, + STATE(3975), 1, + sym_for_in_clause, + STATE(4711), 1, + aux_sym_dictionary_repeat1, + STATE(5363), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [169700] = 8, + ACTIONS(6687), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(6689), 1, anon_sym_if, - ACTIONS(6310), 1, - sym__newline, - ACTIONS(6869), 1, + ACTIONS(6691), 1, + anon_sym_and, + ACTIONS(6693), 1, + anon_sym_or, + ACTIONS(6930), 1, + anon_sym_RPAREN, + ACTIONS(6932), 1, anon_sym_COMMA, - STATE(4894), 1, - aux_sym_cvar_def_repeat1, + STATE(4777), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172578] = 8, - ACTIONS(5733), 1, + [169726] = 8, + ACTIONS(6224), 1, + anon_sym_RBRACK, + ACTIONS(6261), 1, + anon_sym_as, + ACTIONS(6263), 1, + anon_sym_if, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(6267), 1, anon_sym_or, - ACTIONS(5789), 1, + ACTIONS(6934), 1, + anon_sym_COMMA, + STATE(4904), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [169752] = 6, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6871), 1, - sym__newline, - STATE(4485), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172604] = 8, - ACTIONS(5817), 1, + ACTIONS(6936), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [169774] = 8, + ACTIONS(5832), 1, anon_sym_async, - ACTIONS(5819), 1, + ACTIONS(5834), 1, anon_sym_for, - ACTIONS(6873), 1, + ACTIONS(6938), 1, anon_sym_COMMA, - ACTIONS(6875), 1, + ACTIONS(6940), 1, anon_sym_RBRACE, - STATE(3870), 1, + STATE(3975), 1, sym_for_in_clause, - STATE(4674), 1, + STATE(4735), 1, aux_sym_dictionary_repeat1, - STATE(5189), 1, + STATE(5509), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172630] = 7, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6877), 1, - anon_sym_EQ, - ACTIONS(6879), 1, - sym__newline, - STATE(4486), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4015), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [172654] = 7, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6812), 1, - sym__newline, - ACTIONS(6881), 1, - anon_sym_EQ, - STATE(4533), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4015), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [172678] = 8, - ACTIONS(5817), 1, + [169800] = 8, + ACTIONS(5832), 1, anon_sym_async, - ACTIONS(5819), 1, + ACTIONS(5834), 1, anon_sym_for, - ACTIONS(6883), 1, + ACTIONS(6942), 1, anon_sym_COMMA, - ACTIONS(6885), 1, + ACTIONS(6944), 1, anon_sym_RBRACE, - STATE(3870), 1, + STATE(3975), 1, sym_for_in_clause, - STATE(4727), 1, + STATE(4605), 1, aux_sym_dictionary_repeat1, - STATE(5501), 1, + STATE(5293), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172704] = 4, - ACTIONS(6887), 1, - anon_sym_DOT, - STATE(3936), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5196), 5, - anon_sym_LPAREN, + [169826] = 8, + ACTIONS(6047), 1, + anon_sym_RPAREN, + ACTIONS(6049), 1, anon_sym_COMMA, + ACTIONS(6687), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [172722] = 6, - ACTIONS(5950), 1, - anon_sym_async, - ACTIONS(5952), 1, - anon_sym_for, - ACTIONS(6675), 1, - anon_sym_RBRACK, - ACTIONS(6890), 1, + ACTIONS(6689), 1, anon_sym_if, + ACTIONS(6691), 1, + anon_sym_and, + ACTIONS(6693), 1, + anon_sym_or, + STATE(4717), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3895), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [172744] = 8, - ACTIONS(6062), 1, - anon_sym_RPAREN, - ACTIONS(6064), 1, - anon_sym_COMMA, - ACTIONS(6641), 1, + [169852] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(5767), 1, anon_sym_or, - STATE(4652), 1, - aux_sym_argument_list_repeat1, + ACTIONS(6271), 1, + sym__newline, + ACTIONS(6946), 1, + anon_sym_COMMA, + STATE(4861), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172770] = 8, - ACTIONS(5817), 1, - anon_sym_async, - ACTIONS(5819), 1, - anon_sym_for, - ACTIONS(6892), 1, + [169878] = 8, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, + anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6894), 1, - anon_sym_RBRACE, - STATE(3870), 1, - sym_for_in_clause, - STATE(4804), 1, - aux_sym_dictionary_repeat1, - STATE(5401), 1, - sym__comprehension_clauses, + ACTIONS(6279), 1, + sym__newline, + STATE(4862), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172796] = 7, - ACTIONS(3457), 1, + [169904] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6896), 1, + ACTIONS(6273), 1, anon_sym_EQ, - ACTIONS(6898), 1, + ACTIONS(6275), 1, sym__newline, - STATE(4491), 1, + STATE(4863), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, + STATE(4142), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172820] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + [169928] = 8, + ACTIONS(6224), 1, + anon_sym_RPAREN, + ACTIONS(6687), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(6689), 1, anon_sym_if, - ACTIONS(6291), 1, - sym__newline, - ACTIONS(6900), 1, + ACTIONS(6691), 1, + anon_sym_and, + ACTIONS(6693), 1, + anon_sym_or, + ACTIONS(6948), 1, anon_sym_COMMA, - STATE(4950), 1, - aux_sym_cvar_def_repeat1, + STATE(4718), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172846] = 7, - ACTIONS(3457), 1, + [169954] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6902), 1, + ACTIONS(6950), 1, anon_sym_EQ, - ACTIONS(6904), 1, - sym__newline, - STATE(4494), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3884), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [172870] = 7, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6858), 1, + ACTIONS(6952), 1, sym__newline, - ACTIONS(6906), 1, - anon_sym_EQ, - STATE(4502), 1, + STATE(4873), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, + STATE(3991), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172894] = 7, - ACTIONS(6219), 1, + [169978] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6221), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(5767), 1, anon_sym_or, - ACTIONS(6353), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6908), 2, + ACTIONS(6355), 1, + sym__newline, + ACTIONS(6954), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [172918] = 2, + STATE(4899), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4159), 7, - sym__newline, - anon_sym_SEMI, + [170004] = 7, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(6025), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, + ACTIONS(6277), 1, anon_sym_EQ, - anon_sym_LBRACK, - [172932] = 7, - ACTIONS(6219), 1, - anon_sym_as, - ACTIONS(6221), 1, - anon_sym_if, - ACTIONS(6223), 1, - anon_sym_and, - ACTIONS(6225), 1, - anon_sym_or, - ACTIONS(6910), 1, - anon_sym_COLON, + ACTIONS(6279), 1, + sym__newline, + STATE(4874), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3072), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [172956] = 8, - ACTIONS(6120), 1, + STATE(4142), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [170028] = 8, + ACTIONS(6081), 1, anon_sym_RPAREN, - ACTIONS(6122), 1, + ACTIONS(6083), 1, anon_sym_COMMA, - ACTIONS(6641), 1, + ACTIONS(6687), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(6689), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(6693), 1, anon_sym_or, - STATE(4581), 1, + STATE(4764), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172982] = 6, - ACTIONS(5950), 1, - anon_sym_async, - ACTIONS(5952), 1, - anon_sym_for, - ACTIONS(6719), 1, - anon_sym_RBRACK, - ACTIONS(6890), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3937), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [173004] = 8, - ACTIONS(6265), 1, + [170054] = 8, + ACTIONS(6019), 1, + anon_sym_RPAREN, + ACTIONS(6021), 1, + anon_sym_COMMA, + ACTIONS(6687), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(6689), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6693), 1, anon_sym_or, - ACTIONS(6912), 1, - anon_sym_COMMA, - ACTIONS(6914), 1, - anon_sym_COLON, - STATE(4711), 1, - aux_sym_match_statement_repeat1, + STATE(4693), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173030] = 8, - ACTIONS(6265), 1, + [170080] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(6608), 1, - anon_sym_COMMA, - ACTIONS(6916), 1, - anon_sym_COLON, - STATE(4940), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [173056] = 8, - ACTIONS(5733), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(5767), 1, anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6918), 1, - sym__newline, - STATE(4960), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [173082] = 7, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6794), 1, + ACTIONS(6363), 1, sym__newline, - ACTIONS(6920), 1, - anon_sym_EQ, - STATE(4493), 1, + STATE(4534), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173106] = 7, - ACTIONS(3457), 1, + [170106] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6922), 1, + ACTIONS(6357), 1, anon_sym_EQ, - ACTIONS(6924), 1, + ACTIONS(6359), 1, sym__newline, - STATE(4516), 1, + STATE(4578), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3940), 2, + STATE(4142), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [173130] = 8, - ACTIONS(6202), 1, - anon_sym_RBRACK, - ACTIONS(6219), 1, + [170130] = 8, + ACTIONS(6687), 1, anon_sym_as, - ACTIONS(6221), 1, + ACTIONS(6689), 1, anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(6693), 1, anon_sym_or, - ACTIONS(6926), 1, + ACTIONS(6956), 1, + anon_sym_RPAREN, + ACTIONS(6958), 1, anon_sym_COMMA, - STATE(4500), 1, - aux_sym_assert_statement_repeat1, + STATE(4790), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [170156] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173156] = 8, - ACTIONS(6219), 1, + ACTIONS(6962), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6960), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6221), 1, anon_sym_if, - ACTIONS(6223), 1, - anon_sym_and, - ACTIONS(6225), 1, - anon_sym_or, - ACTIONS(6711), 1, - anon_sym_COMMA, - ACTIONS(6928), 1, - anon_sym_RBRACK, - STATE(4489), 1, - aux_sym_type_index_repeat1, + anon_sym_COLON, + anon_sym_PIPE, + [170172] = 4, + ACTIONS(3995), 1, + anon_sym_DOT, + STATE(3168), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173182] = 7, - ACTIONS(3457), 1, + ACTIONS(6192), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [170190] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6930), 1, + ACTIONS(6964), 1, anon_sym_EQ, - ACTIONS(6932), 1, + ACTIONS(6966), 1, sym__newline, - STATE(4899), 1, + STATE(4634), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3992), 2, + STATE(3930), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [173206] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(5960), 1, + [170214] = 7, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6687), 1, + ACTIONS(6361), 1, + anon_sym_EQ, + ACTIONS(6363), 1, sym__newline, - STATE(4627), 1, + STATE(4637), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173232] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + STATE(4142), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [170238] = 8, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6848), 1, - sym__newline, - STATE(4689), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [173258] = 8, - ACTIONS(6934), 1, - sym_identifier, - ACTIONS(6936), 1, - anon_sym_LPAREN, - ACTIONS(6938), 1, - anon_sym_STAR, - STATE(4258), 1, - sym_dotted_name, - STATE(4329), 1, - sym_aliased_import, - STATE(4992), 1, - sym__import_list, - STATE(5018), 1, - sym_wildcard_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [173284] = 8, - ACTIONS(5733), 1, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(6293), 1, anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(6968), 1, anon_sym_COMMA, - ACTIONS(6940), 1, - sym__newline, - STATE(4685), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [173310] = 4, - ACTIONS(4003), 1, - anon_sym_DOT, - STATE(3857), 1, - aux_sym_class_definition_repeat2, + ACTIONS(6970), 1, + anon_sym_COLON, + STATE(4934), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6174), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [173328] = 8, - ACTIONS(6265), 1, + [170264] = 8, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6293), 1, anon_sym_or, - ACTIONS(6608), 1, + ACTIONS(6681), 1, anon_sym_COMMA, - ACTIONS(6942), 1, + ACTIONS(6972), 1, anon_sym_COLON, - STATE(4940), 1, + STATE(4868), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173354] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, + [170290] = 6, + ACTIONS(5832), 1, + anon_sym_async, + ACTIONS(5834), 1, + anon_sym_for, + ACTIONS(6669), 1, anon_sym_if, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6944), 1, - sym__newline, - STATE(4714), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6924), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173380] = 4, - ACTIONS(6477), 1, - anon_sym_DOT, - STATE(3936), 1, - aux_sym_class_definition_repeat2, + STATE(3845), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [170312] = 4, + ACTIONS(1727), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6200), 5, - anon_sym_LPAREN, + STATE(1988), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(6607), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [173398] = 8, - ACTIONS(6102), 1, - anon_sym_RPAREN, - ACTIONS(6104), 1, - anon_sym_COMMA, - ACTIONS(6641), 1, + [170330] = 8, + ACTIONS(6261), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(6263), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(6267), 1, anon_sym_or, - STATE(4751), 1, - aux_sym_argument_list_repeat1, + ACTIONS(6790), 1, + anon_sym_COMMA, + ACTIONS(6974), 1, + anon_sym_RBRACK, + STATE(4952), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173424] = 8, - ACTIONS(5817), 1, - anon_sym_async, - ACTIONS(5819), 1, - anon_sym_for, - ACTIONS(6946), 1, + [170356] = 8, + ACTIONS(6287), 1, + anon_sym_as, + ACTIONS(6289), 1, + anon_sym_if, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(6681), 1, anon_sym_COMMA, - ACTIONS(6948), 1, - anon_sym_RBRACE, - STATE(3870), 1, - sym_for_in_clause, - STATE(4635), 1, - aux_sym_dictionary_repeat1, - STATE(5216), 1, - sym__comprehension_clauses, + ACTIONS(6976), 1, + anon_sym_COLON, + STATE(4868), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173450] = 8, - ACTIONS(5817), 1, - anon_sym_async, - ACTIONS(5819), 1, - anon_sym_for, - ACTIONS(6950), 1, + [170382] = 8, + ACTIONS(6261), 1, + anon_sym_as, + ACTIONS(6263), 1, + anon_sym_if, + ACTIONS(6265), 1, + anon_sym_and, + ACTIONS(6267), 1, + anon_sym_or, + ACTIONS(6790), 1, anon_sym_COMMA, - ACTIONS(6952), 1, - anon_sym_RBRACE, - STATE(3870), 1, - sym_for_in_clause, - STATE(4589), 1, - aux_sym_dictionary_repeat1, - STATE(5274), 1, - sym__comprehension_clauses, + ACTIONS(6978), 1, + anon_sym_RBRACK, + STATE(4942), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173476] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + [170408] = 8, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(6681), 1, anon_sym_COMMA, - ACTIONS(6954), 1, - sym__newline, - STATE(4716), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6980), 1, + anon_sym_COLON, + STATE(4868), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173502] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + [170434] = 8, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(6681), 1, anon_sym_COMMA, - ACTIONS(6956), 1, - sym__newline, - STATE(4964), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6982), 1, + anon_sym_COLON, + STATE(4868), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173528] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, + [170460] = 6, + ACTIONS(6069), 1, + anon_sym_async, + ACTIONS(6071), 1, + anon_sym_for, + ACTIONS(6924), 1, + anon_sym_RBRACK, + ACTIONS(6984), 1, anon_sym_if, - ACTIONS(6304), 1, - sym__newline, - ACTIONS(6958), 1, - anon_sym_COMMA, - STATE(4946), 1, - aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173554] = 4, - ACTIONS(2226), 1, - sym_string_start, + STATE(4002), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [170482] = 4, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(3988), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2116), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(6560), 4, + ACTIONS(6206), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [173572] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + anon_sym_RBRACE, + [170500] = 8, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(6681), 1, anon_sym_COMMA, - ACTIONS(6217), 1, - sym__newline, - STATE(4951), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6986), 1, + anon_sym_COLON, + STATE(4868), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173598] = 6, - ACTIONS(6265), 1, + [170526] = 7, + ACTIONS(6261), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(6263), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6267), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5998), 3, - anon_sym_DOT, + ACTIONS(6440), 1, anon_sym_COLON, - anon_sym_PIPE, - [173620] = 6, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(6960), 1, - anon_sym_EQ, - STATE(4188), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6780), 2, + ACTIONS(6988), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(6962), 2, - anon_sym_not, - anon_sym_or, - [173642] = 8, - ACTIONS(6265), 1, + anon_sym_RBRACK, + [170550] = 7, + ACTIONS(6261), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(6263), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6267), 1, anon_sym_or, - ACTIONS(6608), 1, - anon_sym_COMMA, - ACTIONS(6964), 1, + ACTIONS(6990), 1, anon_sym_COLON, - STATE(4940), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173668] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(3075), 2, anon_sym_COMMA, - ACTIONS(6763), 1, - sym__newline, - STATE(4696), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [173694] = 7, - ACTIONS(3457), 1, + anon_sym_RBRACK, + [170574] = 6, + ACTIONS(4001), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6312), 1, + ACTIONS(6992), 1, anon_sym_EQ, - ACTIONS(6314), 1, - sym__newline, - STATE(4952), 1, - aux_sym_cvar_decl_repeat2, + STATE(4272), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173718] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(6778), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(6966), 1, - sym__newline, - STATE(4547), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6994), 2, + anon_sym_not, + anon_sym_or, + [170596] = 4, + ACTIONS(6549), 1, + anon_sym_DOT, + STATE(3997), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173744] = 8, - ACTIONS(5817), 1, - anon_sym_async, - ACTIONS(5819), 1, - anon_sym_for, - ACTIONS(6968), 1, + ACTIONS(6192), 5, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(6970), 1, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - STATE(3870), 1, - sym_for_in_clause, - STATE(4701), 1, - aux_sym_dictionary_repeat1, - STATE(5357), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [173770] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + [170614] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6972), 1, - sym__newline, - STATE(4548), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [173796] = 8, - ACTIONS(5733), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(5767), 1, anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(6259), 1, - sym__newline, - ACTIONS(6974), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - STATE(4893), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(6996), 1, + sym__newline, + STATE(4950), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173822] = 8, - ACTIONS(6265), 1, + [170640] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(6976), 1, - anon_sym_COMMA, - ACTIONS(6978), 1, - anon_sym_COLON, - STATE(4599), 1, - aux_sym_match_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [173848] = 8, - ACTIONS(5733), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(5767), 1, anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6980), 1, + ACTIONS(6998), 1, sym__newline, - STATE(4549), 1, + STATE(4953), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173874] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(5960), 1, + [170666] = 7, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6982), 1, + ACTIONS(6283), 1, + anon_sym_EQ, + ACTIONS(6285), 1, sym__newline, - STATE(4550), 1, + STATE(4954), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173900] = 8, - ACTIONS(6265), 1, - anon_sym_as, - ACTIONS(6267), 1, - anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(6608), 1, + STATE(4142), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [170690] = 7, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6984), 1, - anon_sym_COLON, - STATE(4940), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(7000), 1, + anon_sym_EQ, + ACTIONS(7002), 1, + sym__newline, + STATE(4961), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173926] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(5960), 1, + STATE(3834), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [170714] = 7, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6986), 1, + ACTIONS(6996), 1, sym__newline, - STATE(4552), 1, + ACTIONS(7004), 1, + anon_sym_EQ, + STATE(4964), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173952] = 8, - ACTIONS(3576), 1, - anon_sym_RPAREN, - ACTIONS(3578), 1, + STATE(4142), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [170738] = 7, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6641), 1, - anon_sym_as, - ACTIONS(6643), 1, - anon_sym_if, - ACTIONS(6645), 1, - anon_sym_and, - ACTIONS(6647), 1, - anon_sym_or, - STATE(4503), 1, - aux_sym__typedargslist_repeat1, + ACTIONS(7006), 1, + anon_sym_EQ, + ACTIONS(7008), 1, + sym__newline, + STATE(4969), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173978] = 8, - ACTIONS(6641), 1, + STATE(3835), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [170762] = 8, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(6293), 1, anon_sym_or, - ACTIONS(6988), 1, - anon_sym_RPAREN, - ACTIONS(6990), 1, + ACTIONS(7010), 1, anon_sym_COMMA, - STATE(4766), 1, - aux_sym_argument_list_repeat1, + ACTIONS(7012), 1, + anon_sym_COLON, + STATE(4740), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174004] = 8, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(5960), 1, + [170788] = 7, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6992), 1, + ACTIONS(6998), 1, sym__newline, - STATE(4917), 1, + ACTIONS(7014), 1, + anon_sym_EQ, + STATE(4970), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174030] = 7, - ACTIONS(3457), 1, + STATE(4142), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [170812] = 4, + ACTIONS(7016), 1, + anon_sym_DOT, + STATE(3997), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5169), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [170830] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6994), 1, + ACTIONS(7019), 1, anon_sym_EQ, - ACTIONS(6996), 1, + ACTIONS(7021), 1, sym__newline, - STATE(4554), 1, + STATE(4784), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, + STATE(3967), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [174054] = 8, - ACTIONS(6265), 1, + [170854] = 8, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6293), 1, anon_sym_or, - ACTIONS(6608), 1, + ACTIONS(6681), 1, anon_sym_COMMA, - ACTIONS(6998), 1, + ACTIONS(7023), 1, anon_sym_COLON, - STATE(4940), 1, + STATE(4868), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174080] = 7, - ACTIONS(3457), 1, - anon_sym_LBRACK, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(6261), 1, - anon_sym_EQ, - ACTIONS(6263), 1, - sym__newline, - STATE(4953), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4015), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174104] = 7, - ACTIONS(3457), 1, + [170880] = 7, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(5960), 1, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(7000), 1, + ACTIONS(6077), 1, anon_sym_EQ, - ACTIONS(7002), 1, + ACTIONS(6079), 1, sym__newline, - STATE(4954), 1, + STATE(4801), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3844), 2, + STATE(4142), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [174128] = 7, - ACTIONS(2954), 1, - anon_sym_COLON, - ACTIONS(6219), 1, - anon_sym_as, - ACTIONS(6221), 1, - anon_sym_if, - ACTIONS(6223), 1, - anon_sym_and, - ACTIONS(6225), 1, - anon_sym_or, + [170904] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2952), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [174152] = 8, - ACTIONS(5972), 1, - anon_sym_RPAREN, - ACTIONS(5974), 1, + ACTIONS(7025), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6607), 5, anon_sym_COMMA, - ACTIONS(6641), 1, anon_sym_as, - ACTIONS(6643), 1, anon_sym_if, - ACTIONS(6645), 1, - anon_sym_and, - ACTIONS(6647), 1, - anon_sym_or, - STATE(4826), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [174178] = 7, - ACTIONS(6229), 1, - anon_sym_LPAREN, - ACTIONS(6235), 1, - anon_sym_LBRACK, - ACTIONS(7004), 1, - sym_identifier, - STATE(2711), 1, - sym_c_function_definition, - STATE(3775), 1, - sym_c_parameters, - STATE(5033), 1, - sym_template_params, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [174201] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7006), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [174214] = 7, - ACTIONS(6375), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_LPAREN, - ACTIONS(7010), 1, - anon_sym_COLON, - ACTIONS(7012), 1, - sym__newline, - STATE(5392), 1, - sym_argument_list, - STATE(5396), 1, - sym_external_definition, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [174237] = 7, - ACTIONS(6375), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_LPAREN, - ACTIONS(7014), 1, - anon_sym_COLON, - ACTIONS(7016), 1, - sym__newline, - STATE(5237), 1, - sym_argument_list, - STATE(5238), 1, - sym_external_definition, + [170920] = 6, + ACTIONS(6069), 1, + anon_sym_async, + ACTIONS(6071), 1, + anon_sym_for, + ACTIONS(6671), 1, + anon_sym_RBRACK, + ACTIONS(6984), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174260] = 6, - ACTIONS(6641), 1, + STATE(3868), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [170942] = 8, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(5767), 1, anon_sym_or, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(7027), 1, + sym__newline, + STATE(4572), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4251), 2, - anon_sym_RPAREN, + [170968] = 4, + ACTIONS(7031), 1, anon_sym_COMMA, - [174281] = 5, - ACTIONS(6645), 1, - anon_sym_and, - ACTIONS(6647), 1, - anon_sym_or, - ACTIONS(7018), 1, - anon_sym_as, + STATE(4076), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4367), 3, + ACTIONS(7029), 4, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_if, - [174300] = 4, - ACTIONS(6645), 1, - anon_sym_and, - ACTIONS(6647), 1, - anon_sym_or, + anon_sym_async, + anon_sym_for, + [170985] = 6, + ACTIONS(4698), 1, + anon_sym_STAR_STAR, + ACTIONS(7033), 1, + sym_identifier, + ACTIONS(7035), 1, + anon_sym_LPAREN, + ACTIONS(7037), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4203), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - [174317] = 6, - ACTIONS(6641), 1, + STATE(4384), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + [171006] = 6, + ACTIONS(6687), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(6689), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(6693), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7021), 2, + ACTIONS(4222), 2, anon_sym_RPAREN, anon_sym_COMMA, - [174338] = 3, - ACTIONS(6645), 1, - anon_sym_and, + [171027] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4211), 5, + ACTIONS(7039), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6607), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_PIPE, + [171042] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7043), 1, + anon_sym_BSLASH, + ACTIONS(7041), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [171059] = 6, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, anon_sym_or, - [174353] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7023), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6633), 4, + ACTIONS(7045), 2, + sym__newline, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [174368] = 7, - ACTIONS(6229), 1, + [171080] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7049), 1, + anon_sym_BSLASH, + ACTIONS(7047), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [171097] = 7, + ACTIONS(6236), 1, anon_sym_LPAREN, - ACTIONS(6235), 1, + ACTIONS(6242), 1, anon_sym_LBRACK, - ACTIONS(7025), 1, + ACTIONS(7051), 1, sym_identifier, - STATE(1022), 1, + STATE(2802), 1, sym_c_function_definition, STATE(3746), 1, sym_c_parameters, - STATE(5132), 1, + STATE(5035), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174391] = 6, - ACTIONS(6641), 1, - anon_sym_as, - ACTIONS(6643), 1, - anon_sym_if, - ACTIONS(6645), 1, - anon_sym_and, - ACTIONS(6647), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3603), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [174412] = 6, - ACTIONS(6641), 1, + [171120] = 6, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(5767), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4339), 2, - anon_sym_RPAREN, + ACTIONS(6436), 2, + sym__newline, + anon_sym_SEMI, + [171141] = 7, + ACTIONS(7053), 1, + anon_sym_DOT, + ACTIONS(7055), 1, anon_sym_COMMA, - [174433] = 6, - ACTIONS(6641), 1, - anon_sym_as, - ACTIONS(6643), 1, - anon_sym_if, - ACTIONS(6645), 1, - anon_sym_and, - ACTIONS(6647), 1, - anon_sym_or, + ACTIONS(7057), 1, + anon_sym_COLON, + ACTIONS(7059), 1, + anon_sym_RBRACK, + ACTIONS(7061), 1, + anon_sym_PIPE, + STATE(4935), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7027), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [174454] = 6, - ACTIONS(6641), 1, - anon_sym_as, - ACTIONS(6643), 1, - anon_sym_if, - ACTIONS(6645), 1, - anon_sym_and, - ACTIONS(6647), 1, - anon_sym_or, + [171164] = 7, + ACTIONS(6380), 1, + anon_sym_LBRACK, + ACTIONS(7063), 1, + anon_sym_LPAREN, + ACTIONS(7065), 1, + anon_sym_COLON, + ACTIONS(7067), 1, + sym__newline, + STATE(5335), 1, + sym_argument_list, + STATE(5403), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4354), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [174475] = 2, + [171187] = 7, + ACTIONS(6380), 1, + anon_sym_LBRACK, + ACTIONS(7063), 1, + anon_sym_LPAREN, + ACTIONS(7069), 1, + anon_sym_COLON, + ACTIONS(7071), 1, + sym__newline, + STATE(5316), 1, + sym_argument_list, + STATE(5317), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7029), 6, - sym__newline, - anon_sym_COLON, - anon_sym_except, - anon_sym_with, - anon_sym_nogil, - anon_sym_noexcept, - [174488] = 4, - ACTIONS(7031), 1, + [171210] = 4, + ACTIONS(7073), 1, anon_sym_COMMA, - STATE(4027), 1, + STATE(4019), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7033), 4, + ACTIONS(7075), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [174505] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7035), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6560), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [174520] = 4, + anon_sym_RBRACE, + [171227] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7039), 1, + ACTIONS(7079), 1, anon_sym_BSLASH, - ACTIONS(7037), 5, + ACTIONS(7077), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [174537] = 4, - ACTIONS(7043), 1, - anon_sym_LBRACK, + [171244] = 6, + ACTIONS(6687), 1, + anon_sym_as, + ACTIONS(6689), 1, + anon_sym_if, + ACTIONS(6691), 1, + anon_sym_and, + ACTIONS(6693), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4015), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - ACTIONS(7041), 3, - sym__newline, + ACTIONS(7081), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - [174554] = 2, + [171265] = 4, + ACTIONS(7083), 1, + anon_sym_COMMA, + STATE(4019), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7086), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [171282] = 7, + ACTIONS(6380), 1, + anon_sym_LBRACK, + ACTIONS(7063), 1, + anon_sym_LPAREN, + ACTIONS(7088), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + sym__newline, + STATE(5245), 1, + sym_argument_list, + STATE(5246), 1, + sym_external_definition, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171305] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7046), 6, + ACTIONS(7092), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [174567] = 4, - ACTIONS(3), 1, + [171318] = 7, + ACTIONS(6380), 1, + anon_sym_LBRACK, + ACTIONS(7063), 1, + anon_sym_LPAREN, + ACTIONS(7094), 1, + anon_sym_COLON, + ACTIONS(7096), 1, + sym__newline, + STATE(5324), 1, + sym_argument_list, + STATE(5325), 1, + sym_external_definition, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7050), 1, - anon_sym_BSLASH, - ACTIONS(7048), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [174584] = 4, - ACTIONS(3), 1, + [171341] = 6, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, + anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7054), 1, - anon_sym_BSLASH, - ACTIONS(7052), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [174601] = 6, - ACTIONS(6641), 1, + ACTIONS(7098), 2, + sym__newline, + anon_sym_COMMA, + [171362] = 6, + ACTIONS(6687), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(6689), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(6693), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7056), 2, + ACTIONS(7100), 2, anon_sym_RPAREN, anon_sym_COMMA, - [174622] = 7, - ACTIONS(6229), 1, + [171383] = 7, + ACTIONS(6236), 1, anon_sym_LPAREN, - ACTIONS(6235), 1, + ACTIONS(6242), 1, anon_sym_LBRACK, - ACTIONS(7058), 1, + ACTIONS(7102), 1, sym_identifier, - STATE(1252), 1, + STATE(563), 1, sym_c_function_definition, - STATE(3746), 1, + STATE(3797), 1, sym_c_parameters, - STATE(5132), 1, + STATE(5079), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174645] = 6, - ACTIONS(6641), 1, + [171406] = 6, + ACTIONS(6261), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(6263), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(6267), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7060), 2, - anon_sym_RPAREN, + ACTIONS(7104), 2, anon_sym_COMMA, - [174666] = 6, - ACTIONS(6641), 1, + anon_sym_RBRACK, + [171427] = 6, + ACTIONS(6912), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(6914), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(6916), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(6918), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7062), 2, - anon_sym_RPAREN, + ACTIONS(7106), 2, anon_sym_COMMA, - [174687] = 6, - ACTIONS(6641), 1, + anon_sym_RBRACE, + [171448] = 7, + ACTIONS(6380), 1, + anon_sym_LBRACK, + ACTIONS(7063), 1, + anon_sym_LPAREN, + ACTIONS(7108), 1, + anon_sym_COLON, + ACTIONS(7110), 1, + sym__newline, + STATE(5330), 1, + sym_argument_list, + STATE(5331), 1, + sym_external_definition, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171471] = 6, + ACTIONS(6912), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(6914), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(6916), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(6918), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7064), 2, - anon_sym_RPAREN, + ACTIONS(7112), 2, anon_sym_COMMA, - [174708] = 6, - ACTIONS(6219), 1, - anon_sym_as, - ACTIONS(6221), 1, + anon_sym_RBRACE, + [171492] = 4, + ACTIONS(7114), 1, + anon_sym_COMMA, + STATE(4082), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7116), 4, anon_sym_if, - ACTIONS(6223), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [171509] = 5, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(6693), 1, anon_sym_or, + ACTIONS(7118), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4238), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + [171528] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3072), 2, + ACTIONS(7121), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6607), 4, anon_sym_COMMA, + anon_sym_as, anon_sym_RBRACK, - [174729] = 6, - ACTIONS(5733), 1, + anon_sym_PIPE, + [171543] = 4, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(6693), 1, anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7066), 2, - sym__newline, - anon_sym_SEMI, - [174750] = 4, - ACTIONS(7068), 1, + ACTIONS(4249), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4058), 1, + anon_sym_as, + anon_sym_if, + [171560] = 4, + ACTIONS(7123), 1, + anon_sym_COMMA, + STATE(4077), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7070), 4, + ACTIONS(7125), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [174767] = 4, - ACTIONS(7072), 1, + [171577] = 4, + ACTIONS(7127), 1, anon_sym_COMMA, - STATE(4059), 1, + STATE(4079), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7074), 4, + ACTIONS(7029), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [174784] = 6, - ACTIONS(6641), 1, + [171594] = 6, + ACTIONS(6687), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(6689), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(6693), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7076), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [174805] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7078), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6633), 4, + ACTIONS(3617), 2, anon_sym_RPAREN, anon_sym_COMMA, + [171615] = 6, + ACTIONS(6287), 1, anon_sym_as, - anon_sym_PIPE, - [174820] = 4, - ACTIONS(7082), 1, - anon_sym_COMMA, - STATE(4035), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(6289), 1, + anon_sym_if, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7080), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [174837] = 2, + ACTIONS(7100), 2, + anon_sym_COMMA, + anon_sym_COLON, + [171636] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5998), 6, + ACTIONS(7129), 6, sym__newline, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [174850] = 6, - ACTIONS(6265), 1, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [171649] = 6, + ACTIONS(6687), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(6689), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6693), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7076), 2, - anon_sym_COMMA, - anon_sym_COLON, - [174871] = 4, - ACTIONS(7084), 1, + ACTIONS(7131), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4064), 1, - aux_sym_for_in_clause_repeat1, + [171670] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7070), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [174888] = 4, - ACTIONS(7086), 1, + ACTIONS(7133), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6960), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4068), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7074), 4, + anon_sym_as, + anon_sym_PIPE, + [171685] = 6, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [174905] = 4, - ACTIONS(7090), 1, - anon_sym_COMMA, - STATE(4035), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7088), 4, - anon_sym_RPAREN, + ACTIONS(7135), 2, + sym__newline, + anon_sym_COMMA, + [171706] = 6, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - [174922] = 6, - ACTIONS(5733), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(5767), 1, anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6467), 2, + ACTIONS(7137), 2, sym__newline, - anon_sym_SEMI, - [174943] = 7, - ACTIONS(7093), 1, - anon_sym_DOT, - ACTIONS(7095), 1, anon_sym_COMMA, - ACTIONS(7097), 1, - anon_sym_COLON, - ACTIONS(7099), 1, - anon_sym_RBRACK, - ACTIONS(7101), 1, - anon_sym_PIPE, - STATE(4843), 1, - aux_sym_type_parameter_repeat1, + [171727] = 4, + ACTIONS(7139), 1, + anon_sym_COMMA, + STATE(4043), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174966] = 2, + ACTIONS(6300), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [171744] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7103), 6, + ACTIONS(7142), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [174979] = 7, - ACTIONS(6267), 1, + [171757] = 6, + ACTIONS(6261), 1, + anon_sym_as, + ACTIONS(6263), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6267), 1, anon_sym_or, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(7107), 1, - anon_sym_as, - ACTIONS(7109), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175002] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(7113), 1, - anon_sym_BSLASH, - ACTIONS(7111), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [175019] = 4, - ACTIONS(7115), 1, + ACTIONS(7144), 2, anon_sym_COMMA, - STATE(4079), 1, - aux_sym__patterns_repeat1, + anon_sym_RBRACK, + [171778] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2494), 4, + ACTIONS(7146), 6, + sym__newline, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [175036] = 7, - ACTIONS(6229), 1, - anon_sym_LPAREN, - ACTIONS(6235), 1, - anon_sym_LBRACK, - ACTIONS(7117), 1, - sym_identifier, - STATE(2791), 1, - sym_c_function_definition, - STATE(3775), 1, - sym_c_parameters, - STATE(5033), 1, - sym_template_params, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [171791] = 6, + ACTIONS(6261), 1, + anon_sym_as, + ACTIONS(6263), 1, + anon_sym_if, + ACTIONS(6265), 1, + anon_sym_and, + ACTIONS(6267), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175059] = 7, - ACTIONS(6375), 1, + ACTIONS(3107), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [171812] = 7, + ACTIONS(6380), 1, anon_sym_LBRACK, - ACTIONS(7008), 1, + ACTIONS(7063), 1, anon_sym_LPAREN, - ACTIONS(7119), 1, + ACTIONS(7148), 1, anon_sym_COLON, - ACTIONS(7121), 1, + ACTIONS(7150), 1, sym__newline, - STATE(5300), 1, + STATE(5221), 1, sym_argument_list, - STATE(5301), 1, + STATE(5222), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175082] = 3, + [171835] = 7, + ACTIONS(6380), 1, + anon_sym_LBRACK, + ACTIONS(7063), 1, + anon_sym_LPAREN, + ACTIONS(7152), 1, + anon_sym_COLON, + ACTIONS(7154), 1, + sym__newline, + STATE(5345), 1, + sym_external_definition, + STATE(5429), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7123), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6633), 4, + [171858] = 3, + ACTIONS(6691), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4253), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [175097] = 6, - ACTIONS(6219), 1, + anon_sym_if, + anon_sym_or, + [171873] = 6, + ACTIONS(6687), 1, anon_sym_as, - ACTIONS(6221), 1, + ACTIONS(6689), 1, anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(6693), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7027), 2, + ACTIONS(4264), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [175118] = 4, - ACTIONS(3), 1, + [171894] = 6, + ACTIONS(6687), 1, + anon_sym_as, + ACTIONS(6689), 1, + anon_sym_if, + ACTIONS(6691), 1, + anon_sym_and, + ACTIONS(6693), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7127), 1, - anon_sym_BSLASH, - ACTIONS(7125), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [175135] = 4, - ACTIONS(7131), 1, + ACTIONS(7156), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [171915] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6177), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - STATE(4111), 1, - aux_sym_union_pattern_repeat1, + [171928] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7129), 4, - anon_sym_COMMA, + ACTIONS(5667), 6, + sym__newline, + anon_sym_COLON, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [171941] = 6, + ACTIONS(6287), 1, anon_sym_as, + ACTIONS(6289), 1, anon_sym_if, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7131), 2, + anon_sym_COMMA, anon_sym_COLON, - [175152] = 4, - ACTIONS(3), 1, + [171962] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7135), 1, - anon_sym_BSLASH, - ACTIONS(7133), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [175169] = 7, - ACTIONS(6375), 1, + ACTIONS(7158), 6, + sym__newline, + anon_sym_COLON, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [171975] = 7, + ACTIONS(6380), 1, anon_sym_LBRACK, - ACTIONS(7008), 1, + ACTIONS(7063), 1, anon_sym_LPAREN, - ACTIONS(7137), 1, + ACTIONS(7160), 1, anon_sym_COLON, - ACTIONS(7139), 1, + ACTIONS(7162), 1, sym__newline, - STATE(5540), 1, + STATE(5394), 1, sym_argument_list, - STATE(5541), 1, + STATE(5453), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175192] = 4, - ACTIONS(7141), 1, - anon_sym_COMMA, - STATE(4122), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7033), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [175209] = 7, - ACTIONS(6375), 1, + [171998] = 7, + ACTIONS(6380), 1, anon_sym_LBRACK, - ACTIONS(7008), 1, + ACTIONS(7063), 1, anon_sym_LPAREN, - ACTIONS(7143), 1, + ACTIONS(7164), 1, anon_sym_COLON, - ACTIONS(7145), 1, + ACTIONS(7166), 1, sym__newline, - STATE(5308), 1, + STATE(5430), 1, sym_argument_list, - STATE(5309), 1, + STATE(5522), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175232] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3628), 6, - sym__newline, - anon_sym_SEMI, + [172021] = 7, + ACTIONS(7053), 1, anon_sym_DOT, + ACTIONS(7057), 1, anon_sym_COLON, - anon_sym_EQ, + ACTIONS(7061), 1, anon_sym_PIPE, - [175245] = 2, + ACTIONS(7168), 1, + anon_sym_COMMA, + ACTIONS(7170), 1, + anon_sym_RBRACK, + STATE(4609), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7147), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [175258] = 3, - STATE(4111), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, + [172044] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7149), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [175273] = 6, - ACTIONS(6641), 1, + ACTIONS(7174), 1, + anon_sym_BSLASH, + ACTIONS(7172), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [172061] = 6, + ACTIONS(6261), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(6263), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(6267), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7151), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [175294] = 4, - ACTIONS(7153), 1, - anon_sym_PIPE, - STATE(4056), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7149), 4, + ACTIONS(7176), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [175311] = 7, - ACTIONS(6375), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_LPAREN, - ACTIONS(7156), 1, - anon_sym_COLON, - ACTIONS(7158), 1, - sym__newline, - STATE(5316), 1, - sym_argument_list, - STATE(5317), 1, - sym_external_definition, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [175334] = 4, - ACTIONS(7160), 1, + anon_sym_RBRACK, + [172082] = 4, + ACTIONS(7178), 1, anon_sym_COMMA, - STATE(4059), 1, + STATE(4063), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7080), 4, + ACTIONS(7125), 4, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [175351] = 4, - ACTIONS(7162), 1, + [172099] = 4, + ACTIONS(7180), 1, anon_sym_COMMA, - STATE(4059), 1, + STATE(4076), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7088), 4, + ACTIONS(7075), 4, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [175368] = 3, - ACTIONS(7165), 1, - anon_sym_LPAREN, + [172116] = 4, + ACTIONS(3459), 1, + anon_sym_DOT, + STATE(3129), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6560), 5, + ACTIONS(6192), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, + [172133] = 6, + ACTIONS(6912), 1, + anon_sym_as, + ACTIONS(6914), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [175383] = 6, - ACTIONS(5733), 1, + ACTIONS(6916), 1, anon_sym_and, - ACTIONS(5735), 1, + ACTIONS(6918), 1, anon_sym_or, - ACTIONS(5789), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6436), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [172154] = 4, + ACTIONS(7182), 1, + anon_sym_COMMA, + STATE(4066), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5270), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [172171] = 6, + ACTIONS(6687), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(6689), 1, anon_sym_if, + ACTIONS(6691), 1, + anon_sym_and, + ACTIONS(6693), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7167), 2, - sym__newline, + ACTIONS(6300), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [175404] = 7, - ACTIONS(6375), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_LPAREN, - ACTIONS(7169), 1, + [172192] = 6, + ACTIONS(7187), 1, + anon_sym_DOT, + ACTIONS(7189), 1, anon_sym_COLON, - ACTIONS(7171), 1, - sym__newline, - STATE(5322), 1, - sym_argument_list, - STATE(5323), 1, - sym_external_definition, + ACTIONS(7191), 1, + anon_sym_EQ, + ACTIONS(7193), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175427] = 4, - ACTIONS(6269), 1, + ACTIONS(7185), 2, + sym__newline, + anon_sym_SEMI, + [172213] = 6, + ACTIONS(6687), 1, + anon_sym_as, + ACTIONS(6689), 1, + anon_sym_if, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6693), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4203), 4, + ACTIONS(7195), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [172234] = 6, + ACTIONS(6287), 1, anon_sym_as, + ACTIONS(6289), 1, anon_sym_if, - anon_sym_COLON, - [175444] = 4, - ACTIONS(7173), 1, - anon_sym_COMMA, - STATE(4068), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7080), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [175461] = 7, - ACTIONS(7175), 1, + ACTIONS(7197), 2, anon_sym_COMMA, - ACTIONS(7177), 1, - anon_sym_as, - ACTIONS(7179), 1, - anon_sym_if, - ACTIONS(7181), 1, anon_sym_COLON, - STATE(4265), 1, - aux_sym_case_clause_repeat1, - STATE(5299), 1, - sym_if_clause, + [172255] = 7, + ACTIONS(6236), 1, + anon_sym_LPAREN, + ACTIONS(6242), 1, + anon_sym_LBRACK, + ACTIONS(7199), 1, + sym_identifier, + STATE(589), 1, + sym_c_function_definition, + STATE(3797), 1, + sym_c_parameters, + STATE(5079), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175484] = 4, - ACTIONS(7131), 1, - anon_sym_PIPE, - STATE(4111), 1, - aux_sym_union_pattern_repeat1, + [172278] = 4, + ACTIONS(7201), 1, + anon_sym_COMMA, + STATE(4066), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7183), 4, - anon_sym_COMMA, + ACTIONS(2527), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [172295] = 6, + ACTIONS(5761), 1, anon_sym_as, + ACTIONS(5763), 1, anon_sym_if, - anon_sym_COLON, - [175501] = 6, - ACTIONS(6219), 1, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7203), 2, + sym__newline, + anon_sym_SEMI, + [172316] = 6, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(6221), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(6293), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6340), 2, + ACTIONS(7156), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [175522] = 4, - ACTIONS(7185), 1, + anon_sym_COLON, + [172337] = 4, + ACTIONS(7205), 1, anon_sym_COMMA, - STATE(4068), 1, + STATE(4016), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7088), 4, + ACTIONS(7125), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [175539] = 6, - ACTIONS(6219), 1, - anon_sym_as, - ACTIONS(6221), 1, - anon_sym_if, - ACTIONS(6223), 1, - anon_sym_and, - ACTIONS(6225), 1, - anon_sym_or, + [172354] = 4, + ACTIONS(7207), 1, + anon_sym_COMMA, + STATE(4076), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7188), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [175560] = 6, - ACTIONS(6641), 1, - anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(7086), 4, + anon_sym_RPAREN, anon_sym_if, - ACTIONS(6645), 1, - anon_sym_and, - ACTIONS(6647), 1, - anon_sym_or, + anon_sym_async, + anon_sym_for, + [172371] = 4, + ACTIONS(7210), 1, + anon_sym_COMMA, + STATE(4079), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6467), 2, - anon_sym_RPAREN, + ACTIONS(7075), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [172388] = 7, + ACTIONS(7053), 1, + anon_sym_DOT, + ACTIONS(7057), 1, + anon_sym_COLON, + ACTIONS(7061), 1, + anon_sym_PIPE, + ACTIONS(7212), 1, anon_sym_COMMA, - [175581] = 2, + ACTIONS(7214), 1, + anon_sym_RBRACK, + STATE(4900), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5196), 6, - anon_sym_DOT, - anon_sym_LPAREN, + [172411] = 4, + ACTIONS(7216), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [175594] = 2, + STATE(4079), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7190), 6, - sym__newline, - anon_sym_COLON, - anon_sym_except, - anon_sym_with, - anon_sym_nogil, - anon_sym_noexcept, - [175607] = 6, - ACTIONS(6265), 1, + ACTIONS(7086), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [172428] = 6, + ACTIONS(6912), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(6914), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6916), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6918), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6340), 2, + ACTIONS(6300), 2, anon_sym_COMMA, - anon_sym_COLON, - [175628] = 6, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, + anon_sym_RBRACE, + [172449] = 6, + ACTIONS(4603), 1, + anon_sym_STAR_STAR, + ACTIONS(7035), 1, + anon_sym_LPAREN, + ACTIONS(7219), 1, + sym_identifier, + ACTIONS(7221), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7192), 2, - sym__newline, - anon_sym_SEMI, - [175649] = 6, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, + STATE(4420), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + [172470] = 4, + ACTIONS(7223), 1, + anon_sym_COMMA, + STATE(4019), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7194), 2, - sym__newline, - anon_sym_COMMA, - [175670] = 6, - ACTIONS(6800), 1, + ACTIONS(7029), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [172487] = 6, + ACTIONS(6261), 1, anon_sym_as, - ACTIONS(6802), 1, + ACTIONS(6263), 1, anon_sym_if, - ACTIONS(6804), 1, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(6806), 1, + ACTIONS(6267), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6467), 2, + ACTIONS(3093), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [175691] = 6, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + anon_sym_RBRACK, + [172508] = 6, + ACTIONS(6912), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(6914), 1, anon_sym_if, + ACTIONS(6916), 1, + anon_sym_and, + ACTIONS(6918), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7196), 2, - sym__newline, + ACTIONS(7081), 2, anon_sym_COMMA, - [175712] = 7, - ACTIONS(6375), 1, + anon_sym_RBRACE, + [172529] = 7, + ACTIONS(6380), 1, anon_sym_LBRACK, - ACTIONS(7008), 1, + ACTIONS(7063), 1, anon_sym_LPAREN, - ACTIONS(7198), 1, + ACTIONS(7225), 1, anon_sym_COLON, - ACTIONS(7200), 1, + ACTIONS(7227), 1, sym__newline, - STATE(5353), 1, + STATE(5231), 1, sym_argument_list, - STATE(5354), 1, + STATE(5232), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175735] = 4, - ACTIONS(7202), 1, - anon_sym_COMMA, - STATE(4079), 1, - aux_sym__patterns_repeat1, + [172552] = 7, + ACTIONS(6236), 1, + anon_sym_LPAREN, + ACTIONS(6242), 1, + anon_sym_LBRACK, + ACTIONS(7229), 1, + sym_identifier, + STATE(1083), 1, + sym_c_function_definition, + STATE(3748), 1, + sym_c_parameters, + STATE(5189), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5132), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [175752] = 6, - ACTIONS(6641), 1, - anon_sym_as, - ACTIONS(6643), 1, - anon_sym_if, - ACTIONS(6645), 1, - anon_sym_and, - ACTIONS(6647), 1, - anon_sym_or, + [172575] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6340), 2, - anon_sym_RPAREN, + ACTIONS(7231), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6607), 4, anon_sym_COMMA, - [175773] = 6, - ACTIONS(6219), 1, anon_sym_as, - ACTIONS(6221), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [172590] = 6, + ACTIONS(6261), 1, + anon_sym_as, + ACTIONS(6263), 1, anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(6267), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3096), 2, + ACTIONS(7081), 2, anon_sym_COMMA, anon_sym_RBRACK, - [175794] = 6, - ACTIONS(6265), 1, - anon_sym_as, - ACTIONS(6267), 1, - anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, + [172611] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7205), 2, + ACTIONS(7233), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6960), 4, anon_sym_COMMA, - anon_sym_COLON, - [175815] = 6, - ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6267), 1, - anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, + anon_sym_RBRACK, + anon_sym_PIPE, + [172626] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7056), 2, + ACTIONS(7235), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6960), 4, anon_sym_COMMA, - anon_sym_COLON, - [175836] = 6, - ACTIONS(6219), 1, anon_sym_as, - ACTIONS(6221), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [172641] = 6, + ACTIONS(6687), 1, + anon_sym_as, + ACTIONS(6689), 1, anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(6693), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7207), 2, + ACTIONS(7237), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [175857] = 6, - ACTIONS(6265), 1, - anon_sym_as, - ACTIONS(6267), 1, + [172662] = 7, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6293), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7021), 2, + ACTIONS(7239), 1, anon_sym_COMMA, + ACTIONS(7241), 1, + anon_sym_as, + ACTIONS(7243), 1, anon_sym_COLON, - [175878] = 6, - ACTIONS(4675), 1, - anon_sym_STAR_STAR, - ACTIONS(7209), 1, - sym_identifier, - ACTIONS(7211), 1, - anon_sym_LPAREN, - ACTIONS(7213), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4376), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - [175899] = 6, - ACTIONS(7217), 1, - anon_sym_DOT, - ACTIONS(7219), 1, - anon_sym_COLON, - ACTIONS(7221), 1, - anon_sym_EQ, - ACTIONS(7223), 1, - anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7215), 2, - sym__newline, - anon_sym_SEMI, - [175920] = 6, - ACTIONS(6800), 1, + [172685] = 6, + ACTIONS(6687), 1, anon_sym_as, - ACTIONS(6802), 1, + ACTIONS(6689), 1, anon_sym_if, - ACTIONS(6804), 1, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(6806), 1, + ACTIONS(6693), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7151), 2, + ACTIONS(7245), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [175941] = 6, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, + [172706] = 4, + ACTIONS(7249), 1, + anon_sym_PIPE, + STATE(4133), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7225), 2, - sym__newline, + ACTIONS(7247), 4, anon_sym_COMMA, - [175962] = 6, - ACTIONS(6800), 1, anon_sym_as, - ACTIONS(6802), 1, anon_sym_if, - ACTIONS(6804), 1, + anon_sym_COLON, + [172723] = 6, + ACTIONS(6687), 1, + anon_sym_as, + ACTIONS(6689), 1, + anon_sym_if, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(6806), 1, + ACTIONS(6693), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7027), 2, + ACTIONS(7251), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [175983] = 2, + [172744] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7227), 6, + ACTIONS(7253), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [175996] = 4, - ACTIONS(7229), 1, - anon_sym_COMMA, - STATE(4103), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2888), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [176013] = 5, - ACTIONS(7217), 1, - anon_sym_DOT, - ACTIONS(7219), 1, - anon_sym_COLON, - ACTIONS(7223), 1, - anon_sym_PIPE, + [172757] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7231), 3, + ACTIONS(3627), 6, sym__newline, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, anon_sym_EQ, - [176032] = 2, + anon_sym_PIPE, + [172770] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7233), 6, + ACTIONS(7255), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [176045] = 7, - ACTIONS(7093), 1, - anon_sym_DOT, - ACTIONS(7097), 1, - anon_sym_COLON, - ACTIONS(7101), 1, - anon_sym_PIPE, - ACTIONS(7235), 1, - anon_sym_COMMA, - ACTIONS(7237), 1, - anon_sym_RBRACK, - STATE(4877), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [176068] = 6, - ACTIONS(6800), 1, + [172783] = 6, + ACTIONS(6261), 1, anon_sym_as, - ACTIONS(6802), 1, + ACTIONS(6263), 1, anon_sym_if, - ACTIONS(6804), 1, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(6806), 1, + ACTIONS(6267), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6535), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [176089] = 7, - ACTIONS(7093), 1, - anon_sym_DOT, - ACTIONS(7097), 1, - anon_sym_COLON, - ACTIONS(7101), 1, - anon_sym_PIPE, - ACTIONS(7239), 1, + ACTIONS(3075), 2, anon_sym_COMMA, - ACTIONS(7241), 1, anon_sym_RBRACK, - STATE(4854), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [176112] = 6, - ACTIONS(6219), 1, + [172804] = 6, + ACTIONS(6687), 1, anon_sym_as, - ACTIONS(6221), 1, + ACTIONS(6689), 1, anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(6693), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6467), 2, + ACTIONS(7112), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [176133] = 6, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(7211), 1, - anon_sym_LPAREN, - ACTIONS(7243), 1, - sym_identifier, - ACTIONS(7245), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4327), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - [176154] = 4, - ACTIONS(3440), 1, - anon_sym_DOT, - STATE(4119), 1, - aux_sym_class_definition_repeat2, + [172825] = 4, + ACTIONS(7249), 1, + anon_sym_PIPE, + STATE(4094), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6174), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(7257), 4, anon_sym_COMMA, anon_sym_as, - [176171] = 6, - ACTIONS(6265), 1, - anon_sym_as, - ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7247), 2, - anon_sym_COMMA, anon_sym_COLON, - [176192] = 7, - ACTIONS(6267), 1, + [172842] = 6, + ACTIONS(6687), 1, + anon_sym_as, + ACTIONS(6689), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6693), 1, anon_sym_or, - ACTIONS(7107), 1, - anon_sym_as, - ACTIONS(7249), 1, - anon_sym_COMMA, - ACTIONS(7251), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176215] = 4, - ACTIONS(7253), 1, + ACTIONS(7106), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4103), 1, + [172863] = 4, + ACTIONS(7259), 1, + anon_sym_COMMA, + STATE(4043), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6340), 4, + ACTIONS(2839), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [176232] = 6, - ACTIONS(6641), 1, + [172880] = 6, + ACTIONS(6687), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(6689), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(6693), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7207), 2, + ACTIONS(6436), 2, anon_sym_RPAREN, anon_sym_COMMA, - [176253] = 6, - ACTIONS(6800), 1, - anon_sym_as, - ACTIONS(6802), 1, - anon_sym_if, - ACTIONS(6804), 1, + [172901] = 4, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(6806), 1, + ACTIONS(6293), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7207), 2, + ACTIONS(4249), 4, anon_sym_COMMA, - anon_sym_RBRACE, - [176274] = 7, - ACTIONS(6229), 1, - anon_sym_LPAREN, - ACTIONS(6235), 1, - anon_sym_LBRACK, - ACTIONS(7256), 1, - sym_identifier, - STATE(561), 1, - sym_c_function_definition, - STATE(3779), 1, - sym_c_parameters, - STATE(5085), 1, - sym_template_params, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [176297] = 6, - ACTIONS(6641), 1, anon_sym_as, - ACTIONS(6643), 1, anon_sym_if, - ACTIONS(6645), 1, - anon_sym_and, - ACTIONS(6647), 1, - anon_sym_or, - ACTIONS(3), 2, + anon_sym_COLON, + [172918] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7205), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [176318] = 7, - ACTIONS(6375), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_LPAREN, - ACTIONS(7258), 1, - anon_sym_COLON, - ACTIONS(7260), 1, - sym__newline, - STATE(5213), 1, - sym_argument_list, - STATE(5214), 1, - sym_external_definition, - ACTIONS(3), 2, + ACTIONS(7263), 1, + anon_sym_BSLASH, + ACTIONS(7261), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [172935] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7267), 1, + anon_sym_BSLASH, + ACTIONS(7265), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [172952] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - [176341] = 6, - ACTIONS(6219), 1, + ACTIONS(7271), 1, + anon_sym_BSLASH, + ACTIONS(7269), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [172969] = 6, + ACTIONS(6261), 1, anon_sym_as, - ACTIONS(6221), 1, + ACTIONS(6263), 1, anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(6267), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7262), 2, + ACTIONS(6300), 2, anon_sym_COMMA, anon_sym_RBRACK, - [176362] = 6, - ACTIONS(6219), 1, + [172990] = 6, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(6221), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(6293), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3060), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [176383] = 4, - ACTIONS(7131), 1, - anon_sym_PIPE, - STATE(4056), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7264), 4, + ACTIONS(6300), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - [176400] = 6, - ACTIONS(6219), 1, + [173011] = 6, + ACTIONS(6687), 1, anon_sym_as, - ACTIONS(6221), 1, + ACTIONS(6689), 1, anon_sym_if, - ACTIONS(6223), 1, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(6225), 1, + ACTIONS(6693), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7266), 2, + ACTIONS(3615), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [176421] = 7, - ACTIONS(6229), 1, + [173032] = 7, + ACTIONS(6236), 1, anon_sym_LPAREN, - ACTIONS(6235), 1, + ACTIONS(6242), 1, anon_sym_LBRACK, - ACTIONS(7268), 1, + ACTIONS(7273), 1, sym_identifier, - STATE(587), 1, + STATE(2792), 1, sym_c_function_definition, - STATE(3779), 1, + STATE(3746), 1, sym_c_parameters, - STATE(5085), 1, + STATE(5035), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176444] = 7, - ACTIONS(6375), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_LPAREN, - ACTIONS(7270), 1, - anon_sym_COLON, - ACTIONS(7272), 1, - sym__newline, - STATE(5419), 1, - sym_argument_list, - STATE(5422), 1, - sym_external_definition, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [176467] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(7276), 1, - anon_sym_BSLASH, - ACTIONS(7274), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [176484] = 2, + [173055] = 4, + ACTIONS(7275), 1, + anon_sym_COMMA, + STATE(4004), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5642), 6, - sym__newline, - anon_sym_COLON, - anon_sym_except, - anon_sym_with, - anon_sym_nogil, - anon_sym_noexcept, - [176497] = 3, + ACTIONS(7116), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [173072] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7278), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6560), 4, + ACTIONS(5169), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [176512] = 7, - ACTIONS(6375), 1, + [173085] = 7, + ACTIONS(6289), 1, + anon_sym_if, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(7241), 1, + anon_sym_as, + ACTIONS(7277), 1, + anon_sym_COMMA, + ACTIONS(7279), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [173108] = 7, + ACTIONS(6380), 1, anon_sym_LBRACK, - ACTIONS(7008), 1, + ACTIONS(7063), 1, anon_sym_LPAREN, - ACTIONS(7280), 1, + ACTIONS(7281), 1, anon_sym_COLON, - ACTIONS(7282), 1, + ACTIONS(7283), 1, sym__newline, - STATE(5223), 1, + STATE(5239), 1, sym_argument_list, - STATE(5224), 1, + STATE(5240), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176535] = 4, - ACTIONS(3440), 1, - anon_sym_DOT, - STATE(3162), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6200), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, + [173131] = 6, + ACTIONS(6287), 1, anon_sym_as, - [176552] = 4, - ACTIONS(3), 1, + ACTIONS(6289), 1, + anon_sym_if, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7286), 1, - anon_sym_BSLASH, - ACTIONS(7284), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [176569] = 4, - ACTIONS(7288), 1, + ACTIONS(7195), 2, anon_sym_COMMA, - STATE(4030), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_COLON, + [173152] = 7, + ACTIONS(6380), 1, + anon_sym_LBRACK, + ACTIONS(7063), 1, + anon_sym_LPAREN, + ACTIONS(7285), 1, + anon_sym_COLON, + ACTIONS(7287), 1, + sym__newline, + STATE(5308), 1, + sym_argument_list, + STATE(5309), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7070), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [176586] = 4, - ACTIONS(7290), 1, + [173175] = 4, + ACTIONS(7289), 1, anon_sym_COMMA, STATE(4035), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7074), 4, - anon_sym_RPAREN, + ACTIONS(7116), 4, anon_sym_if, anon_sym_async, anon_sym_for, - [176603] = 6, - ACTIONS(6800), 1, + anon_sym_RBRACK, + [173192] = 6, + ACTIONS(6687), 1, anon_sym_as, - ACTIONS(6802), 1, + ACTIONS(6689), 1, anon_sym_if, - ACTIONS(6804), 1, + ACTIONS(6691), 1, anon_sym_and, - ACTIONS(6806), 1, + ACTIONS(6693), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4251), 2, + ACTIONS(4272), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [176624] = 5, - ACTIONS(6804), 1, + [173213] = 6, + ACTIONS(6261), 1, + anon_sym_as, + ACTIONS(6263), 1, + anon_sym_if, + ACTIONS(6265), 1, anon_sym_and, - ACTIONS(6806), 1, + ACTIONS(6267), 1, anon_sym_or, - ACTIONS(7292), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4367), 3, + ACTIONS(7106), 2, anon_sym_COMMA, - anon_sym_if, - anon_sym_RBRACE, - [176643] = 4, - ACTIONS(6804), 1, - anon_sym_and, - ACTIONS(6806), 1, - anon_sym_or, + anon_sym_RBRACK, + [173234] = 3, + STATE(4094), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4203), 4, + ACTIONS(7291), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_RBRACE, - [176660] = 3, - ACTIONS(6804), 1, - anon_sym_and, + anon_sym_COLON, + anon_sym_PIPE, + [173249] = 3, + ACTIONS(7293), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4211), 5, + ACTIONS(6607), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_RBRACE, - anon_sym_or, - [176675] = 6, - ACTIONS(6800), 1, + anon_sym_COLON, + anon_sym_PIPE, + [173264] = 7, + ACTIONS(7295), 1, + anon_sym_COMMA, + ACTIONS(7297), 1, anon_sym_as, - ACTIONS(6802), 1, + ACTIONS(7299), 1, anon_sym_if, - ACTIONS(6804), 1, - anon_sym_and, - ACTIONS(6806), 1, - anon_sym_or, + ACTIONS(7301), 1, + anon_sym_COLON, + STATE(4264), 1, + aux_sym_case_clause_repeat1, + STATE(5238), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4339), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [176696] = 6, - ACTIONS(6800), 1, + [173287] = 6, + ACTIONS(6912), 1, anon_sym_as, - ACTIONS(6802), 1, + ACTIONS(6914), 1, anon_sym_if, - ACTIONS(6804), 1, + ACTIONS(6916), 1, anon_sym_and, - ACTIONS(6806), 1, + ACTIONS(6918), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4354), 2, + ACTIONS(4222), 2, anon_sym_COMMA, anon_sym_RBRACE, - [176717] = 4, - ACTIONS(7295), 1, - anon_sym_COMMA, - STATE(4034), 1, - aux_sym_for_in_clause_repeat1, + [173308] = 5, + ACTIONS(6916), 1, + anon_sym_and, + ACTIONS(6918), 1, + anon_sym_or, + ACTIONS(7303), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7033), 4, + ACTIONS(4238), 3, + anon_sym_COMMA, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_RBRACE, - [176734] = 3, + [173327] = 4, + ACTIONS(6916), 1, + anon_sym_and, + ACTIONS(6918), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7297), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6560), 4, + ACTIONS(4249), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [176749] = 2, + anon_sym_if, + anon_sym_RBRACE, + [173344] = 3, + ACTIONS(6916), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7299), 6, - sym__newline, - anon_sym_COLON, - anon_sym_except, - anon_sym_with, - anon_sym_nogil, - anon_sym_noexcept, - [176762] = 7, - ACTIONS(6375), 1, - anon_sym_LBRACK, - ACTIONS(7008), 1, - anon_sym_LPAREN, - ACTIONS(7301), 1, - anon_sym_COLON, - ACTIONS(7303), 1, - sym__newline, - STATE(5231), 1, - sym_argument_list, - STATE(5232), 1, - sym_external_definition, + ACTIONS(4253), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_or, + [173359] = 6, + ACTIONS(6912), 1, + anon_sym_as, + ACTIONS(6914), 1, + anon_sym_if, + ACTIONS(6916), 1, + anon_sym_and, + ACTIONS(6918), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176785] = 6, - ACTIONS(6800), 1, + ACTIONS(4264), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [173380] = 6, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6802), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6804), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6806), 1, + ACTIONS(5767), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6340), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [176806] = 6, - ACTIONS(6641), 1, + ACTIONS(7306), 2, + sym__newline, + anon_sym_SEMI, + [173401] = 6, + ACTIONS(6912), 1, anon_sym_as, - ACTIONS(6643), 1, + ACTIONS(6914), 1, anon_sym_if, - ACTIONS(6645), 1, + ACTIONS(6916), 1, anon_sym_and, - ACTIONS(6647), 1, + ACTIONS(6918), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3644), 2, - anon_sym_RPAREN, + ACTIONS(4272), 2, anon_sym_COMMA, - [176827] = 2, + anon_sym_RBRACE, + [173422] = 4, + ACTIONS(7249), 1, + anon_sym_PIPE, + STATE(4094), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7305), 5, + ACTIONS(7308), 4, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + [173439] = 4, + ACTIONS(7310), 1, anon_sym_PIPE, - [176839] = 2, + STATE(4133), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5311), 5, + ACTIONS(7291), 4, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [176851] = 6, - ACTIONS(6711), 1, - anon_sym_COMMA, - ACTIONS(7307), 1, - anon_sym_LPAREN, - ACTIONS(7309), 1, - anon_sym_EQ, - ACTIONS(7311), 1, - anon_sym_RBRACK, - STATE(4595), 1, - aux_sym_type_index_repeat1, - ACTIONS(3), 2, + [173456] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - [176871] = 3, - ACTIONS(7313), 1, - anon_sym_LPAREN, + ACTIONS(7315), 1, + anon_sym_BSLASH, + ACTIONS(7313), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [173473] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6560), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [176885] = 6, - ACTIONS(7315), 1, - anon_sym_pass, - ACTIONS(7317), 1, + ACTIONS(7317), 6, sym__newline, - ACTIONS(7319), 1, - sym__indent, - STATE(2804), 1, - sym_pass_statement, - STATE(2875), 1, - sym_extern_suite, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [173486] = 5, + ACTIONS(7187), 1, + anon_sym_DOT, + ACTIONS(7189), 1, + anon_sym_COLON, + ACTIONS(7193), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176905] = 6, - ACTIONS(7321), 1, - anon_sym_pass, - ACTIONS(7323), 1, + ACTIONS(7319), 3, sym__newline, - ACTIONS(7325), 1, - sym__indent, - STATE(499), 1, - sym_pass_statement, - STATE(500), 1, - sym_extern_suite, + anon_sym_SEMI, + anon_sym_EQ, + [173505] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176925] = 4, - ACTIONS(7327), 1, + ACTIONS(7321), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - STATE(4289), 1, - aux_sym_union_pattern_repeat1, + [173518] = 7, + ACTIONS(6236), 1, + anon_sym_LPAREN, + ACTIONS(6242), 1, + anon_sym_LBRACK, + ACTIONS(7323), 1, + sym_identifier, + STATE(1079), 1, + sym_c_function_definition, + STATE(3748), 1, + sym_c_parameters, + STATE(5189), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7183), 3, - anon_sym_RPAREN, + [173541] = 4, + ACTIONS(3459), 1, + anon_sym_DOT, + STATE(4064), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6206), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, - [176941] = 6, - ACTIONS(7329), 1, - anon_sym_COLON, - ACTIONS(7331), 1, - anon_sym_LBRACK, - ACTIONS(7333), 1, - anon_sym_nogil, - ACTIONS(7335), 1, - sym__newline, - STATE(4797), 1, - sym_template_params, + [173558] = 6, + ACTIONS(6261), 1, + anon_sym_as, + ACTIONS(6263), 1, + anon_sym_if, + ACTIONS(6265), 1, + anon_sym_and, + ACTIONS(6267), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176961] = 2, + ACTIONS(6436), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [173579] = 6, + ACTIONS(6912), 1, + anon_sym_as, + ACTIONS(6914), 1, + anon_sym_if, + ACTIONS(6916), 1, + anon_sym_and, + ACTIONS(6918), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5259), 5, + ACTIONS(6498), 2, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, anon_sym_RBRACE, - sym_type_conversion, - [176973] = 6, - ACTIONS(7337), 1, - anon_sym_pass, - ACTIONS(7339), 1, - sym__newline, - ACTIONS(7341), 1, - sym__indent, - STATE(1029), 1, - sym_extern_suite, - STATE(1180), 1, - sym_pass_statement, + [173600] = 4, + ACTIONS(7327), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176993] = 6, - ACTIONS(7331), 1, - anon_sym_LBRACK, - ACTIONS(7343), 1, - anon_sym_COLON, - ACTIONS(7345), 1, - anon_sym_nogil, - ACTIONS(7347), 1, + STATE(4142), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + ACTIONS(7325), 3, sym__newline, - STATE(4916), 1, - sym_template_params, + anon_sym_COMMA, + anon_sym_EQ, + [173617] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177013] = 4, - ACTIONS(7349), 1, + ACTIONS(7330), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - STATE(4162), 1, - aux_sym_union_pattern_repeat1, + [173629] = 6, + ACTIONS(7332), 1, + anon_sym_pass, + ACTIONS(7334), 1, + sym__newline, + ACTIONS(7336), 1, + sym__indent, + STATE(499), 1, + sym_pass_statement, + STATE(536), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7129), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [177029] = 2, + [173649] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7351), 5, + ACTIONS(7338), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [177041] = 2, + [173661] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7046), 5, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [177053] = 5, - ACTIONS(7093), 1, + ACTIONS(6177), 5, anon_sym_DOT, - ACTIONS(7097), 1, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(7101), 1, + anon_sym_RBRACK, anon_sym_PIPE, + [173673] = 6, + ACTIONS(7340), 1, + anon_sym_pass, + ACTIONS(7342), 1, + sym__newline, + ACTIONS(7344), 1, + sym__indent, + STATE(1134), 1, + sym_pass_statement, + STATE(1248), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7353), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [177071] = 2, + [173693] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6202), 5, + ACTIONS(7346), 5, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [177083] = 6, - ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(7355), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [177103] = 5, - ACTIONS(7357), 1, - sym_identifier, - ACTIONS(7359), 1, anon_sym_COLON, - ACTIONS(7363), 1, - sym__newline, + anon_sym_PIPE, + [173705] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7361), 2, - anon_sym_class, - anon_sym_struct, - [177121] = 6, - ACTIONS(6711), 1, + ACTIONS(3478), 5, anon_sym_COMMA, - ACTIONS(7307), 1, - anon_sym_LPAREN, - ACTIONS(7365), 1, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(7367), 1, - anon_sym_RBRACK, - STATE(4608), 1, - aux_sym_type_index_repeat1, + anon_sym_RBRACE, + sym_type_conversion, + [173717] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177141] = 5, - ACTIONS(7369), 1, - sym_identifier, - ACTIONS(7371), 1, + ACTIONS(7348), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(7375), 1, - sym__newline, + anon_sym_PIPE, + [173729] = 3, + ACTIONS(7350), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7373), 2, - anon_sym_class, - anon_sym_struct, - [177159] = 3, - STATE(4162), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(6607), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [173743] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7149), 4, + ACTIONS(7352), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [177173] = 4, - ACTIONS(7377), 1, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - STATE(4156), 1, - aux_sym_union_pattern_repeat1, + [173755] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7149), 3, + ACTIONS(7354), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [177189] = 6, - ACTIONS(6265), 1, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [173767] = 6, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6293), 1, anon_sym_or, - ACTIONS(7380), 1, + ACTIONS(7356), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177209] = 2, - ACTIONS(3), 2, + [173787] = 6, + ACTIONS(7358), 1, + anon_sym_LBRACE, + ACTIONS(7360), 1, + anon_sym_RBRACE, + ACTIONS(7362), 1, + aux_sym_format_specifier_token1, + STATE(4292), 1, + aux_sym_format_specifier_repeat1, + STATE(4645), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(7382), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [177221] = 5, - ACTIONS(7384), 1, - anon_sym_COMMA, - ACTIONS(7386), 1, - anon_sym_RBRACE, - STATE(4625), 1, - aux_sym_dict_pattern_repeat1, + [173807] = 6, + ACTIONS(7332), 1, + anon_sym_pass, + ACTIONS(7364), 1, + sym__newline, + ACTIONS(7366), 1, + sym__indent, + STATE(508), 1, + sym_pass_statement, + STATE(548), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6560), 2, - anon_sym_COLON, - anon_sym_PIPE, - [177239] = 5, - ACTIONS(7388), 1, + [173827] = 5, + ACTIONS(7368), 1, sym_identifier, - ACTIONS(7390), 1, + ACTIONS(7370), 1, anon_sym_COLON, - ACTIONS(7394), 1, + ACTIONS(7374), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7392), 2, + ACTIONS(7372), 2, anon_sym_class, anon_sym_struct, - [177257] = 5, - ACTIONS(3503), 1, - sym_string_start, - ACTIONS(7398), 1, - anon_sym_EQ, - STATE(4800), 1, - sym_string, + [173845] = 6, + ACTIONS(6712), 1, + sym_identifier, + ACTIONS(7376), 1, + anon_sym_LPAREN, + STATE(4203), 1, + sym_dotted_name, + STATE(4458), 1, + sym_aliased_import, + STATE(4979), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7396), 2, + [173865] = 6, + ACTIONS(7378), 1, + anon_sym_pass, + ACTIONS(7380), 1, sym__newline, - anon_sym_COMMA, - [177275] = 4, - ACTIONS(7349), 1, - anon_sym_PIPE, - STATE(4156), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7264), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [177291] = 2, + ACTIONS(7382), 1, + sym__indent, + STATE(2806), 1, + sym_pass_statement, + STATE(2835), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5132), 5, - anon_sym_COMMA, + [173885] = 6, + ACTIONS(7384), 1, anon_sym_COLON, + ACTIONS(7386), 1, anon_sym_EQ, + ACTIONS(7388), 1, anon_sym_RBRACE, + ACTIONS(7390), 1, sym_type_conversion, - [177303] = 6, - ACTIONS(7400), 1, - anon_sym_LBRACE, - ACTIONS(7402), 1, - anon_sym_RBRACE, - ACTIONS(7404), 1, - aux_sym_format_specifier_token1, - STATE(4170), 1, - aux_sym_format_specifier_repeat1, - STATE(4906), 1, - sym_interpolation, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [177323] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7103), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [177335] = 6, - ACTIONS(6711), 1, - anon_sym_COMMA, - ACTIONS(7307), 1, - anon_sym_LPAREN, - ACTIONS(7406), 1, - anon_sym_EQ, - ACTIONS(7408), 1, - anon_sym_RBRACK, - STATE(4862), 1, - aux_sym_type_index_repeat1, + STATE(5244), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177355] = 2, + [173905] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7410), 5, + ACTIONS(7392), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [177367] = 6, - ACTIONS(7321), 1, + [173917] = 6, + ACTIONS(7378), 1, anon_sym_pass, - ACTIONS(7412), 1, + ACTIONS(7380), 1, sym__newline, - ACTIONS(7414), 1, + ACTIONS(7382), 1, sym__indent, - STATE(508), 1, + STATE(2806), 1, sym_pass_statement, - STATE(509), 1, - sym_struct_suite, + STATE(2869), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177387] = 6, - ACTIONS(6265), 1, - anon_sym_as, - ACTIONS(6267), 1, - anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(7416), 1, - anon_sym_else, + [173937] = 6, + ACTIONS(6384), 1, + anon_sym_COLON, + ACTIONS(6394), 1, + sym__newline, + ACTIONS(6398), 1, + anon_sym_with, + ACTIONS(6400), 1, + anon_sym_nogil, + STATE(5123), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177407] = 6, - ACTIONS(7418), 1, - anon_sym_LBRACE, - ACTIONS(7421), 1, - anon_sym_RBRACE, - ACTIONS(7423), 1, - aux_sym_format_specifier_token1, - STATE(4170), 1, - aux_sym_format_specifier_repeat1, - STATE(4906), 1, - sym_interpolation, - ACTIONS(5), 2, + [173957] = 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177427] = 2, + ACTIONS(6224), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [173969] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7426), 5, + ACTIONS(7394), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [177439] = 2, + [173981] = 6, + ACTIONS(7340), 1, + anon_sym_pass, + ACTIONS(7396), 1, + sym__newline, + ACTIONS(7398), 1, + sym__indent, + STATE(1118), 1, + sym_pass_statement, + STATE(1266), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7428), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + [174001] = 4, + ACTIONS(7400), 1, anon_sym_PIPE, - [177451] = 2, + STATE(4273), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7430), 5, + ACTIONS(7257), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [177463] = 6, - ACTIONS(6265), 1, + anon_sym_RBRACK, + [174017] = 6, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6293), 1, anon_sym_or, - ACTIONS(7432), 1, + ACTIONS(7402), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177483] = 6, - ACTIONS(6423), 1, - anon_sym_with, - ACTIONS(6425), 1, - anon_sym_nogil, - ACTIONS(6441), 1, - anon_sym_COLON, - ACTIONS(6443), 1, - sym__newline, - STATE(5125), 1, - sym_gil_spec, + [174037] = 3, + STATE(4273), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177503] = 6, - ACTIONS(6267), 1, - anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(7434), 1, + ACTIONS(7291), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(7436), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [174051] = 5, + ACTIONS(7404), 1, + sym_identifier, + ACTIONS(7406), 1, anon_sym_COLON, + ACTIONS(7410), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177523] = 6, - ACTIONS(7315), 1, + ACTIONS(7408), 2, + anon_sym_class, + anon_sym_struct, + [174069] = 6, + ACTIONS(7340), 1, anon_sym_pass, - ACTIONS(7317), 1, + ACTIONS(7342), 1, sym__newline, - ACTIONS(7319), 1, + ACTIONS(7344), 1, sym__indent, - STATE(2804), 1, + STATE(1134), 1, sym_pass_statement, - STATE(2836), 1, - sym_extern_suite, + STATE(1137), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177543] = 5, - ACTIONS(7438), 1, - sym_identifier, - ACTIONS(7440), 1, + [174089] = 6, + ACTIONS(6398), 1, + anon_sym_with, + ACTIONS(6400), 1, + anon_sym_nogil, + ACTIONS(6484), 1, anon_sym_COLON, - ACTIONS(7444), 1, + ACTIONS(6486), 1, sym__newline, + STATE(5001), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7442), 2, - anon_sym_class, - anon_sym_struct, - [177561] = 2, + [174109] = 6, + ACTIONS(6398), 1, + anon_sym_with, + ACTIONS(6400), 1, + anon_sym_nogil, + ACTIONS(6406), 1, + anon_sym_COLON, + ACTIONS(6408), 1, + sym__newline, + STATE(5115), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7446), 5, + [174129] = 5, + ACTIONS(7412), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(7414), 1, + anon_sym_RBRACE, + STATE(4527), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6607), 2, anon_sym_COLON, anon_sym_PIPE, - [177573] = 6, - ACTIONS(7337), 1, + [174147] = 6, + ACTIONS(7378), 1, anon_sym_pass, - ACTIONS(7339), 1, + ACTIONS(7380), 1, sym__newline, - ACTIONS(7341), 1, + ACTIONS(7382), 1, sym__indent, - STATE(1113), 1, - sym_extern_suite, - STATE(1180), 1, + STATE(2806), 1, sym_pass_statement, + STATE(2818), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177593] = 6, - ACTIONS(7448), 1, - anon_sym_COLON, - ACTIONS(7450), 1, - anon_sym_EQ, - ACTIONS(7452), 1, - anon_sym_RBRACE, - ACTIONS(7454), 1, - sym_type_conversion, - STATE(5245), 1, - sym_format_specifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [177613] = 6, - ACTIONS(6265), 1, - anon_sym_as, - ACTIONS(6267), 1, - anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(7456), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [177633] = 2, + [174167] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7458), 5, + ACTIONS(7416), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [177645] = 2, + [174179] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7460), 5, + ACTIONS(7418), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [177657] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5998), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + [174191] = 4, + ACTIONS(7420), 1, anon_sym_PIPE, - [177669] = 6, - ACTIONS(6265), 1, - anon_sym_as, - ACTIONS(6267), 1, - anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(7462), 1, - anon_sym_else, + STATE(4178), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177689] = 6, - ACTIONS(3576), 1, - anon_sym_RPAREN, - ACTIONS(3578), 1, + ACTIONS(7291), 3, anon_sym_COMMA, - ACTIONS(7464), 1, - anon_sym_LPAREN, - ACTIONS(7466), 1, - anon_sym_EQ, - STATE(4503), 1, - aux_sym__typedargslist_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [177709] = 4, - ACTIONS(7470), 1, - anon_sym_EQ, + anon_sym_as, + anon_sym_RBRACK, + [174207] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7468), 2, + ACTIONS(5356), 5, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(7472), 2, - anon_sym_not, - anon_sym_or, - [177725] = 6, - ACTIONS(7321), 1, - anon_sym_pass, - ACTIONS(7323), 1, - sym__newline, - ACTIONS(7325), 1, - sym__indent, - STATE(499), 1, - sym_pass_statement, - STATE(562), 1, - sym_extern_suite, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [177745] = 4, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4203), 3, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [177761] = 6, - ACTIONS(7315), 1, - anon_sym_pass, - ACTIONS(7317), 1, - sym__newline, - ACTIONS(7319), 1, - sym__indent, - STATE(2804), 1, - sym_pass_statement, - STATE(2805), 1, - sym_extern_suite, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [177781] = 6, - ACTIONS(6265), 1, - anon_sym_as, - ACTIONS(6267), 1, - anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(7474), 1, - anon_sym_else, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [174219] = 5, + ACTIONS(7423), 1, + sym_identifier, + ACTIONS(7425), 1, + anon_sym_COLON, + ACTIONS(7429), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177801] = 6, - ACTIONS(7331), 1, - anon_sym_LBRACK, - ACTIONS(7476), 1, + ACTIONS(7427), 2, + anon_sym_class, + anon_sym_struct, + [174237] = 6, + ACTIONS(6396), 1, anon_sym_COLON, - ACTIONS(7478), 1, + ACTIONS(6398), 1, + anon_sym_with, + ACTIONS(6400), 1, anon_sym_nogil, - ACTIONS(7480), 1, + ACTIONS(6402), 1, sym__newline, - STATE(4836), 1, - sym_template_params, + STATE(5175), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177821] = 6, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + [174257] = 6, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(7482), 1, - sym__newline, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(7431), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177841] = 6, - ACTIONS(7315), 1, + [174277] = 6, + ACTIONS(7332), 1, anon_sym_pass, - ACTIONS(7317), 1, + ACTIONS(7334), 1, sym__newline, - ACTIONS(7319), 1, + ACTIONS(7336), 1, sym__indent, - STATE(2804), 1, + STATE(499), 1, sym_pass_statement, - STATE(2867), 1, + STATE(564), 1, sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177861] = 6, - ACTIONS(6265), 1, - anon_sym_as, - ACTIONS(6267), 1, - anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(7484), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [177881] = 5, - ACTIONS(7486), 1, - sym_identifier, - ACTIONS(7488), 1, + [174297] = 6, + ACTIONS(6398), 1, + anon_sym_with, + ACTIONS(6400), 1, + anon_sym_nogil, + ACTIONS(7433), 1, anon_sym_COLON, - ACTIONS(7492), 1, + ACTIONS(7435), 1, sym__newline, + STATE(5187), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7490), 2, - anon_sym_class, - anon_sym_struct, - [177899] = 5, - ACTIONS(7494), 1, + [174317] = 6, + ACTIONS(7437), 1, + anon_sym_RPAREN, + ACTIONS(7439), 1, anon_sym_COMMA, - ACTIONS(7496), 1, - anon_sym_RBRACE, - STATE(4891), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6560), 2, + ACTIONS(7441), 1, anon_sym_COLON, - anon_sym_PIPE, - [177917] = 6, - ACTIONS(6265), 1, - anon_sym_as, - ACTIONS(6267), 1, - anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(7498), 1, - anon_sym_else, + ACTIONS(7443), 1, + anon_sym_EQ, + STATE(4668), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177937] = 4, - ACTIONS(7500), 1, - anon_sym_COMMA, - STATE(4200), 1, - aux_sym_assert_statement_repeat1, + [174337] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6340), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [177953] = 6, - ACTIONS(6423), 1, - anon_sym_with, - ACTIONS(6425), 1, - anon_sym_nogil, - ACTIONS(7503), 1, + ACTIONS(5358), 5, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(7505), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [174349] = 6, + ACTIONS(7340), 1, + anon_sym_pass, + ACTIONS(7342), 1, sym__newline, - STATE(5067), 1, - sym_gil_spec, + ACTIONS(7344), 1, + sym__indent, + STATE(1072), 1, + sym_struct_suite, + STATE(1134), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177973] = 6, - ACTIONS(6265), 1, + [174369] = 6, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6293), 1, anon_sym_or, - ACTIONS(7507), 1, - anon_sym_else, + ACTIONS(7445), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177993] = 6, - ACTIONS(6265), 1, - anon_sym_as, - ACTIONS(6267), 1, + [174389] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7447), 5, + anon_sym_COMMA, anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(7509), 1, - anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [174401] = 6, + ACTIONS(7332), 1, + anon_sym_pass, + ACTIONS(7334), 1, + sym__newline, + ACTIONS(7336), 1, + sym__indent, + STATE(499), 1, + sym_pass_statement, + STATE(519), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178013] = 6, - ACTIONS(7337), 1, + [174421] = 6, + ACTIONS(7332), 1, anon_sym_pass, - ACTIONS(7511), 1, + ACTIONS(7334), 1, sym__newline, - ACTIONS(7513), 1, + ACTIONS(7336), 1, sym__indent, - STATE(1131), 1, - sym_struct_suite, - STATE(1216), 1, + STATE(499), 1, sym_pass_statement, + STATE(500), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178033] = 4, - ACTIONS(7515), 1, - anon_sym_PIPE, - STATE(4290), 1, - aux_sym_union_pattern_repeat1, + [174441] = 6, + ACTIONS(6398), 1, + anon_sym_with, + ACTIONS(6400), 1, + anon_sym_nogil, + ACTIONS(6565), 1, + anon_sym_COLON, + ACTIONS(6567), 1, + sym__newline, + STATE(5063), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7264), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [178049] = 6, - ACTIONS(6265), 1, + [174461] = 6, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6293), 1, anon_sym_or, - ACTIONS(7517), 1, + ACTIONS(7449), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178069] = 2, + [174481] = 4, + ACTIONS(7451), 1, + anon_sym_PIPE, + STATE(4317), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7519), 5, + ACTIONS(7308), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [178081] = 2, + [174497] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7006), 5, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(7447), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [174509] = 6, + ACTIONS(7453), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [178093] = 4, - ACTIONS(7523), 1, - anon_sym_DOT, - STATE(4209), 1, - aux_sym_import_prefix_repeat1, + ACTIONS(7455), 1, + anon_sym_LBRACK, + ACTIONS(7457), 1, + anon_sym_nogil, + ACTIONS(7459), 1, + sym__newline, + STATE(4871), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7521), 3, - anon_sym_import, - anon_sym_cimport, - sym_identifier, - [178109] = 2, + [174529] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3628), 5, + ACTIONS(7253), 5, anon_sym_DOT, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [178121] = 2, + [174541] = 6, + ACTIONS(7340), 1, + anon_sym_pass, + ACTIONS(7396), 1, + sym__newline, + ACTIONS(7398), 1, + sym__indent, + STATE(1118), 1, + sym_pass_statement, + STATE(1140), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7147), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [178133] = 2, + [174561] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7526), 5, + ACTIONS(5270), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [178145] = 6, - ACTIONS(6265), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [174573] = 6, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(5767), 1, anon_sym_or, - ACTIONS(7528), 1, - anon_sym_else, + ACTIONS(7461), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178165] = 6, - ACTIONS(7337), 1, + [174593] = 6, + ACTIONS(7332), 1, anon_sym_pass, - ACTIONS(7339), 1, + ACTIONS(7364), 1, sym__newline, - ACTIONS(7341), 1, + ACTIONS(7366), 1, sym__indent, - STATE(1174), 1, - sym_extern_suite, - STATE(1180), 1, + STATE(508), 1, sym_pass_statement, + STATE(526), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178185] = 6, - ACTIONS(6265), 1, - anon_sym_as, - ACTIONS(6267), 1, - anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(7530), 1, - anon_sym_else, + [174613] = 5, + ACTIONS(7463), 1, + sym_identifier, + ACTIONS(7465), 1, + anon_sym_COLON, + ACTIONS(7469), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178205] = 6, - ACTIONS(7321), 1, - anon_sym_pass, - ACTIONS(7323), 1, - sym__newline, - ACTIONS(7325), 1, - sym__indent, - STATE(499), 1, - sym_pass_statement, - STATE(548), 1, - sym_extern_suite, + ACTIONS(7467), 2, + anon_sym_class, + anon_sym_struct, + [174631] = 5, + ACTIONS(7473), 1, + anon_sym_COMMA, + ACTIONS(7475), 1, + anon_sym_as, + STATE(4404), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178225] = 6, - ACTIONS(6265), 1, + ACTIONS(7471), 2, + sym__newline, + anon_sym_SEMI, + [174649] = 6, + ACTIONS(5761), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(5763), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(5765), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(5767), 1, anon_sym_or, - ACTIONS(7532), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [178245] = 2, + ACTIONS(7477), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7428), 5, - anon_sym_COMMA, - anon_sym_as, + [174669] = 6, + ACTIONS(7384), 1, anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(7479), 1, + anon_sym_EQ, + ACTIONS(7481), 1, anon_sym_RBRACE, - [178257] = 6, - ACTIONS(6423), 1, - anon_sym_with, - ACTIONS(6425), 1, - anon_sym_nogil, - ACTIONS(6572), 1, - anon_sym_COLON, - ACTIONS(6574), 1, - sym__newline, - STATE(5167), 1, - sym_gil_spec, + ACTIONS(7483), 1, + sym_type_conversion, + STATE(5505), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178277] = 6, - ACTIONS(6265), 1, + [174689] = 6, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6293), 1, anon_sym_or, - ACTIONS(7534), 1, + ACTIONS(7485), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178297] = 6, - ACTIONS(7315), 1, - anon_sym_pass, - ACTIONS(7317), 1, - sym__newline, - ACTIONS(7319), 1, - sym__indent, - STATE(2804), 1, - sym_pass_statement, - STATE(2848), 1, - sym_extern_suite, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [178317] = 6, - ACTIONS(6265), 1, + [174709] = 6, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6293), 1, anon_sym_or, - ACTIONS(7536), 1, - anon_sym_COLON, + ACTIONS(7487), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178337] = 6, - ACTIONS(6711), 1, + [174729] = 6, + ACTIONS(6790), 1, anon_sym_COMMA, - ACTIONS(7307), 1, + ACTIONS(7489), 1, anon_sym_LPAREN, - ACTIONS(7538), 1, + ACTIONS(7491), 1, anon_sym_EQ, - ACTIONS(7540), 1, + ACTIONS(7493), 1, anon_sym_RBRACK, - STATE(4884), 1, + STATE(4639), 1, aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178357] = 6, - ACTIONS(6265), 1, - anon_sym_as, - ACTIONS(6267), 1, + [174749] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7086), 5, + anon_sym_COMMA, anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(7542), 1, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [174761] = 6, + ACTIONS(7332), 1, + anon_sym_pass, + ACTIONS(7364), 1, + sym__newline, + ACTIONS(7366), 1, + sym__indent, + STATE(508), 1, + sym_pass_statement, + STATE(534), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178377] = 6, - ACTIONS(6265), 1, + [174781] = 6, + ACTIONS(7340), 1, + anon_sym_pass, + ACTIONS(7396), 1, + sym__newline, + ACTIONS(7398), 1, + sym__indent, + STATE(1118), 1, + sym_pass_statement, + STATE(1172), 1, + sym_extern_suite, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [174801] = 6, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6293), 1, anon_sym_or, - ACTIONS(7544), 1, - anon_sym_COLON, + ACTIONS(7495), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178397] = 2, + [174821] = 5, + ACTIONS(7497), 1, + sym_identifier, + ACTIONS(7499), 1, + anon_sym_COLON, + ACTIONS(7503), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7546), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [178409] = 6, - ACTIONS(7315), 1, + ACTIONS(7501), 2, + anon_sym_class, + anon_sym_struct, + [174839] = 6, + ACTIONS(7378), 1, anon_sym_pass, - ACTIONS(7548), 1, + ACTIONS(7505), 1, sym__newline, - ACTIONS(7550), 1, + ACTIONS(7507), 1, sym__indent, - STATE(2795), 1, - sym_pass_statement, - STATE(2910), 1, + STATE(2827), 1, sym_struct_suite, + STATE(2855), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178429] = 6, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, - anon_sym_as, - ACTIONS(5791), 1, - anon_sym_if, - ACTIONS(7552), 1, - sym__newline, + [174859] = 5, + ACTIONS(3528), 1, + sym_string_start, + ACTIONS(7511), 1, + anon_sym_EQ, + STATE(4531), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178449] = 2, + ACTIONS(7509), 2, + sym__newline, + anon_sym_COMMA, + [174877] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7351), 5, + ACTIONS(7086), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [178461] = 6, - ACTIONS(7315), 1, - anon_sym_pass, - ACTIONS(7548), 1, - sym__newline, - ACTIONS(7550), 1, - sym__indent, - STATE(2795), 1, - sym_pass_statement, - STATE(2830), 1, - sym_struct_suite, + [174889] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178481] = 5, - ACTIONS(7554), 1, + ACTIONS(7317), 5, + anon_sym_DOT, anon_sym_COMMA, - ACTIONS(7556), 1, - anon_sym_RBRACE, - STATE(4817), 1, - aux_sym_dict_pattern_repeat1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [174901] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6560), 2, + ACTIONS(7513), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [178499] = 2, + [174913] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7558), 5, + ACTIONS(7515), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [178511] = 2, + [174925] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7560), 5, + ACTIONS(7517), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [178523] = 6, - ACTIONS(6265), 1, - anon_sym_as, - ACTIONS(6267), 1, - anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(7562), 1, + [174937] = 5, + ACTIONS(7053), 1, + anon_sym_DOT, + ACTIONS(7057), 1, anon_sym_COLON, + ACTIONS(7061), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178543] = 6, - ACTIONS(6267), 1, - anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(7434), 1, - anon_sym_as, - ACTIONS(7564), 1, - anon_sym_COLON, + ACTIONS(7319), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [174955] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178563] = 6, - ACTIONS(6265), 1, + ACTIONS(7447), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [174967] = 6, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6293), 1, anon_sym_or, - ACTIONS(7566), 1, - anon_sym_COLON, + ACTIONS(7519), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178583] = 6, - ACTIONS(7315), 1, - anon_sym_pass, - ACTIONS(7548), 1, - sym__newline, - ACTIONS(7550), 1, - sym__indent, - STATE(2795), 1, - sym_pass_statement, - STATE(2839), 1, - sym_struct_suite, + [174987] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178603] = 6, - ACTIONS(6265), 1, - anon_sym_as, - ACTIONS(6267), 1, - anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(7568), 1, + ACTIONS(7321), 5, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [174999] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178623] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7570), 5, + ACTIONS(7521), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [178635] = 6, - ACTIONS(6265), 1, - anon_sym_as, - ACTIONS(6267), 1, - anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(7572), 1, - anon_sym_COLON, + [175011] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178655] = 6, - ACTIONS(6407), 1, - anon_sym_COLON, - ACTIONS(6417), 1, - sym__newline, - ACTIONS(6423), 1, - anon_sym_with, - ACTIONS(6425), 1, - anon_sym_nogil, - STATE(5121), 1, - sym_gil_spec, + ACTIONS(7086), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [175023] = 5, + ACTIONS(6712), 1, + sym_identifier, + STATE(4479), 1, + sym_dotted_name, + STATE(4966), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178675] = 2, + ACTIONS(7523), 2, + sym__newline, + anon_sym_SEMI, + [175041] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7574), 5, + ACTIONS(7525), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [178687] = 6, - ACTIONS(7337), 1, - anon_sym_pass, - ACTIONS(7339), 1, + [175053] = 6, + ACTIONS(7455), 1, + anon_sym_LBRACK, + ACTIONS(7527), 1, + anon_sym_COLON, + ACTIONS(7529), 1, + anon_sym_nogil, + ACTIONS(7531), 1, sym__newline, - ACTIONS(7341), 1, - sym__indent, - STATE(1180), 1, - sym_pass_statement, - STATE(1181), 1, - sym_extern_suite, + STATE(4946), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178707] = 2, + [175073] = 6, + ACTIONS(6287), 1, + anon_sym_as, + ACTIONS(6289), 1, + anon_sym_if, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(7533), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7576), 5, - anon_sym_COMMA, + [175093] = 6, + ACTIONS(6287), 1, anon_sym_as, + ACTIONS(6289), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [178719] = 4, - ACTIONS(7578), 1, - anon_sym_COMMA, - STATE(4200), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(7535), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2888), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [178735] = 6, - ACTIONS(6265), 1, + [175113] = 6, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6293), 1, anon_sym_or, - ACTIONS(7580), 1, - anon_sym_COLON, + ACTIONS(7537), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178755] = 2, + [175133] = 6, + ACTIONS(6287), 1, + anon_sym_as, + ACTIONS(6289), 1, + anon_sym_if, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(7539), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7227), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [178767] = 5, - ACTIONS(7093), 1, - anon_sym_DOT, - ACTIONS(7097), 1, + [175153] = 6, + ACTIONS(6287), 1, + anon_sym_as, + ACTIONS(6289), 1, + anon_sym_if, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(6697), 1, anon_sym_COLON, - ACTIONS(7101), 1, - anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7231), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [178785] = 2, + [175173] = 6, + ACTIONS(6287), 1, + anon_sym_as, + ACTIONS(6289), 1, + anon_sym_if, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(7541), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7233), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + [175193] = 4, + ACTIONS(7451), 1, anon_sym_PIPE, - [178797] = 2, + STATE(4317), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7351), 5, + ACTIONS(7257), 3, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + [175209] = 6, + ACTIONS(6287), 1, + anon_sym_as, + ACTIONS(6289), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [178809] = 2, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(7543), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [175229] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7582), 5, + ACTIONS(7545), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [178821] = 4, - ACTIONS(7584), 1, - anon_sym_EQ, + [175241] = 5, + ACTIONS(7547), 1, + anon_sym_COMMA, + ACTIONS(7549), 1, + anon_sym_RBRACE, + STATE(4635), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7468), 2, + ACTIONS(6607), 2, + anon_sym_COLON, + anon_sym_PIPE, + [175259] = 3, + STATE(4317), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7291), 4, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7586), 2, - anon_sym_not, - anon_sym_or, - [178837] = 2, + anon_sym_as, + anon_sym_PIPE, + [175273] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7588), 5, + ACTIONS(7551), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [178849] = 2, + [175285] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7590), 5, + ACTIONS(7553), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [178861] = 2, + [175297] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7592), 5, + ACTIONS(7338), 5, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [175309] = 6, + ACTIONS(6287), 1, anon_sym_as, + ACTIONS(6289), 1, anon_sym_if, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(7555), 1, anon_sym_COLON, - anon_sym_PIPE, - [178873] = 6, - ACTIONS(6423), 1, - anon_sym_with, - ACTIONS(6425), 1, - anon_sym_nogil, - ACTIONS(7594), 1, - anon_sym_COLON, - ACTIONS(7596), 1, - sym__newline, - STATE(5098), 1, - sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178893] = 6, - ACTIONS(6265), 1, + [175329] = 6, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6293), 1, anon_sym_or, - ACTIONS(6612), 1, + ACTIONS(7557), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178913] = 5, - ACTIONS(7600), 1, - anon_sym_COMMA, - ACTIONS(7602), 1, - anon_sym_as, - STATE(4414), 1, - aux_sym__import_list_repeat1, + [175349] = 4, + ACTIONS(7559), 1, + anon_sym_PIPE, + STATE(4246), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7598), 2, - sym__newline, - anon_sym_SEMI, - [178931] = 2, + ACTIONS(7291), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [175365] = 3, + ACTIONS(7562), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3459), 5, + ACTIONS(6607), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - sym_type_conversion, - [178943] = 2, + [175379] = 4, + ACTIONS(7564), 1, + anon_sym_PIPE, + STATE(4258), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7604), 5, + ACTIONS(7308), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [178955] = 6, - ACTIONS(7337), 1, + anon_sym_RBRACE, + [175395] = 6, + ACTIONS(6790), 1, + anon_sym_COMMA, + ACTIONS(7489), 1, + anon_sym_LPAREN, + ACTIONS(7566), 1, + anon_sym_EQ, + ACTIONS(7568), 1, + anon_sym_RBRACK, + STATE(4905), 1, + aux_sym_type_index_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [175415] = 6, + ACTIONS(7340), 1, anon_sym_pass, - ACTIONS(7511), 1, + ACTIONS(7342), 1, sym__newline, - ACTIONS(7513), 1, + ACTIONS(7344), 1, sym__indent, - STATE(1216), 1, + STATE(1134), 1, sym_pass_statement, - STATE(1218), 1, + STATE(1190), 1, sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178975] = 6, - ACTIONS(6423), 1, - anon_sym_with, - ACTIONS(6425), 1, - anon_sym_nogil, - ACTIONS(6521), 1, - anon_sym_COLON, - ACTIONS(6523), 1, - sym__newline, - STATE(5168), 1, - sym_gil_spec, + [175435] = 5, + ACTIONS(7570), 1, + anon_sym_COMMA, + ACTIONS(7572), 1, + anon_sym_RBRACE, + STATE(4830), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178995] = 6, - ACTIONS(7448), 1, + ACTIONS(6607), 2, anon_sym_COLON, - ACTIONS(7606), 1, - anon_sym_EQ, - ACTIONS(7608), 1, - anon_sym_RBRACE, - ACTIONS(7610), 1, - sym_type_conversion, - STATE(5407), 1, - sym_format_specifier, + anon_sym_PIPE, + [175453] = 6, + ACTIONS(5761), 1, + anon_sym_as, + ACTIONS(5763), 1, + anon_sym_if, + ACTIONS(5765), 1, + anon_sym_and, + ACTIONS(5767), 1, + anon_sym_or, + ACTIONS(7574), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179015] = 4, - ACTIONS(7515), 1, - anon_sym_PIPE, - STATE(4205), 1, - aux_sym_union_pattern_repeat1, + [175473] = 6, + ACTIONS(6790), 1, + anon_sym_COMMA, + ACTIONS(7489), 1, + anon_sym_LPAREN, + ACTIONS(7576), 1, + anon_sym_EQ, + ACTIONS(7578), 1, + anon_sym_RBRACK, + STATE(4558), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7129), 3, - anon_sym_COMMA, + [175493] = 6, + ACTIONS(6287), 1, anon_sym_as, - anon_sym_RBRACE, - [179031] = 6, - ACTIONS(4654), 1, - anon_sym_COLON, - ACTIONS(7179), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(7612), 1, - anon_sym_COMMA, - STATE(4318), 1, - aux_sym_case_clause_repeat1, - STATE(5444), 1, - sym_if_clause, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(7580), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179051] = 6, - ACTIONS(7321), 1, - anon_sym_pass, - ACTIONS(7323), 1, - sym__newline, - ACTIONS(7325), 1, - sym__indent, - STATE(499), 1, - sym_pass_statement, - STATE(535), 1, - sym_extern_suite, + [175513] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179071] = 6, - ACTIONS(7315), 1, + ACTIONS(7515), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACE, + [175525] = 6, + ACTIONS(7332), 1, anon_sym_pass, - ACTIONS(7548), 1, + ACTIONS(7364), 1, sym__newline, - ACTIONS(7550), 1, + ACTIONS(7366), 1, sym__indent, - STATE(2795), 1, + STATE(508), 1, sym_pass_statement, - STATE(2845), 1, + STATE(509), 1, sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179091] = 5, - ACTIONS(7217), 1, - anon_sym_DOT, - ACTIONS(7616), 1, + [175545] = 6, + ACTIONS(6289), 1, + anon_sym_if, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(7582), 1, + anon_sym_as, + ACTIONS(7584), 1, anon_sym_COLON, - ACTIONS(7618), 1, - anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7614), 2, - sym__newline, - anon_sym_SEMI, - [179109] = 3, - STATE(4205), 1, + [175565] = 4, + ACTIONS(7564), 1, + anon_sym_PIPE, + STATE(4263), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7149), 4, + ACTIONS(7247), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, anon_sym_RBRACE, - [179123] = 2, + [175581] = 6, + ACTIONS(6287), 1, + anon_sym_as, + ACTIONS(6289), 1, + anon_sym_if, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(7586), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7620), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [179135] = 2, + [175601] = 4, + ACTIONS(7564), 1, + anon_sym_PIPE, + STATE(4258), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7622), 5, + ACTIONS(7257), 3, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACE, + [175617] = 6, + ACTIONS(6287), 1, + anon_sym_as, + ACTIONS(6289), 1, anon_sym_if, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(7588), 1, anon_sym_COLON, - anon_sym_PIPE, - [179147] = 6, - ACTIONS(7400), 1, - anon_sym_LBRACE, - ACTIONS(7624), 1, - anon_sym_RBRACE, - ACTIONS(7626), 1, - aux_sym_format_specifier_token1, - STATE(4164), 1, - aux_sym_format_specifier_repeat1, - STATE(4906), 1, - sym_interpolation, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179167] = 2, + [175637] = 3, + STATE(4258), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7088), 5, + ACTIONS(7291), 4, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [179179] = 2, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [175651] = 4, + ACTIONS(7590), 1, + anon_sym_PIPE, + STATE(4263), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7006), 5, - anon_sym_DOT, + ACTIONS(7291), 3, anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [175667] = 6, + ACTIONS(4621), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [179191] = 6, - ACTIONS(7337), 1, - anon_sym_pass, - ACTIONS(7511), 1, - sym__newline, - ACTIONS(7513), 1, - sym__indent, - STATE(1177), 1, - sym_struct_suite, - STATE(1216), 1, - sym_pass_statement, + ACTIONS(7299), 1, + anon_sym_if, + ACTIONS(7593), 1, + anon_sym_COMMA, + STATE(4444), 1, + aux_sym_case_clause_repeat1, + STATE(5248), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179211] = 5, - ACTIONS(7628), 1, - anon_sym_COMMA, - ACTIONS(7630), 1, - anon_sym_RBRACE, - STATE(4519), 1, - aux_sym_dict_pattern_repeat1, + [175687] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6560), 2, + ACTIONS(7595), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [179229] = 6, - ACTIONS(7632), 1, - anon_sym_RPAREN, - ACTIONS(7634), 1, + [175699] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7597), 5, anon_sym_COMMA, - ACTIONS(7636), 1, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(7638), 1, - anon_sym_EQ, - STATE(4968), 1, - aux_sym__typedargslist_repeat1, + anon_sym_PIPE, + [175711] = 4, + ACTIONS(7599), 1, + anon_sym_COMMA, + STATE(4267), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179249] = 6, - ACTIONS(7337), 1, - anon_sym_pass, - ACTIONS(7511), 1, + ACTIONS(6300), 3, sym__newline, - ACTIONS(7513), 1, - sym__indent, - STATE(1204), 1, - sym_struct_suite, - STATE(1216), 1, - sym_pass_statement, + anon_sym_SEMI, + anon_sym_from, + [175727] = 3, + ACTIONS(7602), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6607), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [175741] = 4, + ACTIONS(7400), 1, + anon_sym_PIPE, + STATE(4273), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179269] = 6, - ACTIONS(7321), 1, + ACTIONS(7308), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [175757] = 6, + ACTIONS(7378), 1, anon_sym_pass, - ACTIONS(7323), 1, + ACTIONS(7380), 1, sym__newline, - ACTIONS(7325), 1, + ACTIONS(7382), 1, sym__indent, - STATE(499), 1, + STATE(2806), 1, sym_pass_statement, - STATE(518), 1, + STATE(2915), 1, sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179289] = 6, - ACTIONS(6934), 1, + [175777] = 5, + ACTIONS(6712), 1, sym_identifier, - ACTIONS(7640), 1, - anon_sym_LPAREN, - STATE(4258), 1, + STATE(4479), 1, sym_dotted_name, - STATE(4329), 1, + STATE(4966), 1, sym_aliased_import, - STATE(5163), 1, - sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179309] = 6, - ACTIONS(6265), 1, - anon_sym_as, - ACTIONS(6267), 1, - anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(7642), 1, - anon_sym_COLON, + ACTIONS(7604), 2, + sym__newline, + anon_sym_SEMI, + [175795] = 4, + ACTIONS(7608), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179329] = 4, - ACTIONS(7327), 1, + ACTIONS(7606), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(7610), 2, + anon_sym_not, + anon_sym_or, + [175811] = 4, + ACTIONS(7400), 1, anon_sym_PIPE, - STATE(4289), 1, + STATE(4178), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7129), 3, - anon_sym_RPAREN, + ACTIONS(7247), 3, anon_sym_COMMA, anon_sym_as, - [179345] = 6, - ACTIONS(7321), 1, - anon_sym_pass, - ACTIONS(7412), 1, - sym__newline, - ACTIONS(7414), 1, - sym__indent, - STATE(508), 1, - sym_pass_statement, - STATE(525), 1, - sym_struct_suite, + anon_sym_RBRACK, + [175827] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179365] = 4, - ACTIONS(7646), 1, + ACTIONS(7612), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [175839] = 4, + ACTIONS(7616), 1, anon_sym_DOT, - STATE(4209), 1, + STATE(4321), 1, aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7644), 3, + ACTIONS(7614), 3, anon_sym_import, anon_sym_cimport, sym_identifier, - [179381] = 5, - ACTIONS(6934), 1, - sym_identifier, - STATE(4437), 1, - sym_dotted_name, - STATE(4927), 1, - sym_aliased_import, + [175855] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7648), 2, - sym__newline, - anon_sym_SEMI, - [179399] = 6, - ACTIONS(7321), 1, - anon_sym_pass, - ACTIONS(7412), 1, - sym__newline, - ACTIONS(7414), 1, - sym__indent, - STATE(508), 1, - sym_pass_statement, - STATE(546), 1, - sym_struct_suite, + ACTIONS(7618), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [175867] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179419] = 6, - ACTIONS(7321), 1, - anon_sym_pass, - ACTIONS(7412), 1, - sym__newline, - ACTIONS(7414), 1, - sym__indent, - STATE(508), 1, - sym_pass_statement, - STATE(533), 1, - sym_struct_suite, + ACTIONS(7620), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [175879] = 6, + ACTIONS(6287), 1, + anon_sym_as, + ACTIONS(6289), 1, + anon_sym_if, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(7622), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179439] = 3, - ACTIONS(7650), 1, - anon_sym_LPAREN, + [175899] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6560), 4, + ACTIONS(7624), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_RBRACE, - [179453] = 4, - ACTIONS(7327), 1, - anon_sym_PIPE, - STATE(4300), 1, - aux_sym_union_pattern_repeat1, + [175911] = 6, + ACTIONS(7378), 1, + anon_sym_pass, + ACTIONS(7505), 1, + sym__newline, + ACTIONS(7507), 1, + sym__indent, + STATE(2821), 1, + sym_struct_suite, + STATE(2855), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7264), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [179469] = 4, - ACTIONS(7652), 1, - anon_sym_PIPE, - STATE(4290), 1, - aux_sym_union_pattern_repeat1, + [175931] = 6, + ACTIONS(7378), 1, + anon_sym_pass, + ACTIONS(7505), 1, + sym__newline, + ACTIONS(7507), 1, + sym__indent, + STATE(2855), 1, + sym_pass_statement, + STATE(2856), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7149), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [179485] = 5, - ACTIONS(7655), 1, - sym_identifier, - ACTIONS(7657), 1, + [175951] = 6, + ACTIONS(6398), 1, + anon_sym_with, + ACTIONS(6400), 1, + anon_sym_nogil, + ACTIONS(6609), 1, anon_sym_COLON, - ACTIONS(7661), 1, + ACTIONS(6611), 1, sym__newline, + STATE(5133), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7659), 2, - anon_sym_class, - anon_sym_struct, - [179503] = 2, + [175971] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7663), 5, + ACTIONS(7092), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [179515] = 6, - ACTIONS(5733), 1, - anon_sym_and, - ACTIONS(5735), 1, - anon_sym_or, - ACTIONS(5789), 1, + [175983] = 6, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(5791), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(7665), 1, - sym__newline, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(7626), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179535] = 5, - ACTIONS(6934), 1, - sym_identifier, - STATE(4437), 1, - sym_dotted_name, - STATE(4927), 1, - sym_aliased_import, + [176003] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7648), 2, - sym__newline, - anon_sym_SEMI, - [179553] = 3, - STATE(4289), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(3627), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [176015] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7149), 4, - anon_sym_RPAREN, + ACTIONS(7255), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [179567] = 6, - ACTIONS(6265), 1, + [176027] = 6, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6293), 1, anon_sym_or, - ACTIONS(7667), 1, - anon_sym_else, + ACTIONS(7628), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179587] = 6, - ACTIONS(6265), 1, - anon_sym_as, - ACTIONS(6267), 1, - anon_sym_if, - ACTIONS(6269), 1, - anon_sym_and, - ACTIONS(6271), 1, - anon_sym_or, - ACTIONS(7669), 1, - anon_sym_else, + [176047] = 6, + ACTIONS(6398), 1, + anon_sym_with, + ACTIONS(6400), 1, + anon_sym_nogil, + ACTIONS(7630), 1, + anon_sym_COLON, + ACTIONS(7632), 1, + sym__newline, + STATE(5171), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179607] = 6, - ACTIONS(6265), 1, - anon_sym_as, - ACTIONS(6267), 1, - anon_sym_if, - ACTIONS(6269), 1, + [176067] = 4, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6293), 1, anon_sym_or, - ACTIONS(7671), 1, - anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179627] = 4, - ACTIONS(7515), 1, - anon_sym_PIPE, - STATE(4205), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(4249), 3, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [176083] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7183), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [179643] = 4, - ACTIONS(7673), 1, + ACTIONS(7092), 5, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - STATE(4300), 1, - aux_sym_union_pattern_repeat1, + [176095] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7149), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [179659] = 2, - ACTIONS(3), 2, + ACTIONS(7142), 5, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [176107] = 6, + ACTIONS(7634), 1, + anon_sym_LBRACE, + ACTIONS(7637), 1, + anon_sym_RBRACE, + ACTIONS(7639), 1, + aux_sym_format_specifier_token1, + STATE(4292), 1, + aux_sym_format_specifier_repeat1, + STATE(4645), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(7620), 5, - anon_sym_RPAREN, + [176127] = 4, + ACTIONS(7642), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [179671] = 5, - ACTIONS(6934), 1, - sym_identifier, - STATE(4437), 1, - sym_dotted_name, - STATE(4927), 1, - sym_aliased_import, + STATE(4267), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7676), 2, + ACTIONS(2839), 3, sym__newline, anon_sym_SEMI, - [179689] = 3, - ACTIONS(7678), 1, + anon_sym_from, + [176143] = 6, + ACTIONS(3582), 1, + anon_sym_RPAREN, + ACTIONS(3584), 1, + anon_sym_COMMA, + ACTIONS(7644), 1, anon_sym_LPAREN, + ACTIONS(7646), 1, + anon_sym_EQ, + STATE(4853), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6560), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [179703] = 6, - ACTIONS(6423), 1, + [176163] = 6, + ACTIONS(6398), 1, anon_sym_with, - ACTIONS(6425), 1, + ACTIONS(6400), 1, anon_sym_nogil, - ACTIONS(7680), 1, + ACTIONS(7648), 1, anon_sym_COLON, - ACTIONS(7682), 1, + ACTIONS(7650), 1, sym__newline, - STATE(5024), 1, + STATE(5033), 1, sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179723] = 4, - ACTIONS(7349), 1, - anon_sym_PIPE, - STATE(4162), 1, - aux_sym_union_pattern_repeat1, + [176183] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7183), 3, + ACTIONS(7142), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, anon_sym_RBRACK, - [179739] = 2, + anon_sym_PIPE, + [176195] = 6, + ACTIONS(6287), 1, + anon_sym_as, + ACTIONS(6289), 1, + anon_sym_if, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(7652), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7046), 5, + [176215] = 5, + ACTIONS(7053), 1, anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(7057), 1, anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(7061), 1, anon_sym_PIPE, - [179751] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7088), 5, - anon_sym_RPAREN, + ACTIONS(7654), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [176233] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7338), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [179763] = 6, - ACTIONS(7337), 1, + anon_sym_RBRACK, + [176245] = 6, + ACTIONS(7340), 1, anon_sym_pass, - ACTIONS(7339), 1, + ACTIONS(7396), 1, sym__newline, - ACTIONS(7341), 1, + ACTIONS(7398), 1, sym__indent, - STATE(1180), 1, + STATE(1118), 1, sym_pass_statement, - STATE(1193), 1, + STATE(1271), 1, sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179783] = 2, + [176265] = 6, + ACTIONS(7332), 1, + anon_sym_pass, + ACTIONS(7334), 1, + sym__newline, + ACTIONS(7336), 1, + sym__indent, + STATE(499), 1, + sym_pass_statement, + STATE(550), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7620), 5, - anon_sym_COMMA, + [176285] = 6, + ACTIONS(6289), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(7582), 1, + anon_sym_as, + ACTIONS(7656), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [176305] = 5, + ACTIONS(7658), 1, + anon_sym_COMMA, + ACTIONS(7660), 1, anon_sym_RBRACE, - [179795] = 2, + STATE(4511), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7103), 5, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(6607), 2, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [179807] = 6, - ACTIONS(6423), 1, - anon_sym_with, - ACTIONS(6425), 1, - anon_sym_nogil, - ACTIONS(6463), 1, - anon_sym_COLON, - ACTIONS(6465), 1, + [176323] = 6, + ACTIONS(7378), 1, + anon_sym_pass, + ACTIONS(7380), 1, sym__newline, - STATE(4978), 1, - sym_gil_spec, + ACTIONS(7382), 1, + sym__indent, + STATE(2806), 1, + sym_pass_statement, + STATE(2826), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179827] = 5, - ACTIONS(7217), 1, - anon_sym_DOT, - ACTIONS(7616), 1, + [176343] = 6, + ACTIONS(7455), 1, + anon_sym_LBRACK, + ACTIONS(7662), 1, anon_sym_COLON, - ACTIONS(7618), 1, - anon_sym_PIPE, + ACTIONS(7664), 1, + anon_sym_nogil, + ACTIONS(7666), 1, + sym__newline, + STATE(4824), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7231), 2, + [176363] = 6, + ACTIONS(6287), 1, + anon_sym_as, + ACTIONS(6289), 1, + anon_sym_if, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(7668), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [176383] = 5, + ACTIONS(7670), 1, + sym_identifier, + ACTIONS(7672), 1, + anon_sym_COLON, + ACTIONS(7676), 1, sym__newline, - anon_sym_SEMI, - [179845] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7088), 5, + ACTIONS(7674), 2, + anon_sym_class, + anon_sym_struct, + [176401] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7253), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [179857] = 6, - ACTIONS(6423), 1, - anon_sym_with, - ACTIONS(6425), 1, - anon_sym_nogil, - ACTIONS(6481), 1, anon_sym_COLON, - ACTIONS(6483), 1, - sym__newline, - STATE(4988), 1, - sym_gil_spec, + anon_sym_RBRACK, + anon_sym_PIPE, + [176413] = 6, + ACTIONS(6790), 1, + anon_sym_COMMA, + ACTIONS(7489), 1, + anon_sym_LPAREN, + ACTIONS(7678), 1, + anon_sym_EQ, + ACTIONS(7680), 1, + anon_sym_RBRACK, + STATE(4622), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179877] = 6, - ACTIONS(6265), 1, + [176433] = 6, + ACTIONS(6287), 1, anon_sym_as, - ACTIONS(6267), 1, + ACTIONS(6289), 1, anon_sym_if, - ACTIONS(6269), 1, + ACTIONS(6291), 1, anon_sym_and, - ACTIONS(6271), 1, + ACTIONS(6293), 1, anon_sym_or, - ACTIONS(7684), 1, + ACTIONS(7682), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179897] = 5, - ACTIONS(6934), 1, - sym_identifier, - STATE(4258), 1, - sym_dotted_name, - STATE(4329), 1, - sym_aliased_import, - STATE(5089), 1, - sym__import_list, + [176453] = 6, + ACTIONS(6287), 1, + anon_sym_as, + ACTIONS(6289), 1, + anon_sym_if, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(7684), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179914] = 4, - ACTIONS(7337), 1, - anon_sym_pass, + [176473] = 6, + ACTIONS(7358), 1, + anon_sym_LBRACE, ACTIONS(7686), 1, - sym__indent, - ACTIONS(3), 2, + anon_sym_RBRACE, + ACTIONS(7688), 1, + aux_sym_format_specifier_token1, + STATE(4155), 1, + aux_sym_format_specifier_repeat1, + STATE(4645), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - STATE(1321), 2, - sym_pass_statement, - sym__cppclass_suite, - [179929] = 4, - ACTIONS(7688), 1, - anon_sym_COMMA, - STATE(4318), 1, - aux_sym_case_clause_repeat1, + [176493] = 5, + ACTIONS(7187), 1, + anon_sym_DOT, + ACTIONS(7692), 1, + anon_sym_COLON, + ACTIONS(7694), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7691), 2, + ACTIONS(7690), 2, + sym__newline, + anon_sym_SEMI, + [176511] = 6, + ACTIONS(6287), 1, + anon_sym_as, + ACTIONS(6289), 1, anon_sym_if, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(7696), 1, anon_sym_COLON, - [179944] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7576), 4, - anon_sym_COMMA, - anon_sym_as, + [176531] = 6, + ACTIONS(7378), 1, + anon_sym_pass, + ACTIONS(7505), 1, + sym__newline, + ACTIONS(7507), 1, + sym__indent, + STATE(2844), 1, + sym_struct_suite, + STATE(2855), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [176551] = 6, + ACTIONS(7340), 1, + anon_sym_pass, + ACTIONS(7396), 1, + sym__newline, + ACTIONS(7398), 1, + sym__indent, + STATE(1118), 1, + sym_pass_statement, + STATE(1243), 1, + sym_extern_suite, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [176571] = 4, + ACTIONS(7451), 1, anon_sym_PIPE, - anon_sym_RBRACE, - [179955] = 4, - ACTIONS(7695), 1, - anon_sym_COLON, - ACTIONS(7697), 1, - anon_sym_EQ, + STATE(4246), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7693), 2, + ACTIONS(7247), 3, anon_sym_RPAREN, anon_sym_COMMA, - [179970] = 2, + anon_sym_as, + [176587] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7574), 4, + ACTIONS(7698), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [179981] = 5, - ACTIONS(7231), 1, - anon_sym_EQ, - ACTIONS(7699), 1, - anon_sym_DOT, - ACTIONS(7701), 1, + anon_sym_if, anon_sym_COLON, - ACTIONS(7703), 1, anon_sym_PIPE, + [176599] = 4, + ACTIONS(7700), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179998] = 4, - ACTIONS(7707), 1, - anon_sym_COMMA, - STATE(4476), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7705), 2, - anon_sym_from, - anon_sym_in, - [180013] = 4, - ACTIONS(7711), 1, + ACTIONS(7606), 2, anon_sym_COMMA, - STATE(4324), 1, - aux_sym_print_statement_repeat1, + anon_sym_COLON, + ACTIONS(7702), 2, + anon_sym_not, + anon_sym_or, + [176615] = 5, + ACTIONS(6712), 1, + sym_identifier, + STATE(4479), 1, + sym_dotted_name, + STATE(4966), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7709), 2, + ACTIONS(7604), 2, sym__newline, anon_sym_SEMI, - [180028] = 5, - ACTIONS(3503), 1, - sym_string_start, - ACTIONS(7714), 1, - anon_sym_COLON, - ACTIONS(7716), 1, - sym__newline, - STATE(5008), 1, - sym_string, + [176633] = 4, + ACTIONS(7706), 1, + anon_sym_DOT, + STATE(4321), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180045] = 5, - ACTIONS(3503), 1, - sym_string_start, - ACTIONS(7718), 1, + ACTIONS(7704), 3, + anon_sym_import, + anon_sym_cimport, + sym_identifier, + [176649] = 5, + ACTIONS(7187), 1, + anon_sym_DOT, + ACTIONS(7692), 1, anon_sym_COLON, - ACTIONS(7720), 1, - sym__newline, - STATE(5037), 1, - sym_string, + ACTIONS(7694), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180062] = 3, + ACTIONS(7319), 2, + sym__newline, + anon_sym_SEMI, + [176667] = 6, + ACTIONS(6287), 1, + anon_sym_as, + ACTIONS(6289), 1, + anon_sym_if, + ACTIONS(6291), 1, + anon_sym_and, + ACTIONS(6293), 1, + anon_sym_or, + ACTIONS(7709), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6780), 2, - anon_sym_COMMA, + [176687] = 5, + ACTIONS(3528), 1, + sym_string_start, + ACTIONS(7711), 1, anon_sym_COLON, - ACTIONS(6962), 2, - anon_sym_not, - anon_sym_or, - [180075] = 2, + ACTIONS(7713), 1, + sym__newline, + STATE(5155), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7519), 4, + [176704] = 5, + ACTIONS(7715), 1, + anon_sym_RPAREN, + ACTIONS(7717), 1, anon_sym_COMMA, + ACTIONS(7719), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [180086] = 4, - ACTIONS(7600), 1, - anon_sym_COMMA, - STATE(4469), 1, - aux_sym__import_list_repeat1, + STATE(4640), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7598), 2, - sym__newline, - anon_sym_SEMI, - [180101] = 2, + [176721] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7560), 4, + ACTIONS(7392), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [180112] = 5, - ACTIONS(7722), 1, + [176732] = 5, + ACTIONS(7471), 1, anon_sym_RPAREN, - ACTIONS(7724), 1, + ACTIONS(7721), 1, anon_sym_COMMA, - ACTIONS(7726), 1, + ACTIONS(7723), 1, anon_sym_as, - STATE(4514), 1, - aux_sym_case_clause_repeat1, + STATE(4818), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180129] = 5, - ACTIONS(7728), 1, + [176749] = 5, + ACTIONS(7725), 1, anon_sym_COMMA, - ACTIONS(7730), 1, + ACTIONS(7727), 1, anon_sym_as, - ACTIONS(7732), 1, + ACTIONS(7729), 1, anon_sym_RBRACK, - STATE(4515), 1, + STATE(4794), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180146] = 2, + [176766] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7526), 4, + ACTIONS(7521), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [180157] = 4, - ACTIONS(7707), 1, - anon_sym_COMMA, - STATE(4476), 1, - aux_sym__patterns_repeat1, + [176777] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7734), 2, - anon_sym_from, - anon_sym_in, - [180172] = 2, + ACTIONS(7330), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [176788] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7582), 4, + ACTIONS(7545), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [180183] = 2, + [176799] = 5, + ACTIONS(7489), 1, + anon_sym_LPAREN, + ACTIONS(7731), 1, + anon_sym_COMMA, + ACTIONS(7733), 1, + anon_sym_RBRACK, + STATE(4672), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7382), 4, - anon_sym_RPAREN, + [176816] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7551), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [180194] = 5, - ACTIONS(3503), 1, - sym_string_start, - ACTIONS(7736), 1, - anon_sym_COLON, - ACTIONS(7738), 1, - sym__newline, - STATE(5007), 1, - sym_string, + anon_sym_RBRACE, + [176827] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180211] = 2, + ACTIONS(7612), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [176838] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7410), 4, + ACTIONS(7620), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [180222] = 2, + [176849] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7460), 4, + ACTIONS(7595), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [180233] = 2, + [176860] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7519), 4, - anon_sym_RPAREN, + ACTIONS(7618), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [180244] = 5, - ACTIONS(7448), 1, - anon_sym_COLON, - ACTIONS(7740), 1, anon_sym_RBRACE, - ACTIONS(7742), 1, - sym_type_conversion, - STATE(5312), 1, - sym_format_specifier, + [176871] = 4, + ACTIONS(7737), 1, + anon_sym_COMMA, + STATE(4465), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7735), 2, + sym__newline, + anon_sym_SEMI, + [176886] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180261] = 2, + ACTIONS(7739), 4, + sym__newline, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + [176897] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7526), 4, - anon_sym_RPAREN, + ACTIONS(7346), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [180272] = 2, + anon_sym_RBRACE, + [176908] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7233), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(7348), 4, + anon_sym_COMMA, + anon_sym_as, anon_sym_PIPE, - [180283] = 5, - ACTIONS(7744), 1, - anon_sym_case, - ACTIONS(7746), 1, - sym__dedent, - STATE(4395), 1, - aux_sym__match_block_repeat1, - STATE(4972), 1, - sym_case_clause, + anon_sym_RBRACE, + [176919] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180300] = 2, + ACTIONS(7352), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [176930] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7446), 4, + ACTIONS(7354), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [180311] = 2, + anon_sym_RBRACE, + [176941] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7588), 4, + ACTIONS(7392), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [180322] = 2, + [176952] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7546), 4, + ACTIONS(7394), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [180333] = 2, + [176963] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7590), 4, + ACTIONS(7416), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [180344] = 2, + [176974] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7546), 4, - anon_sym_RPAREN, + ACTIONS(7418), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [180355] = 2, + anon_sym_RBRACE, + [176985] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7592), 4, + ACTIONS(7553), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [180366] = 2, + [176996] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7748), 4, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_identifier, - [180377] = 2, + ACTIONS(7595), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [177007] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7426), 4, + ACTIONS(7597), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [180388] = 2, + [177018] = 4, + ACTIONS(4825), 1, + anon_sym_LBRACK, + STATE(3395), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7446), 4, + ACTIONS(5647), 2, + anon_sym_DOT, + sym_identifier, + [177033] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7620), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [180399] = 5, - ACTIONS(3550), 1, - anon_sym_LBRACK, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(5090), 1, - sym_parameters, - STATE(5129), 1, - sym_type_parameter, + [177044] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180416] = 5, - ACTIONS(7726), 1, - anon_sym_as, - ACTIONS(7752), 1, - anon_sym_RPAREN, - ACTIONS(7754), 1, + ACTIONS(7624), 4, anon_sym_COMMA, - STATE(4542), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [177055] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180433] = 2, + ACTIONS(7698), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [177066] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7305), 4, + ACTIONS(7394), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [180444] = 4, - ACTIONS(7758), 1, - anon_sym_COMMA, - STATE(4324), 1, - aux_sym_print_statement_repeat1, + [177077] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7756), 2, - sym__newline, - anon_sym_SEMI, - [180459] = 5, - ACTIONS(3550), 1, - anon_sym_LBRACK, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(5076), 1, - sym_parameters, - STATE(5092), 1, - sym_type_parameter, + ACTIONS(7525), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [177088] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180476] = 2, + ACTIONS(7416), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [177099] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7305), 4, + ACTIONS(7418), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [180487] = 2, + [177110] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7183), 4, + ACTIONS(7618), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [180498] = 5, - ACTIONS(7760), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [177121] = 5, + ACTIONS(7741), 1, anon_sym_case, - ACTIONS(7763), 1, + ACTIONS(7743), 1, sym__dedent, - STATE(4361), 1, + STATE(4415), 1, aux_sym__match_block_repeat1, - STATE(4972), 1, + STATE(4980), 1, sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180515] = 4, - ACTIONS(4931), 1, - sym_identifier, - STATE(5153), 1, - sym_dotted_name, + [177138] = 4, + ACTIONS(7340), 1, + anon_sym_pass, + ACTIONS(7745), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7765), 2, - anon_sym_import, - anon_sym_cimport, - [180530] = 5, - ACTIONS(7464), 1, - anon_sym_LPAREN, - ACTIONS(7767), 1, - anon_sym_RPAREN, - ACTIONS(7769), 1, - anon_sym_COMMA, - STATE(4887), 1, - aux_sym_function_pointer_type_repeat1, + STATE(1400), 2, + sym_pass_statement, + sym__cppclass_suite, + [177153] = 4, + ACTIONS(7332), 1, + anon_sym_pass, + ACTIONS(7747), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180547] = 5, - ACTIONS(7730), 1, + STATE(642), 2, + sym_pass_statement, + sym__cppclass_suite, + [177168] = 5, + ACTIONS(7719), 1, anon_sym_as, - ACTIONS(7771), 1, + ACTIONS(7749), 1, + anon_sym_RPAREN, + ACTIONS(7751), 1, anon_sym_COMMA, - ACTIONS(7773), 1, - anon_sym_RBRACK, - STATE(4786), 1, + STATE(4566), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180564] = 4, - ACTIONS(7777), 1, - anon_sym_COMMA, - STATE(4324), 1, - aux_sym_print_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7775), 2, - sym__newline, - anon_sym_SEMI, - [180579] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7663), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [180590] = 5, - ACTIONS(7464), 1, - anon_sym_LPAREN, - ACTIONS(7769), 1, - anon_sym_COMMA, - ACTIONS(7779), 1, - anon_sym_RPAREN, - STATE(4871), 1, - aux_sym_function_pointer_type_repeat1, + [177185] = 5, + ACTIONS(6712), 1, + sym_identifier, + STATE(4203), 1, + sym_dotted_name, + STATE(4458), 1, + sym_aliased_import, + STATE(5193), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180607] = 4, - ACTIONS(6471), 1, + [177202] = 4, + ACTIONS(7755), 1, anon_sym_COMMA, - STATE(4200), 1, - aux_sym_assert_statement_repeat1, + STATE(4485), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7781), 2, + ACTIONS(7753), 2, sym__newline, anon_sym_SEMI, - [180622] = 2, + [177217] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7430), 4, + ACTIONS(7521), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [180633] = 4, - ACTIONS(7321), 1, + [177228] = 4, + ACTIONS(7340), 1, anon_sym_pass, - ACTIONS(7783), 1, + ACTIONS(7745), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(638), 2, + STATE(1277), 2, sym_pass_statement, sym__cppclass_suite, - [180648] = 4, - ACTIONS(7785), 1, - anon_sym_COMMA, - STATE(4371), 1, - aux_sym__patterns_repeat1, + [177243] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5132), 2, - anon_sym_from, - anon_sym_in, - [180663] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7458), 4, + ACTIONS(7330), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [180674] = 2, + [177254] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7382), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, + ACTIONS(6177), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [180685] = 2, + [177265] = 5, + ACTIONS(7757), 1, + sym_identifier, + STATE(4327), 1, + sym_dotted_name, + STATE(4676), 1, + sym_aliased_import, + STATE(5341), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7428), 4, + [177282] = 4, + ACTIONS(7761), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [180696] = 2, + STATE(4376), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7410), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [180707] = 3, + ACTIONS(7759), 2, + sym__newline, + anon_sym_SEMI, + [177297] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6780), 2, + ACTIONS(7545), 4, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(6784), 2, - anon_sym_not, - anon_sym_or, - [180720] = 4, - ACTIONS(7315), 1, - anon_sym_pass, - ACTIONS(7788), 1, - sym__indent, + anon_sym_as, + anon_sym_PIPE, + [177308] = 5, + ACTIONS(7757), 1, + sym_identifier, + STATE(4327), 1, + sym_dotted_name, + STATE(4676), 1, + sym_aliased_import, + STATE(5372), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2918), 2, - sym_pass_statement, - sym__cppclass_suite, - [180735] = 5, - ACTIONS(7598), 1, - anon_sym_RPAREN, - ACTIONS(7790), 1, - anon_sym_COMMA, - ACTIONS(7792), 1, - anon_sym_as, - STATE(4875), 1, - aux_sym__import_list_repeat1, + [177325] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180752] = 2, + ACTIONS(3627), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [177336] = 4, + ACTIONS(4958), 1, + sym_identifier, + STATE(5052), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7460), 4, + ACTIONS(7763), 2, + anon_sym_import, + anon_sym_cimport, + [177351] = 4, + ACTIONS(7767), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [180763] = 5, - ACTIONS(3503), 1, - sym_string_start, - ACTIONS(7794), 1, - anon_sym_COLON, - ACTIONS(7796), 1, - sym__newline, - STATE(5120), 1, - sym_string, + STATE(4376), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180780] = 2, + ACTIONS(7765), 2, + sym__newline, + anon_sym_SEMI, + [177366] = 5, + ACTIONS(7719), 1, + anon_sym_as, + ACTIONS(7770), 1, + anon_sym_RPAREN, + ACTIONS(7772), 1, + anon_sym_COMMA, + STATE(4815), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7558), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [180791] = 2, + [177383] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7604), 4, + ACTIONS(7551), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [180802] = 5, - ACTIONS(3503), 1, - sym_string_start, - ACTIONS(7798), 1, + [177394] = 5, + ACTIONS(7774), 1, + anon_sym_DOT, + ACTIONS(7776), 1, anon_sym_COLON, - ACTIONS(7800), 1, - sym__newline, - STATE(5128), 1, - sym_string, + ACTIONS(7778), 1, + anon_sym_EQ, + ACTIONS(7780), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180819] = 5, - ACTIONS(3503), 1, - sym_string_start, - ACTIONS(7802), 1, + [177411] = 5, + ACTIONS(7384), 1, anon_sym_COLON, - ACTIONS(7804), 1, - sym__newline, - STATE(5122), 1, - sym_string, + ACTIONS(7782), 1, + anon_sym_RBRACE, + ACTIONS(7784), 1, + sym_type_conversion, + STATE(5549), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [177428] = 4, + ACTIONS(7378), 1, + anon_sym_pass, + ACTIONS(7786), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180836] = 2, + STATE(2932), 2, + sym_pass_statement, + sym__cppclass_suite, + [177443] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7519), 4, + ACTIONS(7513), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [180847] = 4, - ACTIONS(7808), 1, + [177454] = 5, + ACTIONS(7719), 1, + anon_sym_as, + ACTIONS(7788), 1, + anon_sym_RPAREN, + ACTIONS(7790), 1, anon_sym_COMMA, - STATE(4419), 1, - aux_sym_global_statement_repeat1, + STATE(4522), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7806), 2, - sym__newline, - anon_sym_SEMI, - [180862] = 2, + [177471] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7526), 4, + ACTIONS(6778), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [180873] = 2, + ACTIONS(6994), 2, + anon_sym_not, + anon_sym_or, + [177484] = 5, + ACTIONS(3528), 1, + sym_string_start, + ACTIONS(7792), 1, + anon_sym_COLON, + ACTIONS(7794), 1, + sym__newline, + STATE(5142), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7663), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [180884] = 3, + [177501] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6560), 2, + ACTIONS(7255), 4, + anon_sym_DOT, anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7810), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [180897] = 2, + [177512] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7546), 4, + ACTIONS(7612), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [180908] = 2, + [177523] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7426), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, + ACTIONS(6607), 2, + anon_sym_COLON, anon_sym_PIPE, - [180919] = 4, - ACTIONS(7808), 1, + ACTIONS(7796), 2, anon_sym_COMMA, - STATE(4434), 1, - aux_sym_global_statement_repeat1, + anon_sym_RBRACE, + [177536] = 4, + ACTIONS(7798), 1, + anon_sym_COMMA, + STATE(4267), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7812), 2, + ACTIONS(3073), 2, sym__newline, anon_sym_SEMI, - [180934] = 2, + [177551] = 4, + ACTIONS(7802), 1, + anon_sym_COMMA, + STATE(4376), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7430), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [180945] = 2, + ACTIONS(7800), 2, + sym__newline, + anon_sym_SEMI, + [177566] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7560), 4, + ACTIONS(7618), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [180956] = 5, - ACTIONS(7744), 1, - anon_sym_case, - ACTIONS(7814), 1, - sym__dedent, - STATE(4361), 1, - aux_sym__match_block_repeat1, - STATE(4972), 1, - sym_case_clause, + [177577] = 5, + ACTIONS(3528), 1, + sym_string_start, + ACTIONS(7804), 1, + anon_sym_COLON, + ACTIONS(7806), 1, + sym__newline, + STATE(5141), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180973] = 2, + [177594] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7570), 4, - anon_sym_RPAREN, + ACTIONS(7521), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [180984] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7574), 4, + [177605] = 5, + ACTIONS(7644), 1, + anon_sym_LPAREN, + ACTIONS(7808), 1, anon_sym_RPAREN, + ACTIONS(7810), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [180995] = 4, - ACTIONS(7464), 1, - anon_sym_LPAREN, - ACTIONS(7816), 1, - anon_sym_EQ, + STATE(4581), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3644), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [181010] = 2, + [177622] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7576), 4, - anon_sym_RPAREN, + ACTIONS(7812), 4, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + sym_identifier, + [177633] = 4, + ACTIONS(6432), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [181021] = 2, + STATE(4267), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7458), 4, - anon_sym_COMMA, + ACTIONS(7814), 2, + sym__newline, + anon_sym_SEMI, + [177648] = 3, + ACTIONS(7297), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [181032] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7582), 4, - anon_sym_RPAREN, + ACTIONS(7816), 3, anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + [177661] = 5, + ACTIONS(7727), 1, anon_sym_as, - anon_sym_PIPE, - [181043] = 5, - ACTIONS(7744), 1, - anon_sym_case, ACTIONS(7818), 1, - sym__dedent, - STATE(4417), 1, - aux_sym__match_block_repeat1, - STATE(4972), 1, - sym_case_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [181060] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7588), 4, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [181071] = 5, - ACTIONS(7730), 1, - anon_sym_as, ACTIONS(7820), 1, - anon_sym_COMMA, - ACTIONS(7822), 1, anon_sym_RBRACK, - STATE(4675), 1, + STATE(4523), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181088] = 2, + [177678] = 4, + ACTIONS(7489), 1, + anon_sym_LPAREN, + ACTIONS(7824), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7558), 4, + ACTIONS(7822), 2, anon_sym_COMMA, - anon_sym_as, anon_sym_RBRACK, - anon_sym_PIPE, - [181099] = 4, - ACTIONS(7315), 1, + [177693] = 4, + ACTIONS(7332), 1, anon_sym_pass, - ACTIONS(7788), 1, + ACTIONS(7747), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2922), 2, + STATE(640), 2, sym_pass_statement, sym__cppclass_suite, - [181114] = 2, + [177708] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7592), 4, - anon_sym_RPAREN, + ACTIONS(7826), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - [181125] = 2, + anon_sym_if, + anon_sym_COLON, + [177719] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7604), 4, + ACTIONS(7330), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [181136] = 2, + [177730] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7588), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, + ACTIONS(7317), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [181147] = 2, + [177741] = 4, + ACTIONS(7828), 1, + anon_sym_COMMA, + STATE(4485), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7590), 4, + ACTIONS(7753), 2, + sym__newline, + anon_sym_SEMI, + [177756] = 4, + ACTIONS(6432), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [181158] = 2, + STATE(4267), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7824), 4, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_identifier, - [181169] = 2, + ACTIONS(7830), 2, + sym__newline, + anon_sym_SEMI, + [177771] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7576), 4, + ACTIONS(7545), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [181180] = 2, + [177782] = 5, + ACTIONS(3528), 1, + sym_string_start, + ACTIONS(7832), 1, + anon_sym_COLON, + ACTIONS(7834), 1, + sym__newline, + STATE(5135), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7622), 4, + [177799] = 4, + ACTIONS(7838), 1, + anon_sym_COLON, + ACTIONS(7840), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7836), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [181191] = 4, - ACTIONS(7828), 1, + [177814] = 4, + ACTIONS(7844), 1, anon_sym_COMMA, - STATE(4442), 1, - aux_sym__import_list_repeat1, + STATE(4390), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7826), 2, + ACTIONS(7842), 2, sym__newline, anon_sym_SEMI, - [181206] = 5, - ACTIONS(7464), 1, - anon_sym_LPAREN, - ACTIONS(7769), 1, - anon_sym_COMMA, - ACTIONS(7830), 1, - anon_sym_RPAREN, - STATE(4610), 1, - aux_sym_function_pointer_type_repeat1, + [177829] = 5, + ACTIONS(7319), 1, + anon_sym_EQ, + ACTIONS(7774), 1, + anon_sym_DOT, + ACTIONS(7776), 1, + anon_sym_COLON, + ACTIONS(7780), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181223] = 2, + [177846] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7622), 4, + ACTIONS(7551), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [181234] = 5, - ACTIONS(7744), 1, - anon_sym_case, - ACTIONS(7832), 1, - sym__dedent, - STATE(4361), 1, - aux_sym__match_block_repeat1, - STATE(4972), 1, - sym_case_clause, + [177857] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181251] = 5, - ACTIONS(7676), 1, + ACTIONS(7354), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [177868] = 4, + ACTIONS(7378), 1, + anon_sym_pass, + ACTIONS(7786), 1, + sym__indent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2929), 2, + sym_pass_statement, + sym__cppclass_suite, + [177883] = 5, + ACTIONS(7523), 1, anon_sym_RPAREN, - ACTIONS(7834), 1, + ACTIONS(7757), 1, sym_identifier, - STATE(4644), 1, + STATE(4928), 1, sym_dotted_name, - STATE(4979), 1, + STATE(5148), 1, sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181268] = 4, - ACTIONS(7808), 1, - anon_sym_COMMA, - STATE(4420), 1, - aux_sym_global_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7836), 2, - sym__newline, - anon_sym_SEMI, - [181283] = 4, - ACTIONS(7840), 1, - anon_sym_COMMA, - STATE(4420), 1, - aux_sym_global_statement_repeat1, + [177900] = 5, + ACTIONS(7741), 1, + anon_sym_case, + ACTIONS(7846), 1, + sym__dedent, + STATE(4466), 1, + aux_sym__match_block_repeat1, + STATE(4980), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7838), 2, - sym__newline, - anon_sym_SEMI, - [181298] = 5, - ACTIONS(7448), 1, - anon_sym_COLON, - ACTIONS(7843), 1, - anon_sym_RBRACE, - ACTIONS(7845), 1, - sym_type_conversion, - STATE(5442), 1, - sym_format_specifier, + [177917] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181315] = 5, - ACTIONS(7834), 1, - sym_identifier, - STATE(4378), 1, - sym_dotted_name, - STATE(4496), 1, - sym_aliased_import, - STATE(5496), 1, - sym__import_list, + ACTIONS(7698), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [177928] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181332] = 4, - ACTIONS(7321), 1, - anon_sym_pass, - ACTIONS(7783), 1, - sym__indent, + ACTIONS(7513), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [177939] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(639), 2, - sym_pass_statement, - sym__cppclass_suite, - [181347] = 4, - ACTIONS(7337), 1, - anon_sym_pass, - ACTIONS(7686), 1, - sym__indent, + ACTIONS(7553), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [177950] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1387), 2, - sym_pass_statement, - sym__cppclass_suite, - [181362] = 5, - ACTIONS(7464), 1, - anon_sym_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7595), 4, anon_sym_COMMA, - ACTIONS(7847), 1, - anon_sym_RPAREN, - STATE(4628), 1, - aux_sym_function_pointer_type_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [177961] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181379] = 5, - ACTIONS(3550), 1, + ACTIONS(6778), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(6782), 2, + anon_sym_not, + anon_sym_or, + [177974] = 5, + ACTIONS(3599), 1, anon_sym_LBRACK, - ACTIONS(7750), 1, + ACTIONS(7848), 1, anon_sym_LPAREN, - STATE(5026), 1, + STATE(5031), 1, sym_parameters, STATE(5140), 1, sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181396] = 5, - ACTIONS(3550), 1, + [177991] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7597), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [178002] = 5, + ACTIONS(3599), 1, anon_sym_LBRACK, - ACTIONS(7750), 1, + ACTIONS(7848), 1, anon_sym_LPAREN, - STATE(5036), 1, + STATE(5038), 1, sym_parameters, STATE(5144), 1, sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181413] = 2, + [178019] = 4, + ACTIONS(7852), 1, + anon_sym_COMMA, + STATE(4426), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7227), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [181424] = 4, - ACTIONS(4919), 1, - anon_sym_LBRACK, - STATE(3368), 1, - sym_type_index, + ACTIONS(7850), 2, + anon_sym_from, + anon_sym_in, + [178034] = 4, + ACTIONS(7378), 1, + anon_sym_pass, + ACTIONS(7786), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5635), 2, - anon_sym_DOT, - sym_identifier, - [181439] = 5, - ACTIONS(7726), 1, - anon_sym_as, - ACTIONS(7849), 1, - anon_sym_RPAREN, - ACTIONS(7851), 1, + STATE(2934), 2, + sym_pass_statement, + sym__cppclass_suite, + [178049] = 4, + ACTIONS(7854), 1, anon_sym_COMMA, - STATE(4620), 1, - aux_sym_case_clause_repeat1, + STATE(4475), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181456] = 5, - ACTIONS(7730), 1, - anon_sym_as, - ACTIONS(7853), 1, + ACTIONS(2527), 2, + anon_sym_from, + anon_sym_in, + [178064] = 4, + ACTIONS(7737), 1, anon_sym_COMMA, - ACTIONS(7855), 1, - anon_sym_RBRACK, - STATE(4622), 1, - aux_sym_case_clause_repeat1, + STATE(4338), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181473] = 2, + ACTIONS(7856), 2, + sym__newline, + anon_sym_SEMI, + [178079] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7582), 4, + ACTIONS(7515), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [181484] = 5, - ACTIONS(7726), 1, - anon_sym_as, - ACTIONS(7857), 1, - anon_sym_RPAREN, - ACTIONS(7859), 1, - anon_sym_COMMA, - STATE(4534), 1, - aux_sym_case_clause_repeat1, + [178090] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181501] = 4, - ACTIONS(7808), 1, + ACTIONS(7620), 4, anon_sym_COMMA, - STATE(4420), 1, - aux_sym_global_statement_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [178101] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7861), 2, - sym__newline, - anon_sym_SEMI, - [181516] = 5, - ACTIONS(7726), 1, + ACTIONS(7517), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(7863), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [178112] = 5, + ACTIONS(7604), 1, anon_sym_RPAREN, - ACTIONS(7865), 1, - anon_sym_COMMA, - STATE(4629), 1, - aux_sym_case_clause_repeat1, + ACTIONS(7757), 1, + sym_identifier, + STATE(4928), 1, + sym_dotted_name, + STATE(5148), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181533] = 2, + [178129] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7382), 4, + ACTIONS(7346), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [181544] = 3, - ACTIONS(7602), 1, - anon_sym_as, + [178140] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7867), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [181557] = 4, - ACTIONS(7871), 1, + ACTIONS(7348), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4357), 1, - aux_sym_print_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + [178151] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7869), 2, - sym__newline, - anon_sym_SEMI, - [181572] = 2, + ACTIONS(7352), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [178162] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7560), 4, + ACTIONS(7354), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [181583] = 5, - ACTIONS(7726), 1, - anon_sym_as, - ACTIONS(7873), 1, + [178173] = 5, + ACTIONS(7604), 1, anon_sym_RPAREN, - ACTIONS(7875), 1, - anon_sym_COMMA, - STATE(4653), 1, - aux_sym_case_clause_repeat1, + ACTIONS(7757), 1, + sym_identifier, + STATE(4928), 1, + sym_dotted_name, + STATE(5148), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181600] = 2, + [178190] = 5, + ACTIONS(7719), 1, + anon_sym_as, + ACTIONS(7858), 1, + anon_sym_RPAREN, + ACTIONS(7860), 1, + anon_sym_COMMA, + STATE(4497), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7570), 4, - anon_sym_COMMA, + [178207] = 5, + ACTIONS(7727), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [181611] = 4, - ACTIONS(7879), 1, + ACTIONS(7862), 1, anon_sym_COMMA, - STATE(4442), 1, - aux_sym__import_list_repeat1, + ACTIONS(7864), 1, + anon_sym_RBRACK, + STATE(4500), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7877), 2, - sym__newline, - anon_sym_SEMI, - [181626] = 2, + [178224] = 5, + ACTIONS(3599), 1, + anon_sym_LBRACK, + ACTIONS(7848), 1, + anon_sym_LPAREN, + STATE(5114), 1, + sym_parameters, + STATE(5154), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7410), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [181637] = 4, - ACTIONS(6471), 1, - anon_sym_COMMA, - STATE(4200), 1, - aux_sym_assert_statement_repeat1, + [178241] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7882), 2, - sym__newline, - anon_sym_SEMI, - [181652] = 5, - ACTIONS(7726), 1, - anon_sym_as, - ACTIONS(7884), 1, + ACTIONS(7515), 4, anon_sym_RPAREN, - ACTIONS(7886), 1, anon_sym_COMMA, - STATE(4880), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + [178252] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181669] = 4, - ACTIONS(7888), 1, + ACTIONS(7624), 4, anon_sym_COMMA, - STATE(4200), 1, - aux_sym_assert_statement_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [178263] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3084), 2, - sym__newline, - anon_sym_SEMI, - [181684] = 4, - ACTIONS(7315), 1, - anon_sym_pass, - ACTIONS(7788), 1, - sym__indent, + ACTIONS(7517), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [178274] = 5, + ACTIONS(7644), 1, + anon_sym_LPAREN, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(7866), 1, + anon_sym_RPAREN, + STATE(4657), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2927), 2, - sym_pass_statement, - sym__cppclass_suite, - [181699] = 5, - ACTIONS(7648), 1, - anon_sym_RPAREN, - ACTIONS(7834), 1, - sym_identifier, - STATE(4644), 1, - sym_dotted_name, - STATE(4979), 1, - sym_aliased_import, + [178291] = 4, + ACTIONS(7868), 1, + anon_sym_COMMA, + STATE(4444), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181716] = 5, - ACTIONS(7699), 1, - anon_sym_DOT, - ACTIONS(7701), 1, + ACTIONS(7816), 2, + anon_sym_if, anon_sym_COLON, - ACTIONS(7703), 1, - anon_sym_PIPE, - ACTIONS(7890), 1, - anon_sym_EQ, + [178306] = 5, + ACTIONS(3528), 1, + sym_string_start, + ACTIONS(7871), 1, + anon_sym_COLON, + ACTIONS(7873), 1, + sym__newline, + STATE(5167), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181733] = 2, + [178323] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7305), 4, + ACTIONS(7392), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [181744] = 2, + [178334] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7426), 4, + ACTIONS(7394), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [181755] = 2, + [178345] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7430), 4, + ACTIONS(7416), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [181766] = 2, + [178356] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7458), 4, + ACTIONS(7418), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [181777] = 5, - ACTIONS(7834), 1, - sym_identifier, - STATE(4378), 1, - sym_dotted_name, - STATE(4496), 1, - sym_aliased_import, - STATE(5488), 1, - sym__import_list, + [178367] = 5, + ACTIONS(3599), 1, + anon_sym_LBRACK, + ACTIONS(7848), 1, + anon_sym_LPAREN, + STATE(5049), 1, + sym_parameters, + STATE(5062), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181794] = 2, + [178384] = 4, + ACTIONS(7737), 1, + anon_sym_COMMA, + STATE(4462), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7558), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [181805] = 2, + ACTIONS(7875), 2, + sym__newline, + anon_sym_SEMI, + [178399] = 5, + ACTIONS(7741), 1, + anon_sym_case, + ACTIONS(7877), 1, + sym__dedent, + STATE(4454), 1, + aux_sym__match_block_repeat1, + STATE(4980), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7604), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [181816] = 5, - ACTIONS(7726), 1, - anon_sym_as, - ACTIONS(7892), 1, - anon_sym_RPAREN, - ACTIONS(7894), 1, + [178416] = 4, + ACTIONS(7852), 1, anon_sym_COMMA, - STATE(4759), 1, - aux_sym_case_clause_repeat1, + STATE(4426), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181833] = 4, - ACTIONS(7307), 1, - anon_sym_LPAREN, - ACTIONS(7898), 1, - anon_sym_EQ, + ACTIONS(7879), 2, + anon_sym_from, + anon_sym_in, + [178431] = 5, + ACTIONS(7741), 1, + anon_sym_case, + ACTIONS(7881), 1, + sym__dedent, + STATE(4466), 1, + aux_sym__match_block_repeat1, + STATE(4980), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7896), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [181848] = 5, - ACTIONS(7648), 1, - anon_sym_RPAREN, - ACTIONS(7834), 1, - sym_identifier, - STATE(4644), 1, - sym_dotted_name, - STATE(4979), 1, - sym_aliased_import, + [178448] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181865] = 3, - ACTIONS(7177), 1, + ACTIONS(7612), 4, + anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [178459] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7691), 3, + ACTIONS(7597), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, + anon_sym_as, + anon_sym_PIPE, + [178470] = 5, + ACTIONS(3528), 1, + sym_string_start, + ACTIONS(7883), 1, anon_sym_COLON, - [181878] = 2, + ACTIONS(7885), 1, + sym__newline, + STATE(5074), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7428), 4, - anon_sym_RPAREN, + [178487] = 4, + ACTIONS(7473), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [181889] = 2, + STATE(4365), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7471), 2, + sym__newline, + anon_sym_SEMI, + [178502] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7622), 4, + ACTIONS(7525), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [181900] = 2, + [178513] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7570), 4, + ACTIONS(7624), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [181911] = 2, + [178524] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7900), 4, + ACTIONS(7308), 4, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [181922] = 2, + [178535] = 4, + ACTIONS(7737), 1, + anon_sym_COMMA, + STATE(4465), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5998), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [181933] = 4, - ACTIONS(7337), 1, + ACTIONS(7887), 2, + sym__newline, + anon_sym_SEMI, + [178550] = 5, + ACTIONS(7644), 1, + anon_sym_LPAREN, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(7889), 1, + anon_sym_RPAREN, + STATE(4624), 1, + aux_sym_function_pointer_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [178567] = 4, + ACTIONS(7332), 1, anon_sym_pass, - ACTIONS(7686), 1, + ACTIONS(7747), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1305), 2, + STATE(641), 2, sym_pass_statement, sym__cppclass_suite, - [181948] = 4, - ACTIONS(7707), 1, + [178582] = 4, + ACTIONS(7893), 1, anon_sym_COMMA, - STATE(4476), 1, - aux_sym__patterns_repeat1, + STATE(4465), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7902), 2, - anon_sym_from, - anon_sym_in, - [181963] = 5, - ACTIONS(7307), 1, - anon_sym_LPAREN, - ACTIONS(7904), 1, - anon_sym_COMMA, - ACTIONS(7906), 1, - anon_sym_RBRACK, - STATE(4636), 1, - aux_sym_external_definition_repeat1, + ACTIONS(7891), 2, + sym__newline, + anon_sym_SEMI, + [178597] = 5, + ACTIONS(7896), 1, + anon_sym_case, + ACTIONS(7899), 1, + sym__dedent, + STATE(4466), 1, + aux_sym__match_block_repeat1, + STATE(4980), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181980] = 4, - ACTIONS(7908), 1, - anon_sym_COMMA, - STATE(4442), 1, - aux_sym__import_list_repeat1, + [178614] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7826), 2, - sym__newline, - anon_sym_SEMI, - [181995] = 4, - ACTIONS(7707), 1, + ACTIONS(7553), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4476), 1, - aux_sym__patterns_repeat1, + anon_sym_as, + anon_sym_PIPE, + [178625] = 4, + ACTIONS(7340), 1, + anon_sym_pass, + ACTIONS(7745), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7910), 2, - anon_sym_from, - anon_sym_in, - [182010] = 2, + STATE(1552), 2, + sym_pass_statement, + sym__cppclass_suite, + [178640] = 5, + ACTIONS(7384), 1, + anon_sym_COLON, + ACTIONS(7901), 1, + anon_sym_RBRACE, + ACTIONS(7903), 1, + sym_type_conversion, + STATE(5529), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7663), 4, - anon_sym_RPAREN, + [178657] = 5, + ACTIONS(7644), 1, + anon_sym_LPAREN, + ACTIONS(7810), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [182021] = 2, + ACTIONS(7905), 1, + anon_sym_RPAREN, + STATE(4909), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7912), 4, - sym__newline, - anon_sym_COLON, - anon_sym_with, - anon_sym_nogil, - [182032] = 2, + [178674] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7592), 4, + ACTIONS(7346), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [182043] = 2, + [178685] = 4, + ACTIONS(7852), 1, + anon_sym_COMMA, + STATE(4426), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7446), 4, - anon_sym_RPAREN, + ACTIONS(7907), 2, + anon_sym_from, + anon_sym_in, + [178700] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7513), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [182054] = 2, + anon_sym_RBRACE, + [178711] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3628), 4, + ACTIONS(7321), 4, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [182065] = 4, - ACTIONS(7914), 1, + [178722] = 4, + ACTIONS(7909), 1, anon_sym_COMMA, - STATE(4371), 1, + STATE(4475), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2494), 2, + ACTIONS(5270), 2, anon_sym_from, anon_sym_in, - [182080] = 2, + [178737] = 4, + ACTIONS(7644), 1, + anon_sym_LPAREN, + ACTIONS(7912), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7147), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3615), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [178752] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7698), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [182091] = 2, + [178763] = 4, + ACTIONS(7852), 1, + anon_sym_COMMA, + STATE(4426), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7914), 2, + anon_sym_from, + anon_sym_in, + [178778] = 3, + ACTIONS(7475), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7916), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [178791] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7460), 4, + ACTIONS(7348), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [182102] = 4, - ACTIONS(7321), 1, - anon_sym_pass, - ACTIONS(7783), 1, - sym__indent, + [178802] = 5, + ACTIONS(7719), 1, + anon_sym_as, + ACTIONS(7918), 1, + anon_sym_RPAREN, + ACTIONS(7920), 1, + anon_sym_COMMA, + STATE(4782), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(632), 2, - sym_pass_statement, - sym__cppclass_suite, - [182117] = 2, + [178819] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7574), 4, + ACTIONS(7517), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [182128] = 2, + [178830] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7590), 4, - anon_sym_RPAREN, + ACTIONS(7352), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [182139] = 4, - ACTIONS(5960), 1, + [178841] = 5, + ACTIONS(7719), 1, + anon_sym_as, + ACTIONS(7922), 1, + anon_sym_RPAREN, + ACTIONS(7924), 1, anon_sym_COMMA, - ACTIONS(7916), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + STATE(4631), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182153] = 4, - ACTIONS(5960), 1, + [178858] = 4, + ACTIONS(7928), 1, anon_sym_COMMA, - ACTIONS(7918), 1, + STATE(4485), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7926), 2, sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_SEMI, + [178873] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182167] = 4, - ACTIONS(5960), 1, + ACTIONS(7525), 4, anon_sym_COMMA, - ACTIONS(7920), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [178884] = 5, + ACTIONS(7727), 1, + anon_sym_as, + ACTIONS(7931), 1, + anon_sym_COMMA, + ACTIONS(7933), 1, + anon_sym_RBRACK, + STATE(4632), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182181] = 4, - ACTIONS(5960), 1, + [178901] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7935), 4, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + sym_identifier, + [178912] = 5, + ACTIONS(7719), 1, + anon_sym_as, + ACTIONS(7937), 1, + anon_sym_RPAREN, + ACTIONS(7939), 1, anon_sym_COMMA, - ACTIONS(7922), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + STATE(4554), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182195] = 4, - ACTIONS(5960), 1, + [178929] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(7924), 1, + ACTIONS(7941), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182209] = 4, - ACTIONS(7926), 1, + [178943] = 3, + ACTIONS(7727), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7816), 2, anon_sym_COMMA, - ACTIONS(7928), 1, - anon_sym_RBRACE, - STATE(4517), 1, - aux_sym_dict_pattern_repeat1, + anon_sym_RBRACK, + [178955] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182223] = 4, - ACTIONS(7930), 1, + ACTIONS(7826), 3, anon_sym_COMMA, - ACTIONS(7932), 1, + anon_sym_as, anon_sym_RBRACK, - STATE(4790), 1, - aux_sym_global_statement_repeat1, + [178965] = 4, + ACTIONS(7816), 1, + anon_sym_RBRACK, + ACTIONS(7943), 1, + anon_sym_COMMA, + STATE(4493), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [178979] = 4, + ACTIONS(2837), 1, + anon_sym_RBRACE, + ACTIONS(7946), 1, + anon_sym_COMMA, + STATE(4726), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [178993] = 4, + ACTIONS(7948), 1, + anon_sym_COMMA, + ACTIONS(7950), 1, + anon_sym_RBRACE, + STATE(4525), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [179007] = 4, + ACTIONS(7035), 1, + anon_sym_LPAREN, + ACTIONS(7952), 1, + anon_sym_GT, + ACTIONS(7954), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182237] = 4, - ACTIONS(6711), 1, + [179021] = 4, + ACTIONS(4833), 1, + anon_sym_RPAREN, + ACTIONS(7956), 1, anon_sym_COMMA, - ACTIONS(7934), 1, + STATE(4813), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [179035] = 4, + ACTIONS(5270), 1, anon_sym_RBRACK, - STATE(4661), 1, - aux_sym_type_index_repeat1, + ACTIONS(7958), 1, + anon_sym_COMMA, + STATE(4498), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182251] = 4, - ACTIONS(5960), 1, + [179049] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(7936), 1, + ACTIONS(7961), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182265] = 4, - ACTIONS(5960), 1, + [179063] = 4, + ACTIONS(4835), 1, + anon_sym_RBRACK, + ACTIONS(7963), 1, anon_sym_COMMA, - ACTIONS(7938), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + STATE(4493), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [179077] = 4, + ACTIONS(5983), 1, + anon_sym_COMMA, + ACTIONS(6155), 1, + anon_sym_RPAREN, + STATE(4627), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [179091] = 4, + ACTIONS(6790), 1, + anon_sym_COMMA, + ACTIONS(7965), 1, + anon_sym_RBRACK, + STATE(4848), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182279] = 4, - ACTIONS(5960), 1, + [179105] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(7940), 1, + ACTIONS(7967), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182293] = 4, - ACTIONS(5960), 1, + [179119] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(7942), 1, + ACTIONS(7969), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182307] = 4, - ACTIONS(5960), 1, + [179133] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(7944), 1, + ACTIONS(7971), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182321] = 4, - ACTIONS(7946), 1, + [179147] = 4, + ACTIONS(7973), 1, anon_sym_LPAREN, - ACTIONS(7948), 1, + ACTIONS(7975), 1, anon_sym_COLON, - ACTIONS(7950), 1, + ACTIONS(7977), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182335] = 4, - ACTIONS(7598), 1, - anon_sym_RPAREN, - ACTIONS(7790), 1, + [179161] = 4, + ACTIONS(7979), 1, anon_sym_COMMA, - STATE(4874), 1, - aux_sym__import_list_repeat1, + ACTIONS(7981), 1, + anon_sym_RBRACE, + STATE(4788), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182349] = 4, - ACTIONS(5960), 1, + [179175] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(7952), 1, + ACTIONS(7983), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182363] = 4, - ACTIONS(7954), 1, + [179189] = 4, + ACTIONS(7985), 1, + anon_sym_RPAREN, + ACTIONS(7987), 1, anon_sym_COMMA, - ACTIONS(7957), 1, - anon_sym_RBRACE, - STATE(4498), 1, - aux_sym_dictionary_repeat1, + STATE(4820), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182377] = 4, - ACTIONS(5960), 1, + [179203] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(7959), 1, + ACTIONS(7989), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182391] = 4, - ACTIONS(2888), 1, - anon_sym_RBRACK, - ACTIONS(7961), 1, + [179217] = 4, + ACTIONS(7991), 1, anon_sym_COMMA, - STATE(4539), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(7993), 1, + anon_sym_RBRACE, + STATE(4788), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182405] = 4, - ACTIONS(5960), 1, + [179231] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(7963), 1, + ACTIONS(7995), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182419] = 4, - ACTIONS(5960), 1, + [179245] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(7965), 1, + ACTIONS(7997), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182433] = 4, - ACTIONS(5287), 1, - anon_sym_RPAREN, - ACTIONS(7967), 1, - anon_sym_COMMA, - STATE(4757), 1, - aux_sym__typedargslist_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [182447] = 4, - ACTIONS(5960), 1, + [179259] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(7969), 1, + ACTIONS(7999), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182461] = 4, - ACTIONS(5960), 1, + [179273] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(7971), 1, + ACTIONS(8001), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182475] = 4, - ACTIONS(5960), 1, + [179287] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(7973), 1, + ACTIONS(8003), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182489] = 4, - ACTIONS(5960), 1, + [179301] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(7975), 1, + ACTIONS(8005), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182503] = 4, - ACTIONS(5960), 1, + [179315] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(7977), 1, + ACTIONS(8007), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182517] = 2, + [179329] = 4, + ACTIONS(5824), 1, + anon_sym_COMMA, + ACTIONS(5836), 1, + anon_sym_RBRACE, + STATE(4821), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7979), 3, + [179343] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(8009), 1, sym__newline, - anon_sym_COLON, - anon_sym_nogil, - [182527] = 3, - ACTIONS(7726), 1, - anon_sym_as, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7691), 2, + [179357] = 4, + ACTIONS(2683), 1, anon_sym_RPAREN, + ACTIONS(8011), 1, anon_sym_COMMA, - [182539] = 2, + STATE(4869), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7900), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [182549] = 4, - ACTIONS(7691), 1, + [179371] = 4, + ACTIONS(4861), 1, anon_sym_RPAREN, - ACTIONS(7981), 1, + ACTIONS(8013), 1, anon_sym_COMMA, - STATE(4512), 1, + STATE(4813), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182563] = 4, - ACTIONS(6040), 1, + [179385] = 4, + ACTIONS(4795), 1, + anon_sym_RBRACK, + ACTIONS(8015), 1, anon_sym_COMMA, - ACTIONS(7984), 1, - anon_sym_RPAREN, - STATE(4568), 1, - aux_sym__collection_elements_repeat1, + STATE(4493), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182577] = 4, - ACTIONS(4790), 1, - anon_sym_RPAREN, - ACTIONS(7986), 1, - anon_sym_COMMA, - STATE(4512), 1, - aux_sym_case_clause_repeat1, + [179399] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182591] = 4, - ACTIONS(4792), 1, - anon_sym_RBRACK, - ACTIONS(7988), 1, + ACTIONS(7891), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - STATE(4574), 1, - aux_sym_case_clause_repeat1, + [179409] = 4, + ACTIONS(8017), 1, + anon_sym_COMMA, + ACTIONS(8019), 1, + anon_sym_RBRACE, + STATE(4788), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182605] = 4, - ACTIONS(5960), 1, + [179423] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(7990), 1, + ACTIONS(8021), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182619] = 4, - ACTIONS(7992), 1, + [179437] = 4, + ACTIONS(8023), 1, anon_sym_COMMA, - ACTIONS(7994), 1, + ACTIONS(8025), 1, anon_sym_RBRACE, - STATE(4872), 1, + STATE(4788), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182633] = 4, - ACTIONS(5821), 1, - anon_sym_RBRACK, - ACTIONS(5944), 1, - anon_sym_COMMA, - STATE(4905), 1, - aux_sym__collection_elements_repeat1, + [179451] = 4, + ACTIONS(6412), 1, + sym_string_start, + ACTIONS(8027), 1, + anon_sym_STAR, + STATE(2655), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182647] = 4, - ACTIONS(7996), 1, - anon_sym_COMMA, - ACTIONS(7998), 1, - anon_sym_RBRACE, - STATE(4872), 1, - aux_sym_dict_pattern_repeat1, + [179465] = 3, + ACTIONS(7489), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182661] = 4, - ACTIONS(5960), 1, + ACTIONS(8029), 2, anon_sym_COMMA, - ACTIONS(8000), 1, + anon_sym_RBRACK, + [179477] = 4, + ACTIONS(7973), 1, + anon_sym_LPAREN, + ACTIONS(8031), 1, + anon_sym_COLON, + ACTIONS(8033), 1, sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182675] = 4, - ACTIONS(6040), 1, - anon_sym_COMMA, - ACTIONS(8002), 1, - anon_sym_RPAREN, - STATE(4568), 1, - aux_sym__collection_elements_repeat1, + [179491] = 3, + ACTIONS(8037), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182689] = 4, - ACTIONS(8004), 1, + ACTIONS(8035), 2, + sym__newline, anon_sym_COMMA, - ACTIONS(8006), 1, - anon_sym_RBRACK, - STATE(4913), 1, - aux_sym__patterns_repeat1, + [179503] = 4, + ACTIONS(2685), 1, + anon_sym_RPAREN, + ACTIONS(8039), 1, + anon_sym_COMMA, + STATE(4869), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182703] = 4, - ACTIONS(7946), 1, + [179517] = 4, + ACTIONS(7973), 1, anon_sym_LPAREN, - ACTIONS(8008), 1, + ACTIONS(8041), 1, anon_sym_COLON, - ACTIONS(8010), 1, + ACTIONS(8043), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182717] = 2, + [179531] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(8045), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3618), 3, - anon_sym_RPAREN, + [179545] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - anon_sym_EQ, - [182727] = 4, - ACTIONS(7946), 1, - anon_sym_LPAREN, - ACTIONS(8012), 1, - anon_sym_COLON, - ACTIONS(8014), 1, + ACTIONS(8047), 1, sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182741] = 4, - ACTIONS(5960), 1, + [179559] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8016), 1, + ACTIONS(8049), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182755] = 4, - ACTIONS(5960), 1, + [179573] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8018), 1, + ACTIONS(8051), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182769] = 4, - ACTIONS(5960), 1, + [179587] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8020), 1, + ACTIONS(8053), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182783] = 4, - ACTIONS(5960), 1, + [179601] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8022), 1, + ACTIONS(8055), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182797] = 4, - ACTIONS(7707), 1, + [179615] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8024), 1, - anon_sym_in, - STATE(4476), 1, - aux_sym__patterns_repeat1, + ACTIONS(8057), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182811] = 4, - ACTIONS(5960), 1, + [179629] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8026), 1, + ACTIONS(8059), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182825] = 4, - ACTIONS(5960), 1, + [179643] = 4, + ACTIONS(2583), 1, + anon_sym_RPAREN, + ACTIONS(8061), 1, + anon_sym_COMMA, + STATE(4869), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [179657] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8028), 1, + ACTIONS(8063), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182839] = 4, - ACTIONS(5960), 1, + [179671] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8030), 1, + ACTIONS(8065), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182853] = 4, - ACTIONS(4770), 1, - anon_sym_RPAREN, - ACTIONS(8032), 1, + [179685] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - STATE(4512), 1, - aux_sym_case_clause_repeat1, + ACTIONS(8067), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182867] = 4, - ACTIONS(7064), 1, - anon_sym_RPAREN, - ACTIONS(8034), 1, + [179699] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - STATE(4535), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8069), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182881] = 4, - ACTIONS(4750), 1, + [179713] = 4, + ACTIONS(2585), 1, anon_sym_RPAREN, - ACTIONS(8037), 1, + ACTIONS(8071), 1, anon_sym_COMMA, - STATE(4873), 1, - aux_sym__parameters_repeat1, + STATE(4869), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182895] = 4, - ACTIONS(8039), 1, + [179727] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(8073), 1, sym__newline, - ACTIONS(8041), 1, - sym__indent, - STATE(1392), 1, - sym__match_block, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182909] = 3, - ACTIONS(1387), 1, - anon_sym_except, + [179741] = 4, + ACTIONS(8075), 1, + anon_sym_COMMA, + ACTIONS(8077), 1, + anon_sym_RBRACK, + STATE(4885), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1389), 2, - anon_sym_except_STAR, - anon_sym_finally, - [182921] = 4, - ACTIONS(6340), 1, - anon_sym_RBRACK, - ACTIONS(8043), 1, + [179755] = 4, + ACTIONS(8079), 1, anon_sym_COMMA, - STATE(4539), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(8081), 1, + anon_sym_RBRACK, + STATE(4885), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182935] = 4, - ACTIONS(7311), 1, - anon_sym_RBRACK, - ACTIONS(8046), 1, + [179769] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - STATE(4612), 1, - aux_sym_type_index_repeat2, + ACTIONS(8083), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182949] = 3, - ACTIONS(6298), 1, - anon_sym_from, + [179783] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(8085), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6296), 2, - sym__newline, - anon_sym_SEMI, - [182961] = 4, - ACTIONS(4798), 1, + [179797] = 4, + ACTIONS(8087), 1, anon_sym_RPAREN, - ACTIONS(8048), 1, + ACTIONS(8089), 1, anon_sym_COMMA, - STATE(4512), 1, - aux_sym_case_clause_repeat1, + STATE(4553), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182975] = 3, - ACTIONS(7307), 1, - anon_sym_LPAREN, + [179811] = 4, + ACTIONS(4811), 1, + anon_sym_RPAREN, + ACTIONS(8092), 1, + anon_sym_COMMA, + STATE(4813), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8050), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [182987] = 4, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(8052), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + [179825] = 4, + ACTIONS(7774), 1, + anon_sym_DOT, + ACTIONS(8094), 1, + anon_sym_COLON, + ACTIONS(8096), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183001] = 4, - ACTIONS(7946), 1, - anon_sym_LPAREN, - ACTIONS(8054), 1, + [179839] = 4, + ACTIONS(7384), 1, anon_sym_COLON, - ACTIONS(8056), 1, - sym__newline, + ACTIONS(8098), 1, + anon_sym_RBRACE, + STATE(5463), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183015] = 4, - ACTIONS(7946), 1, + [179853] = 4, + ACTIONS(7973), 1, anon_sym_LPAREN, - ACTIONS(8058), 1, + ACTIONS(8100), 1, anon_sym_COLON, - ACTIONS(8060), 1, + ACTIONS(8102), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183029] = 4, - ACTIONS(5960), 1, + [179867] = 4, + ACTIONS(6790), 1, anon_sym_COMMA, - ACTIONS(8062), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8104), 1, + anon_sym_RBRACK, + STATE(4848), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183043] = 4, - ACTIONS(5960), 1, + [179881] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8064), 1, + ACTIONS(8106), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183057] = 4, - ACTIONS(5960), 1, + [179895] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8066), 1, + ACTIONS(8108), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183071] = 4, - ACTIONS(5960), 1, + [179909] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8068), 1, + ACTIONS(8110), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183085] = 4, - ACTIONS(8070), 1, + [179923] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8072), 1, - anon_sym_RBRACE, - STATE(4807), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(8112), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183099] = 4, - ACTIONS(5960), 1, + [179937] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8074), 1, + ACTIONS(8114), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183113] = 3, - ACTIONS(7284), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7286), 2, - anon_sym_LBRACE, + [179951] = 4, + ACTIONS(7106), 1, anon_sym_RBRACE, - [183125] = 4, - ACTIONS(5960), 1, + ACTIONS(8116), 1, anon_sym_COMMA, - ACTIONS(8076), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + STATE(4564), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183139] = 4, - ACTIONS(5960), 1, + [179965] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8078), 1, + ACTIONS(8119), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183153] = 4, - ACTIONS(2888), 1, + [179979] = 4, + ACTIONS(4724), 1, anon_sym_RPAREN, - ACTIONS(8080), 1, + ACTIONS(8121), 1, anon_sym_COMMA, - STATE(4691), 1, - aux_sym_assert_statement_repeat1, + STATE(4813), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183167] = 4, - ACTIONS(8082), 1, + [179993] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8084), 1, - anon_sym_COLON, - STATE(4839), 1, - aux_sym_with_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [183181] = 4, - ACTIONS(7699), 1, - anon_sym_DOT, - ACTIONS(8086), 1, - anon_sym_COLON, - ACTIONS(8088), 1, - anon_sym_PIPE, + ACTIONS(8123), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183195] = 4, - ACTIONS(6711), 1, - anon_sym_COMMA, - ACTIONS(8090), 1, + [180007] = 4, + ACTIONS(8104), 1, anon_sym_RBRACK, - STATE(4661), 1, - aux_sym_type_index_repeat1, + ACTIONS(8125), 1, + anon_sym_COMMA, + STATE(4878), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183209] = 4, - ACTIONS(7946), 1, + [180021] = 4, + ACTIONS(7973), 1, anon_sym_LPAREN, - ACTIONS(8092), 1, + ACTIONS(8127), 1, anon_sym_COLON, - ACTIONS(8094), 1, + ACTIONS(8129), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183223] = 4, - ACTIONS(7946), 1, - anon_sym_LPAREN, - ACTIONS(8096), 1, - anon_sym_COLON, - ACTIONS(8098), 1, + [180035] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(8131), 1, sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183237] = 4, - ACTIONS(5960), 1, + [180049] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8100), 1, + ACTIONS(8133), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183251] = 4, - ACTIONS(5960), 1, + [180063] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8102), 1, + ACTIONS(8135), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183265] = 4, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(8104), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + [180077] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183279] = 4, - ACTIONS(5960), 1, + ACTIONS(7308), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(8106), 1, + anon_sym_as, + [180087] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(8137), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183293] = 4, - ACTIONS(7371), 1, - anon_sym_COLON, - ACTIONS(7375), 1, + [180101] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(8139), 1, sym__newline, - ACTIONS(8108), 1, - sym_identifier, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183307] = 4, - ACTIONS(7375), 1, - sym__newline, - ACTIONS(8110), 1, - anon_sym_LPAREN, - ACTIONS(8112), 1, - anon_sym_COLON, - ACTIONS(3), 2, + [180115] = 3, + ACTIONS(7172), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [183321] = 4, - ACTIONS(2748), 1, - anon_sym_RPAREN, - ACTIONS(8114), 1, + ACTIONS(7174), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [180127] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - STATE(4846), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(8141), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183335] = 4, - ACTIONS(5960), 1, + [180141] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8116), 1, + ACTIONS(8143), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183349] = 4, - ACTIONS(8118), 1, - anon_sym_SEMI, - ACTIONS(8120), 1, + [180155] = 4, + ACTIONS(7973), 1, + anon_sym_LPAREN, + ACTIONS(8145), 1, + anon_sym_COLON, + ACTIONS(8147), 1, sym__newline, - STATE(4614), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [183363] = 3, - ACTIONS(7730), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7691), 2, + [180169] = 4, + ACTIONS(8149), 1, anon_sym_COMMA, + ACTIONS(8151), 1, anon_sym_RBRACK, - [183375] = 4, - ACTIONS(7946), 1, - anon_sym_LPAREN, - ACTIONS(8122), 1, - anon_sym_COLON, - ACTIONS(8124), 1, - sym__newline, + STATE(4885), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183389] = 2, + [180183] = 4, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(8153), 1, + anon_sym_RPAREN, + STATE(4553), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7900), 3, + [180197] = 4, + ACTIONS(8155), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [183399] = 4, - ACTIONS(7691), 1, + ACTIONS(8157), 1, anon_sym_RBRACK, - ACTIONS(8126), 1, + STATE(4885), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [180211] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - STATE(4574), 1, - aux_sym_case_clause_repeat1, + ACTIONS(8159), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183413] = 4, - ACTIONS(6251), 1, + [180225] = 4, + ACTIONS(7973), 1, + anon_sym_LPAREN, + ACTIONS(8161), 1, + anon_sym_COLON, + ACTIONS(8163), 1, sym__newline, - ACTIONS(6287), 1, - anon_sym_COMMA, - STATE(4657), 1, - aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183427] = 4, - ACTIONS(5960), 1, + [180239] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8129), 1, + ACTIONS(8165), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183441] = 4, - ACTIONS(5960), 1, + [180253] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8131), 1, + ACTIONS(8167), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183455] = 4, - ACTIONS(6040), 1, + [180267] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6139), 1, - anon_sym_RPAREN, - STATE(4568), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(8169), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [180281] = 4, + ACTIONS(8171), 1, + anon_sym_SEMI, + ACTIONS(8173), 1, + sym__newline, + STATE(4597), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183469] = 4, - ACTIONS(5960), 1, + [180295] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8133), 1, + ACTIONS(8175), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183483] = 4, - ACTIONS(8135), 1, - anon_sym_SEMI, - ACTIONS(8137), 1, + [180309] = 4, + ACTIONS(8177), 1, + anon_sym_LPAREN, + ACTIONS(8179), 1, + anon_sym_COLON, + ACTIONS(8181), 1, sym__newline, - STATE(4587), 1, - aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183497] = 4, - ACTIONS(2720), 1, - anon_sym_RPAREN, - ACTIONS(8139), 1, + [180323] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - STATE(4535), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8183), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183511] = 4, - ACTIONS(6038), 1, + [180337] = 4, + ACTIONS(5981), 1, anon_sym_RPAREN, - ACTIONS(6040), 1, + ACTIONS(5983), 1, anon_sym_COMMA, - STATE(4568), 1, + STATE(4627), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183525] = 4, - ACTIONS(5960), 1, + [180351] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8141), 1, + ACTIONS(8185), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183539] = 4, - ACTIONS(6950), 1, + [180365] = 4, + ACTIONS(6870), 1, anon_sym_COMMA, - ACTIONS(6952), 1, + ACTIONS(6872), 1, anon_sym_RBRACE, - STATE(4589), 1, + STATE(4600), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183553] = 4, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(8143), 1, + [180379] = 4, + ACTIONS(7973), 1, + anon_sym_LPAREN, + ACTIONS(8187), 1, + anon_sym_COLON, + ACTIONS(8189), 1, sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183567] = 4, - ACTIONS(7211), 1, + [180393] = 4, + ACTIONS(7035), 1, anon_sym_LPAREN, - ACTIONS(8145), 1, + ACTIONS(8191), 1, anon_sym_GT, - ACTIONS(8147), 1, + ACTIONS(8193), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183581] = 4, - ACTIONS(1160), 1, + [180407] = 4, + ACTIONS(1167), 1, sym__newline, - ACTIONS(8149), 1, + ACTIONS(8195), 1, anon_sym_SEMI, - STATE(4690), 1, + STATE(4736), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183595] = 4, - ACTIONS(6946), 1, - anon_sym_COMMA, - ACTIONS(6948), 1, - anon_sym_RBRACE, - STATE(4635), 1, - aux_sym_dictionary_repeat1, + [180421] = 4, + ACTIONS(8197), 1, + anon_sym_SEMI, + ACTIONS(8199), 1, + sym__newline, + STATE(4723), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [180435] = 4, + ACTIONS(7370), 1, + anon_sym_COLON, + ACTIONS(7374), 1, + sym__newline, + ACTIONS(8201), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183609] = 4, - ACTIONS(2824), 1, + [180449] = 4, + ACTIONS(2862), 1, anon_sym_RBRACE, - ACTIONS(8151), 1, + ACTIONS(8203), 1, anon_sym_COMMA, - STATE(4498), 1, + STATE(4726), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183623] = 3, - ACTIONS(1375), 1, - anon_sym_except, + [180463] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(8205), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1377), 2, - anon_sym_except_STAR, - anon_sym_finally, - [183635] = 4, - ACTIONS(8039), 1, + [180477] = 4, + ACTIONS(7374), 1, sym__newline, - ACTIONS(8041), 1, - sym__indent, - STATE(1296), 1, - sym__match_block, + ACTIONS(8207), 1, + anon_sym_LPAREN, + ACTIONS(8209), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183649] = 4, - ACTIONS(7211), 1, - anon_sym_LPAREN, - ACTIONS(8153), 1, - anon_sym_GT, - ACTIONS(8155), 1, - anon_sym_QMARK, + [180491] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(8211), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183663] = 4, - ACTIONS(6042), 1, - anon_sym_RPAREN, - ACTIONS(6044), 1, + [180505] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - STATE(4602), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8213), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183677] = 4, - ACTIONS(8157), 1, + [180519] = 4, + ACTIONS(2883), 1, + anon_sym_RBRACE, + ACTIONS(8215), 1, + anon_sym_COMMA, + STATE(4726), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [180533] = 4, + ACTIONS(5997), 1, anon_sym_RPAREN, - ACTIONS(8159), 1, + ACTIONS(5999), 1, anon_sym_COMMA, - STATE(4604), 1, + STATE(4616), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183691] = 4, - ACTIONS(6711), 1, + [180547] = 4, + ACTIONS(8217), 1, + anon_sym_RPAREN, + ACTIONS(8219), 1, anon_sym_COMMA, - ACTIONS(8161), 1, - anon_sym_RBRACK, - STATE(4661), 1, - aux_sym_type_index_repeat1, + STATE(4618), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183705] = 4, - ACTIONS(6445), 1, + [180561] = 4, + ACTIONS(6438), 1, anon_sym_COMMA, - ACTIONS(6447), 1, + ACTIONS(6442), 1, anon_sym_RBRACK, - STATE(4607), 1, + STATE(4621), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183719] = 4, - ACTIONS(7353), 1, + [180575] = 4, + ACTIONS(2435), 1, anon_sym_RBRACK, - ACTIONS(8163), 1, + ACTIONS(8221), 1, anon_sym_COMMA, - STATE(4597), 1, + STATE(4859), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183733] = 4, - ACTIONS(5132), 1, - anon_sym_RPAREN, - ACTIONS(8166), 1, - anon_sym_COMMA, - STATE(4598), 1, - aux_sym__patterns_repeat1, + [180589] = 4, + ACTIONS(7973), 1, + anon_sym_LPAREN, + ACTIONS(8223), 1, + anon_sym_COLON, + ACTIONS(8225), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183747] = 4, - ACTIONS(8169), 1, + [180603] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8171), 1, - anon_sym_COLON, - STATE(4896), 1, - aux_sym_match_statement_repeat1, + ACTIONS(8227), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183761] = 4, - ACTIONS(7367), 1, + [180617] = 4, + ACTIONS(7680), 1, anon_sym_RBRACK, - ACTIONS(8046), 1, + ACTIONS(8125), 1, anon_sym_COMMA, - STATE(4609), 1, + STATE(4623), 1, aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183775] = 3, - ACTIONS(8175), 1, - anon_sym_EQ, + [180631] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(8229), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8173), 2, + [180645] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(8231), 1, sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [180659] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - [183787] = 4, - ACTIONS(2638), 1, + ACTIONS(8233), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [180673] = 4, + ACTIONS(2597), 1, anon_sym_RPAREN, - ACTIONS(8177), 1, + ACTIONS(8235), 1, anon_sym_COMMA, - STATE(4535), 1, + STATE(4869), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183801] = 4, - ACTIONS(7699), 1, - anon_sym_DOT, - ACTIONS(8088), 1, - anon_sym_PIPE, - ACTIONS(8179), 1, + [180687] = 4, + ACTIONS(7973), 1, + anon_sym_LPAREN, + ACTIONS(8237), 1, anon_sym_COLON, + ACTIONS(8239), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183815] = 4, - ACTIONS(2640), 1, + [180701] = 4, + ACTIONS(2599), 1, anon_sym_RPAREN, - ACTIONS(8181), 1, + ACTIONS(8241), 1, anon_sym_COMMA, - STATE(4535), 1, + STATE(4869), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183829] = 4, - ACTIONS(7211), 1, - anon_sym_LPAREN, - ACTIONS(8183), 1, - anon_sym_GT, - ACTIONS(8185), 1, - anon_sym_QMARK, + [180715] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(8243), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183843] = 4, - ACTIONS(8187), 1, + [180729] = 4, + ACTIONS(8245), 1, anon_sym_COMMA, - ACTIONS(8189), 1, + ACTIONS(8247), 1, anon_sym_RBRACK, - STATE(4630), 1, + STATE(4885), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183857] = 4, - ACTIONS(8191), 1, + [180743] = 4, + ACTIONS(8249), 1, anon_sym_COMMA, - ACTIONS(8193), 1, + ACTIONS(8251), 1, anon_sym_RBRACK, - STATE(4630), 1, + STATE(4885), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183871] = 4, - ACTIONS(6711), 1, + [180757] = 4, + ACTIONS(6790), 1, anon_sym_COMMA, - ACTIONS(8195), 1, + ACTIONS(8253), 1, anon_sym_RBRACK, - STATE(4661), 1, + STATE(4848), 1, aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183885] = 4, - ACTIONS(8046), 1, + [180771] = 4, + ACTIONS(8125), 1, anon_sym_COMMA, - ACTIONS(8195), 1, + ACTIONS(8253), 1, anon_sym_RBRACK, - STATE(4663), 1, + STATE(4878), 1, aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183899] = 4, - ACTIONS(7769), 1, + [180785] = 4, + ACTIONS(7810), 1, anon_sym_COMMA, - ACTIONS(8197), 1, + ACTIONS(8255), 1, anon_sym_RPAREN, - STATE(4673), 1, + STATE(4553), 1, aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183913] = 4, - ACTIONS(6340), 1, - anon_sym_COLON, - ACTIONS(8199), 1, - anon_sym_COMMA, - STATE(4611), 1, - aux_sym_assert_statement_repeat1, + [180799] = 3, + ACTIONS(7644), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183927] = 4, - ACTIONS(8046), 1, + ACTIONS(8257), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(8161), 1, - anon_sym_RBRACK, - STATE(4663), 1, - aux_sym_type_index_repeat2, - ACTIONS(3), 2, + [180811] = 3, + ACTIONS(7041), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [183941] = 4, - ACTIONS(4750), 1, - anon_sym_COLON, - ACTIONS(8202), 1, + ACTIONS(7043), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [180823] = 4, + ACTIONS(2787), 1, + anon_sym_RPAREN, + ACTIONS(8259), 1, anon_sym_COMMA, - STATE(4707), 1, - aux_sym__parameters_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [183955] = 4, - ACTIONS(1154), 1, - sym__newline, - ACTIONS(8204), 1, - anon_sym_SEMI, - STATE(4690), 1, - aux_sym__simple_statements_repeat1, + STATE(4838), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183969] = 4, - ACTIONS(5960), 1, + [180837] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8206), 1, + ACTIONS(8261), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183983] = 4, - ACTIONS(8208), 1, + [180851] = 4, + ACTIONS(8263), 1, anon_sym_COMMA, - ACTIONS(8210), 1, + ACTIONS(8265), 1, anon_sym_RBRACE, - STATE(4624), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [183997] = 4, - ACTIONS(6040), 1, - anon_sym_COMMA, - ACTIONS(8212), 1, - anon_sym_RPAREN, - STATE(4568), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184011] = 4, - ACTIONS(8214), 1, - anon_sym_SEMI, - ACTIONS(8216), 1, - sym__newline, - STATE(4623), 1, - aux_sym__simple_statements_repeat1, + STATE(4633), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184025] = 4, - ACTIONS(6711), 1, + [180865] = 4, + ACTIONS(6790), 1, anon_sym_COMMA, - ACTIONS(8218), 1, + ACTIONS(8267), 1, anon_sym_RBRACK, - STATE(4661), 1, + STATE(4848), 1, aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184039] = 4, - ACTIONS(4808), 1, + [180879] = 4, + ACTIONS(4765), 1, anon_sym_RPAREN, - ACTIONS(8220), 1, + ACTIONS(8269), 1, anon_sym_COMMA, - STATE(4512), 1, + STATE(4813), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184053] = 4, - ACTIONS(6040), 1, + [180893] = 4, + ACTIONS(4767), 1, + anon_sym_RBRACK, + ACTIONS(8271), 1, anon_sym_COMMA, - ACTIONS(8222), 1, - anon_sym_RPAREN, - STATE(4568), 1, - aux_sym__collection_elements_repeat1, + STATE(4493), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184067] = 4, - ACTIONS(4810), 1, - anon_sym_RBRACK, - ACTIONS(8224), 1, + [180907] = 4, + ACTIONS(8273), 1, anon_sym_COMMA, - STATE(4574), 1, - aux_sym_case_clause_repeat1, + ACTIONS(8275), 1, + anon_sym_RBRACE, + STATE(4788), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184081] = 4, - ACTIONS(1152), 1, + [180921] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(8277), 1, sym__newline, - ACTIONS(8226), 1, - anon_sym_SEMI, - STATE(4690), 1, - aux_sym__simple_statements_repeat1, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184095] = 4, - ACTIONS(8228), 1, + [180935] = 4, + ACTIONS(8279), 1, anon_sym_COMMA, - ACTIONS(8230), 1, + ACTIONS(8281), 1, anon_sym_RBRACE, - STATE(4872), 1, + STATE(4788), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184109] = 4, - ACTIONS(8232), 1, + [180949] = 4, + ACTIONS(6737), 1, anon_sym_COMMA, - ACTIONS(8234), 1, + ACTIONS(6739), 1, anon_sym_RBRACE, - STATE(4872), 1, - aux_sym_dict_pattern_repeat1, + STATE(4494), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184123] = 4, - ACTIONS(3070), 1, - anon_sym_RPAREN, - ACTIONS(8236), 1, + [180963] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - STATE(4747), 1, - aux_sym_with_clause_repeat1, + ACTIONS(8283), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184137] = 4, - ACTIONS(5960), 1, + [180977] = 4, + ACTIONS(8285), 1, anon_sym_COMMA, - ACTIONS(8238), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8288), 1, + anon_sym_COLON, + STATE(4638), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184151] = 4, - ACTIONS(7769), 1, + [180991] = 4, + ACTIONS(6790), 1, anon_sym_COMMA, - ACTIONS(8240), 1, - anon_sym_RPAREN, - STATE(4673), 1, - aux_sym_function_pointer_type_repeat1, + ACTIONS(8290), 1, + anon_sym_RBRACK, + STATE(4848), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184165] = 4, - ACTIONS(4816), 1, + [181005] = 4, + ACTIONS(4706), 1, anon_sym_RPAREN, - ACTIONS(8242), 1, + ACTIONS(8292), 1, anon_sym_COMMA, - STATE(4512), 1, + STATE(4813), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184179] = 4, - ACTIONS(8244), 1, + [181019] = 4, + ACTIONS(8125), 1, anon_sym_COMMA, - ACTIONS(8247), 1, + ACTIONS(8290), 1, anon_sym_RBRACK, - STATE(4630), 1, - aux_sym_subscript_repeat1, + STATE(4878), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184193] = 4, - ACTIONS(5960), 1, + [181033] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8249), 1, + ACTIONS(8294), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184207] = 3, - ACTIONS(7274), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7276), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [184219] = 4, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(8251), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + [181047] = 4, + ACTIONS(5647), 1, + sym_identifier, + ACTIONS(8296), 1, + anon_sym_DOT, + STATE(4643), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184233] = 4, - ACTIONS(8253), 1, + [181061] = 4, + ACTIONS(8299), 1, anon_sym_SEMI, - ACTIONS(8255), 1, + ACTIONS(8301), 1, sym__newline, - STATE(4641), 1, + STATE(4650), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184247] = 4, - ACTIONS(2872), 1, - anon_sym_RBRACE, - ACTIONS(8257), 1, - anon_sym_COMMA, - STATE(4498), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, + [181075] = 3, + ACTIONS(8305), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [184261] = 4, - ACTIONS(7904), 1, + ACTIONS(8303), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [181087] = 4, + ACTIONS(5983), 1, anon_sym_COMMA, - ACTIONS(8259), 1, - anon_sym_RBRACK, - STATE(4883), 1, - aux_sym_external_definition_repeat1, + ACTIONS(6007), 1, + anon_sym_RPAREN, + STATE(4627), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184275] = 4, - ACTIONS(8261), 1, - anon_sym_SEMI, - ACTIONS(8263), 1, + [181101] = 4, + ACTIONS(6345), 1, sym__newline, - STATE(4692), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184289] = 4, - ACTIONS(6040), 1, + ACTIONS(6347), 1, anon_sym_COMMA, - ACTIONS(6056), 1, - anon_sym_RPAREN, - STATE(4568), 1, - aux_sym__collection_elements_repeat1, + STATE(4680), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184303] = 4, - ACTIONS(6776), 1, + [181115] = 4, + ACTIONS(6896), 1, anon_sym_COMMA, - ACTIONS(6778), 1, + ACTIONS(6898), 1, anon_sym_RBRACE, - STATE(4643), 1, + STATE(4653), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184317] = 4, - ACTIONS(7211), 1, + [181129] = 4, + ACTIONS(7035), 1, anon_sym_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8307), 1, anon_sym_GT, - ACTIONS(8267), 1, + ACTIONS(8309), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184331] = 4, - ACTIONS(1164), 1, + [181143] = 4, + ACTIONS(1171), 1, sym__newline, - ACTIONS(8269), 1, + ACTIONS(8311), 1, anon_sym_SEMI, - STATE(4690), 1, + STATE(4736), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184345] = 2, - ACTIONS(3), 2, + [181157] = 3, + ACTIONS(7047), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(8271), 3, - sym__newline, + ACTIONS(7049), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [181169] = 4, + ACTIONS(7384), 1, anon_sym_COLON, - anon_sym_nogil, - [184355] = 4, - ACTIONS(2836), 1, + ACTIONS(8313), 1, anon_sym_RBRACE, - ACTIONS(8273), 1, + STATE(5387), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [181183] = 4, + ACTIONS(2864), 1, + anon_sym_RBRACE, + ACTIONS(8315), 1, anon_sym_COMMA, - STATE(4498), 1, + STATE(4726), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184369] = 3, - ACTIONS(7792), 1, - anon_sym_as, + [181197] = 4, + ACTIONS(7973), 1, + anon_sym_LPAREN, + ACTIONS(8317), 1, + anon_sym_COLON, + ACTIONS(8319), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7867), 2, + [181211] = 4, + ACTIONS(6009), 1, anon_sym_RPAREN, + ACTIONS(6011), 1, anon_sym_COMMA, - [184381] = 4, - ACTIONS(6040), 1, - anon_sym_COMMA, - ACTIONS(6137), 1, - anon_sym_RPAREN, - STATE(4568), 1, - aux_sym__collection_elements_repeat1, + STATE(4661), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184395] = 4, - ACTIONS(6062), 1, + [181225] = 4, + ACTIONS(8321), 1, anon_sym_RPAREN, - ACTIONS(6064), 1, + ACTIONS(8323), 1, anon_sym_COMMA, - STATE(4652), 1, + STATE(4663), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184409] = 4, - ACTIONS(8275), 1, - anon_sym_RPAREN, - ACTIONS(8277), 1, + [181239] = 4, + ACTIONS(7810), 1, anon_sym_COMMA, - STATE(4654), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8325), 1, + anon_sym_RPAREN, + STATE(4553), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184423] = 3, - ACTIONS(7211), 1, - anon_sym_LPAREN, + [181253] = 4, + ACTIONS(7672), 1, + anon_sym_COLON, + ACTIONS(7676), 1, + sym__newline, + ACTIONS(8327), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8279), 2, - anon_sym_COMMA, - anon_sym_COLON, - [184435] = 4, - ACTIONS(6495), 1, + [181267] = 4, + ACTIONS(6454), 1, anon_sym_COMMA, - ACTIONS(6497), 1, + ACTIONS(6456), 1, anon_sym_RBRACK, - STATE(4656), 1, + STATE(4665), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184449] = 4, - ACTIONS(6040), 1, + [181281] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6144), 1, - anon_sym_RPAREN, - STATE(4568), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184463] = 4, - ACTIONS(8281), 1, - sym_identifier, - ACTIONS(8283), 1, - anon_sym_COLON, - ACTIONS(8285), 1, + ACTIONS(8329), 1, sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184477] = 4, - ACTIONS(2552), 1, + [181295] = 4, + ACTIONS(2611), 1, anon_sym_RPAREN, - ACTIONS(8287), 1, + ACTIONS(8331), 1, anon_sym_COMMA, - STATE(4535), 1, + STATE(4869), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184491] = 4, - ACTIONS(4764), 1, - anon_sym_RPAREN, - ACTIONS(8289), 1, - anon_sym_COMMA, - STATE(4512), 1, - aux_sym_case_clause_repeat1, + [181309] = 4, + ACTIONS(6712), 1, + sym_identifier, + STATE(4479), 1, + sym_dotted_name, + STATE(4966), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184505] = 4, - ACTIONS(2650), 1, + [181323] = 4, + ACTIONS(2613), 1, anon_sym_RPAREN, - ACTIONS(8291), 1, + ACTIONS(8333), 1, anon_sym_COMMA, - STATE(4535), 1, + STATE(4869), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184519] = 4, - ACTIONS(8293), 1, + [181337] = 4, + ACTIONS(8335), 1, anon_sym_COMMA, - ACTIONS(8295), 1, + ACTIONS(8337), 1, anon_sym_RBRACK, - STATE(4630), 1, + STATE(4885), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184533] = 4, - ACTIONS(8297), 1, + [181351] = 4, + ACTIONS(8339), 1, anon_sym_COMMA, - ACTIONS(8299), 1, + ACTIONS(8341), 1, anon_sym_RBRACK, - STATE(4630), 1, + STATE(4885), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184547] = 4, - ACTIONS(8301), 1, + [181365] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8304), 1, + ACTIONS(8343), 1, sym__newline, - STATE(4657), 1, - aux_sym_cvar_def_repeat1, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184561] = 4, - ACTIONS(2722), 1, - anon_sym_RPAREN, - ACTIONS(8306), 1, + [181379] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - STATE(4535), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8345), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184575] = 4, - ACTIONS(7877), 1, + [181393] = 4, + ACTIONS(5373), 1, anon_sym_RPAREN, - ACTIONS(8308), 1, + ACTIONS(8347), 1, anon_sym_COMMA, - STATE(4659), 1, - aux_sym__import_list_repeat1, + STATE(4685), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184589] = 4, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(8311), 1, + [181407] = 4, + ACTIONS(7676), 1, sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8349), 1, + anon_sym_LPAREN, + ACTIONS(8351), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184603] = 4, - ACTIONS(7896), 1, - anon_sym_RBRACK, - ACTIONS(8313), 1, - anon_sym_COMMA, - STATE(4661), 1, - aux_sym_type_index_repeat1, + [181421] = 3, + ACTIONS(8355), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184617] = 4, - ACTIONS(7359), 1, - anon_sym_COLON, - ACTIONS(7363), 1, + ACTIONS(8353), 2, sym__newline, - ACTIONS(8316), 1, - sym_identifier, + anon_sym_COMMA, + [181433] = 4, + ACTIONS(3574), 1, + anon_sym_RPAREN, + ACTIONS(8357), 1, + anon_sym_COMMA, + STATE(4914), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184631] = 4, - ACTIONS(8318), 1, + [181447] = 4, + ACTIONS(7731), 1, anon_sym_COMMA, - ACTIONS(8321), 1, + ACTIONS(8359), 1, anon_sym_RBRACK, - STATE(4663), 1, - aux_sym_type_index_repeat2, + STATE(4977), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184645] = 4, - ACTIONS(8323), 1, + [181461] = 4, + ACTIONS(8361), 1, anon_sym_SEMI, - ACTIONS(8325), 1, + ACTIONS(8363), 1, sym__newline, - STATE(4671), 1, + STATE(4681), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184659] = 4, - ACTIONS(6040), 1, + [181475] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(6074), 1, - anon_sym_RPAREN, - STATE(4568), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(8365), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184673] = 4, - ACTIONS(6838), 1, + [181489] = 4, + ACTIONS(5983), 1, anon_sym_COMMA, - ACTIONS(6840), 1, - anon_sym_RBRACE, - STATE(4726), 1, - aux_sym_dictionary_repeat1, + ACTIONS(6017), 1, + anon_sym_RPAREN, + STATE(4627), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184687] = 4, - ACTIONS(5960), 1, + [181503] = 4, + ACTIONS(7471), 1, + anon_sym_RPAREN, + ACTIONS(7721), 1, anon_sym_COMMA, - ACTIONS(8327), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + STATE(4817), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184701] = 4, - ACTIONS(6873), 1, + [181517] = 4, + ACTIONS(6906), 1, anon_sym_COMMA, - ACTIONS(6875), 1, + ACTIONS(6908), 1, anon_sym_RBRACE, - STATE(4674), 1, + STATE(4682), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184715] = 4, - ACTIONS(7211), 1, - anon_sym_LPAREN, - ACTIONS(8329), 1, - anon_sym_GT, - ACTIONS(8331), 1, - anon_sym_QMARK, + [181531] = 4, + ACTIONS(7852), 1, + anon_sym_COMMA, + ACTIONS(8367), 1, + anon_sym_in, + STATE(4426), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184729] = 3, - ACTIONS(7464), 1, + [181545] = 4, + ACTIONS(7035), 1, anon_sym_LPAREN, + ACTIONS(8369), 1, + anon_sym_GT, + ACTIONS(8371), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8333), 2, - anon_sym_RPAREN, + [181559] = 4, + ACTIONS(8373), 1, anon_sym_COMMA, - [184741] = 4, - ACTIONS(1168), 1, + ACTIONS(8376), 1, sym__newline, - ACTIONS(8335), 1, - anon_sym_SEMI, - STATE(4690), 1, - aux_sym__simple_statements_repeat1, + STATE(4680), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184755] = 4, - ACTIONS(7363), 1, + [181573] = 4, + ACTIONS(1175), 1, sym__newline, - ACTIONS(8337), 1, - anon_sym_LPAREN, - ACTIONS(8339), 1, - anon_sym_COLON, + ACTIONS(8378), 1, + anon_sym_SEMI, + STATE(4736), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184769] = 4, - ACTIONS(8333), 1, - anon_sym_RPAREN, - ACTIONS(8341), 1, + [181587] = 4, + ACTIONS(2847), 1, + anon_sym_RBRACE, + ACTIONS(8380), 1, anon_sym_COMMA, - STATE(4673), 1, - aux_sym_function_pointer_type_repeat1, + STATE(4726), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184783] = 4, - ACTIONS(2860), 1, - anon_sym_RBRACE, - ACTIONS(8344), 1, - anon_sym_COMMA, - STATE(4498), 1, - aux_sym_dictionary_repeat1, + [181601] = 4, + ACTIONS(7973), 1, + anon_sym_LPAREN, + ACTIONS(8382), 1, + anon_sym_COLON, + ACTIONS(8384), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184797] = 4, - ACTIONS(4820), 1, + [181615] = 4, + ACTIONS(5836), 1, anon_sym_RBRACK, - ACTIONS(8346), 1, + ACTIONS(6063), 1, anon_sym_COMMA, - STATE(4574), 1, - aux_sym_case_clause_repeat1, + STATE(4836), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184811] = 4, - ACTIONS(7946), 1, - anon_sym_LPAREN, - ACTIONS(8348), 1, - anon_sym_COLON, - ACTIONS(8350), 1, - sym__newline, + [181629] = 4, + ACTIONS(7836), 1, + anon_sym_RPAREN, + ACTIONS(8386), 1, + anon_sym_COMMA, + STATE(4685), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184825] = 4, - ACTIONS(6076), 1, + [181643] = 4, + ACTIONS(6019), 1, anon_sym_RPAREN, - ACTIONS(6078), 1, + ACTIONS(6021), 1, anon_sym_COMMA, - STATE(4683), 1, + STATE(4693), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184839] = 4, - ACTIONS(8352), 1, + [181657] = 4, + ACTIONS(8389), 1, anon_sym_RPAREN, - ACTIONS(8354), 1, + ACTIONS(8391), 1, anon_sym_COMMA, - STATE(4684), 1, + STATE(4695), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184853] = 4, - ACTIONS(7211), 1, - anon_sym_LPAREN, - ACTIONS(8356), 1, - anon_sym_GT, - ACTIONS(8358), 1, - anon_sym_QMARK, + [181671] = 4, + ACTIONS(8393), 1, + sym__newline, + ACTIONS(8395), 1, + sym__indent, + STATE(1317), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184867] = 4, - ACTIONS(6525), 1, + [181685] = 4, + ACTIONS(6478), 1, anon_sym_COMMA, - ACTIONS(6527), 1, + ACTIONS(6480), 1, anon_sym_RBRACK, - STATE(4687), 1, + STATE(4697), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184881] = 4, - ACTIONS(3503), 1, - sym_string_start, - ACTIONS(8360), 1, - anon_sym_LT, - STATE(5127), 1, - sym_string, + [181699] = 4, + ACTIONS(8397), 1, + anon_sym_COMMA, + ACTIONS(8399), 1, + anon_sym_RBRACK, + STATE(4864), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184895] = 4, - ACTIONS(6285), 1, + [181713] = 4, + ACTIONS(6253), 1, sym__newline, - ACTIONS(6347), 1, + ACTIONS(6255), 1, anon_sym_COMMA, - STATE(4657), 1, + STATE(4680), 1, aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184909] = 4, - ACTIONS(2660), 1, - anon_sym_RPAREN, - ACTIONS(8362), 1, + [181727] = 4, + ACTIONS(6355), 1, + sym__newline, + ACTIONS(6954), 1, anon_sym_COMMA, - STATE(4535), 1, - aux_sym_argument_list_repeat1, + STATE(4680), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184923] = 4, - ACTIONS(2662), 1, + [181741] = 4, + ACTIONS(2625), 1, anon_sym_RPAREN, - ACTIONS(8364), 1, + ACTIONS(8401), 1, anon_sym_COMMA, - STATE(4535), 1, + STATE(4869), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184937] = 4, - ACTIONS(5960), 1, + [181755] = 4, + ACTIONS(8403), 1, anon_sym_COMMA, - ACTIONS(8366), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8405), 1, + anon_sym_RBRACK, + STATE(4958), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184951] = 4, - ACTIONS(8368), 1, + [181769] = 4, + ACTIONS(2627), 1, + anon_sym_RPAREN, + ACTIONS(8407), 1, + anon_sym_COMMA, + STATE(4869), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [181783] = 4, + ACTIONS(8409), 1, anon_sym_COMMA, - ACTIONS(8370), 1, + ACTIONS(8411), 1, anon_sym_RBRACK, - STATE(4630), 1, + STATE(4885), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184965] = 4, - ACTIONS(8372), 1, + [181797] = 4, + ACTIONS(8413), 1, anon_sym_COMMA, - ACTIONS(8374), 1, + ACTIONS(8415), 1, anon_sym_RBRACK, - STATE(4630), 1, + STATE(4885), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184979] = 4, - ACTIONS(7207), 1, - anon_sym_RBRACK, - ACTIONS(8376), 1, - anon_sym_COMMA, - STATE(4688), 1, - aux_sym__collection_elements_repeat1, + [181811] = 3, + ACTIONS(1398), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184993] = 4, - ACTIONS(5960), 1, + ACTIONS(1400), 2, + anon_sym_except_STAR, + anon_sym_finally, + [181823] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8379), 1, + ACTIONS(8417), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185007] = 4, - ACTIONS(8381), 1, - anon_sym_SEMI, - ACTIONS(8384), 1, + [181837] = 4, + ACTIONS(8181), 1, sym__newline, - STATE(4690), 1, - aux_sym__simple_statements_repeat1, + ACTIONS(8419), 1, + sym_identifier, + ACTIONS(8421), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185021] = 4, - ACTIONS(6340), 1, - anon_sym_RPAREN, - ACTIONS(8386), 1, - anon_sym_COMMA, - STATE(4691), 1, - aux_sym_assert_statement_repeat1, + [181851] = 4, + ACTIONS(7035), 1, + anon_sym_LPAREN, + ACTIONS(8423), 1, + anon_sym_GT, + ACTIONS(8425), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [181865] = 4, + ACTIONS(3528), 1, + sym_string_start, + ACTIONS(8427), 1, + anon_sym_LT, + STATE(5122), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185035] = 4, - ACTIONS(1146), 1, + [181879] = 4, + ACTIONS(6271), 1, sym__newline, - ACTIONS(8389), 1, - anon_sym_SEMI, - STATE(4690), 1, - aux_sym__simple_statements_repeat1, + ACTIONS(6946), 1, + anon_sym_COMMA, + STATE(4680), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185049] = 4, - ACTIONS(8391), 1, + [181893] = 4, + ACTIONS(8429), 1, anon_sym_SEMI, - ACTIONS(8393), 1, + ACTIONS(8431), 1, sym__newline, - STATE(4699), 1, + STATE(4710), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185063] = 4, - ACTIONS(8395), 1, - anon_sym_RPAREN, - ACTIONS(8397), 1, + [181907] = 4, + ACTIONS(8403), 1, anon_sym_COMMA, - STATE(4536), 1, - aux_sym__parameters_repeat1, + ACTIONS(8433), 1, + anon_sym_RBRACK, + STATE(4958), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185077] = 4, - ACTIONS(6040), 1, + [181921] = 4, + ACTIONS(5983), 1, anon_sym_COMMA, - ACTIONS(6090), 1, + ACTIONS(6043), 1, anon_sym_RPAREN, - STATE(4568), 1, + STATE(4627), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185091] = 4, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(8399), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [185105] = 4, - ACTIONS(6968), 1, + [181935] = 4, + ACTIONS(6926), 1, anon_sym_COMMA, - ACTIONS(6970), 1, + ACTIONS(6928), 1, anon_sym_RBRACE, - STATE(4701), 1, + STATE(4711), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185119] = 4, - ACTIONS(7211), 1, + [181949] = 4, + ACTIONS(7035), 1, anon_sym_LPAREN, - ACTIONS(8401), 1, + ACTIONS(8435), 1, anon_sym_GT, - ACTIONS(8403), 1, + ACTIONS(8437), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185133] = 4, - ACTIONS(1172), 1, + [181963] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(8439), 1, sym__newline, - ACTIONS(8405), 1, - anon_sym_SEMI, - STATE(4690), 1, - aux_sym__simple_statements_repeat1, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185147] = 4, - ACTIONS(7131), 1, - anon_sym_PIPE, - ACTIONS(8407), 1, - anon_sym_COLON, - STATE(4111), 1, - aux_sym_union_pattern_repeat1, + [181977] = 4, + ACTIONS(1179), 1, + sym__newline, + ACTIONS(8441), 1, + anon_sym_SEMI, + STATE(4736), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185161] = 4, - ACTIONS(2864), 1, + [181991] = 4, + ACTIONS(2827), 1, anon_sym_RBRACE, - ACTIONS(8409), 1, + ACTIONS(8443), 1, anon_sym_COMMA, - STATE(4498), 1, + STATE(4726), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185175] = 4, - ACTIONS(6092), 1, + [182005] = 4, + ACTIONS(6047), 1, anon_sym_RPAREN, - ACTIONS(6094), 1, + ACTIONS(6049), 1, anon_sym_COMMA, - STATE(4709), 1, + STATE(4717), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185189] = 4, - ACTIONS(8411), 1, + [182019] = 4, + ACTIONS(8445), 1, anon_sym_RPAREN, - ACTIONS(8413), 1, + ACTIONS(8447), 1, anon_sym_COMMA, - STATE(4710), 1, + STATE(4719), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185203] = 4, - ACTIONS(6040), 1, - anon_sym_COMMA, - ACTIONS(8415), 1, - anon_sym_RPAREN, - STATE(4568), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [185217] = 4, - ACTIONS(6040), 1, - anon_sym_COMMA, - ACTIONS(8417), 1, - anon_sym_RPAREN, - STATE(4568), 1, - aux_sym__collection_elements_repeat1, + [182033] = 3, + ACTIONS(1394), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185231] = 4, - ACTIONS(6596), 1, + ACTIONS(1396), 2, + anon_sym_except_STAR, + anon_sym_finally, + [182045] = 4, + ACTIONS(6488), 1, anon_sym_COMMA, - ACTIONS(6598), 1, + ACTIONS(6490), 1, anon_sym_RBRACK, - STATE(4713), 1, + STATE(4721), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185245] = 4, - ACTIONS(8419), 1, - anon_sym_COMMA, - ACTIONS(8422), 1, - anon_sym_COLON, - STATE(4707), 1, - aux_sym__parameters_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [185259] = 4, - ACTIONS(8424), 1, - sym__newline, - ACTIONS(8426), 1, - sym__indent, - STATE(1270), 1, - sym__match_block, + [182059] = 4, + ACTIONS(7757), 1, + sym_identifier, + STATE(4928), 1, + sym_dotted_name, + STATE(5148), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185273] = 4, - ACTIONS(2672), 1, + [182073] = 4, + ACTIONS(2637), 1, anon_sym_RPAREN, - ACTIONS(8428), 1, + ACTIONS(8449), 1, anon_sym_COMMA, - STATE(4535), 1, + STATE(4869), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185287] = 4, - ACTIONS(2674), 1, + [182087] = 4, + ACTIONS(2839), 1, anon_sym_RPAREN, - ACTIONS(8430), 1, + ACTIONS(8451), 1, anon_sym_COMMA, - STATE(4535), 1, - aux_sym_argument_list_repeat1, + STATE(4756), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185301] = 4, - ACTIONS(8432), 1, + [182101] = 4, + ACTIONS(2639), 1, + anon_sym_RPAREN, + ACTIONS(8453), 1, anon_sym_COMMA, - ACTIONS(8434), 1, - anon_sym_COLON, - STATE(4896), 1, - aux_sym_match_statement_repeat1, + STATE(4869), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185315] = 4, - ACTIONS(8436), 1, + [182115] = 4, + ACTIONS(8455), 1, anon_sym_COMMA, - ACTIONS(8438), 1, + ACTIONS(8457), 1, anon_sym_RBRACK, - STATE(4630), 1, + STATE(4885), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185329] = 4, - ACTIONS(8440), 1, + [182129] = 4, + ACTIONS(8459), 1, anon_sym_COMMA, - ACTIONS(8442), 1, + ACTIONS(8461), 1, anon_sym_RBRACK, - STATE(4630), 1, + STATE(4885), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185343] = 4, - ACTIONS(5960), 1, + [182143] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8444), 1, + ACTIONS(8463), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185357] = 4, - ACTIONS(8424), 1, + [182157] = 4, + ACTIONS(1159), 1, sym__newline, - ACTIONS(8426), 1, - sym__indent, - STATE(1313), 1, - sym__match_block, + ACTIONS(8465), 1, + anon_sym_SEMI, + STATE(4736), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185371] = 4, - ACTIONS(5960), 1, + [182171] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8446), 1, + ACTIONS(8467), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185385] = 4, - ACTIONS(7946), 1, - anon_sym_LPAREN, - ACTIONS(8448), 1, - anon_sym_COLON, - ACTIONS(8450), 1, + [182185] = 4, + ACTIONS(8469), 1, + anon_sym_SEMI, + ACTIONS(8471), 1, sym__newline, + STATE(4837), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185399] = 4, - ACTIONS(5809), 1, + [182199] = 4, + ACTIONS(8473), 1, anon_sym_COMMA, - ACTIONS(5821), 1, + ACTIONS(8476), 1, anon_sym_RBRACE, - STATE(4788), 1, - aux_sym__collection_elements_repeat1, + STATE(4726), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185413] = 4, - ACTIONS(8452), 1, + [182213] = 4, + ACTIONS(8478), 1, anon_sym_SEMI, - ACTIONS(8454), 1, + ACTIONS(8480), 1, sym__newline, - STATE(4724), 1, + STATE(4733), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185427] = 4, - ACTIONS(6040), 1, + [182227] = 4, + ACTIONS(8384), 1, + sym__newline, + ACTIONS(8482), 1, + anon_sym_LPAREN, + ACTIONS(8484), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [182241] = 4, + ACTIONS(8486), 1, + anon_sym_COMMA, + ACTIONS(8488), 1, + anon_sym_COLON, + STATE(4918), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [182255] = 4, + ACTIONS(5983), 1, anon_sym_COMMA, - ACTIONS(6100), 1, + ACTIONS(6061), 1, anon_sym_RPAREN, - STATE(4568), 1, + STATE(4627), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185441] = 4, - ACTIONS(6883), 1, + [182269] = 4, + ACTIONS(6938), 1, anon_sym_COMMA, - ACTIONS(6885), 1, + ACTIONS(6940), 1, anon_sym_RBRACE, - STATE(4727), 1, + STATE(4735), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185455] = 4, - ACTIONS(7211), 1, + [182283] = 4, + ACTIONS(7035), 1, anon_sym_LPAREN, - ACTIONS(8456), 1, + ACTIONS(8490), 1, anon_sym_GT, - ACTIONS(8458), 1, + ACTIONS(8492), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185469] = 4, - ACTIONS(5821), 1, - anon_sym_RPAREN, - ACTIONS(6040), 1, - anon_sym_COMMA, - STATE(4568), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [185483] = 4, - ACTIONS(1158), 1, + [182297] = 4, + ACTIONS(1165), 1, sym__newline, - ACTIONS(8460), 1, + ACTIONS(8494), 1, anon_sym_SEMI, - STATE(4690), 1, + STATE(4736), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185497] = 4, - ACTIONS(5972), 1, - anon_sym_RPAREN, - ACTIONS(5974), 1, + [182311] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - STATE(4826), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8496), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185511] = 4, - ACTIONS(2898), 1, + [182325] = 4, + ACTIONS(2866), 1, anon_sym_RBRACE, - ACTIONS(8462), 1, + ACTIONS(8498), 1, anon_sym_COMMA, - STATE(4498), 1, + STATE(4726), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185525] = 4, - ACTIONS(2880), 1, - anon_sym_RBRACE, - ACTIONS(8464), 1, - anon_sym_COMMA, - STATE(4498), 1, - aux_sym_dictionary_repeat1, + [182339] = 4, + ACTIONS(8500), 1, + anon_sym_SEMI, + ACTIONS(8503), 1, + sym__newline, + STATE(4736), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185539] = 4, - ACTIONS(5960), 1, + [182353] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8466), 1, + ACTIONS(8505), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185553] = 4, - ACTIONS(8468), 1, + [182367] = 4, + ACTIONS(6876), 1, anon_sym_RPAREN, - ACTIONS(8470), 1, + ACTIONS(6878), 1, anon_sym_COMMA, - STATE(4828), 1, + STATE(4745), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185567] = 3, - ACTIONS(5412), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5410), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [185579] = 4, - ACTIONS(6637), 1, + [182381] = 4, + ACTIONS(8507), 1, anon_sym_RPAREN, - ACTIONS(6639), 1, + ACTIONS(8509), 1, anon_sym_COMMA, - STATE(4734), 1, + STATE(4747), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185593] = 4, - ACTIONS(8472), 1, - anon_sym_RPAREN, - ACTIONS(8474), 1, + [182395] = 4, + ACTIONS(8511), 1, anon_sym_COMMA, - STATE(4736), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8513), 1, + anon_sym_COLON, + STATE(4638), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185607] = 4, - ACTIONS(6351), 1, + [182409] = 4, + ACTIONS(6502), 1, anon_sym_COMMA, - ACTIONS(6355), 1, + ACTIONS(6504), 1, anon_sym_RBRACK, - STATE(4739), 1, + STATE(4750), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185621] = 4, - ACTIONS(2684), 1, + [182423] = 4, + ACTIONS(8488), 1, anon_sym_RPAREN, - ACTIONS(8476), 1, + ACTIONS(8515), 1, anon_sym_COMMA, - STATE(4535), 1, - aux_sym_argument_list_repeat1, + STATE(4894), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [182437] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185635] = 4, - ACTIONS(5960), 1, + ACTIONS(7308), 3, anon_sym_COMMA, - ACTIONS(8478), 1, + anon_sym_as, + anon_sym_RBRACK, + [182447] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(8517), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185649] = 4, - ACTIONS(2686), 1, + [182461] = 4, + ACTIONS(2647), 1, anon_sym_RPAREN, - ACTIONS(8480), 1, + ACTIONS(8519), 1, anon_sym_COMMA, - STATE(4535), 1, + STATE(4869), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185663] = 4, - ACTIONS(6543), 1, + [182475] = 4, + ACTIONS(3101), 1, + anon_sym_COLON, + ACTIONS(8521), 1, anon_sym_COMMA, - ACTIONS(6545), 1, - anon_sym_RBRACK, - STATE(4834), 1, - aux_sym_subscript_repeat1, + STATE(4886), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185677] = 4, - ACTIONS(8482), 1, + [182489] = 4, + ACTIONS(2649), 1, + anon_sym_RPAREN, + ACTIONS(8523), 1, anon_sym_COMMA, - ACTIONS(8484), 1, - anon_sym_RBRACK, - STATE(4630), 1, - aux_sym_subscript_repeat1, + STATE(4869), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185691] = 4, - ACTIONS(8486), 1, + [182503] = 3, + ACTIONS(5397), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5395), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(8488), 1, + [182515] = 4, + ACTIONS(8525), 1, + anon_sym_COMMA, + ACTIONS(8527), 1, anon_sym_RBRACK, - STATE(4630), 1, + STATE(4885), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185705] = 4, - ACTIONS(8490), 1, + [182529] = 4, + ACTIONS(8529), 1, anon_sym_COMMA, - ACTIONS(8493), 1, - anon_sym_COLON, - STATE(4740), 1, - aux_sym_with_clause_repeat1, + ACTIONS(8531), 1, + anon_sym_RBRACK, + STATE(4885), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185719] = 4, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(8495), 1, + [182543] = 4, + ACTIONS(8319), 1, sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8533), 1, + anon_sym_LPAREN, + ACTIONS(8535), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185733] = 4, - ACTIONS(3543), 1, - anon_sym_RPAREN, - ACTIONS(8497), 1, + [182557] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - STATE(4598), 1, - aux_sym__patterns_repeat1, + ACTIONS(8537), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185747] = 4, - ACTIONS(7211), 1, - anon_sym_LPAREN, - ACTIONS(8499), 1, - anon_sym_GT, - ACTIONS(8501), 1, - anon_sym_QMARK, + [182571] = 4, + ACTIONS(8393), 1, + sym__newline, + ACTIONS(8395), 1, + sym__indent, + STATE(1431), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185761] = 4, - ACTIONS(5960), 1, + [182585] = 4, + ACTIONS(5395), 1, anon_sym_COMMA, - ACTIONS(8503), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(5461), 1, + anon_sym_COLON, + ACTIONS(5463), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185775] = 4, - ACTIONS(6102), 1, + [182599] = 4, + ACTIONS(6145), 1, anon_sym_RPAREN, - ACTIONS(6104), 1, + ACTIONS(6147), 1, anon_sym_COMMA, - STATE(4751), 1, + STATE(4542), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185789] = 4, - ACTIONS(8505), 1, + [182613] = 4, + ACTIONS(6300), 1, anon_sym_RPAREN, - ACTIONS(8507), 1, + ACTIONS(8539), 1, anon_sym_COMMA, - STATE(4752), 1, - aux_sym_argument_list_repeat1, + STATE(4756), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185803] = 4, - ACTIONS(8493), 1, + [182627] = 4, + ACTIONS(8542), 1, anon_sym_RPAREN, - ACTIONS(8509), 1, + ACTIONS(8544), 1, anon_sym_COMMA, - STATE(4747), 1, - aux_sym_with_clause_repeat1, + STATE(4547), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185817] = 4, - ACTIONS(6367), 1, - anon_sym_COMMA, - ACTIONS(6369), 1, - anon_sym_RBRACK, - STATE(4755), 1, - aux_sym_subscript_repeat1, + [182641] = 4, + ACTIONS(7035), 1, + anon_sym_LPAREN, + ACTIONS(8546), 1, + anon_sym_GT, + ACTIONS(8548), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185831] = 4, - ACTIONS(7488), 1, - anon_sym_COLON, - ACTIONS(7492), 1, - sym__newline, - ACTIONS(8512), 1, - sym_identifier, + [182655] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185845] = 4, - ACTIONS(7492), 1, + ACTIONS(8550), 3, sym__newline, - ACTIONS(8514), 1, - anon_sym_LPAREN, - ACTIONS(8516), 1, anon_sym_COLON, + anon_sym_nogil, + [182665] = 4, + ACTIONS(6081), 1, + anon_sym_RPAREN, + ACTIONS(6083), 1, + anon_sym_COMMA, + STATE(4764), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185859] = 4, - ACTIONS(2692), 1, + [182679] = 4, + ACTIONS(8552), 1, anon_sym_RPAREN, - ACTIONS(8518), 1, + ACTIONS(8554), 1, anon_sym_COMMA, - STATE(4535), 1, + STATE(4765), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185873] = 4, - ACTIONS(2694), 1, - anon_sym_RPAREN, - ACTIONS(8520), 1, + [182693] = 4, + ACTIONS(6259), 1, + sym__newline, + ACTIONS(6776), 1, anon_sym_COMMA, - STATE(4535), 1, - aux_sym_argument_list_repeat1, + STATE(4680), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185887] = 4, - ACTIONS(5960), 1, + [182707] = 4, + ACTIONS(6509), 1, anon_sym_COMMA, - ACTIONS(8522), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6511), 1, + anon_sym_RBRACK, + STATE(4768), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185901] = 4, - ACTIONS(5960), 1, + [182721] = 4, + ACTIONS(2655), 1, + anon_sym_RPAREN, + ACTIONS(8556), 1, anon_sym_COMMA, - ACTIONS(8524), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + STATE(4869), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [182735] = 4, + ACTIONS(2657), 1, + anon_sym_RPAREN, + ACTIONS(8558), 1, + anon_sym_COMMA, + STATE(4869), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185915] = 4, - ACTIONS(8526), 1, + [182749] = 4, + ACTIONS(6553), 1, anon_sym_COMMA, - ACTIONS(8528), 1, + ACTIONS(6555), 1, anon_sym_RBRACK, - STATE(4630), 1, + STATE(4550), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185929] = 2, + [182763] = 4, + ACTIONS(8560), 1, + anon_sym_COMMA, + ACTIONS(8562), 1, + anon_sym_RBRACK, + STATE(4885), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7900), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [185939] = 4, - ACTIONS(7693), 1, - anon_sym_RPAREN, - ACTIONS(8530), 1, + [182777] = 4, + ACTIONS(8564), 1, anon_sym_COMMA, - STATE(4757), 1, - aux_sym__typedargslist_repeat1, + ACTIONS(8566), 1, + anon_sym_RBRACK, + STATE(4885), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185953] = 4, - ACTIONS(6302), 1, - sym__newline, - ACTIONS(6333), 1, + [182791] = 4, + ACTIONS(8568), 1, anon_sym_COMMA, - STATE(4657), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(8570), 1, + anon_sym_COLON, + STATE(4746), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185967] = 4, - ACTIONS(4707), 1, - anon_sym_RPAREN, - ACTIONS(8533), 1, - anon_sym_COMMA, - STATE(4512), 1, - aux_sym_case_clause_repeat1, + [182805] = 3, + ACTIONS(1382), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185981] = 4, - ACTIONS(8535), 1, - anon_sym_COMMA, - ACTIONS(8537), 1, - anon_sym_RBRACE, - STATE(4825), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(1384), 2, + anon_sym_except_STAR, + anon_sym_finally, + [182817] = 3, + ACTIONS(8574), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185995] = 4, - ACTIONS(6988), 1, + ACTIONS(8572), 2, + sym__newline, + anon_sym_SEMI, + [182829] = 4, + ACTIONS(6930), 1, anon_sym_RPAREN, - ACTIONS(6990), 1, + ACTIONS(6932), 1, anon_sym_COMMA, - STATE(4766), 1, + STATE(4777), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186009] = 4, - ACTIONS(8539), 1, + [182843] = 4, + ACTIONS(8576), 1, anon_sym_RPAREN, - ACTIONS(8541), 1, + ACTIONS(8578), 1, anon_sym_COMMA, - STATE(4767), 1, + STATE(4779), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186023] = 4, - ACTIONS(6387), 1, + [182857] = 4, + ACTIONS(6513), 1, anon_sym_COMMA, - ACTIONS(6389), 1, + ACTIONS(6515), 1, anon_sym_RBRACK, - STATE(4769), 1, + STATE(4781), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186037] = 3, - ACTIONS(5433), 1, - anon_sym_EQ, + [182871] = 4, + ACTIONS(7384), 1, + anon_sym_COLON, + ACTIONS(8580), 1, + anon_sym_RBRACE, + STATE(5300), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5410), 2, - anon_sym_COMMA, - anon_sym_COLON, - [186049] = 4, - ACTIONS(7408), 1, - anon_sym_RBRACK, - ACTIONS(8046), 1, - anon_sym_COMMA, - STATE(4865), 1, - aux_sym_type_index_repeat2, + [182885] = 3, + ACTIONS(8584), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186063] = 4, - ACTIONS(2700), 1, + ACTIONS(8582), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [182897] = 4, + ACTIONS(2663), 1, anon_sym_RPAREN, - ACTIONS(8543), 1, + ACTIONS(8586), 1, anon_sym_COMMA, - STATE(4535), 1, + STATE(4869), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186077] = 4, - ACTIONS(2702), 1, + [182911] = 3, + ACTIONS(7077), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7079), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [182923] = 4, + ACTIONS(2665), 1, anon_sym_RPAREN, - ACTIONS(8545), 1, + ACTIONS(8588), 1, anon_sym_COMMA, - STATE(4535), 1, + STATE(4869), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186091] = 4, - ACTIONS(8547), 1, + [182937] = 4, + ACTIONS(8590), 1, anon_sym_COMMA, - ACTIONS(8549), 1, + ACTIONS(8592), 1, anon_sym_RBRACK, - STATE(4630), 1, + STATE(4885), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186105] = 4, - ACTIONS(8551), 1, + [182951] = 4, + ACTIONS(8594), 1, anon_sym_COMMA, - ACTIONS(8553), 1, + ACTIONS(8596), 1, anon_sym_RBRACK, - STATE(4630), 1, + STATE(4885), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186119] = 4, - ACTIONS(5960), 1, + [182965] = 4, + ACTIONS(4859), 1, + anon_sym_RPAREN, + ACTIONS(8598), 1, anon_sym_COMMA, - ACTIONS(8555), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + STATE(4813), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186133] = 4, - ACTIONS(8395), 1, - anon_sym_COLON, - ACTIONS(8557), 1, - anon_sym_COMMA, - STATE(4613), 1, - aux_sym__parameters_repeat1, + [182979] = 4, + ACTIONS(8600), 1, + anon_sym_SEMI, + ACTIONS(8602), 1, + sym__newline, + STATE(4805), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186147] = 4, - ACTIONS(5410), 1, + [182993] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(5431), 1, - anon_sym_COLON, - ACTIONS(5433), 1, - anon_sym_EQ, + ACTIONS(8604), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186161] = 4, - ACTIONS(6068), 1, - anon_sym_RPAREN, - ACTIONS(6070), 1, + [183007] = 4, + ACTIONS(5983), 1, anon_sym_COMMA, - STATE(4855), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [186175] = 4, - ACTIONS(8559), 1, + ACTIONS(6103), 1, anon_sym_RPAREN, - ACTIONS(8561), 1, - anon_sym_COMMA, - STATE(4861), 1, - aux_sym_argument_list_repeat1, + STATE(4627), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186189] = 4, - ACTIONS(6701), 1, + [183021] = 4, + ACTIONS(6956), 1, anon_sym_RPAREN, - ACTIONS(6703), 1, + ACTIONS(6958), 1, anon_sym_COMMA, - STATE(4780), 1, + STATE(4790), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186203] = 4, - ACTIONS(8563), 1, + [183035] = 4, + ACTIONS(8606), 1, anon_sym_RPAREN, - ACTIONS(8565), 1, + ACTIONS(8608), 1, anon_sym_COMMA, - STATE(4782), 1, + STATE(4791), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186217] = 4, - ACTIONS(5960), 1, + [183049] = 4, + ACTIONS(8610), 1, anon_sym_COMMA, - ACTIONS(8567), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8613), 1, + anon_sym_RBRACE, + STATE(4788), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186231] = 4, - ACTIONS(6391), 1, + [183063] = 4, + ACTIONS(6627), 1, anon_sym_COMMA, - ACTIONS(6393), 1, + ACTIONS(6629), 1, anon_sym_RBRACK, - STATE(4785), 1, + STATE(4793), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186245] = 4, - ACTIONS(5960), 1, + [183077] = 4, + ACTIONS(2671), 1, + anon_sym_RPAREN, + ACTIONS(8615), 1, anon_sym_COMMA, - ACTIONS(8569), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + STATE(4869), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186259] = 4, - ACTIONS(2708), 1, + [183091] = 4, + ACTIONS(2673), 1, anon_sym_RPAREN, - ACTIONS(8571), 1, + ACTIONS(8617), 1, anon_sym_COMMA, - STATE(4535), 1, + STATE(4869), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186273] = 4, - ACTIONS(6552), 1, + [183105] = 4, + ACTIONS(8619), 1, anon_sym_COMMA, - ACTIONS(6554), 1, + ACTIONS(8621), 1, anon_sym_RBRACK, - STATE(4867), 1, + STATE(4885), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186287] = 4, - ACTIONS(2710), 1, - anon_sym_RPAREN, - ACTIONS(8573), 1, + [183119] = 4, + ACTIONS(8623), 1, anon_sym_COMMA, - STATE(4535), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8625), 1, + anon_sym_RBRACK, + STATE(4885), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186301] = 4, - ACTIONS(6120), 1, - anon_sym_RPAREN, - ACTIONS(6122), 1, + [183133] = 4, + ACTIONS(4857), 1, + anon_sym_RBRACK, + ACTIONS(8627), 1, anon_sym_COMMA, - STATE(4581), 1, - aux_sym_argument_list_repeat1, + STATE(4493), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186315] = 4, - ACTIONS(8575), 1, - anon_sym_COMMA, - ACTIONS(8577), 1, - anon_sym_RBRACK, - STATE(4630), 1, - aux_sym_subscript_repeat1, + [183147] = 4, + ACTIONS(7249), 1, + anon_sym_PIPE, + ACTIONS(8629), 1, + anon_sym_COLON, + STATE(4094), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186329] = 4, - ACTIONS(8579), 1, + [183161] = 4, + ACTIONS(6756), 1, anon_sym_COMMA, - ACTIONS(8581), 1, - anon_sym_RBRACK, - STATE(4630), 1, - aux_sym_subscript_repeat1, + ACTIONS(6758), 1, + anon_sym_RBRACE, + STATE(4816), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186343] = 4, - ACTIONS(4719), 1, - anon_sym_RBRACK, - ACTIONS(8583), 1, - anon_sym_COMMA, - STATE(4574), 1, - aux_sym_case_clause_repeat1, + [183175] = 4, + ACTIONS(7035), 1, + anon_sym_LPAREN, + ACTIONS(8631), 1, + anon_sym_GT, + ACTIONS(8633), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186357] = 4, - ACTIONS(6253), 1, - sym__newline, - ACTIONS(8585), 1, + [183189] = 4, + ACTIONS(6531), 1, anon_sym_COMMA, - STATE(4657), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(6533), 1, + anon_sym_RBRACK, + STATE(4800), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186371] = 4, - ACTIONS(2748), 1, - anon_sym_RBRACE, - ACTIONS(8587), 1, + [183203] = 4, + ACTIONS(8635), 1, anon_sym_COMMA, - STATE(4857), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(8637), 1, + anon_sym_RBRACK, + STATE(4885), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186385] = 4, - ACTIONS(7448), 1, - anon_sym_COLON, - ACTIONS(8589), 1, - anon_sym_RBRACE, - STATE(5313), 1, - sym_format_specifier, + [183217] = 4, + ACTIONS(8639), 1, + anon_sym_COMMA, + ACTIONS(8641), 1, + anon_sym_RBRACK, + STATE(4885), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186399] = 4, - ACTIONS(7838), 1, - anon_sym_RBRACK, - ACTIONS(8591), 1, + [183231] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - STATE(4790), 1, - aux_sym_global_statement_repeat1, + ACTIONS(8643), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186413] = 4, - ACTIONS(6395), 1, + [183245] = 4, + ACTIONS(8645), 1, anon_sym_COMMA, - ACTIONS(6397), 1, - anon_sym_RBRACK, - STATE(4794), 1, - aux_sym_subscript_repeat1, + ACTIONS(8648), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186427] = 4, - ACTIONS(8424), 1, + [183259] = 4, + ACTIONS(8650), 1, sym__newline, - ACTIONS(8426), 1, + ACTIONS(8652), 1, sym__indent, - STATE(1310), 1, + STATE(1522), 1, sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186441] = 4, - ACTIONS(8594), 1, + [183273] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8596), 1, - anon_sym_RBRACK, - STATE(4630), 1, - aux_sym_subscript_repeat1, + ACTIONS(8654), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186455] = 4, - ACTIONS(8598), 1, + [183287] = 4, + ACTIONS(1161), 1, + sym__newline, + ACTIONS(8656), 1, + anon_sym_SEMI, + STATE(4736), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [183301] = 4, + ACTIONS(7852), 1, anon_sym_COMMA, - ACTIONS(8600), 1, - anon_sym_RBRACK, - STATE(4630), 1, - aux_sym_subscript_repeat1, + ACTIONS(8658), 1, + anon_sym_in, + STATE(4426), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186469] = 4, - ACTIONS(8602), 1, - anon_sym_LPAREN, - ACTIONS(8604), 1, - anon_sym_COLON, - ACTIONS(8606), 1, + [183315] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(8660), 1, sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186483] = 4, - ACTIONS(8608), 1, + [183329] = 4, + ACTIONS(5983), 1, anon_sym_COMMA, - ACTIONS(8610), 1, - anon_sym_RBRACK, - STATE(4630), 1, - aux_sym_subscript_repeat1, + ACTIONS(8662), 1, + anon_sym_RPAREN, + STATE(4627), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186497] = 4, - ACTIONS(8612), 1, - anon_sym_COLON, - ACTIONS(8614), 1, - anon_sym_nogil, - ACTIONS(8616), 1, - sym__newline, + [183343] = 4, + ACTIONS(5983), 1, + anon_sym_COMMA, + ACTIONS(8664), 1, + anon_sym_RPAREN, + STATE(4627), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186511] = 4, - ACTIONS(8618), 1, - anon_sym_RPAREN, - ACTIONS(8620), 1, - anon_sym_COMMA, - STATE(4658), 1, - aux_sym_argument_list_repeat1, + [183357] = 3, + ACTIONS(7719), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186525] = 4, - ACTIONS(8622), 1, - anon_sym_LPAREN, - ACTIONS(8624), 1, - anon_sym_COLON, - ACTIONS(8626), 1, + ACTIONS(7816), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [183369] = 4, + ACTIONS(8650), 1, sym__newline, + ACTIONS(8652), 1, + sym__indent, + STATE(1556), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186539] = 3, - ACTIONS(8630), 1, - anon_sym_EQ, + [183383] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8628), 2, - sym__newline, + ACTIONS(7826), 3, + anon_sym_RPAREN, anon_sym_COMMA, - [186551] = 4, - ACTIONS(5960), 1, + anon_sym_as, + [183393] = 4, + ACTIONS(7816), 1, + anon_sym_RPAREN, + ACTIONS(8666), 1, anon_sym_COMMA, - ACTIONS(8632), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + STATE(4813), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186565] = 3, - ACTIONS(7111), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [183407] = 4, + ACTIONS(8669), 1, + anon_sym_COMMA, + ACTIONS(8671), 1, + anon_sym_RBRACE, + STATE(4788), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7113), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [186577] = 3, - ACTIONS(7125), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [183421] = 4, + ACTIONS(4797), 1, + anon_sym_RPAREN, + ACTIONS(8673), 1, + anon_sym_COMMA, + STATE(4813), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7127), 2, - anon_sym_LBRACE, + [183435] = 4, + ACTIONS(2885), 1, anon_sym_RBRACE, - [186589] = 4, - ACTIONS(2906), 1, - anon_sym_RBRACE, - ACTIONS(8634), 1, + ACTIONS(8675), 1, anon_sym_COMMA, - STATE(4498), 1, + STATE(4726), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186603] = 3, - ACTIONS(1371), 1, - anon_sym_except, + [183449] = 4, + ACTIONS(7753), 1, + anon_sym_RPAREN, + ACTIONS(8677), 1, + anon_sym_COMMA, + STATE(4930), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1373), 2, - anon_sym_except_STAR, - anon_sym_finally, - [186615] = 3, - ACTIONS(7133), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7135), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [186627] = 4, - ACTIONS(8636), 1, + [183463] = 4, + ACTIONS(7753), 1, + anon_sym_RPAREN, + ACTIONS(8679), 1, anon_sym_COMMA, - ACTIONS(8638), 1, - anon_sym_RBRACE, - STATE(4872), 1, - aux_sym_dict_pattern_repeat1, + STATE(4930), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186641] = 3, - ACTIONS(5414), 1, - anon_sym_EQ, + [183477] = 4, + ACTIONS(5983), 1, + anon_sym_COMMA, + ACTIONS(8681), 1, + anon_sym_RPAREN, + STATE(4627), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5410), 2, + [183491] = 4, + ACTIONS(3059), 1, anon_sym_RPAREN, + ACTIONS(8683), 1, anon_sym_COMMA, - [186653] = 4, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(8640), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + STATE(4956), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186667] = 4, - ACTIONS(6320), 1, - sym__newline, - ACTIONS(6697), 1, + [183505] = 4, + ACTIONS(2787), 1, + anon_sym_RBRACE, + ACTIONS(8685), 1, anon_sym_COMMA, - STATE(4657), 1, - aux_sym_cvar_def_repeat1, + STATE(4564), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186681] = 4, - ACTIONS(5960), 1, + [183519] = 4, + ACTIONS(5983), 1, anon_sym_COMMA, - ACTIONS(8642), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8687), 1, + anon_sym_RPAREN, + STATE(4627), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186695] = 4, - ACTIONS(8606), 1, - sym__newline, - ACTIONS(8644), 1, - sym_identifier, - ACTIONS(8646), 1, - anon_sym_COLON, + [183533] = 4, + ACTIONS(8689), 1, + anon_sym_COMMA, + ACTIONS(8691), 1, + anon_sym_RBRACE, + STATE(4814), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186709] = 4, - ACTIONS(6259), 1, + [183547] = 4, + ACTIONS(8693), 1, + anon_sym_COLON, + ACTIONS(8695), 1, + anon_sym_nogil, + ACTIONS(8697), 1, sym__newline, - ACTIONS(6974), 1, - anon_sym_COMMA, - STATE(4657), 1, - aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186723] = 4, - ACTIONS(7540), 1, - anon_sym_RBRACK, - ACTIONS(8046), 1, - anon_sym_COMMA, - STATE(4885), 1, - aux_sym_type_index_repeat2, + [183561] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186737] = 4, - ACTIONS(8648), 1, + ACTIONS(7308), 3, anon_sym_COMMA, - ACTIONS(8650), 1, - anon_sym_RBRACK, - STATE(4630), 1, - aux_sym_subscript_repeat1, + anon_sym_as, + anon_sym_RBRACE, + [183571] = 4, + ACTIONS(7465), 1, + anon_sym_COLON, + ACTIONS(7469), 1, + sym__newline, + ACTIONS(8699), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186751] = 4, - ACTIONS(5619), 1, - sym_identifier, - ACTIONS(8652), 1, - anon_sym_DOT, - STATE(4886), 1, - aux_sym_type_qualifier_repeat1, + [183585] = 4, + ACTIONS(7469), 1, + sym__newline, + ACTIONS(8701), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186765] = 4, - ACTIONS(8654), 1, + [183599] = 4, + ACTIONS(8705), 1, + anon_sym_RPAREN, + ACTIONS(8707), 1, anon_sym_COMMA, - ACTIONS(8656), 1, - anon_sym_RBRACE, - STATE(4872), 1, - aux_sym_dict_pattern_repeat1, + STATE(4828), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186779] = 4, - ACTIONS(5960), 1, + [183613] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8658), 1, + ACTIONS(8710), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186793] = 4, - ACTIONS(5960), 1, + [183627] = 4, + ACTIONS(8712), 1, anon_sym_COMMA, - ACTIONS(8660), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8714), 1, + anon_sym_RBRACE, + STATE(4788), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186807] = 4, - ACTIONS(5623), 1, + [183641] = 4, + ACTIONS(5685), 1, sym_identifier, - ACTIONS(8652), 1, + ACTIONS(8716), 1, anon_sym_DOT, - STATE(4816), 1, + STATE(4875), 1, aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186821] = 3, - ACTIONS(8664), 1, - anon_sym_in, + [183655] = 4, + ACTIONS(6310), 1, + sym__newline, + ACTIONS(6312), 1, + anon_sym_COMMA, + STATE(4680), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8662), 2, - sym__newline, - anon_sym_SEMI, - [186833] = 4, - ACTIONS(6362), 1, + [183669] = 4, + ACTIONS(6942), 1, + anon_sym_COMMA, + ACTIONS(6944), 1, + anon_sym_RBRACE, + STATE(4605), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [183683] = 4, + ACTIONS(6412), 1, sym_string_start, - ACTIONS(8666), 1, + ACTIONS(8718), 1, anon_sym_STAR, - STATE(2621), 1, + STATE(2637), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186847] = 4, - ACTIONS(8668), 1, - anon_sym_RPAREN, - ACTIONS(8670), 1, + [183697] = 4, + ACTIONS(7578), 1, + anon_sym_RBRACK, + ACTIONS(8125), 1, anon_sym_COMMA, - STATE(4626), 1, - aux_sym_with_clause_repeat1, + STATE(4568), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186861] = 4, - ACTIONS(8039), 1, - sym__newline, - ACTIONS(8041), 1, - sym__indent, - STATE(1322), 1, - sym__match_block, + [183711] = 4, + ACTIONS(2787), 1, + anon_sym_RBRACK, + ACTIONS(8720), 1, + anon_sym_COMMA, + STATE(4943), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186875] = 4, - ACTIONS(8672), 1, - anon_sym_COMMA, - ACTIONS(8674), 1, - anon_sym_RBRACE, - STATE(4872), 1, - aux_sym_dict_pattern_repeat1, + [183725] = 4, + ACTIONS(1153), 1, + sym__newline, + ACTIONS(8722), 1, + anon_sym_SEMI, + STATE(4736), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186889] = 4, - ACTIONS(2584), 1, + [183739] = 4, + ACTIONS(7106), 1, anon_sym_RPAREN, - ACTIONS(8676), 1, + ACTIONS(8724), 1, anon_sym_COMMA, - STATE(4535), 1, - aux_sym_argument_list_repeat1, + STATE(4838), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186903] = 4, - ACTIONS(7707), 1, + [183753] = 4, + ACTIONS(7852), 1, anon_sym_COMMA, - ACTIONS(8678), 1, + ACTIONS(8727), 1, anon_sym_in, - STATE(4476), 1, + STATE(4426), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186917] = 4, - ACTIONS(2586), 1, - anon_sym_RPAREN, - ACTIONS(8680), 1, - anon_sym_COMMA, - STATE(4535), 1, - aux_sym_argument_list_repeat1, + [183767] = 3, + ACTIONS(7644), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186931] = 4, - ACTIONS(5132), 1, - anon_sym_RBRACK, - ACTIONS(8682), 1, + ACTIONS(8087), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4829), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [186945] = 4, - ACTIONS(8685), 1, - anon_sym_LPAREN, - ACTIONS(8687), 1, - anon_sym_COLON, - ACTIONS(8689), 1, - sym__newline, + [183779] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186959] = 4, - ACTIONS(7707), 1, + ACTIONS(5356), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(8691), 1, + anon_sym_EQ, + [183789] = 4, + ACTIONS(7852), 1, + anon_sym_COMMA, + ACTIONS(8729), 1, anon_sym_in, - STATE(4476), 1, + STATE(4426), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186973] = 4, - ACTIONS(7946), 1, - anon_sym_LPAREN, - ACTIONS(8693), 1, - anon_sym_COLON, - ACTIONS(8695), 1, - sym__newline, + [183803] = 4, + ACTIONS(6123), 1, + anon_sym_RPAREN, + ACTIONS(6125), 1, + anon_sym_COMMA, + STATE(4891), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186987] = 4, - ACTIONS(8697), 1, + [183817] = 4, + ACTIONS(8731), 1, + anon_sym_RPAREN, + ACTIONS(8733), 1, anon_sym_COMMA, - ACTIONS(8699), 1, - anon_sym_RBRACK, - STATE(4630), 1, - aux_sym_subscript_repeat1, + STATE(4893), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187001] = 4, - ACTIONS(8701), 1, - anon_sym_COMMA, - ACTIONS(8703), 1, - anon_sym_RBRACK, - STATE(4630), 1, - aux_sym_subscript_repeat1, + [183831] = 4, + ACTIONS(8393), 1, + sym__newline, + ACTIONS(8395), 1, + sym__indent, + STATE(1571), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187015] = 4, - ACTIONS(7699), 1, + [183845] = 4, + ACTIONS(7774), 1, anon_sym_DOT, - ACTIONS(8088), 1, + ACTIONS(8096), 1, anon_sym_PIPE, - ACTIONS(8705), 1, + ACTIONS(8735), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187029] = 4, - ACTIONS(8707), 1, + [183859] = 4, + ACTIONS(7973), 1, + anon_sym_LPAREN, + ACTIONS(8737), 1, anon_sym_COLON, - ACTIONS(8709), 1, - anon_sym_nogil, - ACTIONS(8711), 1, + ACTIONS(8739), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187043] = 3, - ACTIONS(1379), 1, - anon_sym_except, + [183873] = 4, + ACTIONS(7822), 1, + anon_sym_RBRACK, + ACTIONS(8741), 1, + anon_sym_COMMA, + STATE(4848), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1381), 2, - anon_sym_except_STAR, - anon_sym_finally, - [187055] = 4, - ACTIONS(7930), 1, + [183887] = 4, + ACTIONS(6588), 1, anon_sym_COMMA, - ACTIONS(8713), 1, + ACTIONS(6590), 1, anon_sym_RBRACK, - STATE(4895), 1, - aux_sym_global_statement_repeat1, + STATE(4896), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187069] = 4, - ACTIONS(3068), 1, - anon_sym_COLON, - ACTIONS(8715), 1, + [183901] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - STATE(4740), 1, - aux_sym_with_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187083] = 4, - ACTIONS(7699), 1, - anon_sym_DOT, - ACTIONS(8088), 1, - anon_sym_PIPE, - ACTIONS(8717), 1, - anon_sym_COLON, + ACTIONS(8744), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187097] = 4, - ACTIONS(7699), 1, + [183915] = 4, + ACTIONS(7774), 1, anon_sym_DOT, - ACTIONS(8088), 1, + ACTIONS(8096), 1, anon_sym_PIPE, - ACTIONS(8719), 1, + ACTIONS(8746), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187111] = 4, - ACTIONS(7699), 1, + [183929] = 4, + ACTIONS(7774), 1, anon_sym_DOT, - ACTIONS(8088), 1, + ACTIONS(8096), 1, anon_sym_PIPE, - ACTIONS(8721), 1, + ACTIONS(8748), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187125] = 4, - ACTIONS(2406), 1, - anon_sym_RBRACK, - ACTIONS(8723), 1, + [183943] = 4, + ACTIONS(5371), 1, + anon_sym_RPAREN, + ACTIONS(8750), 1, anon_sym_COMMA, - STATE(4597), 1, - aux_sym_type_parameter_repeat1, + STATE(4685), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187139] = 4, - ACTIONS(7699), 1, + [183957] = 4, + ACTIONS(7774), 1, anon_sym_DOT, - ACTIONS(8088), 1, + ACTIONS(8096), 1, anon_sym_PIPE, - ACTIONS(8725), 1, + ACTIONS(8752), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187153] = 4, - ACTIONS(6325), 1, - sym__newline, - ACTIONS(6665), 1, - anon_sym_COMMA, - STATE(4657), 1, - aux_sym_cvar_def_repeat1, + [183971] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187167] = 4, - ACTIONS(7207), 1, - anon_sym_RPAREN, - ACTIONS(8727), 1, + ACTIONS(7826), 3, anon_sym_COMMA, - STATE(4846), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187181] = 4, - ACTIONS(5960), 1, + anon_sym_as, + anon_sym_RBRACE, + [183981] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8730), 1, + ACTIONS(8754), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187195] = 4, - ACTIONS(8689), 1, - sym__newline, - ACTIONS(8732), 1, - sym_identifier, - ACTIONS(8734), 1, - anon_sym_COLON, + [183995] = 3, + ACTIONS(8756), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187209] = 4, - ACTIONS(6310), 1, + ACTIONS(8376), 2, sym__newline, - ACTIONS(6869), 1, anon_sym_COMMA, - STATE(4657), 1, - aux_sym_cvar_def_repeat1, + [184007] = 4, + ACTIONS(7568), 1, + anon_sym_RBRACK, + ACTIONS(8125), 1, + anon_sym_COMMA, + STATE(4906), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187223] = 4, - ACTIONS(5960), 1, + [184021] = 4, + ACTIONS(7654), 1, + anon_sym_RBRACK, + ACTIONS(8758), 1, anon_sym_COMMA, - ACTIONS(8736), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + STATE(4859), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187237] = 3, - ACTIONS(8740), 1, - anon_sym_as, + [184035] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8738), 2, + ACTIONS(8761), 3, + sym__newline, + anon_sym_COLON, + anon_sym_nogil, + [184045] = 4, + ACTIONS(6281), 1, + sym__newline, + ACTIONS(8763), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [187249] = 2, + STATE(4680), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7183), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [187259] = 4, - ACTIONS(5960), 1, + [184059] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8742), 1, + ACTIONS(8765), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187273] = 4, - ACTIONS(2394), 1, - anon_sym_RBRACK, - ACTIONS(8744), 1, - anon_sym_COMMA, - STATE(4597), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187287] = 4, - ACTIONS(2670), 1, - anon_sym_RPAREN, - ACTIONS(8746), 1, + [184073] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - STATE(4535), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8767), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187301] = 4, - ACTIONS(6437), 1, - anon_sym_COMMA, - ACTIONS(6439), 1, + [184087] = 4, + ACTIONS(3574), 1, anon_sym_RBRACK, - STATE(4815), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187315] = 4, - ACTIONS(7207), 1, - anon_sym_RBRACE, - ACTIONS(8748), 1, + ACTIONS(8769), 1, anon_sym_COMMA, - STATE(4857), 1, - aux_sym__collection_elements_repeat1, + STATE(4498), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187329] = 4, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(8751), 1, + [184101] = 4, + ACTIONS(8771), 1, + anon_sym_LPAREN, + ACTIONS(8773), 1, + anon_sym_COLON, + ACTIONS(8775), 1, sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187343] = 4, - ACTIONS(8006), 1, - anon_sym_RPAREN, - ACTIONS(8753), 1, - anon_sym_COMMA, - STATE(4742), 1, - aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187357] = 4, - ACTIONS(6362), 1, + [184115] = 4, + ACTIONS(6412), 1, sym_string_start, - ACTIONS(8755), 1, + ACTIONS(8777), 1, anon_sym_STAR, - STATE(2632), 1, + STATE(2656), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187371] = 4, - ACTIONS(2682), 1, - anon_sym_RPAREN, - ACTIONS(8757), 1, - anon_sym_COMMA, - STATE(4535), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187385] = 4, - ACTIONS(6711), 1, - anon_sym_COMMA, - ACTIONS(8759), 1, - anon_sym_RBRACK, - STATE(4661), 1, - aux_sym_type_index_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187399] = 4, - ACTIONS(7707), 1, + [184129] = 4, + ACTIONS(7852), 1, anon_sym_COMMA, - ACTIONS(8761), 1, + ACTIONS(8779), 1, anon_sym_in, - STATE(4476), 1, + STATE(4426), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187413] = 4, - ACTIONS(8763), 1, + [184143] = 4, + ACTIONS(2839), 1, + anon_sym_COLON, + ACTIONS(8781), 1, anon_sym_COMMA, - ACTIONS(8765), 1, - anon_sym_RBRACK, - STATE(4630), 1, - aux_sym_subscript_repeat1, + STATE(4915), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187427] = 4, - ACTIONS(8046), 1, + [184157] = 4, + ACTIONS(7251), 1, + anon_sym_RPAREN, + ACTIONS(8783), 1, anon_sym_COMMA, - ACTIONS(8759), 1, - anon_sym_RBRACK, - STATE(4663), 1, - aux_sym_type_index_repeat2, + STATE(4869), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187441] = 4, - ACTIONS(7707), 1, + [184171] = 4, + ACTIONS(7852), 1, anon_sym_COMMA, - ACTIONS(8767), 1, + ACTIONS(8786), 1, anon_sym_in, - STATE(4476), 1, + STATE(4426), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187455] = 4, - ACTIONS(8769), 1, - anon_sym_COMMA, - ACTIONS(8771), 1, + [184185] = 4, + ACTIONS(8788), 1, + anon_sym_COLON, + ACTIONS(8790), 1, + anon_sym_nogil, + ACTIONS(8792), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [184199] = 4, + ACTIONS(7493), 1, anon_sym_RBRACK, - STATE(4630), 1, - aux_sym_subscript_repeat1, + ACTIONS(8125), 1, + anon_sym_COMMA, + STATE(4641), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187469] = 4, - ACTIONS(5960), 1, + [184213] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8773), 1, + ACTIONS(8794), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187483] = 4, - ACTIONS(7448), 1, - anon_sym_COLON, - ACTIONS(8775), 1, - anon_sym_RBRACE, - STATE(5406), 1, - sym_format_specifier, + [184227] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(8796), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187497] = 3, - ACTIONS(7464), 1, - anon_sym_LPAREN, + [184241] = 4, + ACTIONS(5719), 1, + sym_identifier, + ACTIONS(8716), 1, + anon_sym_DOT, + STATE(4643), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8279), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [187509] = 4, - ACTIONS(7769), 1, + [184255] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8777), 1, - anon_sym_RPAREN, - STATE(4673), 1, - aux_sym_function_pointer_type_repeat1, + ACTIONS(8798), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187523] = 4, - ACTIONS(8779), 1, - anon_sym_COMMA, - ACTIONS(8782), 1, - anon_sym_RBRACE, - STATE(4872), 1, - aux_sym_dict_pattern_repeat1, + [184269] = 4, + ACTIONS(8393), 1, + sym__newline, + ACTIONS(8395), 1, + sym__indent, + STATE(1319), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187537] = 4, - ACTIONS(8422), 1, - anon_sym_RPAREN, - ACTIONS(8784), 1, + [184283] = 4, + ACTIONS(8800), 1, anon_sym_COMMA, - STATE(4873), 1, - aux_sym__parameters_repeat1, + ACTIONS(8803), 1, + anon_sym_RBRACK, + STATE(4878), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187551] = 4, - ACTIONS(7826), 1, - anon_sym_RPAREN, - ACTIONS(8787), 1, - anon_sym_COMMA, - STATE(4659), 1, - aux_sym__import_list_repeat1, + [184297] = 4, + ACTIONS(8775), 1, + sym__newline, + ACTIONS(8805), 1, + sym_identifier, + ACTIONS(8807), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187565] = 4, - ACTIONS(7826), 1, - anon_sym_RPAREN, - ACTIONS(8789), 1, + [184311] = 4, + ACTIONS(6319), 1, + sym__newline, + ACTIONS(6764), 1, anon_sym_COMMA, - STATE(4659), 1, - aux_sym__import_list_repeat1, + STATE(4680), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187579] = 4, - ACTIONS(5960), 1, + [184325] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8791), 1, + ACTIONS(8809), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187593] = 4, - ACTIONS(2460), 1, - anon_sym_RBRACK, - ACTIONS(8793), 1, + [184339] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - STATE(4597), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(8811), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187607] = 4, - ACTIONS(7699), 1, + [184353] = 4, + ACTIONS(7774), 1, anon_sym_DOT, - ACTIONS(8088), 1, + ACTIONS(8096), 1, anon_sym_PIPE, - ACTIONS(8795), 1, + ACTIONS(8813), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187621] = 4, - ACTIONS(7946), 1, - anon_sym_LPAREN, - ACTIONS(8797), 1, - anon_sym_COLON, - ACTIONS(8799), 1, - sym__newline, + [184367] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187635] = 4, - ACTIONS(4746), 1, + ACTIONS(3659), 3, anon_sym_RPAREN, - ACTIONS(8801), 1, anon_sym_COMMA, - STATE(4512), 1, - aux_sym_case_clause_repeat1, + anon_sym_EQ, + [184377] = 4, + ACTIONS(8815), 1, + anon_sym_COMMA, + ACTIONS(8818), 1, + anon_sym_RBRACK, + STATE(4885), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187649] = 4, - ACTIONS(5960), 1, + [184391] = 4, + ACTIONS(8820), 1, anon_sym_COMMA, - ACTIONS(8803), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8823), 1, + anon_sym_COLON, + STATE(4886), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [184405] = 4, + ACTIONS(5836), 1, + anon_sym_RPAREN, + ACTIONS(5983), 1, + anon_sym_COMMA, + STATE(4627), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187663] = 2, + [184419] = 3, + ACTIONS(6367), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7838), 3, + ACTIONS(6365), 2, sym__newline, anon_sym_SEMI, + [184431] = 4, + ACTIONS(6141), 1, + anon_sym_RPAREN, + ACTIONS(6143), 1, anon_sym_COMMA, - [187673] = 4, - ACTIONS(8805), 1, - anon_sym_COMMA, - ACTIONS(8808), 1, - anon_sym_RBRACK, - STATE(4883), 1, - aux_sym_external_definition_repeat1, + STATE(4521), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187687] = 4, - ACTIONS(6711), 1, + [184445] = 4, + ACTIONS(8825), 1, + anon_sym_RPAREN, + ACTIONS(8827), 1, anon_sym_COMMA, - ACTIONS(8810), 1, - anon_sym_RBRACK, - STATE(4661), 1, - aux_sym_type_index_repeat1, + STATE(4532), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187701] = 4, - ACTIONS(8046), 1, + [184459] = 4, + ACTIONS(2575), 1, + anon_sym_RPAREN, + ACTIONS(8829), 1, anon_sym_COMMA, - ACTIONS(8810), 1, - anon_sym_RBRACK, - STATE(4663), 1, - aux_sym_type_index_repeat2, + STATE(4869), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187715] = 4, - ACTIONS(5635), 1, - sym_identifier, - ACTIONS(8812), 1, - anon_sym_DOT, - STATE(4886), 1, - aux_sym_type_qualifier_repeat1, + [184473] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187729] = 4, - ACTIONS(7769), 1, + ACTIONS(3659), 3, anon_sym_COMMA, - ACTIONS(8815), 1, + anon_sym_COLON, + anon_sym_EQ, + [184483] = 4, + ACTIONS(2577), 1, anon_sym_RPAREN, - STATE(4673), 1, - aux_sym_function_pointer_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187743] = 4, - ACTIONS(5960), 1, + ACTIONS(8831), 1, anon_sym_COMMA, - ACTIONS(8817), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + STATE(4869), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187757] = 4, - ACTIONS(8039), 1, - sym__newline, - ACTIONS(8041), 1, - sym__indent, - STATE(1338), 1, - sym__match_block, + [184497] = 4, + ACTIONS(4775), 1, + anon_sym_RPAREN, + ACTIONS(8833), 1, + anon_sym_COMMA, + STATE(4828), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187771] = 4, - ACTIONS(7946), 1, - anon_sym_LPAREN, - ACTIONS(8819), 1, - anon_sym_COLON, - ACTIONS(8821), 1, - sym__newline, + [184511] = 4, + ACTIONS(8835), 1, + anon_sym_COMMA, + ACTIONS(8837), 1, + anon_sym_RBRACK, + STATE(4885), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187785] = 4, - ACTIONS(8823), 1, + [184525] = 4, + ACTIONS(8839), 1, anon_sym_COMMA, - ACTIONS(8825), 1, - anon_sym_RBRACE, - STATE(4872), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(8841), 1, + anon_sym_RBRACK, + STATE(4885), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187799] = 4, - ACTIONS(5960), 1, + [184539] = 4, + ACTIONS(5983), 1, anon_sym_COMMA, - ACTIONS(8827), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8843), 1, + anon_sym_RPAREN, + STATE(4627), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187813] = 4, - ACTIONS(6304), 1, - sym__newline, - ACTIONS(6958), 1, + [184553] = 4, + ACTIONS(5983), 1, anon_sym_COMMA, - STATE(4657), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(8845), 1, + anon_sym_RPAREN, + STATE(4627), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187827] = 4, - ACTIONS(6291), 1, + [184567] = 4, + ACTIONS(6302), 1, sym__newline, - ACTIONS(6900), 1, + ACTIONS(8847), 1, anon_sym_COMMA, - STATE(4657), 1, + STATE(4680), 1, aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187841] = 4, - ACTIONS(7930), 1, - anon_sym_COMMA, - ACTIONS(8829), 1, + [184581] = 4, + ACTIONS(2447), 1, anon_sym_RBRACK, - STATE(4790), 1, - aux_sym_global_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187855] = 4, - ACTIONS(8831), 1, + ACTIONS(8849), 1, anon_sym_COMMA, - ACTIONS(8834), 1, - anon_sym_COLON, - STATE(4896), 1, - aux_sym_match_statement_repeat1, + STATE(4859), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187869] = 4, - ACTIONS(8821), 1, - sym__newline, - ACTIONS(8836), 1, - anon_sym_LPAREN, - ACTIONS(8838), 1, - anon_sym_COLON, - ACTIONS(3), 2, + [184595] = 3, + ACTIONS(7261), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [187883] = 4, - ACTIONS(8285), 1, - sym__newline, - ACTIONS(8840), 1, - anon_sym_LPAREN, - ACTIONS(8842), 1, - anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(7263), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [184607] = 3, + ACTIONS(7265), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [187897] = 4, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(8844), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, + ACTIONS(7267), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [184619] = 3, + ACTIONS(7269), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [187911] = 4, - ACTIONS(5960), 1, + ACTIONS(7271), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [184631] = 4, + ACTIONS(2839), 1, + anon_sym_RBRACK, + ACTIONS(8851), 1, anon_sym_COMMA, - ACTIONS(8846), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + STATE(4913), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187925] = 4, - ACTIONS(6711), 1, + [184645] = 4, + ACTIONS(6790), 1, anon_sym_COMMA, - ACTIONS(8848), 1, + ACTIONS(8853), 1, anon_sym_RBRACK, - STATE(4661), 1, + STATE(4848), 1, aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187939] = 4, - ACTIONS(5960), 1, + [184659] = 4, + ACTIONS(8125), 1, anon_sym_COMMA, - ACTIONS(8850), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8853), 1, + anon_sym_RBRACK, + STATE(4878), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187953] = 4, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(8852), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + [184673] = 3, + ACTIONS(7035), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187967] = 4, - ACTIONS(8799), 1, - sym__newline, - ACTIONS(8854), 1, - anon_sym_LPAREN, - ACTIONS(8856), 1, + ACTIONS(8257), 2, + anon_sym_COMMA, anon_sym_COLON, + [184685] = 3, + ACTIONS(5399), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187981] = 4, - ACTIONS(2748), 1, - anon_sym_RBRACK, - ACTIONS(8858), 1, + ACTIONS(5395), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4688), 1, - aux_sym__collection_elements_repeat1, + [184697] = 4, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(8855), 1, + anon_sym_RPAREN, + STATE(4553), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187995] = 3, - ACTIONS(8862), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [184711] = 3, + ACTIONS(1386), 1, + anon_sym_except, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8860), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [188007] = 4, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(8864), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(1388), 2, + anon_sym_except_STAR, + anon_sym_finally, + [184723] = 3, + ACTIONS(1390), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188021] = 4, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(8866), 1, + ACTIONS(1392), 2, + anon_sym_except_STAR, + anon_sym_finally, + [184735] = 4, + ACTIONS(7973), 1, + anon_sym_LPAREN, + ACTIONS(8857), 1, + anon_sym_COLON, + ACTIONS(8859), 1, sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188035] = 2, + [184749] = 4, + ACTIONS(6300), 1, + anon_sym_RBRACK, + ACTIONS(8861), 1, + anon_sym_COMMA, + STATE(4913), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5311), 3, + [184763] = 4, + ACTIONS(5270), 1, anon_sym_RPAREN, + ACTIONS(8864), 1, anon_sym_COMMA, - anon_sym_EQ, - [188045] = 2, + STATE(4914), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3618), 3, - anon_sym_COMMA, + [184777] = 4, + ACTIONS(6300), 1, anon_sym_COLON, - anon_sym_EQ, - [188055] = 4, - ACTIONS(5960), 1, + ACTIONS(8867), 1, anon_sym_COMMA, - ACTIONS(8868), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + STATE(4915), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188069] = 4, - ACTIONS(7448), 1, - anon_sym_COLON, + [184791] = 4, ACTIONS(8870), 1, + anon_sym_COMMA, + ACTIONS(8872), 1, anon_sym_RBRACE, - STATE(5470), 1, - sym_format_specifier, + STATE(4507), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188083] = 4, - ACTIONS(3543), 1, - anon_sym_RBRACK, - ACTIONS(8872), 1, + [184805] = 4, + ACTIONS(6321), 1, + sym__newline, + ACTIONS(6784), 1, anon_sym_COMMA, - STATE(4829), 1, - aux_sym__patterns_repeat1, + STATE(4680), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188097] = 3, - ACTIONS(1383), 1, - anon_sym_except, + [184819] = 4, + ACTIONS(4775), 1, + anon_sym_COLON, + ACTIONS(8874), 1, + anon_sym_COMMA, + STATE(4965), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1385), 2, - anon_sym_except_STAR, - anon_sym_finally, - [188109] = 4, - ACTIONS(5960), 1, + [184833] = 4, + ACTIONS(6592), 1, anon_sym_COMMA, - ACTIONS(8874), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6594), 1, + anon_sym_RBRACK, + STATE(4582), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188123] = 4, + [184847] = 4, + ACTIONS(8859), 1, + sym__newline, ACTIONS(8876), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(8878), 1, - anon_sym_nogil, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [184861] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, ACTIONS(8880), 1, sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [184875] = 4, + ACTIONS(5983), 1, + anon_sym_COMMA, + ACTIONS(6045), 1, + anon_sym_RPAREN, + STATE(4627), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188137] = 4, - ACTIONS(5960), 1, + [184889] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, ACTIONS(8882), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188151] = 4, - ACTIONS(7448), 1, - anon_sym_COLON, + [184903] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, ACTIONS(8884), 1, - anon_sym_RBRACE, - STATE(5377), 1, - sym_format_specifier, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188165] = 4, - ACTIONS(7699), 1, - anon_sym_DOT, - ACTIONS(8088), 1, - anon_sym_PIPE, + [184917] = 4, + ACTIONS(8403), 1, + anon_sym_COMMA, ACTIONS(8886), 1, - anon_sym_COLON, + anon_sym_RBRACK, + STATE(4694), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188179] = 3, - ACTIONS(7037), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7039), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [188191] = 3, - ACTIONS(7048), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [184931] = 4, + ACTIONS(7774), 1, + anon_sym_DOT, + ACTIONS(8096), 1, + anon_sym_PIPE, + ACTIONS(8888), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7050), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [188203] = 3, - ACTIONS(7052), 1, + [184945] = 3, + ACTIONS(7313), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(7054), 2, + ACTIONS(7315), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [188215] = 4, - ACTIONS(7834), 1, - sym_identifier, - STATE(4644), 1, - sym_dotted_name, - STATE(4979), 1, - sym_aliased_import, + [184957] = 3, + ACTIONS(7723), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188229] = 4, - ACTIONS(5960), 1, + ACTIONS(7916), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(8888), 1, + [184969] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(8890), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188243] = 4, - ACTIONS(6892), 1, + [184983] = 4, + ACTIONS(7926), 1, + anon_sym_RPAREN, + ACTIONS(8892), 1, anon_sym_COMMA, - ACTIONS(6894), 1, - anon_sym_RBRACE, - STATE(4804), 1, - aux_sym_dictionary_repeat1, + STATE(4930), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188257] = 4, - ACTIONS(7946), 1, - anon_sym_LPAREN, - ACTIONS(8890), 1, - anon_sym_COLON, - ACTIONS(8892), 1, + [184997] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(8895), 1, sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188271] = 2, + [185011] = 4, + ACTIONS(8650), 1, + sym__newline, + ACTIONS(8652), 1, + sym__indent, + STATE(1514), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7867), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [188281] = 4, - ACTIONS(7946), 1, + [185025] = 4, + ACTIONS(7973), 1, anon_sym_LPAREN, - ACTIONS(8894), 1, + ACTIONS(8897), 1, anon_sym_COLON, - ACTIONS(8896), 1, + ACTIONS(8899), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188295] = 3, - ACTIONS(8898), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8304), 2, - sym__newline, + [185039] = 4, + ACTIONS(8901), 1, anon_sym_COMMA, - [188307] = 4, - ACTIONS(6340), 1, - anon_sym_RBRACE, - ACTIONS(8900), 1, - anon_sym_COMMA, - STATE(4930), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(8903), 1, + anon_sym_COLON, + STATE(4638), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188321] = 4, - ACTIONS(5263), 1, - anon_sym_RPAREN, - ACTIONS(8903), 1, + [185053] = 4, + ACTIONS(2453), 1, + anon_sym_RBRACK, + ACTIONS(8905), 1, anon_sym_COMMA, - STATE(4757), 1, - aux_sym__typedargslist_repeat1, + STATE(4859), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188335] = 4, - ACTIONS(5960), 1, + [185067] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8905), 1, + ACTIONS(8907), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188349] = 4, - ACTIONS(5960), 1, + [185081] = 4, + ACTIONS(5303), 1, + anon_sym_RPAREN, + ACTIONS(8909), 1, anon_sym_COMMA, - ACTIONS(8907), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + STATE(4685), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188363] = 4, - ACTIONS(7946), 1, - anon_sym_LPAREN, - ACTIONS(8909), 1, - anon_sym_COLON, + [185095] = 4, + ACTIONS(6300), 1, + anon_sym_RBRACE, ACTIONS(8911), 1, - sym__newline, + anon_sym_COMMA, + STATE(4938), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188377] = 2, + [185109] = 4, + ACTIONS(7774), 1, + anon_sym_DOT, + ACTIONS(8096), 1, + anon_sym_PIPE, + ACTIONS(8914), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8913), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [188387] = 4, - ACTIONS(8915), 1, + [185123] = 4, + ACTIONS(8399), 1, + anon_sym_RPAREN, + ACTIONS(8916), 1, anon_sym_COMMA, - ACTIONS(8918), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + STATE(4671), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188401] = 4, - ACTIONS(7946), 1, + [185137] = 4, + ACTIONS(8918), 1, anon_sym_LPAREN, - ACTIONS(8626), 1, - sym__newline, ACTIONS(8920), 1, anon_sym_COLON, + ACTIONS(8922), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188415] = 4, - ACTIONS(6362), 1, - sym_string_start, - ACTIONS(8922), 1, - anon_sym_STAR, - STATE(2610), 1, - sym_string, + [185151] = 4, + ACTIONS(6790), 1, + anon_sym_COMMA, + ACTIONS(8924), 1, + anon_sym_RBRACK, + STATE(4848), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188429] = 4, - ACTIONS(5960), 1, + [185165] = 4, + ACTIONS(7106), 1, + anon_sym_RBRACK, + ACTIONS(8926), 1, anon_sym_COMMA, - ACTIONS(8924), 1, + STATE(4943), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [185179] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(8929), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188443] = 4, - ACTIONS(2888), 1, + [185193] = 4, + ACTIONS(7973), 1, + anon_sym_LPAREN, + ACTIONS(8931), 1, anon_sym_COLON, - ACTIONS(8926), 1, - anon_sym_COMMA, - STATE(4611), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(8933), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188457] = 4, - ACTIONS(7946), 1, + [185207] = 4, + ACTIONS(8935), 1, + anon_sym_COLON, + ACTIONS(8937), 1, + anon_sym_nogil, + ACTIONS(8939), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [185221] = 4, + ACTIONS(7973), 1, anon_sym_LPAREN, - ACTIONS(8928), 1, + ACTIONS(8941), 1, anon_sym_COLON, - ACTIONS(8930), 1, + ACTIONS(8943), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188471] = 4, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(8932), 1, + [185235] = 4, + ACTIONS(7973), 1, + anon_sym_LPAREN, + ACTIONS(8945), 1, + anon_sym_COLON, + ACTIONS(8947), 1, sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188485] = 4, - ACTIONS(7930), 1, + [185249] = 4, + ACTIONS(8403), 1, anon_sym_COMMA, - ACTIONS(8934), 1, + ACTIONS(8949), 1, anon_sym_RBRACK, - STATE(4488), 1, + STATE(4705), 1, aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188499] = 4, - ACTIONS(6934), 1, - sym_identifier, - STATE(4437), 1, - sym_dotted_name, - STATE(4927), 1, - sym_aliased_import, + [185263] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(8951), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188513] = 4, - ACTIONS(8424), 1, + [185277] = 4, + ACTIONS(8650), 1, sym__newline, - ACTIONS(8426), 1, + ACTIONS(8652), 1, sym__indent, - STATE(1390), 1, + STATE(1524), 1, sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188527] = 4, - ACTIONS(6227), 1, - sym__newline, - ACTIONS(8936), 1, + [185291] = 4, + ACTIONS(6790), 1, anon_sym_COMMA, - STATE(4657), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(8953), 1, + anon_sym_RBRACK, + STATE(4848), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188541] = 2, + [185305] = 4, + ACTIONS(6025), 1, + anon_sym_COMMA, + ACTIONS(8955), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7183), 3, + [185319] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - anon_sym_as, + ACTIONS(8957), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [185333] = 4, + ACTIONS(7384), 1, + anon_sym_COLON, + ACTIONS(8959), 1, anon_sym_RBRACE, - [188551] = 2, + STATE(5236), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7183), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [188561] = 4, - ACTIONS(5960), 1, + [185347] = 4, + ACTIONS(8823), 1, + anon_sym_RPAREN, + ACTIONS(8961), 1, anon_sym_COMMA, - ACTIONS(8938), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + STATE(4956), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188575] = 4, - ACTIONS(6213), 1, - sym__newline, - ACTIONS(8940), 1, - anon_sym_COMMA, - STATE(4657), 1, - aux_sym_cvar_def_repeat1, + [185361] = 3, + ACTIONS(5463), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188589] = 4, - ACTIONS(5960), 1, + ACTIONS(5395), 2, anon_sym_COMMA, - ACTIONS(8942), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_COLON, + [185373] = 4, + ACTIONS(7891), 1, + anon_sym_RBRACK, + ACTIONS(8964), 1, + anon_sym_COMMA, + STATE(4958), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188603] = 4, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(8944), 1, + [185387] = 4, + ACTIONS(6331), 1, sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8967), 1, + anon_sym_COMMA, + STATE(4680), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188617] = 4, - ACTIONS(5960), 1, + [185401] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8946), 1, + ACTIONS(8969), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188631] = 4, - ACTIONS(5960), 1, + [185415] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8948), 1, + ACTIONS(8971), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188645] = 4, - ACTIONS(5960), 1, + [185429] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8950), 1, + ACTIONS(8973), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188659] = 4, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(8952), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + [185443] = 4, + ACTIONS(7774), 1, + anon_sym_DOT, + ACTIONS(8096), 1, + anon_sym_PIPE, + ACTIONS(8975), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188673] = 4, - ACTIONS(5960), 1, + [185457] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8954), 1, + ACTIONS(8977), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188687] = 4, - ACTIONS(5960), 1, + [185471] = 4, + ACTIONS(8705), 1, + anon_sym_COLON, + ACTIONS(8979), 1, anon_sym_COMMA, - ACTIONS(8956), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + STATE(4965), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188701] = 4, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(8958), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + [185485] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188715] = 4, - ACTIONS(5960), 1, + ACTIONS(7916), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [185495] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8960), 1, + ACTIONS(8982), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188729] = 4, - ACTIONS(5960), 1, + [185509] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8962), 1, + ACTIONS(8984), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188743] = 4, - ACTIONS(7707), 1, + [185523] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8964), 1, - anon_sym_in, - STATE(4476), 1, - aux_sym__patterns_repeat1, + ACTIONS(8986), 1, + sym__newline, + STATE(4802), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188757] = 4, - ACTIONS(5960), 1, + [185537] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8966), 1, + ACTIONS(8988), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188771] = 4, - ACTIONS(5960), 1, + [185551] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8968), 1, + ACTIONS(8990), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188785] = 4, - ACTIONS(5960), 1, + [185565] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8970), 1, + ACTIONS(8992), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188799] = 4, - ACTIONS(2888), 1, + [185579] = 4, + ACTIONS(2839), 1, anon_sym_RBRACE, - ACTIONS(8972), 1, + ACTIONS(8994), 1, anon_sym_COMMA, - STATE(4930), 1, + STATE(4938), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188813] = 4, - ACTIONS(5960), 1, + [185593] = 4, + ACTIONS(6025), 1, anon_sym_COMMA, - ACTIONS(8974), 1, + ACTIONS(8996), 1, sym__newline, - STATE(4936), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188827] = 4, - ACTIONS(5279), 1, - anon_sym_RPAREN, - ACTIONS(8976), 1, - anon_sym_COMMA, - STATE(4757), 1, - aux_sym__typedargslist_repeat1, + [185607] = 4, + ACTIONS(8922), 1, + sym__newline, + ACTIONS(8998), 1, + sym_identifier, + ACTIONS(9000), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188841] = 4, - ACTIONS(5960), 1, - anon_sym_COMMA, - ACTIONS(8978), 1, - sym__newline, - STATE(4936), 1, - aux_sym_cvar_decl_repeat2, + [185621] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188855] = 4, - ACTIONS(8980), 1, + ACTIONS(9002), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(8982), 1, + [185631] = 4, + ACTIONS(9004), 1, + anon_sym_COMMA, + ACTIONS(9007), 1, anon_sym_RBRACK, - STATE(4630), 1, - aux_sym_subscript_repeat1, + STATE(4977), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188869] = 3, - ACTIONS(8930), 1, + [185645] = 4, + ACTIONS(6269), 1, sym__newline, - ACTIONS(8984), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [188880] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8986), 2, - sym__dedent, - anon_sym_case, - [188889] = 2, + ACTIONS(6766), 1, + anon_sym_COMMA, + STATE(4680), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8988), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [188898] = 2, + [185659] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8990), 2, + ACTIONS(9009), 2, sym__newline, anon_sym_SEMI, - [188907] = 2, + [185668] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8493), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [188916] = 2, + ACTIONS(9011), 2, + sym__dedent, + anon_sym_case, + [185677] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6202), 2, + ACTIONS(6224), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [188925] = 3, - ACTIONS(8992), 1, - anon_sym_LPAREN, - STATE(1976), 1, - sym_argument_list, + [185686] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188936] = 3, - ACTIONS(6481), 1, - anon_sym_COLON, - ACTIONS(6483), 1, + ACTIONS(9013), 2, sym__newline, + anon_sym_SEMI, + [185695] = 3, + ACTIONS(9015), 1, + anon_sym_LPAREN, + STATE(1967), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188947] = 2, + [185706] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7867), 2, + ACTIONS(9017), 2, anon_sym_RPAREN, anon_sym_COMMA, - [188956] = 3, - ACTIONS(8994), 1, - anon_sym_LPAREN, - STATE(2200), 1, - sym_argument_list, + [185715] = 3, + ACTIONS(8189), 1, + sym__newline, + ACTIONS(9019), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188967] = 3, - ACTIONS(8996), 1, - sym_integer, - ACTIONS(8998), 1, - sym_float, + [185726] = 3, + ACTIONS(8033), 1, + sym__newline, + ACTIONS(9021), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188978] = 3, - ACTIONS(7464), 1, - anon_sym_LPAREN, - ACTIONS(9000), 1, - anon_sym_RPAREN, + [185737] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188989] = 2, + ACTIONS(5395), 2, + anon_sym_COMMA, + anon_sym_COLON, + [185746] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6453), 2, + ACTIONS(6175), 2, sym__newline, anon_sym_SEMI, - [188998] = 3, - ACTIONS(9002), 1, + [185755] = 3, + ACTIONS(9023), 1, anon_sym_LPAREN, - STATE(2303), 1, + STATE(2189), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189009] = 3, - ACTIONS(9004), 1, - sym_integer, - ACTIONS(9006), 1, - sym_float, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [189020] = 3, - ACTIONS(7464), 1, - anon_sym_LPAREN, - ACTIONS(9008), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [189031] = 3, - ACTIONS(7464), 1, + [185766] = 3, + ACTIONS(9025), 1, anon_sym_LPAREN, - ACTIONS(9010), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [189042] = 3, - ACTIONS(7503), 1, - anon_sym_COLON, - ACTIONS(7505), 1, - sym__newline, + STATE(3284), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189053] = 3, - ACTIONS(8014), 1, - sym__newline, - ACTIONS(9012), 1, + [185777] = 3, + ACTIONS(9027), 1, anon_sym_COLON, + ACTIONS(9029), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189064] = 3, - ACTIONS(7464), 1, - anon_sym_LPAREN, - ACTIONS(9014), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [189075] = 2, + [185788] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7838), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [189084] = 2, + ACTIONS(9031), 2, + sym__newline, + anon_sym_SEMI, + [185797] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9016), 2, + ACTIONS(9033), 2, sym__newline, anon_sym_SEMI, - [189093] = 2, + [185806] = 3, + ACTIONS(9035), 1, + anon_sym_LPAREN, + STATE(2435), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5410), 2, - anon_sym_COMMA, - anon_sym_COLON, - [189102] = 3, - ACTIONS(9018), 1, + [185817] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - STATE(2162), 1, - sym_argument_list, + ACTIONS(9037), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189113] = 3, - ACTIONS(7464), 1, + [185828] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - ACTIONS(9020), 1, + ACTIONS(9039), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189124] = 2, + [185839] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7064), 2, - anon_sym_RPAREN, + ACTIONS(9041), 2, anon_sym_COMMA, - [189133] = 3, - ACTIONS(9022), 1, + anon_sym_RBRACE, + [185848] = 3, + ACTIONS(9043), 1, anon_sym_LPAREN, - STATE(2348), 1, + STATE(2413), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189144] = 3, - ACTIONS(8060), 1, - sym__newline, - ACTIONS(9024), 1, - anon_sym_COLON, + [185859] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189155] = 3, - ACTIONS(7464), 1, + ACTIONS(9045), 2, + anon_sym__, + sym_identifier, + [185868] = 3, + ACTIONS(9047), 1, anon_sym_LPAREN, - ACTIONS(9026), 1, - anon_sym_RPAREN, + STATE(2263), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189166] = 2, + [185879] = 3, + ACTIONS(7433), 1, + anon_sym_COLON, + ACTIONS(7435), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7734), 2, - anon_sym_from, - anon_sym_in, - [189175] = 2, + [185890] = 3, + ACTIONS(9049), 1, + sym_integer, + ACTIONS(9051), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5311), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [189184] = 2, + [185901] = 3, + ACTIONS(9053), 1, + anon_sym_COLON, + ACTIONS(9055), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6562), 2, - sym__newline, - anon_sym_SEMI, - [189193] = 3, - ACTIONS(9028), 1, + [185912] = 3, + ACTIONS(9057), 1, sym_integer, - ACTIONS(9030), 1, + ACTIONS(9059), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189204] = 2, + [185923] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7029), 2, + ACTIONS(9061), 2, sym__newline, - anon_sym_COLON, - [189213] = 3, - ACTIONS(8695), 1, - sym__newline, - ACTIONS(9032), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [189224] = 2, + anon_sym_SEMI, + [185932] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9034), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [189233] = 3, - ACTIONS(9036), 1, - anon_sym_COLON, - ACTIONS(9038), 1, - sym__newline, + ACTIONS(9063), 2, + anon_sym_type, + anon_sym_object, + [185941] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189244] = 3, - ACTIONS(9040), 1, - anon_sym_COLON, - ACTIONS(9042), 1, - sym__newline, + ACTIONS(7879), 2, + anon_sym_from, + anon_sym_in, + [185950] = 3, + ACTIONS(9065), 1, + anon_sym_LPAREN, + STATE(2350), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189255] = 2, + [185961] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8913), 2, + ACTIONS(3478), 2, anon_sym_RPAREN, anon_sym_COMMA, - [189264] = 3, - ACTIONS(8612), 1, - anon_sym_COLON, - ACTIONS(8616), 1, - sym__newline, + [185970] = 3, + ACTIONS(9067), 1, + anon_sym_LPAREN, + STATE(2941), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189275] = 3, - ACTIONS(7464), 1, + [185981] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - ACTIONS(9044), 1, + ACTIONS(9069), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189286] = 2, + [185992] = 3, + ACTIONS(9071), 1, + sym_integer, + ACTIONS(9073), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5259), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [189295] = 2, + [186003] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8321), 2, + ACTIONS(6224), 2, anon_sym_COMMA, anon_sym_RBRACK, - [189304] = 3, - ACTIONS(6362), 1, - sym_string_start, - STATE(2682), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [189315] = 3, - ACTIONS(7950), 1, - sym__newline, - ACTIONS(9046), 1, + [186012] = 3, + ACTIONS(5088), 1, anon_sym_COLON, + STATE(5194), 1, + sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189326] = 2, + [186023] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9048), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [189335] = 3, - ACTIONS(7464), 1, - anon_sym_LPAREN, - ACTIONS(9050), 1, + ACTIONS(9075), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [186032] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189346] = 2, + ACTIONS(9077), 2, + sym__dedent, + anon_sym_case, + [186041] = 3, + ACTIONS(7644), 1, + anon_sym_LPAREN, + ACTIONS(9079), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9052), 2, - sym__newline, - anon_sym_SEMI, - [189355] = 2, + [186052] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9054), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [189364] = 3, - ACTIONS(7464), 1, + ACTIONS(9081), 2, + sym__dedent, + anon_sym_case, + [186061] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - ACTIONS(9056), 1, + ACTIONS(9083), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189375] = 2, + [186072] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9048), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [189384] = 2, + ACTIONS(9085), 2, + sym__dedent, + anon_sym_case, + [186081] = 3, + ACTIONS(8693), 1, + anon_sym_COLON, + ACTIONS(8697), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9054), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [189393] = 2, + [186092] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5410), 2, + ACTIONS(9017), 2, anon_sym_COMMA, anon_sym_COLON, - [189402] = 3, - ACTIONS(9058), 1, - anon_sym_COLON, - ACTIONS(9060), 1, - sym__newline, + [186101] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189413] = 3, - ACTIONS(9062), 1, - sym_integer, - ACTIONS(9064), 1, - sym_float, + ACTIONS(5356), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [186110] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189424] = 3, - ACTIONS(9066), 1, + ACTIONS(9087), 2, + sym__dedent, + anon_sym_case, + [186119] = 3, + ACTIONS(9089), 1, anon_sym_COLON, - ACTIONS(9068), 1, + ACTIONS(9091), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189435] = 3, - ACTIONS(7464), 1, - anon_sym_LPAREN, - ACTIONS(9070), 1, - anon_sym_RPAREN, + [186130] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189446] = 2, + ACTIONS(9093), 2, + sym__dedent, + anon_sym_case, + [186139] = 3, + ACTIONS(7644), 1, + anon_sym_LPAREN, + ACTIONS(9095), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9072), 2, - sym__dedent, - anon_sym_case, - [189455] = 2, + [186150] = 3, + ACTIONS(9097), 1, + sym_integer, + ACTIONS(9099), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9074), 2, - sym__dedent, - anon_sym_case, - [189464] = 3, - ACTIONS(9076), 1, + [186161] = 3, + ACTIONS(9101), 1, anon_sym_LPAREN, - STATE(3676), 1, + STATE(3648), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189475] = 2, + [186172] = 3, + ACTIONS(8933), 1, + sym__newline, + ACTIONS(9103), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9078), 2, - sym__newline, - anon_sym_SEMI, - [189484] = 2, + [186183] = 3, + ACTIONS(9105), 1, + anon_sym_COLON, + ACTIONS(9107), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5132), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [189493] = 3, - ACTIONS(6229), 1, + [186194] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - STATE(3743), 1, - sym_c_parameters, + ACTIONS(9109), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [186205] = 3, + ACTIONS(9111), 1, + anon_sym_COLON, + ACTIONS(9113), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189504] = 2, + [186216] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9080), 2, + ACTIONS(9115), 2, sym__newline, anon_sym_SEMI, - [189513] = 2, + [186225] = 3, + ACTIONS(6236), 1, + anon_sym_LPAREN, + STATE(3731), 1, + sym_c_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9082), 2, - sym__newline, - anon_sym_SEMI, - [189522] = 3, - ACTIONS(9084), 1, + [186236] = 3, + ACTIONS(7644), 1, + anon_sym_LPAREN, + ACTIONS(9117), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [186247] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9119), 2, + sym__dedent, + anon_sym_case, + [186256] = 3, + ACTIONS(9121), 1, anon_sym_COLON, - ACTIONS(9086), 1, + ACTIONS(9123), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189533] = 3, - ACTIONS(9088), 1, - anon_sym_COLON, - ACTIONS(9090), 1, - sym__newline, + [186267] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189544] = 3, - ACTIONS(9092), 1, + ACTIONS(8823), 2, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(9094), 1, + [186276] = 3, + ACTIONS(9125), 1, + anon_sym_COLON, + ACTIONS(9127), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189555] = 3, - ACTIONS(7464), 1, + [186287] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - ACTIONS(9096), 1, + ACTIONS(9129), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189566] = 3, - ACTIONS(7464), 1, + [186298] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - ACTIONS(9098), 1, + ACTIONS(9131), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189577] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7207), 2, + [186309] = 3, + ACTIONS(7644), 1, + anon_sym_LPAREN, + ACTIONS(9133), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [189586] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5132), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [189595] = 2, + [186320] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6202), 2, - sym__newline, - anon_sym_SEMI, - [189604] = 2, + ACTIONS(9135), 2, + sym__dedent, + anon_sym_case, + [186329] = 3, + ACTIONS(7644), 1, + anon_sym_LPAREN, + ACTIONS(9137), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6908), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [189613] = 3, - ACTIONS(9100), 1, + [186340] = 3, + ACTIONS(9139), 1, anon_sym_COLON, - ACTIONS(9102), 1, + ACTIONS(9141), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189624] = 3, - ACTIONS(7464), 1, - anon_sym_LPAREN, - ACTIONS(9104), 1, - anon_sym_RPAREN, + [186351] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189635] = 2, + ACTIONS(5270), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [186360] = 3, + ACTIONS(7644), 1, + anon_sym_LPAREN, + ACTIONS(9143), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9106), 2, - anon_sym_COMMA, + [186371] = 3, + ACTIONS(9145), 1, anon_sym_COLON, - [189644] = 3, - ACTIONS(7464), 1, - anon_sym_LPAREN, - ACTIONS(9108), 1, - anon_sym_RPAREN, + ACTIONS(9147), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189655] = 3, - ACTIONS(6362), 1, + [186382] = 3, + ACTIONS(6412), 1, sym_string_start, - STATE(2668), 1, + STATE(2682), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189666] = 3, - ACTIONS(7464), 1, + [186393] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - ACTIONS(9110), 1, + ACTIONS(9149), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189677] = 3, - ACTIONS(8707), 1, - anon_sym_COLON, - ACTIONS(8711), 1, - sym__newline, + [186404] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189688] = 3, - ACTIONS(7464), 1, - anon_sym_LPAREN, - ACTIONS(9112), 1, - anon_sym_RPAREN, + ACTIONS(9151), 2, + anon_sym_import, + anon_sym_cimport, + [186413] = 3, + ACTIONS(8739), 1, + sym__newline, + ACTIONS(9153), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189699] = 3, - ACTIONS(7464), 1, + [186424] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - ACTIONS(9114), 1, + ACTIONS(9155), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189710] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5996), 2, - sym__newline, - anon_sym_SEMI, - [189719] = 2, + [186435] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9116), 2, - anon_sym_nogil, - anon_sym_gil, - [189728] = 3, - ACTIONS(7464), 1, + ACTIONS(5395), 2, + anon_sym_COMMA, + anon_sym_COLON, + [186444] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - ACTIONS(9118), 1, + ACTIONS(9157), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189739] = 2, + [186455] = 3, + ACTIONS(9159), 1, + sym_integer, + ACTIONS(9161), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7207), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [189748] = 3, - ACTIONS(7464), 1, + [186466] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - ACTIONS(9120), 1, + ACTIONS(9163), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189759] = 2, + [186477] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8384), 2, - sym__newline, - anon_sym_SEMI, - [189768] = 3, - ACTIONS(7464), 1, + ACTIONS(9165), 2, + anon_sym_nogil, + anon_sym_gil, + [186486] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - ACTIONS(9122), 1, + ACTIONS(9167), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189779] = 3, - ACTIONS(9124), 1, + [186497] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - STATE(2934), 1, - sym_argument_list, + ACTIONS(9169), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189790] = 2, + [186508] = 3, + ACTIONS(7848), 1, + anon_sym_LPAREN, + STATE(4991), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9126), 2, + [186519] = 3, + ACTIONS(7630), 1, anon_sym_COLON, - anon_sym_DASH_GT, - [189799] = 3, - ACTIONS(9128), 1, - sym_integer, - ACTIONS(9130), 1, - sym_float, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [189810] = 2, + ACTIONS(7632), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9048), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [189819] = 2, + [186530] = 3, + ACTIONS(9171), 1, + anon_sym_COLON, + ACTIONS(9173), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9054), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [189828] = 2, + [186541] = 3, + ACTIONS(7644), 1, + anon_sym_LPAREN, + ACTIONS(9175), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7207), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [189837] = 3, - ACTIONS(9132), 1, - anon_sym_COLON, - ACTIONS(9134), 1, + [186552] = 3, + ACTIONS(7977), 1, sym__newline, + ACTIONS(9177), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189848] = 3, - ACTIONS(9136), 1, + [186563] = 3, + ACTIONS(9179), 1, anon_sym_LPAREN, - STATE(2379), 1, + STATE(2350), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189859] = 3, - ACTIONS(9138), 1, + [186574] = 3, + ACTIONS(9181), 1, anon_sym_LPAREN, - STATE(2934), 1, + STATE(2941), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189870] = 3, - ACTIONS(9140), 1, + [186585] = 3, + ACTIONS(9183), 1, anon_sym_LPAREN, - STATE(2348), 1, + STATE(2413), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189881] = 3, - ACTIONS(9142), 1, + [186596] = 3, + ACTIONS(9185), 1, anon_sym_LPAREN, - STATE(2200), 1, + STATE(2189), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189892] = 3, - ACTIONS(9144), 1, + [186607] = 3, + ACTIONS(9187), 1, anon_sym_LPAREN, - STATE(3676), 1, + STATE(3648), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189903] = 3, - ACTIONS(9146), 1, + [186618] = 3, + ACTIONS(9189), 1, anon_sym_LPAREN, - STATE(2538), 1, + STATE(2565), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189914] = 3, - ACTIONS(9148), 1, + [186629] = 3, + ACTIONS(9191), 1, anon_sym_LPAREN, - STATE(2483), 1, + STATE(2474), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189925] = 2, + [186640] = 3, + ACTIONS(9193), 1, + anon_sym_COLON, + ACTIONS(9195), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7705), 2, - anon_sym_from, - anon_sym_in, - [189934] = 3, - ACTIONS(9150), 1, - anon_sym_COLON, - ACTIONS(9152), 1, - anon_sym_DASH_GT, + [186651] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189945] = 2, + ACTIONS(9197), 2, + anon_sym_type, + anon_sym_object, + [186660] = 3, + ACTIONS(7644), 1, + anon_sym_LPAREN, + ACTIONS(9199), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9154), 2, - sym__dedent, - anon_sym_case, - [189954] = 2, + [186671] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9156), 2, + ACTIONS(7251), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [189963] = 2, + [186680] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8422), 2, + ACTIONS(9201), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [189972] = 3, - ACTIONS(7464), 1, + [186689] = 3, + ACTIONS(6236), 1, anon_sym_LPAREN, - ACTIONS(9158), 1, + STATE(3825), 1, + sym_c_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [186700] = 3, + ACTIONS(7644), 1, + anon_sym_LPAREN, + ACTIONS(9203), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189983] = 3, - ACTIONS(7464), 1, + [186711] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - ACTIONS(9160), 1, + ACTIONS(9205), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189994] = 2, + [186722] = 3, + ACTIONS(8788), 1, + anon_sym_COLON, + ACTIONS(8792), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9162), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [190003] = 3, - ACTIONS(9164), 1, + [186733] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - STATE(2379), 1, - sym_argument_list, + ACTIONS(9207), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190014] = 3, - ACTIONS(9166), 1, + [186744] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - STATE(3267), 1, - sym_argument_list, + ACTIONS(9209), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190025] = 3, - ACTIONS(6229), 1, - anon_sym_LPAREN, - STATE(3754), 1, - sym_c_parameters, + [186755] = 3, + ACTIONS(6412), 1, + sym_string_start, + STATE(2683), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190036] = 2, + [186766] = 3, + ACTIONS(7644), 1, + anon_sym_LPAREN, + ACTIONS(9211), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9168), 2, - anon_sym_COMMA, - anon_sym_COLON, - [190045] = 2, + [186777] = 3, + ACTIONS(6412), 1, + sym_string_start, + STATE(2664), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6202), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [190054] = 3, - ACTIONS(7464), 1, + [186788] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9213), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190065] = 2, + [186799] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9172), 2, + ACTIONS(6557), 2, sym__newline, anon_sym_SEMI, - [190074] = 3, - ACTIONS(9174), 1, - anon_sym_COLON, - ACTIONS(9176), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190085] = 3, - ACTIONS(7464), 1, + [186808] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9215), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190096] = 3, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(5106), 1, - sym_parameters, + [186819] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190107] = 3, - ACTIONS(6362), 1, - sym_string_start, - STATE(2660), 1, - sym_string, + ACTIONS(5358), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [186828] = 3, + ACTIONS(7644), 1, + anon_sym_LPAREN, + ACTIONS(9217), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190118] = 3, - ACTIONS(7464), 1, + [186839] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - ACTIONS(9180), 1, + ACTIONS(9219), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190129] = 2, + [186850] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9182), 2, - sym__dedent, - anon_sym_case, - [190138] = 3, - ACTIONS(7464), 1, - anon_sym_LPAREN, - ACTIONS(9184), 1, - anon_sym_RPAREN, + ACTIONS(6559), 2, + sym__newline, + anon_sym_SEMI, + [186859] = 3, + ACTIONS(8239), 1, + sym__newline, + ACTIONS(9221), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190149] = 3, - ACTIONS(7464), 1, - anon_sym_LPAREN, - ACTIONS(9186), 1, + [186870] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9223), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [186879] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190160] = 3, - ACTIONS(9188), 1, - anon_sym_COLON, - ACTIONS(9190), 1, - sym__newline, + ACTIONS(6988), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [186888] = 3, + ACTIONS(9035), 1, + anon_sym_LPAREN, + STATE(2941), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190171] = 3, - ACTIONS(7464), 1, + [186899] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - ACTIONS(9192), 1, + ACTIONS(9225), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190182] = 3, - ACTIONS(7464), 1, + [186910] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - ACTIONS(9194), 1, + ACTIONS(9227), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190193] = 3, - ACTIONS(5065), 1, - anon_sym_COLON, - STATE(5013), 1, - sym_memory_view_index, + [186921] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190204] = 3, - ACTIONS(9196), 1, - anon_sym_COLON, - ACTIONS(9198), 1, - anon_sym_DASH_GT, + ACTIONS(9229), 2, + anon_sym_import, + anon_sym_cimport, + [186930] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190215] = 2, + ACTIONS(9231), 2, + sym__newline, + anon_sym_SEMI, + [186939] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8422), 2, + ACTIONS(7106), 2, anon_sym_RPAREN, anon_sym_COMMA, - [190224] = 3, - ACTIONS(9002), 1, - anon_sym_LPAREN, - STATE(2934), 1, - sym_argument_list, + [186948] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7158), 2, + sym__newline, + anon_sym_COLON, + [186957] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190235] = 2, + ACTIONS(9233), 2, + anon_sym__, + sym_identifier, + [186966] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7957), 2, + ACTIONS(5358), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [190244] = 3, - ACTIONS(9200), 1, - anon_sym_COLON, - ACTIONS(9202), 1, - anon_sym_DASH_GT, + anon_sym_RBRACK, + [186975] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190255] = 3, - ACTIONS(9204), 1, + ACTIONS(9235), 2, + sym__dedent, + anon_sym_case, + [186984] = 3, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(2538), 1, + STATE(2565), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190266] = 2, + [186995] = 3, + ACTIONS(7644), 1, + anon_sym_LPAREN, + ACTIONS(9239), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9206), 2, - sym__dedent, - anon_sym_case, - [190275] = 2, + [187006] = 3, + ACTIONS(9241), 1, + sym_integer, + ACTIONS(9243), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9208), 2, - sym__dedent, - anon_sym_case, - [190284] = 2, + [187017] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9210), 2, - anon_sym__, - sym_identifier, - [190293] = 2, + ACTIONS(6224), 2, + sym__newline, + anon_sym_SEMI, + [187026] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9212), 2, + ACTIONS(9245), 2, sym__dedent, anon_sym_case, - [190302] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9168), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [190311] = 3, - ACTIONS(7464), 1, - anon_sym_LPAREN, - ACTIONS(9214), 1, - anon_sym_RPAREN, + [187035] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190322] = 3, - ACTIONS(9216), 1, + ACTIONS(9247), 2, anon_sym_COLON, - ACTIONS(9218), 1, - sym__newline, + anon_sym_DASH_GT, + [187044] = 3, + ACTIONS(9249), 1, + anon_sym_COLON, + ACTIONS(9251), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190333] = 3, - ACTIONS(9220), 1, + [187055] = 3, + ACTIONS(6484), 1, anon_sym_COLON, - ACTIONS(9222), 1, + ACTIONS(6486), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190344] = 3, - ACTIONS(7464), 1, + [187066] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - ACTIONS(9224), 1, + ACTIONS(9253), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190355] = 3, - ACTIONS(9226), 1, - anon_sym_COMMA, - STATE(4041), 1, - aux_sym__patterns_repeat1, + [187077] = 3, + ACTIONS(7644), 1, + anon_sym_LPAREN, + ACTIONS(9255), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190366] = 2, + [187088] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5410), 2, - anon_sym_RPAREN, + ACTIONS(3478), 2, anon_sym_COMMA, - [190375] = 2, + anon_sym_RBRACK, + [187097] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9228), 2, - sym__dedent, - anon_sym_case, - [190384] = 3, - ACTIONS(9230), 1, + ACTIONS(9257), 2, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(9232), 1, + [187106] = 3, + ACTIONS(7973), 1, + anon_sym_LPAREN, + ACTIONS(9259), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190395] = 3, - ACTIONS(6521), 1, - anon_sym_COLON, - ACTIONS(6523), 1, - sym__newline, + [187117] = 3, + ACTIONS(6412), 1, + sym_string_start, + STATE(5469), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190406] = 3, - ACTIONS(9234), 1, - anon_sym_COLON, - ACTIONS(9236), 1, - sym__newline, + [187128] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190417] = 3, - ACTIONS(6362), 1, - sym_string_start, - STATE(5436), 1, - sym_string, + ACTIONS(9261), 2, + sym__newline, + anon_sym_SEMI, + [187137] = 3, + ACTIONS(6565), 1, + anon_sym_COLON, + ACTIONS(6567), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190428] = 3, - ACTIONS(9238), 1, - sym_integer, - ACTIONS(9240), 1, - sym_float, + [187148] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190439] = 3, - ACTIONS(6572), 1, - anon_sym_COLON, - ACTIONS(6574), 1, + ACTIONS(8503), 2, sym__newline, + anon_sym_SEMI, + [187157] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190450] = 2, + ACTIONS(5270), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [187166] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9242), 2, + ACTIONS(9263), 2, sym__newline, anon_sym_SEMI, - [190459] = 2, + [187175] = 3, + ACTIONS(9265), 1, + sym_integer, + ACTIONS(9267), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [187186] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9244), 2, + ACTIONS(9269), 2, sym__newline, anon_sym_SEMI, - [190468] = 3, - ACTIONS(9246), 1, + [187195] = 3, + ACTIONS(9271), 1, anon_sym_COLON, - ACTIONS(9248), 1, + ACTIONS(9273), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190479] = 3, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(5102), 1, - sym_parameters, + [187206] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9275), 2, + sym__dedent, + anon_sym_case, + [187215] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190490] = 3, - ACTIONS(9250), 1, + ACTIONS(9277), 2, + anon_sym_COMMA, + anon_sym_COLON, + [187224] = 3, + ACTIONS(9279), 1, sym_integer, - ACTIONS(9252), 1, + ACTIONS(9281), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190501] = 2, + [187235] = 3, + ACTIONS(6396), 1, + anon_sym_COLON, + ACTIONS(6402), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3459), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [190510] = 3, - ACTIONS(6229), 1, - anon_sym_LPAREN, - STATE(3770), 1, - sym_c_parameters, + [187246] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190521] = 2, + ACTIONS(9283), 2, + sym__dedent, + anon_sym_case, + [187255] = 3, + ACTIONS(9285), 1, + anon_sym_COLON, + ACTIONS(9287), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7299), 2, - sym__newline, + [187266] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9289), 2, anon_sym_COLON, - [190530] = 3, - ACTIONS(7464), 1, + anon_sym_DASH_GT, + [187275] = 3, + ACTIONS(9291), 1, anon_sym_LPAREN, - ACTIONS(9254), 1, - anon_sym_RPAREN, + STATE(3284), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190541] = 2, + [187286] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9256), 2, - sym__dedent, - anon_sym_case, - [190550] = 3, - ACTIONS(8876), 1, - anon_sym_COLON, - ACTIONS(8880), 1, + ACTIONS(1451), 2, sym__newline, + anon_sym_SEMI, + [187295] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190561] = 3, - ACTIONS(9258), 1, + ACTIONS(9293), 2, + sym__newline, + anon_sym_SEMI, + [187304] = 3, + ACTIONS(7848), 1, anon_sym_LPAREN, - STATE(3267), 1, - sym_argument_list, + STATE(5040), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190572] = 2, + [187315] = 3, + ACTIONS(9295), 1, + anon_sym_COLON, + ACTIONS(9297), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9260), 2, - sym__dedent, - anon_sym_case, - [190581] = 2, + [187326] = 3, + ACTIONS(9299), 1, + anon_sym_COLON, + ACTIONS(9301), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9262), 2, - anon_sym__, - sym_identifier, - [190590] = 3, - ACTIONS(7750), 1, - anon_sym_LPAREN, - STATE(5038), 1, - sym_parameters, + [187337] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190601] = 3, - ACTIONS(7464), 1, + ACTIONS(9303), 2, + anon_sym__, + sym_identifier, + [187346] = 3, + ACTIONS(7848), 1, anon_sym_LPAREN, - ACTIONS(9264), 1, - anon_sym_RPAREN, + STATE(5046), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190612] = 3, - ACTIONS(9266), 1, + [187357] = 3, + ACTIONS(9305), 1, sym_integer, - ACTIONS(9268), 1, + ACTIONS(9307), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190623] = 3, - ACTIONS(7464), 1, + [187368] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - ACTIONS(9270), 1, + ACTIONS(9309), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190634] = 3, - ACTIONS(7750), 1, + [187379] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - STATE(5045), 1, - sym_parameters, + ACTIONS(9311), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190645] = 2, + [187390] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9272), 2, - sym__newline, - anon_sym_SEMI, - [190654] = 2, + ACTIONS(7916), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [187399] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9274), 2, - sym__newline, - anon_sym_SEMI, - [190663] = 3, - ACTIONS(9276), 1, + ACTIONS(8476), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [187408] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9075), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [187417] = 3, + ACTIONS(9313), 1, sym_integer, - ACTIONS(9278), 1, + ACTIONS(9315), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190674] = 3, - ACTIONS(8450), 1, - sym__newline, - ACTIONS(9280), 1, - anon_sym_COLON, + [187428] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190685] = 2, + ACTIONS(9002), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [187437] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9282), 2, + ACTIONS(8705), 2, + anon_sym_COMMA, + anon_sym_COLON, + [187446] = 3, + ACTIONS(7848), 1, + anon_sym_LPAREN, + STATE(5025), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [187457] = 3, + ACTIONS(9317), 1, + anon_sym_COLON, + ACTIONS(9319), 1, sym__newline, - anon_sym_SEMI, - [190694] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9162), 2, + [187468] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9075), 2, anon_sym_COMMA, - anon_sym_COLON, - [190703] = 2, + anon_sym_RBRACK, + [187477] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9284), 2, + ACTIONS(9223), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [187486] = 3, + ACTIONS(8043), 1, sym__newline, - anon_sym_SEMI, - [190712] = 2, + ACTIONS(9321), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9286), 2, - anon_sym_type, - anon_sym_object, - [190721] = 2, + [187497] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9288), 2, - anon_sym_import, - anon_sym_cimport, - [190730] = 2, + ACTIONS(7106), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [187506] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9290), 2, - anon_sym__, - sym_identifier, - [190739] = 2, + ACTIONS(9223), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [187515] = 3, + ACTIONS(9323), 1, + anon_sym_COMMA, + STATE(4072), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9292), 2, - sym__dedent, - anon_sym_case, - [190748] = 3, - ACTIONS(9294), 1, - sym_integer, - ACTIONS(9296), 1, - sym_float, + [187526] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190759] = 2, + ACTIONS(8705), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [187535] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8493), 2, - anon_sym_COMMA, - anon_sym_COLON, - [190768] = 3, - ACTIONS(7464), 1, + ACTIONS(9325), 2, + anon_sym__, + sym_identifier, + [187544] = 3, + ACTIONS(9327), 1, + sym_integer, + ACTIONS(9329), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [187555] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - ACTIONS(9298), 1, + ACTIONS(9331), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190779] = 3, - ACTIONS(8911), 1, + [187566] = 3, + ACTIONS(8947), 1, sym__newline, - ACTIONS(9300), 1, + ACTIONS(9333), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190790] = 2, + [187577] = 3, + ACTIONS(9335), 1, + anon_sym_COLON, + ACTIONS(9337), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9302), 2, - sym__dedent, - anon_sym_case, - [190799] = 2, + [187588] = 3, + ACTIONS(8935), 1, + anon_sym_COLON, + ACTIONS(8939), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1440), 2, - sym__newline, - anon_sym_SEMI, - [190808] = 3, - ACTIONS(9304), 1, - anon_sym_LPAREN, - STATE(2483), 1, - sym_argument_list, + [187599] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190819] = 2, + ACTIONS(7106), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [187608] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9306), 2, + ACTIONS(7129), 2, + sym__newline, + anon_sym_COLON, + [187617] = 3, + ACTIONS(9339), 1, + anon_sym_COLON, + ACTIONS(9341), 1, sym__newline, - anon_sym_SEMI, - [190828] = 3, - ACTIONS(9308), 1, - sym_integer, - ACTIONS(9310), 1, - sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190839] = 2, + [187628] = 3, + ACTIONS(9343), 1, + anon_sym_LPAREN, + STATE(2474), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9312), 2, - anon_sym__, - sym_identifier, - [190848] = 3, - ACTIONS(7464), 1, - anon_sym_LPAREN, - ACTIONS(9314), 1, - anon_sym_RPAREN, + [187639] = 3, + ACTIONS(8943), 1, + sym__newline, + ACTIONS(9345), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190859] = 3, - ACTIONS(7594), 1, - anon_sym_COLON, - ACTIONS(7596), 1, - sym__newline, + [187650] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190870] = 3, - ACTIONS(7680), 1, + ACTIONS(7850), 2, + anon_sym_from, + anon_sym_in, + [187659] = 3, + ACTIONS(7648), 1, anon_sym_COLON, - ACTIONS(7682), 1, + ACTIONS(7650), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190881] = 3, - ACTIONS(9316), 1, + [187670] = 3, + ACTIONS(9347), 1, sym_integer, - ACTIONS(9318), 1, + ACTIONS(9349), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190892] = 3, - ACTIONS(8124), 1, - sym__newline, - ACTIONS(9320), 1, - anon_sym_COLON, + [187681] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190903] = 3, - ACTIONS(9322), 1, - anon_sym_COLON, - ACTIONS(9324), 1, - sym__newline, + ACTIONS(8823), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [187690] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190914] = 2, + ACTIONS(9351), 2, + anon_sym_nogil, + anon_sym_gil, + [187699] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9326), 2, - anon_sym_import, - anon_sym_cimport, - [190923] = 2, + ACTIONS(7891), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [187708] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7902), 2, + ACTIONS(7907), 2, anon_sym_from, anon_sym_in, - [190932] = 3, - ACTIONS(7464), 1, + [187717] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - ACTIONS(9328), 1, + ACTIONS(9353), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190943] = 3, - ACTIONS(7464), 1, + [187728] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - ACTIONS(9330), 1, + ACTIONS(9355), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190954] = 2, + [187739] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5259), 2, + ACTIONS(9257), 2, anon_sym_RPAREN, anon_sym_COMMA, - [190963] = 2, + [187748] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9106), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [190972] = 2, + ACTIONS(9357), 2, + sym__newline, + anon_sym_SEMI, + [187757] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9332), 2, - anon_sym_nogil, - anon_sym_gil, - [190981] = 3, - ACTIONS(7464), 1, - anon_sym_LPAREN, - ACTIONS(9334), 1, + ACTIONS(9277), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [187766] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190992] = 2, + ACTIONS(7914), 2, + anon_sym_from, + anon_sym_in, + [187775] = 3, + ACTIONS(9359), 1, + anon_sym_COLON, + ACTIONS(9361), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7910), 2, - anon_sym_from, - anon_sym_in, - [191001] = 2, + [187786] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3459), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [191010] = 3, - ACTIONS(7946), 1, - anon_sym_LPAREN, - ACTIONS(9336), 1, + ACTIONS(9363), 2, sym__newline, + anon_sym_SEMI, + [187795] = 3, + ACTIONS(6236), 1, + anon_sym_LPAREN, + STATE(3734), 1, + sym_c_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191021] = 3, - ACTIONS(8896), 1, - sym__newline, - ACTIONS(9338), 1, - anon_sym_COLON, + [187806] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9365), 2, + sym__dedent, + anon_sym_case, + [187815] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191032] = 3, - ACTIONS(7464), 1, + ACTIONS(5395), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [187824] = 3, + ACTIONS(7644), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(9367), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191043] = 2, + [187835] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9342), 2, - anon_sym_type, - anon_sym_object, - [191052] = 3, - ACTIONS(7464), 1, - anon_sym_LPAREN, - ACTIONS(9344), 1, - anon_sym_RPAREN, + ACTIONS(9369), 2, + sym__newline, + anon_sym_SEMI, + [187844] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191063] = 2, - ACTIONS(9346), 1, - sym_identifier, + ACTIONS(8803), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [187853] = 2, + ACTIONS(6928), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191071] = 2, - ACTIONS(9348), 1, + [187861] = 2, + ACTIONS(9371), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191079] = 2, - ACTIONS(9350), 1, - anon_sym_RBRACE, + [187869] = 2, + ACTIONS(9373), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191087] = 2, - ACTIONS(8691), 1, + [187877] = 2, + ACTIONS(8729), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191095] = 2, - ACTIONS(9352), 1, + [187885] = 2, + ACTIONS(9375), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191103] = 2, - ACTIONS(6984), 1, + [187893] = 2, + ACTIONS(6982), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191111] = 2, - ACTIONS(9354), 1, - anon_sym_GT, + [187901] = 2, + ACTIONS(6739), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191119] = 2, - ACTIONS(9356), 1, + [187909] = 2, + ACTIONS(3061), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191127] = 2, - ACTIONS(9358), 1, - anon_sym_COLON, + [187917] = 2, + ACTIONS(6081), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191135] = 2, - ACTIONS(9360), 1, - anon_sym_RBRACE, + [187925] = 2, + ACTIONS(6019), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191143] = 2, - ACTIONS(9362), 1, - sym_identifier, + [187933] = 2, + ACTIONS(7680), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191151] = 2, - ACTIONS(6062), 1, + [187941] = 2, + ACTIONS(9377), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191159] = 2, - ACTIONS(9364), 1, + [187949] = 2, + ACTIONS(9379), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191167] = 2, - ACTIONS(9366), 1, - anon_sym_RBRACK, + [187957] = 2, + ACTIONS(9381), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191175] = 2, - ACTIONS(6701), 1, - anon_sym_RPAREN, + [187965] = 2, + ACTIONS(9383), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191183] = 2, - ACTIONS(9368), 1, - anon_sym_RBRACK, + [187973] = 2, + ACTIONS(9385), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191191] = 2, - ACTIONS(9370), 1, + [187981] = 2, + ACTIONS(9387), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191199] = 2, - ACTIONS(6076), 1, + [187989] = 2, + ACTIONS(9389), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191207] = 2, - ACTIONS(9372), 1, + [187997] = 2, + ACTIONS(9391), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191215] = 2, - ACTIONS(9374), 1, - anon_sym_COLON, + [188005] = 2, + ACTIONS(9393), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191223] = 2, - ACTIONS(9376), 1, + [188013] = 2, + ACTIONS(9395), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191231] = 2, - ACTIONS(9378), 1, + [188021] = 2, + ACTIONS(9397), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191239] = 2, - ACTIONS(9380), 1, + [188029] = 2, + ACTIONS(9399), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191247] = 2, - ACTIONS(7367), 1, - anon_sym_RBRACK, + [188037] = 2, + ACTIONS(9401), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191255] = 2, - ACTIONS(9382), 1, - aux_sym_run_directive_token1, - ACTIONS(5), 2, + [188045] = 2, + ACTIONS(9403), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191263] = 2, - ACTIONS(9384), 1, - anon_sym_COLON, + [188053] = 2, + ACTIONS(9405), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191271] = 2, - ACTIONS(9386), 1, + [188061] = 2, + ACTIONS(9407), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191279] = 2, - ACTIONS(9388), 1, + [188069] = 2, + ACTIONS(9409), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191287] = 2, - ACTIONS(9390), 1, + [188077] = 2, + ACTIONS(6956), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191295] = 2, - ACTIONS(9392), 1, + [188085] = 2, + ACTIONS(9411), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191303] = 2, - ACTIONS(9394), 1, - anon_sym_EQ, + [188093] = 2, + ACTIONS(8658), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191311] = 2, - ACTIONS(6948), 1, - anon_sym_RBRACE, + [188101] = 2, + ACTIONS(9413), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191319] = 2, - ACTIONS(9396), 1, - anon_sym_GT, + [188109] = 2, + ACTIONS(9415), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191327] = 2, - ACTIONS(9398), 1, + [188117] = 2, + ACTIONS(9417), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191335] = 2, - ACTIONS(9400), 1, - sym_identifier, + [188125] = 2, + ACTIONS(8550), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191343] = 2, - ACTIONS(6778), 1, - anon_sym_RBRACE, + [188133] = 2, + ACTIONS(9419), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191351] = 2, - ACTIONS(9402), 1, + [188141] = 2, + ACTIONS(9421), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191359] = 2, - ACTIONS(9404), 1, + [188149] = 2, + ACTIONS(9423), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191367] = 2, - ACTIONS(9406), 1, - anon_sym_RPAREN, + [188157] = 2, + ACTIONS(9425), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191375] = 2, - ACTIONS(9408), 1, + [188165] = 2, + ACTIONS(9427), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191383] = 2, - ACTIONS(9410), 1, - sym_identifier, + [188173] = 2, + ACTIONS(9429), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191391] = 2, - ACTIONS(9412), 1, - sym_identifier, + [188181] = 2, + ACTIONS(9431), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191399] = 2, - ACTIONS(9414), 1, - anon_sym_COLON, + [188189] = 2, + ACTIONS(9433), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191407] = 2, - ACTIONS(9416), 1, + [188197] = 2, + ACTIONS(9435), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191415] = 2, - ACTIONS(9418), 1, + [188205] = 2, + ACTIONS(9437), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191423] = 2, - ACTIONS(9420), 1, + [188213] = 2, + ACTIONS(9439), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191431] = 2, - ACTIONS(6671), 1, - anon_sym_COLON, + [188221] = 2, + ACTIONS(9441), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191439] = 2, - ACTIONS(9422), 1, - sym__indent, + [188229] = 2, + ACTIONS(7568), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191447] = 2, - ACTIONS(9424), 1, + [188237] = 2, + ACTIONS(9443), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191455] = 2, - ACTIONS(9426), 1, - anon_sym_RBRACK, + [188245] = 2, + ACTIONS(9445), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191463] = 2, - ACTIONS(9428), 1, + [188253] = 2, + ACTIONS(9447), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191471] = 2, - ACTIONS(9430), 1, + [188261] = 2, + ACTIONS(9449), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191479] = 2, - ACTIONS(9432), 1, + [188269] = 2, + ACTIONS(9451), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191487] = 2, - ACTIONS(9434), 1, - anon_sym_RPAREN, + [188277] = 2, + ACTIONS(9453), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191495] = 2, - ACTIONS(9436), 1, + [188285] = 2, + ACTIONS(9455), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191503] = 2, - ACTIONS(9438), 1, - anon_sym_RBRACE, + [188293] = 2, + ACTIONS(9457), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191511] = 2, - ACTIONS(9440), 1, - anon_sym_RBRACK, + [188301] = 2, + ACTIONS(9459), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191519] = 2, - ACTIONS(9442), 1, - anon_sym_COLON, + [188309] = 2, + ACTIONS(9461), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191527] = 2, - ACTIONS(9444), 1, - anon_sym_RBRACE, + [188317] = 2, + ACTIONS(9463), 1, + anon_sym_None, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191535] = 2, - ACTIONS(9446), 1, - anon_sym_COLON_EQ, + [188325] = 2, + ACTIONS(9465), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191543] = 2, - ACTIONS(9448), 1, - anon_sym_COLON, + [188333] = 2, + ACTIONS(9467), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191551] = 2, - ACTIONS(9450), 1, - sym_identifier, + [188341] = 2, + ACTIONS(6758), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191559] = 2, - ACTIONS(9452), 1, - anon_sym_RBRACK, + [188349] = 2, + ACTIONS(9469), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191567] = 2, - ACTIONS(9454), 1, + [188357] = 2, + ACTIONS(9471), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191575] = 2, - ACTIONS(9456), 1, - sym__indent, + [188365] = 2, + ACTIONS(9473), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191583] = 2, - ACTIONS(6707), 1, - anon_sym_COLON, + [188373] = 2, + ACTIONS(9475), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191591] = 2, - ACTIONS(9458), 1, - anon_sym_RPAREN, + [188381] = 2, + ACTIONS(8761), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191599] = 2, - ACTIONS(9460), 1, - anon_sym_COLON, + [188389] = 2, + ACTIONS(9477), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191607] = 2, - ACTIONS(9462), 1, - anon_sym_GT, + [188397] = 2, + ACTIONS(9479), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191615] = 2, - ACTIONS(9464), 1, - sym__indent, + [188405] = 2, + ACTIONS(7493), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191623] = 2, - ACTIONS(9466), 1, - anon_sym_GT, + [188413] = 2, + ACTIONS(9481), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191631] = 2, - ACTIONS(9468), 1, + [188421] = 2, + ACTIONS(9483), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191639] = 2, - ACTIONS(9470), 1, + [188429] = 2, + ACTIONS(9485), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191647] = 2, - ACTIONS(9472), 1, - sym_identifier, + [188437] = 2, + ACTIONS(9487), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191655] = 2, - ACTIONS(9474), 1, - sym_identifier, + [188445] = 2, + ACTIONS(9489), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191663] = 2, - ACTIONS(6172), 1, - sym_identifier, + [188453] = 2, + ACTIONS(9491), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191671] = 2, - ACTIONS(9476), 1, - anon_sym_RBRACE, + [188461] = 2, + ACTIONS(8367), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191679] = 2, - ACTIONS(9478), 1, + [188469] = 2, + ACTIONS(9493), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191687] = 2, - ACTIONS(9480), 1, - sym_identifier, + [188477] = 2, + ACTIONS(9495), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191695] = 2, - ACTIONS(9482), 1, + [188485] = 2, + ACTIONS(9497), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191703] = 2, - ACTIONS(9484), 1, + [188493] = 2, + ACTIONS(9499), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191711] = 2, - ACTIONS(9486), 1, - sym_identifier, + [188501] = 2, + ACTIONS(9501), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191719] = 2, - ACTIONS(9488), 1, - sym__indent, + [188509] = 2, + ACTIONS(9503), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191727] = 2, - ACTIONS(7307), 1, + [188517] = 2, + ACTIONS(7489), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191735] = 2, - ACTIONS(9490), 1, - anon_sym_COLON, + [188525] = 2, + ACTIONS(9505), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191743] = 2, - ACTIONS(9492), 1, + [188533] = 2, + ACTIONS(9507), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191751] = 2, - ACTIONS(9494), 1, - anon_sym_COLON, + [188541] = 2, + ACTIONS(9509), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191759] = 2, - ACTIONS(9496), 1, - anon_sym_RBRACE, + [188549] = 2, + ACTIONS(9511), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191767] = 2, - ACTIONS(9498), 1, + [188557] = 2, + ACTIONS(9513), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191775] = 2, - ACTIONS(9500), 1, - anon_sym_COLON_EQ, + [188565] = 2, + ACTIONS(6216), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191783] = 2, - ACTIONS(8761), 1, + [188573] = 2, + ACTIONS(8779), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191791] = 2, - ACTIONS(9502), 1, + [188581] = 2, + ACTIONS(9515), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191799] = 2, - ACTIONS(9504), 1, + [188589] = 2, + ACTIONS(9517), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191807] = 2, - ACTIONS(9506), 1, + [188597] = 2, + ACTIONS(9519), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191815] = 2, - ACTIONS(9508), 1, - anon_sym_COLON_EQ, + [188605] = 2, + ACTIONS(9521), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191823] = 2, - ACTIONS(9510), 1, - anon_sym_RBRACK, + [188613] = 2, + ACTIONS(9523), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191831] = 2, - ACTIONS(9512), 1, + [188621] = 2, + ACTIONS(9525), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191839] = 2, - ACTIONS(9514), 1, - anon_sym_RPAREN, + [188629] = 2, + ACTIONS(9527), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191847] = 2, - ACTIONS(9516), 1, - anon_sym_COLON, + [188637] = 2, + ACTIONS(9529), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191855] = 2, - ACTIONS(9518), 1, + [188645] = 2, + ACTIONS(9531), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191863] = 2, - ACTIONS(9520), 1, + [188653] = 2, + ACTIONS(9533), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191871] = 2, - ACTIONS(9522), 1, - anon_sym_COLON_EQ, + [188661] = 2, + ACTIONS(9535), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191879] = 2, - ACTIONS(8767), 1, + [188669] = 2, + ACTIONS(8786), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191887] = 2, - ACTIONS(9524), 1, - sym_identifier, + [188677] = 2, + ACTIONS(9537), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191895] = 2, - ACTIONS(7979), 1, - anon_sym_LPAREN, + [188685] = 2, + ACTIONS(9539), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191903] = 2, - ACTIONS(9526), 1, - anon_sym_COLON_EQ, + [188693] = 2, + ACTIONS(9541), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191911] = 2, - ACTIONS(9528), 1, - anon_sym_COLON, + [188701] = 2, + ACTIONS(9543), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191919] = 2, - ACTIONS(9530), 1, - anon_sym_COLON, + [188709] = 2, + ACTIONS(9545), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191927] = 2, - ACTIONS(9532), 1, - sym_identifier, + [188717] = 2, + ACTIONS(9547), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191935] = 2, - ACTIONS(6164), 1, - sym_identifier, + [188725] = 2, + ACTIONS(9549), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191943] = 2, - ACTIONS(9534), 1, + [188733] = 2, + ACTIONS(9551), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191951] = 2, - ACTIONS(9536), 1, + [188741] = 2, + ACTIONS(9553), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191959] = 2, - ACTIONS(9538), 1, - anon_sym_COLON, + [188749] = 2, + ACTIONS(9555), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191967] = 2, - ACTIONS(9540), 1, + [188757] = 2, + ACTIONS(9557), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191975] = 2, - ACTIONS(9542), 1, + [188765] = 2, + ACTIONS(9559), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191983] = 2, - ACTIONS(9544), 1, - sym_identifier, + [188773] = 2, + ACTIONS(6872), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191991] = 2, - ACTIONS(9546), 1, - anon_sym_COLON, + [188781] = 2, + ACTIONS(9561), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191999] = 2, - ACTIONS(9548), 1, - anon_sym_COLON_EQ, + [188789] = 2, + ACTIONS(9563), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192007] = 2, - ACTIONS(9550), 1, - sym__newline, + [188797] = 2, + ACTIONS(9565), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192015] = 2, - ACTIONS(7408), 1, - anon_sym_RBRACK, + [188805] = 2, + ACTIONS(9567), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192023] = 2, - ACTIONS(9552), 1, + [188813] = 2, + ACTIONS(9569), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192031] = 2, - ACTIONS(9554), 1, + [188821] = 2, + ACTIONS(9571), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192039] = 2, - ACTIONS(9556), 1, + [188829] = 2, + ACTIONS(9573), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192047] = 2, - ACTIONS(9558), 1, - anon_sym_COLON_EQ, + [188837] = 2, + ACTIONS(9575), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192055] = 2, - ACTIONS(9560), 1, - anon_sym_COLON, + [188845] = 2, + ACTIONS(9577), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192063] = 2, - ACTIONS(9562), 1, - anon_sym_RBRACE, + [188853] = 2, + ACTIONS(9579), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192071] = 2, - ACTIONS(9564), 1, - anon_sym_RBRACE, + [188861] = 2, + ACTIONS(9581), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192079] = 2, - ACTIONS(9566), 1, - anon_sym_RPAREN, + [188869] = 2, + ACTIONS(9583), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192087] = 2, - ACTIONS(9568), 1, - anon_sym_RBRACK, + [188877] = 2, + ACTIONS(9585), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192095] = 2, - ACTIONS(9570), 1, + [188885] = 2, + ACTIONS(9587), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192103] = 2, - ACTIONS(9572), 1, + [188893] = 2, + ACTIONS(9589), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192111] = 2, - ACTIONS(9574), 1, + [188901] = 2, + ACTIONS(9591), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192119] = 2, - ACTIONS(3851), 1, - sym__dedent, + [188909] = 2, + ACTIONS(9593), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192127] = 2, - ACTIONS(9576), 1, - anon_sym_GT, + [188917] = 2, + ACTIONS(9595), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192135] = 2, - ACTIONS(9578), 1, - anon_sym_None, + [188925] = 2, + ACTIONS(9597), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192143] = 2, - ACTIONS(9580), 1, + [188933] = 2, + ACTIONS(9599), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192151] = 2, - ACTIONS(9582), 1, + [188941] = 2, + ACTIONS(9601), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192159] = 2, - ACTIONS(9584), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [192167] = 2, - ACTIONS(9586), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [192175] = 2, - ACTIONS(6970), 1, + [188949] = 2, + ACTIONS(9603), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192183] = 2, - ACTIONS(9588), 1, + [188957] = 2, + ACTIONS(9605), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192191] = 2, - ACTIONS(9590), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [192199] = 2, - ACTIONS(9592), 1, - sym_identifier, + [188965] = 2, + ACTIONS(5020), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192207] = 2, - ACTIONS(9594), 1, - anon_sym_RBRACE, + [188973] = 2, + ACTIONS(9607), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192215] = 2, - ACTIONS(9596), 1, - anon_sym_COLON_EQ, + [188981] = 2, + ACTIONS(9609), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192223] = 2, - ACTIONS(9598), 1, + [188989] = 2, + ACTIONS(9611), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192231] = 2, - ACTIONS(9600), 1, + [188997] = 2, + ACTIONS(9613), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192239] = 2, - ACTIONS(9602), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [192247] = 2, - ACTIONS(9604), 1, + [189005] = 2, + ACTIONS(9615), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192255] = 2, - ACTIONS(7946), 1, - anon_sym_LPAREN, + [189013] = 2, + ACTIONS(9617), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192263] = 2, - ACTIONS(9606), 1, - sym_identifier, + [189021] = 2, + ACTIONS(9619), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192271] = 2, - ACTIONS(6998), 1, - anon_sym_COLON, + [189029] = 2, + ACTIONS(6141), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192279] = 2, - ACTIONS(9608), 1, + [189037] = 2, + ACTIONS(9621), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192287] = 2, - ACTIONS(9610), 1, - anon_sym_RBRACK, + [189045] = 2, + ACTIONS(7973), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192295] = 2, - ACTIONS(9612), 1, + [189053] = 2, + ACTIONS(9623), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192303] = 2, - ACTIONS(9614), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [192311] = 2, - ACTIONS(9616), 1, - anon_sym_RBRACK, + [189061] = 2, + ACTIONS(9625), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192319] = 2, - ACTIONS(3801), 1, - sym__dedent, + [189069] = 2, + ACTIONS(9627), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192327] = 2, - ACTIONS(6840), 1, - anon_sym_RBRACE, + [189077] = 2, + ACTIONS(9629), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192335] = 2, - ACTIONS(9618), 1, - anon_sym_RBRACE, + [189085] = 2, + ACTIONS(3876), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192343] = 2, - ACTIONS(6610), 1, + [189093] = 2, + ACTIONS(9631), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192351] = 2, - ACTIONS(9620), 1, - anon_sym_None, + [189101] = 2, + ACTIONS(9633), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192359] = 2, - ACTIONS(9622), 1, + [189109] = 2, + ACTIONS(9635), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192367] = 2, - ACTIONS(9624), 1, + [189117] = 2, + ACTIONS(6212), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192375] = 2, - ACTIONS(9626), 1, - anon_sym_LPAREN, + [189125] = 2, + ACTIONS(9637), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192383] = 2, - ACTIONS(3799), 1, - sym__dedent, + [189133] = 2, + ACTIONS(9639), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192391] = 2, - ACTIONS(9628), 1, + [189141] = 2, + ACTIONS(9641), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192399] = 2, - ACTIONS(9630), 1, - anon_sym_COLON, + [189149] = 2, + ACTIONS(9643), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192407] = 2, - ACTIONS(9632), 1, - ts_builtin_sym_end, + [189157] = 2, + ACTIONS(9645), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192415] = 2, - ACTIONS(9634), 1, - anon_sym_RBRACE, + [189165] = 2, + ACTIONS(9647), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192423] = 2, - ACTIONS(9636), 1, + [189173] = 2, + ACTIONS(9649), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192431] = 2, - ACTIONS(9638), 1, - anon_sym_GT, + [189181] = 2, + ACTIONS(7035), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192439] = 2, - ACTIONS(9640), 1, - anon_sym_RPAREN, + [189189] = 2, + ACTIONS(9651), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192447] = 2, - ACTIONS(9642), 1, - sym_identifier, + [189197] = 2, + ACTIONS(9653), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192455] = 2, - ACTIONS(9644), 1, - sym_identifier, + [189205] = 2, + ACTIONS(9655), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192463] = 2, - ACTIONS(9646), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, + [189213] = 2, + ACTIONS(9657), 1, + aux_sym_run_directive_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [192471] = 2, - ACTIONS(9648), 1, - anon_sym_RPAREN, + [189221] = 2, + ACTIONS(9659), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192479] = 2, - ACTIONS(9650), 1, - sym_identifier, + [189229] = 2, + ACTIONS(9661), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192487] = 2, - ACTIONS(9652), 1, - sym_identifier, + [189237] = 2, + ACTIONS(9663), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192495] = 2, - ACTIONS(9654), 1, + [189245] = 2, + ACTIONS(9665), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192503] = 2, - ACTIONS(9656), 1, + [189253] = 2, + ACTIONS(9667), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192511] = 2, - ACTIONS(9658), 1, + [189261] = 2, + ACTIONS(9669), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192519] = 2, - ACTIONS(6092), 1, + [189269] = 2, + ACTIONS(9671), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192527] = 2, - ACTIONS(9660), 1, + [189277] = 2, + ACTIONS(9673), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192535] = 2, - ACTIONS(7540), 1, - anon_sym_RBRACK, + [189285] = 2, + ACTIONS(9675), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192543] = 2, - ACTIONS(8271), 1, - anon_sym_LPAREN, + [189293] = 2, + ACTIONS(6047), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192551] = 2, - ACTIONS(9662), 1, - anon_sym_COLON, + [189301] = 2, + ACTIONS(9677), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192559] = 2, - ACTIONS(9664), 1, + [189309] = 2, + ACTIONS(9679), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192567] = 2, - ACTIONS(9666), 1, - anon_sym_RBRACK, + [189317] = 2, + ACTIONS(9681), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192575] = 2, - ACTIONS(9668), 1, - anon_sym_COLON_EQ, + [189325] = 2, + ACTIONS(9683), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192583] = 2, - ACTIONS(9670), 1, - anon_sym_RBRACE, + [189333] = 2, + ACTIONS(9685), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192591] = 2, - ACTIONS(6916), 1, - anon_sym_COLON, + [189341] = 2, + ACTIONS(9687), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192599] = 2, - ACTIONS(9672), 1, + [189349] = 2, + ACTIONS(9689), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192607] = 2, - ACTIONS(9674), 1, - sym_identifier, + [189357] = 2, + ACTIONS(9691), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192615] = 2, - ACTIONS(7311), 1, + [189365] = 2, + ACTIONS(9693), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192623] = 2, - ACTIONS(6875), 1, - anon_sym_RBRACE, + [189373] = 2, + ACTIONS(9695), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192631] = 2, - ACTIONS(9676), 1, + [189381] = 2, + ACTIONS(9697), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192639] = 2, - ACTIONS(9678), 1, - sym_identifier, + [189389] = 2, + ACTIONS(9699), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192647] = 2, - ACTIONS(5025), 1, + [189397] = 2, + ACTIONS(9701), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [189405] = 2, + ACTIONS(3866), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192655] = 2, - ACTIONS(9680), 1, + [189413] = 2, + ACTIONS(9703), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [189421] = 2, + ACTIONS(9705), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192663] = 2, - ACTIONS(9682), 1, + [189429] = 2, + ACTIONS(9707), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [189437] = 2, + ACTIONS(9709), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [189445] = 2, + ACTIONS(9711), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192671] = 2, - ACTIONS(9684), 1, + [189453] = 2, + ACTIONS(9713), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192679] = 2, - ACTIONS(9686), 1, - sym_identifier, + [189461] = 2, + ACTIONS(6986), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192687] = 2, - ACTIONS(9688), 1, + [189469] = 2, + ACTIONS(9715), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192695] = 2, - ACTIONS(6042), 1, + [189477] = 2, + ACTIONS(9717), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192703] = 2, - ACTIONS(9690), 1, - anon_sym_COLON, + [189485] = 2, + ACTIONS(9719), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192711] = 2, - ACTIONS(9692), 1, - anon_sym_for, + [189493] = 2, + ACTIONS(9721), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192719] = 2, - ACTIONS(9694), 1, - sym_identifier, + [189501] = 2, + ACTIONS(9723), 1, + anon_sym_None, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192727] = 2, - ACTIONS(9696), 1, - anon_sym_COLON, + [189509] = 2, + ACTIONS(9725), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192735] = 2, - ACTIONS(9698), 1, + [189517] = 2, + ACTIONS(9727), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192743] = 2, - ACTIONS(9700), 1, - sym_identifier, + [189525] = 2, + ACTIONS(9729), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192751] = 2, - ACTIONS(3074), 1, + [189533] = 2, + ACTIONS(9731), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192759] = 2, - ACTIONS(9702), 1, + [189541] = 2, + ACTIONS(9733), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192767] = 2, - ACTIONS(9704), 1, + [189549] = 2, + ACTIONS(9735), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [189557] = 2, + ACTIONS(9737), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192775] = 2, - ACTIONS(9706), 1, - anon_sym_RBRACE, + [189565] = 2, + ACTIONS(9739), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192783] = 2, - ACTIONS(9708), 1, + [189573] = 2, + ACTIONS(9741), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192791] = 2, - ACTIONS(9710), 1, - anon_sym_COLON, + [189581] = 2, + ACTIONS(5997), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192799] = 2, - ACTIONS(9712), 1, + [189589] = 2, + ACTIONS(9743), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192807] = 2, - ACTIONS(9714), 1, + [189597] = 2, + ACTIONS(9745), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192815] = 2, - ACTIONS(9716), 1, - anon_sym_RBRACE, + [189605] = 2, + ACTIONS(9747), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192823] = 2, - ACTIONS(9718), 1, - anon_sym_RBRACE, + [189613] = 2, + ACTIONS(6972), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192831] = 2, - ACTIONS(9720), 1, - sym_identifier, + [189621] = 2, + ACTIONS(9749), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192839] = 2, - ACTIONS(9722), 1, - anon_sym_COLON, + [189629] = 2, + ACTIONS(9751), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192847] = 2, - ACTIONS(9724), 1, - sym_identifier, + [189637] = 2, + ACTIONS(9753), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192855] = 2, - ACTIONS(9726), 1, + [189645] = 2, + ACTIONS(9755), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192863] = 2, - ACTIONS(9728), 1, + [189653] = 2, + ACTIONS(9757), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192871] = 2, - ACTIONS(9730), 1, - sym_identifier, + [189661] = 2, + ACTIONS(9759), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192879] = 2, - ACTIONS(6894), 1, - anon_sym_RBRACE, + [189669] = 2, + ACTIONS(9761), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192887] = 2, - ACTIONS(9732), 1, - anon_sym_COLON, + [189677] = 2, + ACTIONS(9763), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192895] = 2, - ACTIONS(6988), 1, - anon_sym_RPAREN, + [189685] = 2, + ACTIONS(6908), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192903] = 2, - ACTIONS(3499), 1, - anon_sym_def, + [189693] = 2, + ACTIONS(7023), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192911] = 2, - ACTIONS(9734), 1, - anon_sym_RBRACE, + [189701] = 2, + ACTIONS(9765), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192919] = 2, - ACTIONS(9736), 1, - anon_sym_COLON, + [189709] = 2, + ACTIONS(9767), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192927] = 2, - ACTIONS(6952), 1, - anon_sym_RBRACE, + [189717] = 2, + ACTIONS(3864), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192935] = 2, - ACTIONS(9738), 1, - sym_identifier, + [189725] = 2, + ACTIONS(9769), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192943] = 2, - ACTIONS(9740), 1, + [189733] = 2, + ACTIONS(9771), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192951] = 2, - ACTIONS(9742), 1, + [189741] = 2, + ACTIONS(9773), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192959] = 2, - ACTIONS(9744), 1, + [189749] = 2, + ACTIONS(9775), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192967] = 2, - ACTIONS(9746), 1, + [189757] = 2, + ACTIONS(9777), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192975] = 2, - ACTIONS(9748), 1, - sym_identifier, + [189765] = 2, + ACTIONS(9779), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192983] = 2, - ACTIONS(5972), 1, - anon_sym_RPAREN, + [189773] = 2, + ACTIONS(9781), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192991] = 2, - ACTIONS(9750), 1, - anon_sym_RBRACE, + [189781] = 2, + ACTIONS(9783), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192999] = 2, - ACTIONS(6942), 1, - anon_sym_COLON, + [189789] = 2, + ACTIONS(3518), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193007] = 2, - ACTIONS(9752), 1, - anon_sym_None, + [189797] = 2, + ACTIONS(5461), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193015] = 2, - ACTIONS(9754), 1, - anon_sym_COLON, + [189805] = 2, + ACTIONS(9785), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193023] = 2, - ACTIONS(9756), 1, - sym__indent, + [189813] = 2, + ACTIONS(9787), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193031] = 2, - ACTIONS(9758), 1, - anon_sym_RPAREN, + [189821] = 2, + ACTIONS(9789), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193039] = 2, - ACTIONS(9760), 1, + [189829] = 2, + ACTIONS(9791), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193047] = 2, - ACTIONS(9762), 1, + [189837] = 2, + ACTIONS(9793), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193055] = 2, - ACTIONS(9764), 1, - anon_sym_GT, + [189845] = 2, + ACTIONS(9795), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193063] = 2, - ACTIONS(9766), 1, - anon_sym_RPAREN, + [189853] = 2, + ACTIONS(9797), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193071] = 2, - ACTIONS(9768), 1, - anon_sym_RBRACK, + [189861] = 2, + ACTIONS(6752), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193079] = 2, - ACTIONS(9770), 1, + [189869] = 2, + ACTIONS(9799), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193087] = 2, - ACTIONS(9772), 1, - anon_sym_COLON, + [189877] = 2, + ACTIONS(9801), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193095] = 2, - ACTIONS(9774), 1, - anon_sym_RPAREN, + [189885] = 2, + ACTIONS(9803), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193103] = 2, - ACTIONS(9776), 1, - anon_sym_RBRACE, + [189893] = 2, + ACTIONS(9805), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193111] = 2, - ACTIONS(9778), 1, - anon_sym_COLON_EQ, + [189901] = 2, + ACTIONS(6976), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193119] = 2, - ACTIONS(9780), 1, - anon_sym_COLON, + [189909] = 2, + ACTIONS(6930), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193127] = 2, - ACTIONS(9782), 1, - sym_identifier, + [189917] = 2, + ACTIONS(9807), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193135] = 2, - ACTIONS(9784), 1, + [189925] = 2, + ACTIONS(9809), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193143] = 2, - ACTIONS(9786), 1, - sym_identifier, + [189933] = 2, + ACTIONS(9811), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193151] = 2, - ACTIONS(9788), 1, - anon_sym_RPAREN, + [189941] = 2, + ACTIONS(9813), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193159] = 2, - ACTIONS(9790), 1, + [189949] = 2, + ACTIONS(9815), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193167] = 2, - ACTIONS(9792), 1, - sym_identifier, + [189957] = 2, + ACTIONS(7578), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193175] = 2, - ACTIONS(7464), 1, - anon_sym_LPAREN, + [189965] = 2, + ACTIONS(9817), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193183] = 2, - ACTIONS(9794), 1, - anon_sym_RPAREN, + [189973] = 2, + ACTIONS(9819), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193191] = 2, - ACTIONS(9796), 1, - sym_identifier, + [189981] = 2, + ACTIONS(9821), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193199] = 2, - ACTIONS(9798), 1, - sym_identifier, + [189989] = 2, + ACTIONS(9823), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193207] = 2, - ACTIONS(9800), 1, - sym_identifier, + [189997] = 2, + ACTIONS(9825), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193215] = 2, - ACTIONS(5021), 1, - sym__dedent, + [190005] = 2, + ACTIONS(9827), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193223] = 2, - ACTIONS(9802), 1, - sym_identifier, + [190013] = 2, + ACTIONS(9829), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193231] = 2, - ACTIONS(9804), 1, - anon_sym_COLON, + [190021] = 2, + ACTIONS(9831), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193239] = 2, - ACTIONS(9806), 1, + [190029] = 2, + ACTIONS(9833), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193247] = 2, - ACTIONS(9808), 1, + [190037] = 2, + ACTIONS(9835), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193255] = 2, - ACTIONS(9810), 1, - anon_sym_RBRACE, + [190045] = 2, + ACTIONS(9837), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193263] = 2, - ACTIONS(6885), 1, - anon_sym_RBRACE, + [190053] = 2, + ACTIONS(9839), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193271] = 2, - ACTIONS(9812), 1, - anon_sym_COLON, + [190061] = 2, + ACTIONS(6940), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193279] = 2, - ACTIONS(9814), 1, - anon_sym_RBRACK, + [190069] = 2, + ACTIONS(7644), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193287] = 2, - ACTIONS(9816), 1, - anon_sym_RBRACE, + [190077] = 2, + ACTIONS(9841), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193295] = 2, - ACTIONS(9818), 1, - anon_sym_GT, + [190085] = 2, + ACTIONS(9843), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193303] = 2, - ACTIONS(9820), 1, - sym_identifier, + [190093] = 2, + ACTIONS(9845), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193311] = 2, - ACTIONS(9822), 1, - anon_sym_COLON, + [190101] = 2, + ACTIONS(9847), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193319] = 2, - ACTIONS(9824), 1, - anon_sym_RBRACE, + [190109] = 2, + ACTIONS(9849), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193327] = 2, - ACTIONS(9826), 1, - anon_sym_RBRACE, + [190117] = 2, + ACTIONS(9851), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193335] = 2, - ACTIONS(9828), 1, - sym_identifier, + [190125] = 2, + ACTIONS(9853), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193343] = 2, - ACTIONS(9830), 1, - sym_identifier, + [190133] = 2, + ACTIONS(9855), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193351] = 2, - ACTIONS(5023), 1, - sym__dedent, + [190141] = 2, + ACTIONS(9857), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193359] = 2, - ACTIONS(7211), 1, - anon_sym_LPAREN, + [190149] = 2, + ACTIONS(9859), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193367] = 2, - ACTIONS(9832), 1, - anon_sym_COLON, + [190157] = 2, + ACTIONS(5052), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193375] = 2, - ACTIONS(9834), 1, - anon_sym_in, + [190165] = 2, + ACTIONS(9861), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193383] = 2, - ACTIONS(9836), 1, - anon_sym_COLON, + [190173] = 2, + ACTIONS(9863), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193391] = 2, - ACTIONS(9838), 1, - anon_sym_GT, + [190181] = 2, + ACTIONS(9865), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193399] = 2, - ACTIONS(9840), 1, + [190189] = 2, + ACTIONS(9867), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193407] = 2, - ACTIONS(9842), 1, + [190197] = 2, + ACTIONS(9869), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193415] = 2, - ACTIONS(9844), 1, - sym_identifier, + [190205] = 2, + ACTIONS(9871), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193423] = 2, - ACTIONS(9846), 1, - sym_identifier, + [190213] = 2, + ACTIONS(9873), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193431] = 2, - ACTIONS(9848), 1, + [190221] = 2, + ACTIONS(9875), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193439] = 2, - ACTIONS(9850), 1, - anon_sym_RPAREN, + [190229] = 2, + ACTIONS(9877), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193447] = 2, - ACTIONS(9852), 1, + [190237] = 2, + ACTIONS(9879), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193455] = 2, - ACTIONS(9854), 1, + [190245] = 2, + ACTIONS(9881), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193463] = 2, - ACTIONS(9856), 1, - anon_sym_RPAREN, + [190253] = 2, + ACTIONS(9883), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193471] = 2, - ACTIONS(9858), 1, - anon_sym_RPAREN, + [190261] = 2, + ACTIONS(9885), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193479] = 2, - ACTIONS(9860), 1, - sym_identifier, + [190269] = 2, + ACTIONS(9887), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193487] = 2, - ACTIONS(9862), 1, + [190277] = 2, + ACTIONS(9889), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193495] = 2, - ACTIONS(9864), 1, + [190285] = 2, + ACTIONS(9891), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193503] = 2, - ACTIONS(9866), 1, - anon_sym_RPAREN, + [190293] = 2, + ACTIONS(9893), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193511] = 2, - ACTIONS(5431), 1, - anon_sym_COLON, + [190301] = 2, + ACTIONS(9895), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193519] = 2, - ACTIONS(9868), 1, + [190309] = 2, + ACTIONS(9897), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193527] = 2, - ACTIONS(9870), 1, - anon_sym_RBRACK, + [190317] = 2, + ACTIONS(9899), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193535] = 2, - ACTIONS(9872), 1, - anon_sym_RPAREN, + [190325] = 2, + ACTIONS(9901), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193543] = 2, - ACTIONS(8678), 1, - anon_sym_in, + [190333] = 2, + ACTIONS(9903), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193551] = 2, - ACTIONS(9874), 1, - anon_sym_RBRACE, + [190341] = 2, + ACTIONS(8727), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193559] = 2, - ACTIONS(9876), 1, - anon_sym_RBRACK, + [190349] = 2, + ACTIONS(9905), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193567] = 2, - ACTIONS(9878), 1, - anon_sym_RBRACE, + [190357] = 2, + ACTIONS(9907), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193575] = 2, - ACTIONS(9880), 1, + [190365] = 2, + ACTIONS(9909), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193583] = 2, - ACTIONS(9882), 1, + [190373] = 2, + ACTIONS(9911), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193591] = 2, - ACTIONS(9884), 1, + [190381] = 2, + ACTIONS(9913), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193599] = 2, - ACTIONS(9886), 1, + [190389] = 2, + ACTIONS(9915), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193607] = 2, - ACTIONS(9888), 1, + [190397] = 2, + ACTIONS(9917), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193615] = 2, - ACTIONS(9890), 1, + [190405] = 2, + ACTIONS(9919), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193623] = 2, - ACTIONS(6964), 1, + [190413] = 2, + ACTIONS(6980), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193631] = 2, - ACTIONS(9892), 1, + [190421] = 2, + ACTIONS(9921), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193639] = 2, - ACTIONS(9894), 1, + [190429] = 2, + ACTIONS(9923), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193647] = 2, - ACTIONS(9896), 1, + [190437] = 2, + ACTIONS(9925), 1, anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193655] = 2, - ACTIONS(9898), 1, + [190445] = 2, + ACTIONS(9927), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193663] = 2, - ACTIONS(6120), 1, - anon_sym_RPAREN, + [190453] = 2, + ACTIONS(9929), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193671] = 2, - ACTIONS(9900), 1, - sym__indent, + [190461] = 2, + ACTIONS(5048), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193679] = 2, - ACTIONS(9902), 1, + [190469] = 2, + ACTIONS(9931), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193687] = 2, - ACTIONS(6068), 1, - anon_sym_RPAREN, + [190477] = 2, + ACTIONS(9933), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193695] = 2, - ACTIONS(9904), 1, + [190485] = 2, + ACTIONS(9935), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193703] = 2, - ACTIONS(8024), 1, - anon_sym_in, + [190493] = 2, + ACTIONS(9937), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193711] = 2, - ACTIONS(9906), 1, - anon_sym_COLON, + [190501] = 2, + ACTIONS(9939), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193719] = 2, - ACTIONS(9908), 1, - anon_sym_COLON_EQ, + [190509] = 2, + ACTIONS(9941), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193727] = 2, - ACTIONS(9910), 1, - sym_identifier, + [190517] = 2, + ACTIONS(6876), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193735] = 2, - ACTIONS(9912), 1, - anon_sym_COLON, + [190525] = 2, + ACTIONS(9943), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193743] = 2, - ACTIONS(6102), 1, - anon_sym_RPAREN, + [190533] = 2, + ACTIONS(9945), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193751] = 2, - ACTIONS(3509), 1, + [190541] = 2, + ACTIONS(3524), 1, anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193759] = 2, - ACTIONS(9914), 1, + [190549] = 2, + ACTIONS(9947), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193767] = 2, - ACTIONS(9916), 1, - anon_sym_RBRACK, + [190557] = 2, + ACTIONS(9949), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193775] = 2, - ACTIONS(9918), 1, - anon_sym_RPAREN, + [190565] = 2, + ACTIONS(9951), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193783] = 2, - ACTIONS(6637), 1, + [190573] = 2, + ACTIONS(6009), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193791] = 2, - ACTIONS(9920), 1, - anon_sym_COLON_EQ, + [190581] = 2, + ACTIONS(9953), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193799] = 2, - ACTIONS(9922), 1, + [190589] = 2, + ACTIONS(9955), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193807] = 2, - ACTIONS(9924), 1, - anon_sym_RBRACK, + [190597] = 2, + ACTIONS(6145), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193815] = 2, - ACTIONS(9926), 1, - anon_sym_RBRACE, + [190605] = 2, + ACTIONS(9957), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193823] = 2, - ACTIONS(9928), 1, - anon_sym_RBRACE, + [190613] = 2, + ACTIONS(9959), 1, + anon_sym_None, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193831] = 2, - ACTIONS(9930), 1, - anon_sym_RPAREN, + [190621] = 2, + ACTIONS(6898), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193839] = 2, - ACTIONS(9932), 1, - anon_sym_COLON_EQ, + [190629] = 2, + ACTIONS(6944), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193847] = 2, - ACTIONS(9934), 1, - sym__indent, + [190637] = 2, + ACTIONS(9961), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193855] = 2, - ACTIONS(9936), 1, - anon_sym_RBRACE, + [190645] = 2, + ACTIONS(9963), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193863] = 2, - ACTIONS(9938), 1, - anon_sym_None, + [190653] = 2, + ACTIONS(9965), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193871] = 2, - ACTIONS(8964), 1, - anon_sym_in, + [190661] = 2, + ACTIONS(9967), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193879] = 2, - ACTIONS(9940), 1, - anon_sym_COLON, + [190669] = 2, + ACTIONS(9969), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193887] = 2, - ACTIONS(9942), 1, - anon_sym_COLON, + [190677] = 2, + ACTIONS(9971), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193895] = 2, - ACTIONS(9944), 1, - anon_sym_COLON, + [190685] = 2, + ACTIONS(9973), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193903] = 2, - ACTIONS(9946), 1, - anon_sym_RBRACE, + [190693] = 2, + ACTIONS(9975), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193911] = 2, - ACTIONS(9948), 1, - anon_sym_import, + [190701] = 2, + ACTIONS(9977), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193919] = 2, - ACTIONS(9950), 1, + [190709] = 2, + ACTIONS(9979), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193927] = 2, - ACTIONS(9952), 1, + [190717] = 2, + ACTIONS(9981), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193935] = 2, - ACTIONS(9954), 1, + [190725] = 2, + ACTIONS(6683), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193943] = 2, - ACTIONS(9956), 1, - anon_sym_RBRACK, + [190733] = 2, + ACTIONS(9983), 1, + anon_sym_None, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193951] = 2, - ACTIONS(9958), 1, + [190741] = 2, + ACTIONS(9985), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193959] = 2, - ACTIONS(9960), 1, + [190749] = 2, + ACTIONS(9987), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193967] = 2, - ACTIONS(9962), 1, - sym_identifier, + [190757] = 2, + ACTIONS(9989), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193975] = 2, - ACTIONS(9964), 1, - anon_sym_COLON_EQ, + [190765] = 2, + ACTIONS(6123), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193983] = 2, - ACTIONS(9966), 1, - anon_sym_RPAREN, + [190773] = 2, + ACTIONS(9991), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(935)] = 0, - [SMALL_STATE(936)] = 121, - [SMALL_STATE(937)] = 192, - [SMALL_STATE(938)] = 263, - [SMALL_STATE(939)] = 384, - [SMALL_STATE(940)] = 459, - [SMALL_STATE(941)] = 580, - [SMALL_STATE(942)] = 699, - [SMALL_STATE(943)] = 820, - [SMALL_STATE(944)] = 941, - [SMALL_STATE(945)] = 1062, - [SMALL_STATE(946)] = 1183, - [SMALL_STATE(947)] = 1304, - [SMALL_STATE(948)] = 1425, - [SMALL_STATE(949)] = 1544, - [SMALL_STATE(950)] = 1665, - [SMALL_STATE(951)] = 1740, - [SMALL_STATE(952)] = 1859, - [SMALL_STATE(953)] = 1934, - [SMALL_STATE(954)] = 2055, - [SMALL_STATE(955)] = 2130, - [SMALL_STATE(956)] = 2205, - [SMALL_STATE(957)] = 2326, - [SMALL_STATE(958)] = 2447, - [SMALL_STATE(959)] = 2522, - [SMALL_STATE(960)] = 2643, - [SMALL_STATE(961)] = 2764, - [SMALL_STATE(962)] = 2835, - [SMALL_STATE(963)] = 2956, - [SMALL_STATE(964)] = 3077, - [SMALL_STATE(965)] = 3198, - [SMALL_STATE(966)] = 3319, - [SMALL_STATE(967)] = 3440, - [SMALL_STATE(968)] = 3515, - [SMALL_STATE(969)] = 3636, - [SMALL_STATE(970)] = 3757, - [SMALL_STATE(971)] = 3832, - [SMALL_STATE(972)] = 3907, - [SMALL_STATE(973)] = 3982, - [SMALL_STATE(974)] = 4057, - [SMALL_STATE(975)] = 4176, - [SMALL_STATE(976)] = 4251, - [SMALL_STATE(977)] = 4372, - [SMALL_STATE(978)] = 4493, - [SMALL_STATE(979)] = 4614, - [SMALL_STATE(980)] = 4735, - [SMALL_STATE(981)] = 4810, - [SMALL_STATE(982)] = 4885, - [SMALL_STATE(983)] = 5006, - [SMALL_STATE(984)] = 5081, - [SMALL_STATE(985)] = 5202, - [SMALL_STATE(986)] = 5323, - [SMALL_STATE(987)] = 5444, - [SMALL_STATE(988)] = 5519, - [SMALL_STATE(989)] = 5640, - [SMALL_STATE(990)] = 5761, - [SMALL_STATE(991)] = 5882, - [SMALL_STATE(992)] = 6003, - [SMALL_STATE(993)] = 6124, - [SMALL_STATE(994)] = 6243, - [SMALL_STATE(995)] = 6362, - [SMALL_STATE(996)] = 6433, - [SMALL_STATE(997)] = 6552, - [SMALL_STATE(998)] = 6623, - [SMALL_STATE(999)] = 6698, - [SMALL_STATE(1000)] = 6769, - [SMALL_STATE(1001)] = 6844, - [SMALL_STATE(1002)] = 6919, - [SMALL_STATE(1003)] = 6994, - [SMALL_STATE(1004)] = 7069, - [SMALL_STATE(1005)] = 7144, - [SMALL_STATE(1006)] = 7265, - [SMALL_STATE(1007)] = 7340, - [SMALL_STATE(1008)] = 7415, - [SMALL_STATE(1009)] = 7485, - [SMALL_STATE(1010)] = 7555, - [SMALL_STATE(1011)] = 7625, - [SMALL_STATE(1012)] = 7695, - [SMALL_STATE(1013)] = 7765, - [SMALL_STATE(1014)] = 7835, - [SMALL_STATE(1015)] = 7951, - [SMALL_STATE(1016)] = 8067, - [SMALL_STATE(1017)] = 8183, - [SMALL_STATE(1018)] = 8301, - [SMALL_STATE(1019)] = 8417, - [SMALL_STATE(1020)] = 8487, - [SMALL_STATE(1021)] = 8557, - [SMALL_STATE(1022)] = 8627, - [SMALL_STATE(1023)] = 8697, - [SMALL_STATE(1024)] = 8767, - [SMALL_STATE(1025)] = 8837, - [SMALL_STATE(1026)] = 8907, - [SMALL_STATE(1027)] = 8977, - [SMALL_STATE(1028)] = 9047, - [SMALL_STATE(1029)] = 9163, - [SMALL_STATE(1030)] = 9233, - [SMALL_STATE(1031)] = 9349, - [SMALL_STATE(1032)] = 9419, - [SMALL_STATE(1033)] = 9489, - [SMALL_STATE(1034)] = 9559, - [SMALL_STATE(1035)] = 9629, - [SMALL_STATE(1036)] = 9699, - [SMALL_STATE(1037)] = 9769, - [SMALL_STATE(1038)] = 9839, - [SMALL_STATE(1039)] = 9909, - [SMALL_STATE(1040)] = 9979, - [SMALL_STATE(1041)] = 10049, - [SMALL_STATE(1042)] = 10119, - [SMALL_STATE(1043)] = 10189, - [SMALL_STATE(1044)] = 10259, - [SMALL_STATE(1045)] = 10329, - [SMALL_STATE(1046)] = 10399, - [SMALL_STATE(1047)] = 10469, - [SMALL_STATE(1048)] = 10539, - [SMALL_STATE(1049)] = 10609, - [SMALL_STATE(1050)] = 10679, - [SMALL_STATE(1051)] = 10795, - [SMALL_STATE(1052)] = 10865, - [SMALL_STATE(1053)] = 10935, - [SMALL_STATE(1054)] = 11005, - [SMALL_STATE(1055)] = 11075, - [SMALL_STATE(1056)] = 11145, - [SMALL_STATE(1057)] = 11215, - [SMALL_STATE(1058)] = 11285, - [SMALL_STATE(1059)] = 11355, - [SMALL_STATE(1060)] = 11427, - [SMALL_STATE(1061)] = 11543, - [SMALL_STATE(1062)] = 11613, - [SMALL_STATE(1063)] = 11683, - [SMALL_STATE(1064)] = 11753, - [SMALL_STATE(1065)] = 11823, - [SMALL_STATE(1066)] = 11893, - [SMALL_STATE(1067)] = 11963, - [SMALL_STATE(1068)] = 12033, - [SMALL_STATE(1069)] = 12103, - [SMALL_STATE(1070)] = 12173, - [SMALL_STATE(1071)] = 12243, - [SMALL_STATE(1072)] = 12313, - [SMALL_STATE(1073)] = 12383, - [SMALL_STATE(1074)] = 12453, - [SMALL_STATE(1075)] = 12523, - [SMALL_STATE(1076)] = 12593, - [SMALL_STATE(1077)] = 12709, - [SMALL_STATE(1078)] = 12779, - [SMALL_STATE(1079)] = 12849, - [SMALL_STATE(1080)] = 12919, - [SMALL_STATE(1081)] = 12989, - [SMALL_STATE(1082)] = 13059, - [SMALL_STATE(1083)] = 13129, - [SMALL_STATE(1084)] = 13199, - [SMALL_STATE(1085)] = 13269, - [SMALL_STATE(1086)] = 13339, - [SMALL_STATE(1087)] = 13409, - [SMALL_STATE(1088)] = 13479, - [SMALL_STATE(1089)] = 13549, - [SMALL_STATE(1090)] = 13619, - [SMALL_STATE(1091)] = 13689, - [SMALL_STATE(1092)] = 13759, - [SMALL_STATE(1093)] = 13877, - [SMALL_STATE(1094)] = 13947, - [SMALL_STATE(1095)] = 14065, - [SMALL_STATE(1096)] = 14135, - [SMALL_STATE(1097)] = 14251, - [SMALL_STATE(1098)] = 14367, - [SMALL_STATE(1099)] = 14437, - [SMALL_STATE(1100)] = 14555, - [SMALL_STATE(1101)] = 14625, - [SMALL_STATE(1102)] = 14741, - [SMALL_STATE(1103)] = 14811, - [SMALL_STATE(1104)] = 14927, - [SMALL_STATE(1105)] = 15045, - [SMALL_STATE(1106)] = 15153, - [SMALL_STATE(1107)] = 15223, - [SMALL_STATE(1108)] = 15293, - [SMALL_STATE(1109)] = 15363, - [SMALL_STATE(1110)] = 15433, - [SMALL_STATE(1111)] = 15549, - [SMALL_STATE(1112)] = 15619, - [SMALL_STATE(1113)] = 15689, - [SMALL_STATE(1114)] = 15759, - [SMALL_STATE(1115)] = 15829, - [SMALL_STATE(1116)] = 15899, - [SMALL_STATE(1117)] = 16015, - [SMALL_STATE(1118)] = 16085, - [SMALL_STATE(1119)] = 16155, - [SMALL_STATE(1120)] = 16271, - [SMALL_STATE(1121)] = 16341, - [SMALL_STATE(1122)] = 16411, - [SMALL_STATE(1123)] = 16481, - [SMALL_STATE(1124)] = 16597, - [SMALL_STATE(1125)] = 16667, - [SMALL_STATE(1126)] = 16737, - [SMALL_STATE(1127)] = 16807, - [SMALL_STATE(1128)] = 16925, - [SMALL_STATE(1129)] = 16995, - [SMALL_STATE(1130)] = 17065, - [SMALL_STATE(1131)] = 17135, - [SMALL_STATE(1132)] = 17205, - [SMALL_STATE(1133)] = 17275, - [SMALL_STATE(1134)] = 17345, - [SMALL_STATE(1135)] = 17415, - [SMALL_STATE(1136)] = 17485, - [SMALL_STATE(1137)] = 17555, - [SMALL_STATE(1138)] = 17673, - [SMALL_STATE(1139)] = 17743, - [SMALL_STATE(1140)] = 17813, - [SMALL_STATE(1141)] = 17883, - [SMALL_STATE(1142)] = 17953, - [SMALL_STATE(1143)] = 18023, - [SMALL_STATE(1144)] = 18093, - [SMALL_STATE(1145)] = 18163, - [SMALL_STATE(1146)] = 18233, - [SMALL_STATE(1147)] = 18303, - [SMALL_STATE(1148)] = 18419, - [SMALL_STATE(1149)] = 18535, - [SMALL_STATE(1150)] = 18651, - [SMALL_STATE(1151)] = 18721, - [SMALL_STATE(1152)] = 18791, - [SMALL_STATE(1153)] = 18861, - [SMALL_STATE(1154)] = 18977, - [SMALL_STATE(1155)] = 19083, - [SMALL_STATE(1156)] = 19199, - [SMALL_STATE(1157)] = 19269, - [SMALL_STATE(1158)] = 19385, - [SMALL_STATE(1159)] = 19501, - [SMALL_STATE(1160)] = 19617, - [SMALL_STATE(1161)] = 19687, - [SMALL_STATE(1162)] = 19757, - [SMALL_STATE(1163)] = 19827, - [SMALL_STATE(1164)] = 19897, - [SMALL_STATE(1165)] = 19967, - [SMALL_STATE(1166)] = 20037, - [SMALL_STATE(1167)] = 20107, - [SMALL_STATE(1168)] = 20177, - [SMALL_STATE(1169)] = 20247, - [SMALL_STATE(1170)] = 20317, - [SMALL_STATE(1171)] = 20433, - [SMALL_STATE(1172)] = 20541, - [SMALL_STATE(1173)] = 20647, - [SMALL_STATE(1174)] = 20765, - [SMALL_STATE(1175)] = 20835, - [SMALL_STATE(1176)] = 20905, - [SMALL_STATE(1177)] = 20975, - [SMALL_STATE(1178)] = 21045, - [SMALL_STATE(1179)] = 21115, - [SMALL_STATE(1180)] = 21185, - [SMALL_STATE(1181)] = 21255, - [SMALL_STATE(1182)] = 21325, - [SMALL_STATE(1183)] = 21395, - [SMALL_STATE(1184)] = 21465, - [SMALL_STATE(1185)] = 21535, - [SMALL_STATE(1186)] = 21605, - [SMALL_STATE(1187)] = 21675, - [SMALL_STATE(1188)] = 21745, - [SMALL_STATE(1189)] = 21815, - [SMALL_STATE(1190)] = 21885, - [SMALL_STATE(1191)] = 21955, - [SMALL_STATE(1192)] = 22025, - [SMALL_STATE(1193)] = 22141, - [SMALL_STATE(1194)] = 22211, - [SMALL_STATE(1195)] = 22281, - [SMALL_STATE(1196)] = 22351, - [SMALL_STATE(1197)] = 22421, - [SMALL_STATE(1198)] = 22491, - [SMALL_STATE(1199)] = 22561, - [SMALL_STATE(1200)] = 22631, - [SMALL_STATE(1201)] = 22747, - [SMALL_STATE(1202)] = 22817, - [SMALL_STATE(1203)] = 22887, - [SMALL_STATE(1204)] = 23003, - [SMALL_STATE(1205)] = 23073, - [SMALL_STATE(1206)] = 23143, - [SMALL_STATE(1207)] = 23213, - [SMALL_STATE(1208)] = 23329, - [SMALL_STATE(1209)] = 23399, - [SMALL_STATE(1210)] = 23469, - [SMALL_STATE(1211)] = 23539, - [SMALL_STATE(1212)] = 23609, - [SMALL_STATE(1213)] = 23679, - [SMALL_STATE(1214)] = 23749, - [SMALL_STATE(1215)] = 23819, - [SMALL_STATE(1216)] = 23889, - [SMALL_STATE(1217)] = 23959, - [SMALL_STATE(1218)] = 24077, - [SMALL_STATE(1219)] = 24147, - [SMALL_STATE(1220)] = 24217, - [SMALL_STATE(1221)] = 24335, - [SMALL_STATE(1222)] = 24405, - [SMALL_STATE(1223)] = 24523, - [SMALL_STATE(1224)] = 24641, - [SMALL_STATE(1225)] = 24759, - [SMALL_STATE(1226)] = 24877, - [SMALL_STATE(1227)] = 24995, - [SMALL_STATE(1228)] = 25113, - [SMALL_STATE(1229)] = 25231, - [SMALL_STATE(1230)] = 25349, - [SMALL_STATE(1231)] = 25467, - [SMALL_STATE(1232)] = 25537, - [SMALL_STATE(1233)] = 25607, - [SMALL_STATE(1234)] = 25725, - [SMALL_STATE(1235)] = 25795, - [SMALL_STATE(1236)] = 25913, - [SMALL_STATE(1237)] = 25983, - [SMALL_STATE(1238)] = 26053, - [SMALL_STATE(1239)] = 26123, - [SMALL_STATE(1240)] = 26193, - [SMALL_STATE(1241)] = 26263, - [SMALL_STATE(1242)] = 26333, - [SMALL_STATE(1243)] = 26403, - [SMALL_STATE(1244)] = 26473, - [SMALL_STATE(1245)] = 26543, - [SMALL_STATE(1246)] = 26659, - [SMALL_STATE(1247)] = 26775, - [SMALL_STATE(1248)] = 26845, - [SMALL_STATE(1249)] = 26915, - [SMALL_STATE(1250)] = 26985, - [SMALL_STATE(1251)] = 27055, - [SMALL_STATE(1252)] = 27125, - [SMALL_STATE(1253)] = 27195, - [SMALL_STATE(1254)] = 27265, - [SMALL_STATE(1255)] = 27334, - [SMALL_STATE(1256)] = 27403, - [SMALL_STATE(1257)] = 27518, - [SMALL_STATE(1258)] = 27633, - [SMALL_STATE(1259)] = 27702, - [SMALL_STATE(1260)] = 27771, - [SMALL_STATE(1261)] = 27840, - [SMALL_STATE(1262)] = 27909, - [SMALL_STATE(1263)] = 27978, - [SMALL_STATE(1264)] = 28047, - [SMALL_STATE(1265)] = 28162, - [SMALL_STATE(1266)] = 28231, - [SMALL_STATE(1267)] = 28300, - [SMALL_STATE(1268)] = 28415, - [SMALL_STATE(1269)] = 28484, - [SMALL_STATE(1270)] = 28553, - [SMALL_STATE(1271)] = 28622, - [SMALL_STATE(1272)] = 28691, - [SMALL_STATE(1273)] = 28760, - [SMALL_STATE(1274)] = 28829, - [SMALL_STATE(1275)] = 28898, - [SMALL_STATE(1276)] = 28967, - [SMALL_STATE(1277)] = 29036, - [SMALL_STATE(1278)] = 29105, - [SMALL_STATE(1279)] = 29174, - [SMALL_STATE(1280)] = 29243, - [SMALL_STATE(1281)] = 29312, - [SMALL_STATE(1282)] = 29381, - [SMALL_STATE(1283)] = 29450, - [SMALL_STATE(1284)] = 29519, - [SMALL_STATE(1285)] = 29588, - [SMALL_STATE(1286)] = 29657, - [SMALL_STATE(1287)] = 29726, - [SMALL_STATE(1288)] = 29795, - [SMALL_STATE(1289)] = 29864, - [SMALL_STATE(1290)] = 29933, - [SMALL_STATE(1291)] = 30002, - [SMALL_STATE(1292)] = 30071, - [SMALL_STATE(1293)] = 30140, - [SMALL_STATE(1294)] = 30209, - [SMALL_STATE(1295)] = 30278, - [SMALL_STATE(1296)] = 30347, - [SMALL_STATE(1297)] = 30416, - [SMALL_STATE(1298)] = 30485, - [SMALL_STATE(1299)] = 30554, - [SMALL_STATE(1300)] = 30623, - [SMALL_STATE(1301)] = 30692, - [SMALL_STATE(1302)] = 30761, - [SMALL_STATE(1303)] = 30830, - [SMALL_STATE(1304)] = 30899, - [SMALL_STATE(1305)] = 30968, - [SMALL_STATE(1306)] = 31037, - [SMALL_STATE(1307)] = 31106, - [SMALL_STATE(1308)] = 31175, - [SMALL_STATE(1309)] = 31244, - [SMALL_STATE(1310)] = 31313, - [SMALL_STATE(1311)] = 31382, - [SMALL_STATE(1312)] = 31451, - [SMALL_STATE(1313)] = 31566, - [SMALL_STATE(1314)] = 31635, - [SMALL_STATE(1315)] = 31704, - [SMALL_STATE(1316)] = 31773, - [SMALL_STATE(1317)] = 31842, - [SMALL_STATE(1318)] = 31911, - [SMALL_STATE(1319)] = 32026, - [SMALL_STATE(1320)] = 32095, - [SMALL_STATE(1321)] = 32164, - [SMALL_STATE(1322)] = 32233, - [SMALL_STATE(1323)] = 32302, - [SMALL_STATE(1324)] = 32371, - [SMALL_STATE(1325)] = 32440, - [SMALL_STATE(1326)] = 32509, - [SMALL_STATE(1327)] = 32578, - [SMALL_STATE(1328)] = 32693, - [SMALL_STATE(1329)] = 32762, - [SMALL_STATE(1330)] = 32831, - [SMALL_STATE(1331)] = 32900, - [SMALL_STATE(1332)] = 33017, - [SMALL_STATE(1333)] = 33086, - [SMALL_STATE(1334)] = 33155, - [SMALL_STATE(1335)] = 33224, - [SMALL_STATE(1336)] = 33293, - [SMALL_STATE(1337)] = 33362, - [SMALL_STATE(1338)] = 33431, - [SMALL_STATE(1339)] = 33500, - [SMALL_STATE(1340)] = 33569, - [SMALL_STATE(1341)] = 33638, - [SMALL_STATE(1342)] = 33707, - [SMALL_STATE(1343)] = 33776, - [SMALL_STATE(1344)] = 33845, - [SMALL_STATE(1345)] = 33914, - [SMALL_STATE(1346)] = 33983, - [SMALL_STATE(1347)] = 34052, - [SMALL_STATE(1348)] = 34121, - [SMALL_STATE(1349)] = 34190, - [SMALL_STATE(1350)] = 34259, - [SMALL_STATE(1351)] = 34328, - [SMALL_STATE(1352)] = 34397, - [SMALL_STATE(1353)] = 34466, - [SMALL_STATE(1354)] = 34581, - [SMALL_STATE(1355)] = 34650, - [SMALL_STATE(1356)] = 34719, - [SMALL_STATE(1357)] = 34834, - [SMALL_STATE(1358)] = 34903, - [SMALL_STATE(1359)] = 35018, - [SMALL_STATE(1360)] = 35133, - [SMALL_STATE(1361)] = 35248, - [SMALL_STATE(1362)] = 35317, - [SMALL_STATE(1363)] = 35386, - [SMALL_STATE(1364)] = 35455, - [SMALL_STATE(1365)] = 35524, - [SMALL_STATE(1366)] = 35593, - [SMALL_STATE(1367)] = 35662, - [SMALL_STATE(1368)] = 35731, - [SMALL_STATE(1369)] = 35800, - [SMALL_STATE(1370)] = 35869, - [SMALL_STATE(1371)] = 35938, - [SMALL_STATE(1372)] = 36007, - [SMALL_STATE(1373)] = 36076, - [SMALL_STATE(1374)] = 36145, - [SMALL_STATE(1375)] = 36214, - [SMALL_STATE(1376)] = 36283, - [SMALL_STATE(1377)] = 36352, - [SMALL_STATE(1378)] = 36467, - [SMALL_STATE(1379)] = 36536, - [SMALL_STATE(1380)] = 36605, - [SMALL_STATE(1381)] = 36674, - [SMALL_STATE(1382)] = 36789, - [SMALL_STATE(1383)] = 36858, - [SMALL_STATE(1384)] = 36927, - [SMALL_STATE(1385)] = 36996, - [SMALL_STATE(1386)] = 37103, - [SMALL_STATE(1387)] = 37218, - [SMALL_STATE(1388)] = 37287, - [SMALL_STATE(1389)] = 37356, - [SMALL_STATE(1390)] = 37425, - [SMALL_STATE(1391)] = 37494, - [SMALL_STATE(1392)] = 37563, - [SMALL_STATE(1393)] = 37632, - [SMALL_STATE(1394)] = 37701, - [SMALL_STATE(1395)] = 37808, - [SMALL_STATE(1396)] = 37877, - [SMALL_STATE(1397)] = 37946, - [SMALL_STATE(1398)] = 38015, - [SMALL_STATE(1399)] = 38084, - [SMALL_STATE(1400)] = 38153, - [SMALL_STATE(1401)] = 38265, - [SMALL_STATE(1402)] = 38377, - [SMALL_STATE(1403)] = 38489, - [SMALL_STATE(1404)] = 38601, - [SMALL_STATE(1405)] = 38713, - [SMALL_STATE(1406)] = 38825, - [SMALL_STATE(1407)] = 38937, - [SMALL_STATE(1408)] = 39049, - [SMALL_STATE(1409)] = 39161, - [SMALL_STATE(1410)] = 39273, - [SMALL_STATE(1411)] = 39385, - [SMALL_STATE(1412)] = 39497, - [SMALL_STATE(1413)] = 39609, - [SMALL_STATE(1414)] = 39721, - [SMALL_STATE(1415)] = 39833, - [SMALL_STATE(1416)] = 39945, - [SMALL_STATE(1417)] = 40057, - [SMALL_STATE(1418)] = 40169, - [SMALL_STATE(1419)] = 40281, - [SMALL_STATE(1420)] = 40393, - [SMALL_STATE(1421)] = 40505, - [SMALL_STATE(1422)] = 40617, - [SMALL_STATE(1423)] = 40729, - [SMALL_STATE(1424)] = 40841, - [SMALL_STATE(1425)] = 40953, - [SMALL_STATE(1426)] = 41065, - [SMALL_STATE(1427)] = 41177, - [SMALL_STATE(1428)] = 41289, - [SMALL_STATE(1429)] = 41401, - [SMALL_STATE(1430)] = 41513, - [SMALL_STATE(1431)] = 41625, - [SMALL_STATE(1432)] = 41737, - [SMALL_STATE(1433)] = 41849, - [SMALL_STATE(1434)] = 41961, - [SMALL_STATE(1435)] = 42073, - [SMALL_STATE(1436)] = 42185, - [SMALL_STATE(1437)] = 42297, - [SMALL_STATE(1438)] = 42409, - [SMALL_STATE(1439)] = 42521, - [SMALL_STATE(1440)] = 42633, - [SMALL_STATE(1441)] = 42745, - [SMALL_STATE(1442)] = 42857, - [SMALL_STATE(1443)] = 42969, - [SMALL_STATE(1444)] = 43081, - [SMALL_STATE(1445)] = 43193, - [SMALL_STATE(1446)] = 43305, - [SMALL_STATE(1447)] = 43417, - [SMALL_STATE(1448)] = 43529, - [SMALL_STATE(1449)] = 43641, - [SMALL_STATE(1450)] = 43755, - [SMALL_STATE(1451)] = 43867, - [SMALL_STATE(1452)] = 43979, - [SMALL_STATE(1453)] = 44091, - [SMALL_STATE(1454)] = 44203, - [SMALL_STATE(1455)] = 44315, - [SMALL_STATE(1456)] = 44427, - [SMALL_STATE(1457)] = 44539, - [SMALL_STATE(1458)] = 44651, - [SMALL_STATE(1459)] = 44763, - [SMALL_STATE(1460)] = 44875, - [SMALL_STATE(1461)] = 44987, - [SMALL_STATE(1462)] = 45099, - [SMALL_STATE(1463)] = 45211, - [SMALL_STATE(1464)] = 45323, - [SMALL_STATE(1465)] = 45435, - [SMALL_STATE(1466)] = 45547, - [SMALL_STATE(1467)] = 45659, - [SMALL_STATE(1468)] = 45771, - [SMALL_STATE(1469)] = 45883, - [SMALL_STATE(1470)] = 45995, - [SMALL_STATE(1471)] = 46107, - [SMALL_STATE(1472)] = 46219, - [SMALL_STATE(1473)] = 46331, - [SMALL_STATE(1474)] = 46443, - [SMALL_STATE(1475)] = 46557, - [SMALL_STATE(1476)] = 46669, - [SMALL_STATE(1477)] = 46781, - [SMALL_STATE(1478)] = 46893, - [SMALL_STATE(1479)] = 47005, - [SMALL_STATE(1480)] = 47117, - [SMALL_STATE(1481)] = 47229, - [SMALL_STATE(1482)] = 47341, - [SMALL_STATE(1483)] = 47453, - [SMALL_STATE(1484)] = 47565, - [SMALL_STATE(1485)] = 47677, - [SMALL_STATE(1486)] = 47789, - [SMALL_STATE(1487)] = 47901, - [SMALL_STATE(1488)] = 48013, - [SMALL_STATE(1489)] = 48125, - [SMALL_STATE(1490)] = 48237, - [SMALL_STATE(1491)] = 48349, - [SMALL_STATE(1492)] = 48461, - [SMALL_STATE(1493)] = 48573, - [SMALL_STATE(1494)] = 48679, - [SMALL_STATE(1495)] = 48791, - [SMALL_STATE(1496)] = 48903, - [SMALL_STATE(1497)] = 49015, - [SMALL_STATE(1498)] = 49127, - [SMALL_STATE(1499)] = 49239, - [SMALL_STATE(1500)] = 49351, - [SMALL_STATE(1501)] = 49463, - [SMALL_STATE(1502)] = 49575, - [SMALL_STATE(1503)] = 49687, - [SMALL_STATE(1504)] = 49799, - [SMALL_STATE(1505)] = 49911, - [SMALL_STATE(1506)] = 50023, - [SMALL_STATE(1507)] = 50135, - [SMALL_STATE(1508)] = 50247, - [SMALL_STATE(1509)] = 50359, - [SMALL_STATE(1510)] = 50471, - [SMALL_STATE(1511)] = 50583, - [SMALL_STATE(1512)] = 50695, - [SMALL_STATE(1513)] = 50807, - [SMALL_STATE(1514)] = 50919, - [SMALL_STATE(1515)] = 51031, - [SMALL_STATE(1516)] = 51143, - [SMALL_STATE(1517)] = 51255, - [SMALL_STATE(1518)] = 51367, - [SMALL_STATE(1519)] = 51479, - [SMALL_STATE(1520)] = 51591, - [SMALL_STATE(1521)] = 51703, - [SMALL_STATE(1522)] = 51815, - [SMALL_STATE(1523)] = 51927, - [SMALL_STATE(1524)] = 52039, - [SMALL_STATE(1525)] = 52151, - [SMALL_STATE(1526)] = 52263, - [SMALL_STATE(1527)] = 52375, - [SMALL_STATE(1528)] = 52487, - [SMALL_STATE(1529)] = 52599, - [SMALL_STATE(1530)] = 52711, - [SMALL_STATE(1531)] = 52823, - [SMALL_STATE(1532)] = 52935, - [SMALL_STATE(1533)] = 53047, - [SMALL_STATE(1534)] = 53159, - [SMALL_STATE(1535)] = 53271, - [SMALL_STATE(1536)] = 53383, - [SMALL_STATE(1537)] = 53495, - [SMALL_STATE(1538)] = 53607, - [SMALL_STATE(1539)] = 53719, - [SMALL_STATE(1540)] = 53831, - [SMALL_STATE(1541)] = 53943, - [SMALL_STATE(1542)] = 54055, - [SMALL_STATE(1543)] = 54167, - [SMALL_STATE(1544)] = 54279, - [SMALL_STATE(1545)] = 54391, - [SMALL_STATE(1546)] = 54503, - [SMALL_STATE(1547)] = 54615, - [SMALL_STATE(1548)] = 54727, - [SMALL_STATE(1549)] = 54839, - [SMALL_STATE(1550)] = 54951, - [SMALL_STATE(1551)] = 55063, - [SMALL_STATE(1552)] = 55175, - [SMALL_STATE(1553)] = 55287, - [SMALL_STATE(1554)] = 55399, - [SMALL_STATE(1555)] = 55511, - [SMALL_STATE(1556)] = 55625, - [SMALL_STATE(1557)] = 55737, - [SMALL_STATE(1558)] = 55849, - [SMALL_STATE(1559)] = 55961, - [SMALL_STATE(1560)] = 56073, - [SMALL_STATE(1561)] = 56185, - [SMALL_STATE(1562)] = 56297, - [SMALL_STATE(1563)] = 56409, - [SMALL_STATE(1564)] = 56521, - [SMALL_STATE(1565)] = 56633, - [SMALL_STATE(1566)] = 56745, - [SMALL_STATE(1567)] = 56851, - [SMALL_STATE(1568)] = 56963, - [SMALL_STATE(1569)] = 57075, - [SMALL_STATE(1570)] = 57187, - [SMALL_STATE(1571)] = 57299, - [SMALL_STATE(1572)] = 57411, - [SMALL_STATE(1573)] = 57523, - [SMALL_STATE(1574)] = 57635, - [SMALL_STATE(1575)] = 57747, - [SMALL_STATE(1576)] = 57859, - [SMALL_STATE(1577)] = 57971, - [SMALL_STATE(1578)] = 58083, - [SMALL_STATE(1579)] = 58195, - [SMALL_STATE(1580)] = 58307, - [SMALL_STATE(1581)] = 58419, - [SMALL_STATE(1582)] = 58531, - [SMALL_STATE(1583)] = 58643, - [SMALL_STATE(1584)] = 58755, - [SMALL_STATE(1585)] = 58867, - [SMALL_STATE(1586)] = 58981, - [SMALL_STATE(1587)] = 59093, - [SMALL_STATE(1588)] = 59205, - [SMALL_STATE(1589)] = 59317, - [SMALL_STATE(1590)] = 59429, - [SMALL_STATE(1591)] = 59541, - [SMALL_STATE(1592)] = 59655, - [SMALL_STATE(1593)] = 59767, - [SMALL_STATE(1594)] = 59879, - [SMALL_STATE(1595)] = 59991, - [SMALL_STATE(1596)] = 60103, - [SMALL_STATE(1597)] = 60215, - [SMALL_STATE(1598)] = 60327, - [SMALL_STATE(1599)] = 60439, - [SMALL_STATE(1600)] = 60551, - [SMALL_STATE(1601)] = 60665, - [SMALL_STATE(1602)] = 60777, - [SMALL_STATE(1603)] = 60889, - [SMALL_STATE(1604)] = 61001, - [SMALL_STATE(1605)] = 61113, - [SMALL_STATE(1606)] = 61225, - [SMALL_STATE(1607)] = 61337, - [SMALL_STATE(1608)] = 61449, - [SMALL_STATE(1609)] = 61561, - [SMALL_STATE(1610)] = 61673, - [SMALL_STATE(1611)] = 61785, - [SMALL_STATE(1612)] = 61897, - [SMALL_STATE(1613)] = 62009, - [SMALL_STATE(1614)] = 62121, - [SMALL_STATE(1615)] = 62233, - [SMALL_STATE(1616)] = 62345, - [SMALL_STATE(1617)] = 62457, - [SMALL_STATE(1618)] = 62569, - [SMALL_STATE(1619)] = 62681, - [SMALL_STATE(1620)] = 62793, - [SMALL_STATE(1621)] = 62905, - [SMALL_STATE(1622)] = 63017, - [SMALL_STATE(1623)] = 63129, - [SMALL_STATE(1624)] = 63241, - [SMALL_STATE(1625)] = 63353, - [SMALL_STATE(1626)] = 63465, - [SMALL_STATE(1627)] = 63577, - [SMALL_STATE(1628)] = 63689, - [SMALL_STATE(1629)] = 63801, - [SMALL_STATE(1630)] = 63913, - [SMALL_STATE(1631)] = 64025, - [SMALL_STATE(1632)] = 64137, - [SMALL_STATE(1633)] = 64249, - [SMALL_STATE(1634)] = 64361, - [SMALL_STATE(1635)] = 64473, - [SMALL_STATE(1636)] = 64585, - [SMALL_STATE(1637)] = 64697, - [SMALL_STATE(1638)] = 64809, - [SMALL_STATE(1639)] = 64921, - [SMALL_STATE(1640)] = 65033, - [SMALL_STATE(1641)] = 65145, - [SMALL_STATE(1642)] = 65257, - [SMALL_STATE(1643)] = 65369, - [SMALL_STATE(1644)] = 65481, - [SMALL_STATE(1645)] = 65593, - [SMALL_STATE(1646)] = 65705, - [SMALL_STATE(1647)] = 65817, - [SMALL_STATE(1648)] = 65929, - [SMALL_STATE(1649)] = 66041, - [SMALL_STATE(1650)] = 66153, - [SMALL_STATE(1651)] = 66265, - [SMALL_STATE(1652)] = 66377, - [SMALL_STATE(1653)] = 66489, - [SMALL_STATE(1654)] = 66601, - [SMALL_STATE(1655)] = 66713, - [SMALL_STATE(1656)] = 66825, - [SMALL_STATE(1657)] = 66937, - [SMALL_STATE(1658)] = 67049, - [SMALL_STATE(1659)] = 67161, - [SMALL_STATE(1660)] = 67273, - [SMALL_STATE(1661)] = 67385, - [SMALL_STATE(1662)] = 67497, - [SMALL_STATE(1663)] = 67609, - [SMALL_STATE(1664)] = 67721, - [SMALL_STATE(1665)] = 67833, - [SMALL_STATE(1666)] = 67945, - [SMALL_STATE(1667)] = 68057, - [SMALL_STATE(1668)] = 68169, - [SMALL_STATE(1669)] = 68281, - [SMALL_STATE(1670)] = 68393, - [SMALL_STATE(1671)] = 68505, - [SMALL_STATE(1672)] = 68617, - [SMALL_STATE(1673)] = 68729, - [SMALL_STATE(1674)] = 68841, - [SMALL_STATE(1675)] = 68953, - [SMALL_STATE(1676)] = 69065, - [SMALL_STATE(1677)] = 69177, - [SMALL_STATE(1678)] = 69289, - [SMALL_STATE(1679)] = 69401, - [SMALL_STATE(1680)] = 69513, - [SMALL_STATE(1681)] = 69625, - [SMALL_STATE(1682)] = 69737, - [SMALL_STATE(1683)] = 69849, - [SMALL_STATE(1684)] = 69961, - [SMALL_STATE(1685)] = 70073, - [SMALL_STATE(1686)] = 70185, - [SMALL_STATE(1687)] = 70297, - [SMALL_STATE(1688)] = 70409, - [SMALL_STATE(1689)] = 70521, - [SMALL_STATE(1690)] = 70633, - [SMALL_STATE(1691)] = 70745, - [SMALL_STATE(1692)] = 70857, - [SMALL_STATE(1693)] = 70969, - [SMALL_STATE(1694)] = 71081, - [SMALL_STATE(1695)] = 71193, - [SMALL_STATE(1696)] = 71305, - [SMALL_STATE(1697)] = 71417, - [SMALL_STATE(1698)] = 71529, - [SMALL_STATE(1699)] = 71641, - [SMALL_STATE(1700)] = 71753, - [SMALL_STATE(1701)] = 71865, - [SMALL_STATE(1702)] = 71977, - [SMALL_STATE(1703)] = 72089, - [SMALL_STATE(1704)] = 72201, - [SMALL_STATE(1705)] = 72313, - [SMALL_STATE(1706)] = 72425, - [SMALL_STATE(1707)] = 72537, - [SMALL_STATE(1708)] = 72649, - [SMALL_STATE(1709)] = 72761, - [SMALL_STATE(1710)] = 72873, - [SMALL_STATE(1711)] = 72985, - [SMALL_STATE(1712)] = 73097, - [SMALL_STATE(1713)] = 73209, - [SMALL_STATE(1714)] = 73321, - [SMALL_STATE(1715)] = 73433, - [SMALL_STATE(1716)] = 73545, - [SMALL_STATE(1717)] = 73657, - [SMALL_STATE(1718)] = 73769, - [SMALL_STATE(1719)] = 73881, - [SMALL_STATE(1720)] = 73993, - [SMALL_STATE(1721)] = 74105, - [SMALL_STATE(1722)] = 74217, - [SMALL_STATE(1723)] = 74329, - [SMALL_STATE(1724)] = 74432, - [SMALL_STATE(1725)] = 74535, - [SMALL_STATE(1726)] = 74638, - [SMALL_STATE(1727)] = 74741, - [SMALL_STATE(1728)] = 74840, - [SMALL_STATE(1729)] = 74932, - [SMALL_STATE(1730)] = 75006, - [SMALL_STATE(1731)] = 75073, - [SMALL_STATE(1732)] = 75140, - [SMALL_STATE(1733)] = 75242, - [SMALL_STATE(1734)] = 75344, - [SMALL_STATE(1735)] = 75419, - [SMALL_STATE(1736)] = 75496, - [SMALL_STATE(1737)] = 75571, - [SMALL_STATE(1738)] = 75646, - [SMALL_STATE(1739)] = 75746, - [SMALL_STATE(1740)] = 75846, - [SMALL_STATE(1741)] = 75945, - [SMALL_STATE(1742)] = 76044, - [SMALL_STATE(1743)] = 76143, - [SMALL_STATE(1744)] = 76242, - [SMALL_STATE(1745)] = 76341, - [SMALL_STATE(1746)] = 76414, - [SMALL_STATE(1747)] = 76511, - [SMALL_STATE(1748)] = 76606, - [SMALL_STATE(1749)] = 76705, - [SMALL_STATE(1750)] = 76804, - [SMALL_STATE(1751)] = 76903, - [SMALL_STATE(1752)] = 77002, - [SMALL_STATE(1753)] = 77101, - [SMALL_STATE(1754)] = 77197, - [SMALL_STATE(1755)] = 77295, - [SMALL_STATE(1756)] = 77391, - [SMALL_STATE(1757)] = 77487, - [SMALL_STATE(1758)] = 77553, - [SMALL_STATE(1759)] = 77619, - [SMALL_STATE(1760)] = 77715, - [SMALL_STATE(1761)] = 77783, - [SMALL_STATE(1762)] = 77881, - [SMALL_STATE(1763)] = 77977, - [SMALL_STATE(1764)] = 78073, - [SMALL_STATE(1765)] = 78136, - [SMALL_STATE(1766)] = 78199, - [SMALL_STATE(1767)] = 78256, - [SMALL_STATE(1768)] = 78319, - [SMALL_STATE(1769)] = 78380, - [SMALL_STATE(1770)] = 78473, - [SMALL_STATE(1771)] = 78534, - [SMALL_STATE(1772)] = 78591, - [SMALL_STATE(1773)] = 78654, - [SMALL_STATE(1774)] = 78711, - [SMALL_STATE(1775)] = 78768, - [SMALL_STATE(1776)] = 78825, - [SMALL_STATE(1777)] = 78890, - [SMALL_STATE(1778)] = 78983, - [SMALL_STATE(1779)] = 79040, - [SMALL_STATE(1780)] = 79133, - [SMALL_STATE(1781)] = 79196, - [SMALL_STATE(1782)] = 79253, - [SMALL_STATE(1783)] = 79346, - [SMALL_STATE(1784)] = 79409, - [SMALL_STATE(1785)] = 79472, - [SMALL_STATE(1786)] = 79535, - [SMALL_STATE(1787)] = 79639, - [SMALL_STATE(1788)] = 79727, - [SMALL_STATE(1789)] = 79831, - [SMALL_STATE(1790)] = 79919, - [SMALL_STATE(1791)] = 80007, - [SMALL_STATE(1792)] = 80095, - [SMALL_STATE(1793)] = 80199, - [SMALL_STATE(1794)] = 80287, - [SMALL_STATE(1795)] = 80375, - [SMALL_STATE(1796)] = 80463, - [SMALL_STATE(1797)] = 80551, - [SMALL_STATE(1798)] = 80636, - [SMALL_STATE(1799)] = 80737, - [SMALL_STATE(1800)] = 80822, - [SMALL_STATE(1801)] = 80907, - [SMALL_STATE(1802)] = 80992, - [SMALL_STATE(1803)] = 81077, - [SMALL_STATE(1804)] = 81162, - [SMALL_STATE(1805)] = 81247, - [SMALL_STATE(1806)] = 81332, - [SMALL_STATE(1807)] = 81417, - [SMALL_STATE(1808)] = 81502, - [SMALL_STATE(1809)] = 81591, - [SMALL_STATE(1810)] = 81676, - [SMALL_STATE(1811)] = 81765, - [SMALL_STATE(1812)] = 81854, - [SMALL_STATE(1813)] = 81939, - [SMALL_STATE(1814)] = 82024, - [SMALL_STATE(1815)] = 82109, - [SMALL_STATE(1816)] = 82198, - [SMALL_STATE(1817)] = 82283, - [SMALL_STATE(1818)] = 82368, - [SMALL_STATE(1819)] = 82453, - [SMALL_STATE(1820)] = 82542, - [SMALL_STATE(1821)] = 82627, - [SMALL_STATE(1822)] = 82716, - [SMALL_STATE(1823)] = 82801, - [SMALL_STATE(1824)] = 82886, - [SMALL_STATE(1825)] = 82971, - [SMALL_STATE(1826)] = 83056, - [SMALL_STATE(1827)] = 83141, - [SMALL_STATE(1828)] = 83226, - [SMALL_STATE(1829)] = 83311, - [SMALL_STATE(1830)] = 83396, - [SMALL_STATE(1831)] = 83481, - [SMALL_STATE(1832)] = 83566, - [SMALL_STATE(1833)] = 83655, - [SMALL_STATE(1834)] = 83744, - [SMALL_STATE(1835)] = 83829, - [SMALL_STATE(1836)] = 83914, - [SMALL_STATE(1837)] = 83999, - [SMALL_STATE(1838)] = 84084, - [SMALL_STATE(1839)] = 84173, - [SMALL_STATE(1840)] = 84262, - [SMALL_STATE(1841)] = 84351, - [SMALL_STATE(1842)] = 84436, - [SMALL_STATE(1843)] = 84525, - [SMALL_STATE(1844)] = 84610, - [SMALL_STATE(1845)] = 84699, - [SMALL_STATE(1846)] = 84784, - [SMALL_STATE(1847)] = 84873, - [SMALL_STATE(1848)] = 84962, - [SMALL_STATE(1849)] = 85047, - [SMALL_STATE(1850)] = 85136, - [SMALL_STATE(1851)] = 85225, - [SMALL_STATE(1852)] = 85326, - [SMALL_STATE(1853)] = 85427, - [SMALL_STATE(1854)] = 85512, - [SMALL_STATE(1855)] = 85601, - [SMALL_STATE(1856)] = 85686, - [SMALL_STATE(1857)] = 85789, - [SMALL_STATE(1858)] = 85874, - [SMALL_STATE(1859)] = 85963, - [SMALL_STATE(1860)] = 86052, - [SMALL_STATE(1861)] = 86137, - [SMALL_STATE(1862)] = 86226, - [SMALL_STATE(1863)] = 86311, - [SMALL_STATE(1864)] = 86414, - [SMALL_STATE(1865)] = 86499, - [SMALL_STATE(1866)] = 86584, - [SMALL_STATE(1867)] = 86669, - [SMALL_STATE(1868)] = 86758, - [SMALL_STATE(1869)] = 86843, - [SMALL_STATE(1870)] = 86928, - [SMALL_STATE(1871)] = 87013, - [SMALL_STATE(1872)] = 87098, - [SMALL_STATE(1873)] = 87183, - [SMALL_STATE(1874)] = 87268, - [SMALL_STATE(1875)] = 87353, - [SMALL_STATE(1876)] = 87438, - [SMALL_STATE(1877)] = 87523, - [SMALL_STATE(1878)] = 87608, - [SMALL_STATE(1879)] = 87693, - [SMALL_STATE(1880)] = 87778, - [SMALL_STATE(1881)] = 87863, - [SMALL_STATE(1882)] = 87948, - [SMALL_STATE(1883)] = 88033, - [SMALL_STATE(1884)] = 88118, - [SMALL_STATE(1885)] = 88203, - [SMALL_STATE(1886)] = 88288, - [SMALL_STATE(1887)] = 88373, - [SMALL_STATE(1888)] = 88458, - [SMALL_STATE(1889)] = 88543, - [SMALL_STATE(1890)] = 88644, - [SMALL_STATE(1891)] = 88729, - [SMALL_STATE(1892)] = 88814, - [SMALL_STATE(1893)] = 88899, - [SMALL_STATE(1894)] = 88988, - [SMALL_STATE(1895)] = 89073, - [SMALL_STATE(1896)] = 89158, - [SMALL_STATE(1897)] = 89243, - [SMALL_STATE(1898)] = 89328, - [SMALL_STATE(1899)] = 89413, - [SMALL_STATE(1900)] = 89498, - [SMALL_STATE(1901)] = 89583, - [SMALL_STATE(1902)] = 89668, - [SMALL_STATE(1903)] = 89753, - [SMALL_STATE(1904)] = 89838, - [SMALL_STATE(1905)] = 89923, - [SMALL_STATE(1906)] = 90008, - [SMALL_STATE(1907)] = 90107, - [SMALL_STATE(1908)] = 90206, - [SMALL_STATE(1909)] = 90305, - [SMALL_STATE(1910)] = 90404, - [SMALL_STATE(1911)] = 90503, - [SMALL_STATE(1912)] = 90602, - [SMALL_STATE(1913)] = 90701, - [SMALL_STATE(1914)] = 90800, - [SMALL_STATE(1915)] = 90899, - [SMALL_STATE(1916)] = 90998, - [SMALL_STATE(1917)] = 91097, - [SMALL_STATE(1918)] = 91193, - [SMALL_STATE(1919)] = 91281, - [SMALL_STATE(1920)] = 91377, - [SMALL_STATE(1921)] = 91473, - [SMALL_STATE(1922)] = 91569, - [SMALL_STATE(1923)] = 91665, - [SMALL_STATE(1924)] = 91761, - [SMALL_STATE(1925)] = 91857, - [SMALL_STATE(1926)] = 91953, - [SMALL_STATE(1927)] = 92041, - [SMALL_STATE(1928)] = 92137, - [SMALL_STATE(1929)] = 92233, - [SMALL_STATE(1930)] = 92287, - [SMALL_STATE(1931)] = 92349, - [SMALL_STATE(1932)] = 92403, - [SMALL_STATE(1933)] = 92473, - [SMALL_STATE(1934)] = 92527, - [SMALL_STATE(1935)] = 92599, - [SMALL_STATE(1936)] = 92653, - [SMALL_STATE(1937)] = 92724, - [SMALL_STATE(1938)] = 92783, - [SMALL_STATE(1939)] = 92868, - [SMALL_STATE(1940)] = 92939, - [SMALL_STATE(1941)] = 93002, - [SMALL_STATE(1942)] = 93061, - [SMALL_STATE(1943)] = 93126, - [SMALL_STATE(1944)] = 93195, - [SMALL_STATE(1945)] = 93280, - [SMALL_STATE(1946)] = 93351, - [SMALL_STATE(1947)] = 93410, - [SMALL_STATE(1948)] = 93495, - [SMALL_STATE(1949)] = 93568, - [SMALL_STATE(1950)] = 93627, - [SMALL_STATE(1951)] = 93712, - [SMALL_STATE(1952)] = 93767, - [SMALL_STATE(1953)] = 93834, - [SMALL_STATE(1954)] = 93918, - [SMALL_STATE(1955)] = 93968, - [SMALL_STATE(1956)] = 94052, - [SMALL_STATE(1957)] = 94102, - [SMALL_STATE(1958)] = 94150, - [SMALL_STATE(1959)] = 94234, - [SMALL_STATE(1960)] = 94318, - [SMALL_STATE(1961)] = 94400, - [SMALL_STATE(1962)] = 94484, - [SMALL_STATE(1963)] = 94568, - [SMALL_STATE(1964)] = 94616, - [SMALL_STATE(1965)] = 94663, - [SMALL_STATE(1966)] = 94714, - [SMALL_STATE(1967)] = 94761, - [SMALL_STATE(1968)] = 94842, - [SMALL_STATE(1969)] = 94893, - [SMALL_STATE(1970)] = 94942, - [SMALL_STATE(1971)] = 94989, - [SMALL_STATE(1972)] = 95036, - [SMALL_STATE(1973)] = 95083, - [SMALL_STATE(1974)] = 95138, - [SMALL_STATE(1975)] = 95185, - [SMALL_STATE(1976)] = 95232, - [SMALL_STATE(1977)] = 95279, - [SMALL_STATE(1978)] = 95326, - [SMALL_STATE(1979)] = 95373, - [SMALL_STATE(1980)] = 95424, - [SMALL_STATE(1981)] = 95471, - [SMALL_STATE(1982)] = 95518, - [SMALL_STATE(1983)] = 95565, - [SMALL_STATE(1984)] = 95612, - [SMALL_STATE(1985)] = 95663, - [SMALL_STATE(1986)] = 95710, - [SMALL_STATE(1987)] = 95757, - [SMALL_STATE(1988)] = 95816, - [SMALL_STATE(1989)] = 95863, - [SMALL_STATE(1990)] = 95944, - [SMALL_STATE(1991)] = 95995, - [SMALL_STATE(1992)] = 96042, - [SMALL_STATE(1993)] = 96089, - [SMALL_STATE(1994)] = 96136, - [SMALL_STATE(1995)] = 96183, - [SMALL_STATE(1996)] = 96230, - [SMALL_STATE(1997)] = 96281, - [SMALL_STATE(1998)] = 96328, - [SMALL_STATE(1999)] = 96379, - [SMALL_STATE(2000)] = 96426, - [SMALL_STATE(2001)] = 96473, - [SMALL_STATE(2002)] = 96520, - [SMALL_STATE(2003)] = 96567, - [SMALL_STATE(2004)] = 96614, - [SMALL_STATE(2005)] = 96661, - [SMALL_STATE(2006)] = 96708, - [SMALL_STATE(2007)] = 96755, - [SMALL_STATE(2008)] = 96806, - [SMALL_STATE(2009)] = 96861, - [SMALL_STATE(2010)] = 96908, - [SMALL_STATE(2011)] = 96955, - [SMALL_STATE(2012)] = 97006, - [SMALL_STATE(2013)] = 97053, - [SMALL_STATE(2014)] = 97108, - [SMALL_STATE(2015)] = 97159, - [SMALL_STATE(2016)] = 97206, - [SMALL_STATE(2017)] = 97265, - [SMALL_STATE(2018)] = 97318, - [SMALL_STATE(2019)] = 97365, - [SMALL_STATE(2020)] = 97412, - [SMALL_STATE(2021)] = 97463, - [SMALL_STATE(2022)] = 97510, - [SMALL_STATE(2023)] = 97557, - [SMALL_STATE(2024)] = 97642, - [SMALL_STATE(2025)] = 97689, - [SMALL_STATE(2026)] = 97749, - [SMALL_STATE(2027)] = 97805, - [SMALL_STATE(2028)] = 97855, - [SMALL_STATE(2029)] = 97905, - [SMALL_STATE(2030)] = 97985, - [SMALL_STATE(2031)] = 98051, - [SMALL_STATE(2032)] = 98101, - [SMALL_STATE(2033)] = 98157, - [SMALL_STATE(2034)] = 98219, - [SMALL_STATE(2035)] = 98269, - [SMALL_STATE(2036)] = 98319, - [SMALL_STATE(2037)] = 98375, - [SMALL_STATE(2038)] = 98425, - [SMALL_STATE(2039)] = 98481, - [SMALL_STATE(2040)] = 98537, - [SMALL_STATE(2041)] = 98601, - [SMALL_STATE(2042)] = 98657, - [SMALL_STATE(2043)] = 98707, - [SMALL_STATE(2044)] = 98787, - [SMALL_STATE(2045)] = 98855, - [SMALL_STATE(2046)] = 98921, - [SMALL_STATE(2047)] = 99001, - [SMALL_STATE(2048)] = 99059, - [SMALL_STATE(2049)] = 99111, - [SMALL_STATE(2050)] = 99171, - [SMALL_STATE(2051)] = 99239, - [SMALL_STATE(2052)] = 99301, - [SMALL_STATE(2053)] = 99371, - [SMALL_STATE(2054)] = 99421, - [SMALL_STATE(2055)] = 99501, - [SMALL_STATE(2056)] = 99559, - [SMALL_STATE(2057)] = 99617, - [SMALL_STATE(2058)] = 99673, - [SMALL_STATE(2059)] = 99723, - [SMALL_STATE(2060)] = 99775, - [SMALL_STATE(2061)] = 99825, - [SMALL_STATE(2062)] = 99875, - [SMALL_STATE(2063)] = 99945, - [SMALL_STATE(2064)] = 100001, - [SMALL_STATE(2065)] = 100051, - [SMALL_STATE(2066)] = 100131, - [SMALL_STATE(2067)] = 100195, - [SMALL_STATE(2068)] = 100250, - [SMALL_STATE(2069)] = 100329, - [SMALL_STATE(2070)] = 100376, - [SMALL_STATE(2071)] = 100423, - [SMALL_STATE(2072)] = 100474, - [SMALL_STATE(2073)] = 100525, - [SMALL_STATE(2074)] = 100576, - [SMALL_STATE(2075)] = 100627, - [SMALL_STATE(2076)] = 100696, - [SMALL_STATE(2077)] = 100747, - [SMALL_STATE(2078)] = 100802, - [SMALL_STATE(2079)] = 100863, - [SMALL_STATE(2080)] = 100932, - [SMALL_STATE(2081)] = 100987, - [SMALL_STATE(2082)] = 101046, - [SMALL_STATE(2083)] = 101113, - [SMALL_STATE(2084)] = 101178, - [SMALL_STATE(2085)] = 101241, - [SMALL_STATE(2086)] = 101298, - [SMALL_STATE(2087)] = 101347, - [SMALL_STATE(2088)] = 101392, - [SMALL_STATE(2089)] = 101471, - [SMALL_STATE(2090)] = 101520, - [SMALL_STATE(2091)] = 101569, - [SMALL_STATE(2092)] = 101624, - [SMALL_STATE(2093)] = 101673, - [SMALL_STATE(2094)] = 101718, - [SMALL_STATE(2095)] = 101773, - [SMALL_STATE(2096)] = 101828, - [SMALL_STATE(2097)] = 101883, - [SMALL_STATE(2098)] = 101944, - [SMALL_STATE(2099)] = 101999, - [SMALL_STATE(2100)] = 102058, - [SMALL_STATE(2101)] = 102113, - [SMALL_STATE(2102)] = 102174, - [SMALL_STATE(2103)] = 102243, - [SMALL_STATE(2104)] = 102298, - [SMALL_STATE(2105)] = 102357, - [SMALL_STATE(2106)] = 102424, - [SMALL_STATE(2107)] = 102489, - [SMALL_STATE(2108)] = 102552, - [SMALL_STATE(2109)] = 102619, - [SMALL_STATE(2110)] = 102684, - [SMALL_STATE(2111)] = 102733, - [SMALL_STATE(2112)] = 102812, - [SMALL_STATE(2113)] = 102859, - [SMALL_STATE(2114)] = 102906, - [SMALL_STATE(2115)] = 102969, - [SMALL_STATE(2116)] = 103014, - [SMALL_STATE(2117)] = 103063, - [SMALL_STATE(2118)] = 103112, - [SMALL_STATE(2119)] = 103163, - [SMALL_STATE(2120)] = 103218, - [SMALL_STATE(2121)] = 103267, - [SMALL_STATE(2122)] = 103322, - [SMALL_STATE(2123)] = 103367, - [SMALL_STATE(2124)] = 103411, - [SMALL_STATE(2125)] = 103455, - [SMALL_STATE(2126)] = 103499, - [SMALL_STATE(2127)] = 103547, - [SMALL_STATE(2128)] = 103591, - [SMALL_STATE(2129)] = 103635, - [SMALL_STATE(2130)] = 103679, - [SMALL_STATE(2131)] = 103727, - [SMALL_STATE(2132)] = 103771, - [SMALL_STATE(2133)] = 103815, - [SMALL_STATE(2134)] = 103859, - [SMALL_STATE(2135)] = 103903, - [SMALL_STATE(2136)] = 103947, - [SMALL_STATE(2137)] = 103997, - [SMALL_STATE(2138)] = 104041, - [SMALL_STATE(2139)] = 104085, - [SMALL_STATE(2140)] = 104129, - [SMALL_STATE(2141)] = 104177, - [SMALL_STATE(2142)] = 104225, - [SMALL_STATE(2143)] = 104269, - [SMALL_STATE(2144)] = 104313, - [SMALL_STATE(2145)] = 104357, - [SMALL_STATE(2146)] = 104401, - [SMALL_STATE(2147)] = 104445, - [SMALL_STATE(2148)] = 104489, - [SMALL_STATE(2149)] = 104533, - [SMALL_STATE(2150)] = 104577, - [SMALL_STATE(2151)] = 104621, - [SMALL_STATE(2152)] = 104665, - [SMALL_STATE(2153)] = 104709, - [SMALL_STATE(2154)] = 104753, - [SMALL_STATE(2155)] = 104797, - [SMALL_STATE(2156)] = 104841, - [SMALL_STATE(2157)] = 104885, - [SMALL_STATE(2158)] = 104929, - [SMALL_STATE(2159)] = 104977, - [SMALL_STATE(2160)] = 105021, - [SMALL_STATE(2161)] = 105065, - [SMALL_STATE(2162)] = 105117, - [SMALL_STATE(2163)] = 105161, - [SMALL_STATE(2164)] = 105211, - [SMALL_STATE(2165)] = 105255, - [SMALL_STATE(2166)] = 105299, - [SMALL_STATE(2167)] = 105355, - [SMALL_STATE(2168)] = 105403, - [SMALL_STATE(2169)] = 105451, - [SMALL_STATE(2170)] = 105501, - [SMALL_STATE(2171)] = 105553, - [SMALL_STATE(2172)] = 105601, - [SMALL_STATE(2173)] = 105645, - [SMALL_STATE(2174)] = 105695, - [SMALL_STATE(2175)] = 105739, - [SMALL_STATE(2176)] = 105787, - [SMALL_STATE(2177)] = 105831, - [SMALL_STATE(2178)] = 105875, - [SMALL_STATE(2179)] = 105921, - [SMALL_STATE(2180)] = 105965, - [SMALL_STATE(2181)] = 106009, - [SMALL_STATE(2182)] = 106053, - [SMALL_STATE(2183)] = 106097, - [SMALL_STATE(2184)] = 106141, - [SMALL_STATE(2185)] = 106193, - [SMALL_STATE(2186)] = 106237, - [SMALL_STATE(2187)] = 106283, - [SMALL_STATE(2188)] = 106329, - [SMALL_STATE(2189)] = 106377, - [SMALL_STATE(2190)] = 106421, - [SMALL_STATE(2191)] = 106465, - [SMALL_STATE(2192)] = 106511, - [SMALL_STATE(2193)] = 106559, - [SMALL_STATE(2194)] = 106611, - [SMALL_STATE(2195)] = 106657, - [SMALL_STATE(2196)] = 106703, - [SMALL_STATE(2197)] = 106757, - [SMALL_STATE(2198)] = 106803, - [SMALL_STATE(2199)] = 106847, - [SMALL_STATE(2200)] = 106891, - [SMALL_STATE(2201)] = 106935, - [SMALL_STATE(2202)] = 106979, - [SMALL_STATE(2203)] = 107023, - [SMALL_STATE(2204)] = 107067, - [SMALL_STATE(2205)] = 107127, - [SMALL_STATE(2206)] = 107175, - [SMALL_STATE(2207)] = 107229, - [SMALL_STATE(2208)] = 107273, - [SMALL_STATE(2209)] = 107331, - [SMALL_STATE(2210)] = 107397, - [SMALL_STATE(2211)] = 107445, - [SMALL_STATE(2212)] = 107489, - [SMALL_STATE(2213)] = 107553, - [SMALL_STATE(2214)] = 107615, - [SMALL_STATE(2215)] = 107659, - [SMALL_STATE(2216)] = 107711, - [SMALL_STATE(2217)] = 107755, - [SMALL_STATE(2218)] = 107799, - [SMALL_STATE(2219)] = 107843, - [SMALL_STATE(2220)] = 107887, - [SMALL_STATE(2221)] = 107931, - [SMALL_STATE(2222)] = 107975, - [SMALL_STATE(2223)] = 108019, - [SMALL_STATE(2224)] = 108063, - [SMALL_STATE(2225)] = 108107, - [SMALL_STATE(2226)] = 108159, - [SMALL_STATE(2227)] = 108203, - [SMALL_STATE(2228)] = 108247, - [SMALL_STATE(2229)] = 108291, - [SMALL_STATE(2230)] = 108339, - [SMALL_STATE(2231)] = 108383, - [SMALL_STATE(2232)] = 108427, - [SMALL_STATE(2233)] = 108471, - [SMALL_STATE(2234)] = 108519, - [SMALL_STATE(2235)] = 108567, - [SMALL_STATE(2236)] = 108621, - [SMALL_STATE(2237)] = 108665, - [SMALL_STATE(2238)] = 108719, - [SMALL_STATE(2239)] = 108763, - [SMALL_STATE(2240)] = 108807, - [SMALL_STATE(2241)] = 108851, - [SMALL_STATE(2242)] = 108895, - [SMALL_STATE(2243)] = 108939, - [SMALL_STATE(2244)] = 108983, - [SMALL_STATE(2245)] = 109027, - [SMALL_STATE(2246)] = 109071, - [SMALL_STATE(2247)] = 109115, - [SMALL_STATE(2248)] = 109159, - [SMALL_STATE(2249)] = 109203, - [SMALL_STATE(2250)] = 109247, - [SMALL_STATE(2251)] = 109295, - [SMALL_STATE(2252)] = 109339, - [SMALL_STATE(2253)] = 109383, - [SMALL_STATE(2254)] = 109431, - [SMALL_STATE(2255)] = 109475, - [SMALL_STATE(2256)] = 109519, - [SMALL_STATE(2257)] = 109565, - [SMALL_STATE(2258)] = 109611, - [SMALL_STATE(2259)] = 109657, - [SMALL_STATE(2260)] = 109701, - [SMALL_STATE(2261)] = 109747, - [SMALL_STATE(2262)] = 109791, - [SMALL_STATE(2263)] = 109837, - [SMALL_STATE(2264)] = 109885, - [SMALL_STATE(2265)] = 109953, - [SMALL_STATE(2266)] = 109999, - [SMALL_STATE(2267)] = 110043, - [SMALL_STATE(2268)] = 110087, - [SMALL_STATE(2269)] = 110131, - [SMALL_STATE(2270)] = 110175, - [SMALL_STATE(2271)] = 110219, - [SMALL_STATE(2272)] = 110263, - [SMALL_STATE(2273)] = 110307, - [SMALL_STATE(2274)] = 110385, - [SMALL_STATE(2275)] = 110429, - [SMALL_STATE(2276)] = 110477, - [SMALL_STATE(2277)] = 110521, - [SMALL_STATE(2278)] = 110565, - [SMALL_STATE(2279)] = 110608, - [SMALL_STATE(2280)] = 110655, - [SMALL_STATE(2281)] = 110698, - [SMALL_STATE(2282)] = 110747, - [SMALL_STATE(2283)] = 110792, - [SMALL_STATE(2284)] = 110837, - [SMALL_STATE(2285)] = 110880, - [SMALL_STATE(2286)] = 110923, - [SMALL_STATE(2287)] = 110966, - [SMALL_STATE(2288)] = 111009, - [SMALL_STATE(2289)] = 111052, - [SMALL_STATE(2290)] = 111095, - [SMALL_STATE(2291)] = 111138, - [SMALL_STATE(2292)] = 111189, - [SMALL_STATE(2293)] = 111242, - [SMALL_STATE(2294)] = 111285, - [SMALL_STATE(2295)] = 111338, - [SMALL_STATE(2296)] = 111381, - [SMALL_STATE(2297)] = 111424, - [SMALL_STATE(2298)] = 111475, - [SMALL_STATE(2299)] = 111518, - [SMALL_STATE(2300)] = 111561, - [SMALL_STATE(2301)] = 111604, - [SMALL_STATE(2302)] = 111647, - [SMALL_STATE(2303)] = 111690, - [SMALL_STATE(2304)] = 111733, - [SMALL_STATE(2305)] = 111782, - [SMALL_STATE(2306)] = 111825, - [SMALL_STATE(2307)] = 111868, - [SMALL_STATE(2308)] = 111911, - [SMALL_STATE(2309)] = 111954, - [SMALL_STATE(2310)] = 111997, - [SMALL_STATE(2311)] = 112040, - [SMALL_STATE(2312)] = 112083, - [SMALL_STATE(2313)] = 112126, - [SMALL_STATE(2314)] = 112169, - [SMALL_STATE(2315)] = 112212, - [SMALL_STATE(2316)] = 112257, - [SMALL_STATE(2317)] = 112300, - [SMALL_STATE(2318)] = 112345, - [SMALL_STATE(2319)] = 112388, - [SMALL_STATE(2320)] = 112433, - [SMALL_STATE(2321)] = 112480, - [SMALL_STATE(2322)] = 112523, - [SMALL_STATE(2323)] = 112568, - [SMALL_STATE(2324)] = 112619, - [SMALL_STATE(2325)] = 112664, - [SMALL_STATE(2326)] = 112707, - [SMALL_STATE(2327)] = 112750, - [SMALL_STATE(2328)] = 112793, - [SMALL_STATE(2329)] = 112842, - [SMALL_STATE(2330)] = 112893, - [SMALL_STATE(2331)] = 112936, - [SMALL_STATE(2332)] = 112979, - [SMALL_STATE(2333)] = 113022, - [SMALL_STATE(2334)] = 113069, - [SMALL_STATE(2335)] = 113136, - [SMALL_STATE(2336)] = 113179, - [SMALL_STATE(2337)] = 113222, - [SMALL_STATE(2338)] = 113273, - [SMALL_STATE(2339)] = 113316, - [SMALL_STATE(2340)] = 113359, - [SMALL_STATE(2341)] = 113406, - [SMALL_STATE(2342)] = 113449, - [SMALL_STATE(2343)] = 113492, - [SMALL_STATE(2344)] = 113535, - [SMALL_STATE(2345)] = 113578, - [SMALL_STATE(2346)] = 113621, - [SMALL_STATE(2347)] = 113664, - [SMALL_STATE(2348)] = 113707, - [SMALL_STATE(2349)] = 113750, - [SMALL_STATE(2350)] = 113793, - [SMALL_STATE(2351)] = 113836, - [SMALL_STATE(2352)] = 113879, - [SMALL_STATE(2353)] = 113922, - [SMALL_STATE(2354)] = 113965, - [SMALL_STATE(2355)] = 114008, - [SMALL_STATE(2356)] = 114051, - [SMALL_STATE(2357)] = 114094, - [SMALL_STATE(2358)] = 114137, - [SMALL_STATE(2359)] = 114180, - [SMALL_STATE(2360)] = 114223, - [SMALL_STATE(2361)] = 114266, - [SMALL_STATE(2362)] = 114309, - [SMALL_STATE(2363)] = 114352, - [SMALL_STATE(2364)] = 114395, - [SMALL_STATE(2365)] = 114438, - [SMALL_STATE(2366)] = 114483, - [SMALL_STATE(2367)] = 114526, - [SMALL_STATE(2368)] = 114569, - [SMALL_STATE(2369)] = 114612, - [SMALL_STATE(2370)] = 114655, - [SMALL_STATE(2371)] = 114698, - [SMALL_STATE(2372)] = 114745, - [SMALL_STATE(2373)] = 114788, - [SMALL_STATE(2374)] = 114831, - [SMALL_STATE(2375)] = 114874, - [SMALL_STATE(2376)] = 114917, - [SMALL_STATE(2377)] = 114960, - [SMALL_STATE(2378)] = 115003, - [SMALL_STATE(2379)] = 115082, - [SMALL_STATE(2380)] = 115125, - [SMALL_STATE(2381)] = 115168, - [SMALL_STATE(2382)] = 115211, - [SMALL_STATE(2383)] = 115254, - [SMALL_STATE(2384)] = 115297, - [SMALL_STATE(2385)] = 115340, - [SMALL_STATE(2386)] = 115383, - [SMALL_STATE(2387)] = 115426, - [SMALL_STATE(2388)] = 115469, - [SMALL_STATE(2389)] = 115516, - [SMALL_STATE(2390)] = 115563, - [SMALL_STATE(2391)] = 115614, - [SMALL_STATE(2392)] = 115657, - [SMALL_STATE(2393)] = 115700, - [SMALL_STATE(2394)] = 115751, - [SMALL_STATE(2395)] = 115794, - [SMALL_STATE(2396)] = 115837, - [SMALL_STATE(2397)] = 115882, - [SMALL_STATE(2398)] = 115925, - [SMALL_STATE(2399)] = 115968, - [SMALL_STATE(2400)] = 116011, - [SMALL_STATE(2401)] = 116054, - [SMALL_STATE(2402)] = 116097, - [SMALL_STATE(2403)] = 116140, - [SMALL_STATE(2404)] = 116183, - [SMALL_STATE(2405)] = 116226, - [SMALL_STATE(2406)] = 116269, - [SMALL_STATE(2407)] = 116312, - [SMALL_STATE(2408)] = 116357, - [SMALL_STATE(2409)] = 116402, - [SMALL_STATE(2410)] = 116447, - [SMALL_STATE(2411)] = 116492, - [SMALL_STATE(2412)] = 116537, - [SMALL_STATE(2413)] = 116586, - [SMALL_STATE(2414)] = 116631, - [SMALL_STATE(2415)] = 116674, - [SMALL_STATE(2416)] = 116719, - [SMALL_STATE(2417)] = 116764, - [SMALL_STATE(2418)] = 116807, - [SMALL_STATE(2419)] = 116856, - [SMALL_STATE(2420)] = 116899, - [SMALL_STATE(2421)] = 116942, - [SMALL_STATE(2422)] = 116995, - [SMALL_STATE(2423)] = 117054, - [SMALL_STATE(2424)] = 117099, - [SMALL_STATE(2425)] = 117144, - [SMALL_STATE(2426)] = 117197, - [SMALL_STATE(2427)] = 117240, - [SMALL_STATE(2428)] = 117297, - [SMALL_STATE(2429)] = 117362, - [SMALL_STATE(2430)] = 117425, - [SMALL_STATE(2431)] = 117486, - [SMALL_STATE(2432)] = 117529, - [SMALL_STATE(2433)] = 117574, - [SMALL_STATE(2434)] = 117617, - [SMALL_STATE(2435)] = 117660, - [SMALL_STATE(2436)] = 117703, - [SMALL_STATE(2437)] = 117746, - [SMALL_STATE(2438)] = 117789, - [SMALL_STATE(2439)] = 117838, - [SMALL_STATE(2440)] = 117883, - [SMALL_STATE(2441)] = 117934, - [SMALL_STATE(2442)] = 117983, - [SMALL_STATE(2443)] = 118030, - [SMALL_STATE(2444)] = 118075, - [SMALL_STATE(2445)] = 118126, - [SMALL_STATE(2446)] = 118177, - [SMALL_STATE(2447)] = 118220, - [SMALL_STATE(2448)] = 118263, - [SMALL_STATE(2449)] = 118306, - [SMALL_STATE(2450)] = 118351, - [SMALL_STATE(2451)] = 118394, - [SMALL_STATE(2452)] = 118441, - [SMALL_STATE(2453)] = 118520, - [SMALL_STATE(2454)] = 118563, - [SMALL_STATE(2455)] = 118605, - [SMALL_STATE(2456)] = 118651, - [SMALL_STATE(2457)] = 118693, - [SMALL_STATE(2458)] = 118735, - [SMALL_STATE(2459)] = 118777, - [SMALL_STATE(2460)] = 118819, - [SMALL_STATE(2461)] = 118861, - [SMALL_STATE(2462)] = 118905, - [SMALL_STATE(2463)] = 118953, - [SMALL_STATE(2464)] = 118997, - [SMALL_STATE(2465)] = 119041, - [SMALL_STATE(2466)] = 119091, - [SMALL_STATE(2467)] = 119133, - [SMALL_STATE(2468)] = 119175, - [SMALL_STATE(2469)] = 119229, - [SMALL_STATE(2470)] = 119271, - [SMALL_STATE(2471)] = 119313, - [SMALL_STATE(2472)] = 119355, - [SMALL_STATE(2473)] = 119397, - [SMALL_STATE(2474)] = 119439, - [SMALL_STATE(2475)] = 119481, - [SMALL_STATE(2476)] = 119527, - [SMALL_STATE(2477)] = 119573, - [SMALL_STATE(2478)] = 119615, - [SMALL_STATE(2479)] = 119657, - [SMALL_STATE(2480)] = 119699, - [SMALL_STATE(2481)] = 119743, - [SMALL_STATE(2482)] = 119785, - [SMALL_STATE(2483)] = 119829, - [SMALL_STATE(2484)] = 119871, - [SMALL_STATE(2485)] = 119913, - [SMALL_STATE(2486)] = 119955, - [SMALL_STATE(2487)] = 119997, - [SMALL_STATE(2488)] = 120039, - [SMALL_STATE(2489)] = 120083, - [SMALL_STATE(2490)] = 120127, - [SMALL_STATE(2491)] = 120169, - [SMALL_STATE(2492)] = 120213, - [SMALL_STATE(2493)] = 120257, - [SMALL_STATE(2494)] = 120307, - [SMALL_STATE(2495)] = 120353, - [SMALL_STATE(2496)] = 120399, - [SMALL_STATE(2497)] = 120441, - [SMALL_STATE(2498)] = 120483, - [SMALL_STATE(2499)] = 120525, - [SMALL_STATE(2500)] = 120567, - [SMALL_STATE(2501)] = 120609, - [SMALL_STATE(2502)] = 120651, - [SMALL_STATE(2503)] = 120697, - [SMALL_STATE(2504)] = 120739, - [SMALL_STATE(2505)] = 120785, - [SMALL_STATE(2506)] = 120827, - [SMALL_STATE(2507)] = 120869, - [SMALL_STATE(2508)] = 120911, - [SMALL_STATE(2509)] = 120953, - [SMALL_STATE(2510)] = 120995, - [SMALL_STATE(2511)] = 121043, - [SMALL_STATE(2512)] = 121085, - [SMALL_STATE(2513)] = 121127, - [SMALL_STATE(2514)] = 121169, - [SMALL_STATE(2515)] = 121219, - [SMALL_STATE(2516)] = 121261, - [SMALL_STATE(2517)] = 121303, - [SMALL_STATE(2518)] = 121345, - [SMALL_STATE(2519)] = 121386, - [SMALL_STATE(2520)] = 121429, - [SMALL_STATE(2521)] = 121470, - [SMALL_STATE(2522)] = 121511, - [SMALL_STATE(2523)] = 121560, - [SMALL_STATE(2524)] = 121601, - [SMALL_STATE(2525)] = 121642, - [SMALL_STATE(2526)] = 121685, - [SMALL_STATE(2527)] = 121726, - [SMALL_STATE(2528)] = 121805, - [SMALL_STATE(2529)] = 121846, - [SMALL_STATE(2530)] = 121887, - [SMALL_STATE(2531)] = 121930, - [SMALL_STATE(2532)] = 121979, - [SMALL_STATE(2533)] = 122056, - [SMALL_STATE(2534)] = 122135, - [SMALL_STATE(2535)] = 122176, - [SMALL_STATE(2536)] = 122217, - [SMALL_STATE(2537)] = 122258, - [SMALL_STATE(2538)] = 122307, - [SMALL_STATE(2539)] = 122348, - [SMALL_STATE(2540)] = 122397, - [SMALL_STATE(2541)] = 122438, - [SMALL_STATE(2542)] = 122479, - [SMALL_STATE(2543)] = 122522, - [SMALL_STATE(2544)] = 122565, - [SMALL_STATE(2545)] = 122608, - [SMALL_STATE(2546)] = 122649, - [SMALL_STATE(2547)] = 122728, - [SMALL_STATE(2548)] = 122769, - [SMALL_STATE(2549)] = 122810, - [SMALL_STATE(2550)] = 122851, - [SMALL_STATE(2551)] = 122892, - [SMALL_STATE(2552)] = 122933, - [SMALL_STATE(2553)] = 123012, - [SMALL_STATE(2554)] = 123053, - [SMALL_STATE(2555)] = 123132, - [SMALL_STATE(2556)] = 123173, - [SMALL_STATE(2557)] = 123214, - [SMALL_STATE(2558)] = 123255, - [SMALL_STATE(2559)] = 123296, - [SMALL_STATE(2560)] = 123337, - [SMALL_STATE(2561)] = 123416, - [SMALL_STATE(2562)] = 123457, - [SMALL_STATE(2563)] = 123498, - [SMALL_STATE(2564)] = 123539, - [SMALL_STATE(2565)] = 123580, - [SMALL_STATE(2566)] = 123659, - [SMALL_STATE(2567)] = 123738, - [SMALL_STATE(2568)] = 123779, - [SMALL_STATE(2569)] = 123820, - [SMALL_STATE(2570)] = 123899, - [SMALL_STATE(2571)] = 123978, - [SMALL_STATE(2572)] = 124019, - [SMALL_STATE(2573)] = 124098, - [SMALL_STATE(2574)] = 124177, - [SMALL_STATE(2575)] = 124218, - [SMALL_STATE(2576)] = 124297, - [SMALL_STATE(2577)] = 124376, - [SMALL_STATE(2578)] = 124417, - [SMALL_STATE(2579)] = 124460, - [SMALL_STATE(2580)] = 124539, - [SMALL_STATE(2581)] = 124580, - [SMALL_STATE(2582)] = 124659, - [SMALL_STATE(2583)] = 124700, - [SMALL_STATE(2584)] = 124741, - [SMALL_STATE(2585)] = 124820, - [SMALL_STATE(2586)] = 124861, - [SMALL_STATE(2587)] = 124902, - [SMALL_STATE(2588)] = 124981, - [SMALL_STATE(2589)] = 125060, - [SMALL_STATE(2590)] = 125101, - [SMALL_STATE(2591)] = 125178, - [SMALL_STATE(2592)] = 125219, - [SMALL_STATE(2593)] = 125298, - [SMALL_STATE(2594)] = 125339, - [SMALL_STATE(2595)] = 125384, - [SMALL_STATE(2596)] = 125431, - [SMALL_STATE(2597)] = 125472, - [SMALL_STATE(2598)] = 125517, - [SMALL_STATE(2599)] = 125558, - [SMALL_STATE(2600)] = 125599, - [SMALL_STATE(2601)] = 125640, - [SMALL_STATE(2602)] = 125719, - [SMALL_STATE(2603)] = 125760, - [SMALL_STATE(2604)] = 125839, - [SMALL_STATE(2605)] = 125884, - [SMALL_STATE(2606)] = 125927, - [SMALL_STATE(2607)] = 126006, - [SMALL_STATE(2608)] = 126047, - [SMALL_STATE(2609)] = 126088, - [SMALL_STATE(2610)] = 126164, - [SMALL_STATE(2611)] = 126237, - [SMALL_STATE(2612)] = 126308, - [SMALL_STATE(2613)] = 126379, - [SMALL_STATE(2614)] = 126450, - [SMALL_STATE(2615)] = 126523, - [SMALL_STATE(2616)] = 126566, - [SMALL_STATE(2617)] = 126637, - [SMALL_STATE(2618)] = 126708, - [SMALL_STATE(2619)] = 126779, - [SMALL_STATE(2620)] = 126850, - [SMALL_STATE(2621)] = 126923, - [SMALL_STATE(2622)] = 126996, - [SMALL_STATE(2623)] = 127069, - [SMALL_STATE(2624)] = 127140, - [SMALL_STATE(2625)] = 127211, - [SMALL_STATE(2626)] = 127282, - [SMALL_STATE(2627)] = 127353, - [SMALL_STATE(2628)] = 127424, - [SMALL_STATE(2629)] = 127495, - [SMALL_STATE(2630)] = 127566, - [SMALL_STATE(2631)] = 127637, - [SMALL_STATE(2632)] = 127710, - [SMALL_STATE(2633)] = 127783, - [SMALL_STATE(2634)] = 127854, - [SMALL_STATE(2635)] = 127925, - [SMALL_STATE(2636)] = 127996, - [SMALL_STATE(2637)] = 128067, - [SMALL_STATE(2638)] = 128138, - [SMALL_STATE(2639)] = 128209, - [SMALL_STATE(2640)] = 128280, - [SMALL_STATE(2641)] = 128351, - [SMALL_STATE(2642)] = 128422, - [SMALL_STATE(2643)] = 128493, - [SMALL_STATE(2644)] = 128564, - [SMALL_STATE(2645)] = 128635, - [SMALL_STATE(2646)] = 128706, - [SMALL_STATE(2647)] = 128777, - [SMALL_STATE(2648)] = 128848, - [SMALL_STATE(2649)] = 128919, - [SMALL_STATE(2650)] = 128990, - [SMALL_STATE(2651)] = 129061, - [SMALL_STATE(2652)] = 129132, - [SMALL_STATE(2653)] = 129203, - [SMALL_STATE(2654)] = 129274, - [SMALL_STATE(2655)] = 129344, - [SMALL_STATE(2656)] = 129414, - [SMALL_STATE(2657)] = 129482, - [SMALL_STATE(2658)] = 129550, - [SMALL_STATE(2659)] = 129620, - [SMALL_STATE(2660)] = 129658, - [SMALL_STATE(2661)] = 129728, - [SMALL_STATE(2662)] = 129766, - [SMALL_STATE(2663)] = 129834, - [SMALL_STATE(2664)] = 129902, - [SMALL_STATE(2665)] = 129970, - [SMALL_STATE(2666)] = 130038, - [SMALL_STATE(2667)] = 130106, - [SMALL_STATE(2668)] = 130144, - [SMALL_STATE(2669)] = 130214, - [SMALL_STATE(2670)] = 130282, - [SMALL_STATE(2671)] = 130350, - [SMALL_STATE(2672)] = 130418, - [SMALL_STATE(2673)] = 130456, - [SMALL_STATE(2674)] = 130524, - [SMALL_STATE(2675)] = 130592, - [SMALL_STATE(2676)] = 130662, - [SMALL_STATE(2677)] = 130732, - [SMALL_STATE(2678)] = 130800, - [SMALL_STATE(2679)] = 130868, - [SMALL_STATE(2680)] = 130936, - [SMALL_STATE(2681)] = 130974, - [SMALL_STATE(2682)] = 131052, - [SMALL_STATE(2683)] = 131122, - [SMALL_STATE(2684)] = 131159, - [SMALL_STATE(2685)] = 131196, - [SMALL_STATE(2686)] = 131233, - [SMALL_STATE(2687)] = 131270, - [SMALL_STATE(2688)] = 131307, - [SMALL_STATE(2689)] = 131344, - [SMALL_STATE(2690)] = 131381, - [SMALL_STATE(2691)] = 131418, - [SMALL_STATE(2692)] = 131455, - [SMALL_STATE(2693)] = 131492, - [SMALL_STATE(2694)] = 131529, - [SMALL_STATE(2695)] = 131566, - [SMALL_STATE(2696)] = 131603, - [SMALL_STATE(2697)] = 131640, - [SMALL_STATE(2698)] = 131677, - [SMALL_STATE(2699)] = 131714, - [SMALL_STATE(2700)] = 131751, - [SMALL_STATE(2701)] = 131788, - [SMALL_STATE(2702)] = 131825, - [SMALL_STATE(2703)] = 131862, - [SMALL_STATE(2704)] = 131899, - [SMALL_STATE(2705)] = 131936, - [SMALL_STATE(2706)] = 131973, - [SMALL_STATE(2707)] = 132010, - [SMALL_STATE(2708)] = 132077, - [SMALL_STATE(2709)] = 132114, - [SMALL_STATE(2710)] = 132179, - [SMALL_STATE(2711)] = 132216, - [SMALL_STATE(2712)] = 132253, - [SMALL_STATE(2713)] = 132290, - [SMALL_STATE(2714)] = 132327, - [SMALL_STATE(2715)] = 132396, - [SMALL_STATE(2716)] = 132465, - [SMALL_STATE(2717)] = 132502, - [SMALL_STATE(2718)] = 132569, - [SMALL_STATE(2719)] = 132638, - [SMALL_STATE(2720)] = 132707, - [SMALL_STATE(2721)] = 132744, - [SMALL_STATE(2722)] = 132781, - [SMALL_STATE(2723)] = 132818, - [SMALL_STATE(2724)] = 132855, - [SMALL_STATE(2725)] = 132892, - [SMALL_STATE(2726)] = 132929, - [SMALL_STATE(2727)] = 132996, - [SMALL_STATE(2728)] = 133033, - [SMALL_STATE(2729)] = 133070, - [SMALL_STATE(2730)] = 133137, - [SMALL_STATE(2731)] = 133174, - [SMALL_STATE(2732)] = 133211, - [SMALL_STATE(2733)] = 133248, - [SMALL_STATE(2734)] = 133285, - [SMALL_STATE(2735)] = 133322, - [SMALL_STATE(2736)] = 133391, - [SMALL_STATE(2737)] = 133458, - [SMALL_STATE(2738)] = 133527, - [SMALL_STATE(2739)] = 133596, - [SMALL_STATE(2740)] = 133633, - [SMALL_STATE(2741)] = 133702, - [SMALL_STATE(2742)] = 133739, - [SMALL_STATE(2743)] = 133776, - [SMALL_STATE(2744)] = 133813, - [SMALL_STATE(2745)] = 133850, - [SMALL_STATE(2746)] = 133887, - [SMALL_STATE(2747)] = 133924, - [SMALL_STATE(2748)] = 133991, - [SMALL_STATE(2749)] = 134028, - [SMALL_STATE(2750)] = 134065, - [SMALL_STATE(2751)] = 134102, - [SMALL_STATE(2752)] = 134139, - [SMALL_STATE(2753)] = 134176, - [SMALL_STATE(2754)] = 134213, - [SMALL_STATE(2755)] = 134282, - [SMALL_STATE(2756)] = 134319, - [SMALL_STATE(2757)] = 134356, - [SMALL_STATE(2758)] = 134393, - [SMALL_STATE(2759)] = 134430, - [SMALL_STATE(2760)] = 134499, - [SMALL_STATE(2761)] = 134536, - [SMALL_STATE(2762)] = 134603, - [SMALL_STATE(2763)] = 134640, - [SMALL_STATE(2764)] = 134677, - [SMALL_STATE(2765)] = 134746, - [SMALL_STATE(2766)] = 134815, - [SMALL_STATE(2767)] = 134852, - [SMALL_STATE(2768)] = 134921, - [SMALL_STATE(2769)] = 134990, - [SMALL_STATE(2770)] = 135027, - [SMALL_STATE(2771)] = 135064, - [SMALL_STATE(2772)] = 135101, - [SMALL_STATE(2773)] = 135170, - [SMALL_STATE(2774)] = 135239, - [SMALL_STATE(2775)] = 135308, - [SMALL_STATE(2776)] = 135345, - [SMALL_STATE(2777)] = 135414, - [SMALL_STATE(2778)] = 135483, - [SMALL_STATE(2779)] = 135520, - [SMALL_STATE(2780)] = 135557, - [SMALL_STATE(2781)] = 135594, - [SMALL_STATE(2782)] = 135631, - [SMALL_STATE(2783)] = 135668, - [SMALL_STATE(2784)] = 135705, - [SMALL_STATE(2785)] = 135742, - [SMALL_STATE(2786)] = 135779, - [SMALL_STATE(2787)] = 135816, - [SMALL_STATE(2788)] = 135881, - [SMALL_STATE(2789)] = 135918, - [SMALL_STATE(2790)] = 135983, - [SMALL_STATE(2791)] = 136020, - [SMALL_STATE(2792)] = 136057, - [SMALL_STATE(2793)] = 136094, - [SMALL_STATE(2794)] = 136131, - [SMALL_STATE(2795)] = 136200, - [SMALL_STATE(2796)] = 136236, - [SMALL_STATE(2797)] = 136272, - [SMALL_STATE(2798)] = 136334, - [SMALL_STATE(2799)] = 136370, - [SMALL_STATE(2800)] = 136406, - [SMALL_STATE(2801)] = 136442, - [SMALL_STATE(2802)] = 136478, - [SMALL_STATE(2803)] = 136514, - [SMALL_STATE(2804)] = 136550, - [SMALL_STATE(2805)] = 136586, - [SMALL_STATE(2806)] = 136622, - [SMALL_STATE(2807)] = 136658, - [SMALL_STATE(2808)] = 136694, - [SMALL_STATE(2809)] = 136730, - [SMALL_STATE(2810)] = 136766, - [SMALL_STATE(2811)] = 136802, - [SMALL_STATE(2812)] = 136838, - [SMALL_STATE(2813)] = 136874, - [SMALL_STATE(2814)] = 136910, - [SMALL_STATE(2815)] = 136972, - [SMALL_STATE(2816)] = 137008, - [SMALL_STATE(2817)] = 137044, - [SMALL_STATE(2818)] = 137080, - [SMALL_STATE(2819)] = 137116, - [SMALL_STATE(2820)] = 137152, - [SMALL_STATE(2821)] = 137188, - [SMALL_STATE(2822)] = 137224, - [SMALL_STATE(2823)] = 137260, - [SMALL_STATE(2824)] = 137296, - [SMALL_STATE(2825)] = 137332, - [SMALL_STATE(2826)] = 137368, - [SMALL_STATE(2827)] = 137404, - [SMALL_STATE(2828)] = 137440, - [SMALL_STATE(2829)] = 137476, - [SMALL_STATE(2830)] = 137512, - [SMALL_STATE(2831)] = 137548, - [SMALL_STATE(2832)] = 137584, - [SMALL_STATE(2833)] = 137620, - [SMALL_STATE(2834)] = 137656, - [SMALL_STATE(2835)] = 137692, - [SMALL_STATE(2836)] = 137728, - [SMALL_STATE(2837)] = 137764, - [SMALL_STATE(2838)] = 137800, - [SMALL_STATE(2839)] = 137836, - [SMALL_STATE(2840)] = 137872, - [SMALL_STATE(2841)] = 137908, - [SMALL_STATE(2842)] = 137944, - [SMALL_STATE(2843)] = 137980, - [SMALL_STATE(2844)] = 138016, - [SMALL_STATE(2845)] = 138052, - [SMALL_STATE(2846)] = 138088, - [SMALL_STATE(2847)] = 138124, - [SMALL_STATE(2848)] = 138160, - [SMALL_STATE(2849)] = 138196, - [SMALL_STATE(2850)] = 138232, - [SMALL_STATE(2851)] = 138268, - [SMALL_STATE(2852)] = 138304, - [SMALL_STATE(2853)] = 138340, - [SMALL_STATE(2854)] = 138376, - [SMALL_STATE(2855)] = 138412, - [SMALL_STATE(2856)] = 138448, - [SMALL_STATE(2857)] = 138484, - [SMALL_STATE(2858)] = 138520, - [SMALL_STATE(2859)] = 138582, - [SMALL_STATE(2860)] = 138630, - [SMALL_STATE(2861)] = 138666, - [SMALL_STATE(2862)] = 138702, - [SMALL_STATE(2863)] = 138738, - [SMALL_STATE(2864)] = 138774, - [SMALL_STATE(2865)] = 138810, - [SMALL_STATE(2866)] = 138846, - [SMALL_STATE(2867)] = 138882, - [SMALL_STATE(2868)] = 138918, - [SMALL_STATE(2869)] = 138954, - [SMALL_STATE(2870)] = 138990, - [SMALL_STATE(2871)] = 139026, - [SMALL_STATE(2872)] = 139062, - [SMALL_STATE(2873)] = 139098, - [SMALL_STATE(2874)] = 139134, - [SMALL_STATE(2875)] = 139170, - [SMALL_STATE(2876)] = 139206, - [SMALL_STATE(2877)] = 139242, - [SMALL_STATE(2878)] = 139278, - [SMALL_STATE(2879)] = 139314, - [SMALL_STATE(2880)] = 139350, - [SMALL_STATE(2881)] = 139386, - [SMALL_STATE(2882)] = 139422, - [SMALL_STATE(2883)] = 139458, - [SMALL_STATE(2884)] = 139524, - [SMALL_STATE(2885)] = 139560, - [SMALL_STATE(2886)] = 139596, - [SMALL_STATE(2887)] = 139632, - [SMALL_STATE(2888)] = 139668, - [SMALL_STATE(2889)] = 139704, - [SMALL_STATE(2890)] = 139740, - [SMALL_STATE(2891)] = 139776, - [SMALL_STATE(2892)] = 139812, - [SMALL_STATE(2893)] = 139848, - [SMALL_STATE(2894)] = 139910, - [SMALL_STATE(2895)] = 139948, - [SMALL_STATE(2896)] = 139984, - [SMALL_STATE(2897)] = 140020, - [SMALL_STATE(2898)] = 140056, - [SMALL_STATE(2899)] = 140104, - [SMALL_STATE(2900)] = 140140, - [SMALL_STATE(2901)] = 140176, - [SMALL_STATE(2902)] = 140212, - [SMALL_STATE(2903)] = 140248, - [SMALL_STATE(2904)] = 140284, - [SMALL_STATE(2905)] = 140320, - [SMALL_STATE(2906)] = 140356, - [SMALL_STATE(2907)] = 140392, - [SMALL_STATE(2908)] = 140428, - [SMALL_STATE(2909)] = 140464, - [SMALL_STATE(2910)] = 140500, - [SMALL_STATE(2911)] = 140536, - [SMALL_STATE(2912)] = 140571, - [SMALL_STATE(2913)] = 140606, - [SMALL_STATE(2914)] = 140667, - [SMALL_STATE(2915)] = 140702, - [SMALL_STATE(2916)] = 140763, - [SMALL_STATE(2917)] = 140824, - [SMALL_STATE(2918)] = 140885, - [SMALL_STATE(2919)] = 140920, - [SMALL_STATE(2920)] = 140955, - [SMALL_STATE(2921)] = 141016, - [SMALL_STATE(2922)] = 141051, - [SMALL_STATE(2923)] = 141086, - [SMALL_STATE(2924)] = 141147, - [SMALL_STATE(2925)] = 141208, - [SMALL_STATE(2926)] = 141269, - [SMALL_STATE(2927)] = 141304, - [SMALL_STATE(2928)] = 141339, - [SMALL_STATE(2929)] = 141399, - [SMALL_STATE(2930)] = 141459, - [SMALL_STATE(2931)] = 141519, - [SMALL_STATE(2932)] = 141574, - [SMALL_STATE(2933)] = 141607, - [SMALL_STATE(2934)] = 141664, - [SMALL_STATE(2935)] = 141697, - [SMALL_STATE(2936)] = 141730, - [SMALL_STATE(2937)] = 141763, - [SMALL_STATE(2938)] = 141796, - [SMALL_STATE(2939)] = 141829, - [SMALL_STATE(2940)] = 141862, - [SMALL_STATE(2941)] = 141915, - [SMALL_STATE(2942)] = 141948, - [SMALL_STATE(2943)] = 141992, - [SMALL_STATE(2944)] = 142036, - [SMALL_STATE(2945)] = 142079, - [SMALL_STATE(2946)] = 142122, - [SMALL_STATE(2947)] = 142163, - [SMALL_STATE(2948)] = 142204, - [SMALL_STATE(2949)] = 142247, - [SMALL_STATE(2950)] = 142290, - [SMALL_STATE(2951)] = 142322, - [SMALL_STATE(2952)] = 142354, - [SMALL_STATE(2953)] = 142386, - [SMALL_STATE(2954)] = 142416, - [SMALL_STATE(2955)] = 142472, - [SMALL_STATE(2956)] = 142502, - [SMALL_STATE(2957)] = 142532, - [SMALL_STATE(2958)] = 142562, - [SMALL_STATE(2959)] = 142604, - [SMALL_STATE(2960)] = 142646, - [SMALL_STATE(2961)] = 142678, - [SMALL_STATE(2962)] = 142710, - [SMALL_STATE(2963)] = 142766, - [SMALL_STATE(2964)] = 142822, - [SMALL_STATE(2965)] = 142864, - [SMALL_STATE(2966)] = 142894, - [SMALL_STATE(2967)] = 142924, - [SMALL_STATE(2968)] = 142956, - [SMALL_STATE(2969)] = 142998, - [SMALL_STATE(2970)] = 143030, - [SMALL_STATE(2971)] = 143060, - [SMALL_STATE(2972)] = 143092, - [SMALL_STATE(2973)] = 143148, - [SMALL_STATE(2974)] = 143204, - [SMALL_STATE(2975)] = 143236, - [SMALL_STATE(2976)] = 143268, - [SMALL_STATE(2977)] = 143300, - [SMALL_STATE(2978)] = 143332, - [SMALL_STATE(2979)] = 143363, - [SMALL_STATE(2980)] = 143400, - [SMALL_STATE(2981)] = 143437, - [SMALL_STATE(2982)] = 143468, - [SMALL_STATE(2983)] = 143499, - [SMALL_STATE(2984)] = 143536, - [SMALL_STATE(2985)] = 143567, - [SMALL_STATE(2986)] = 143604, - [SMALL_STATE(2987)] = 143641, - [SMALL_STATE(2988)] = 143678, - [SMALL_STATE(2989)] = 143711, - [SMALL_STATE(2990)] = 143748, - [SMALL_STATE(2991)] = 143783, - [SMALL_STATE(2992)] = 143814, - [SMALL_STATE(2993)] = 143864, - [SMALL_STATE(2994)] = 143894, - [SMALL_STATE(2995)] = 143946, - [SMALL_STATE(2996)] = 143976, - [SMALL_STATE(2997)] = 144026, - [SMALL_STATE(2998)] = 144078, - [SMALL_STATE(2999)] = 144128, - [SMALL_STATE(3000)] = 144178, - [SMALL_STATE(3001)] = 144208, - [SMALL_STATE(3002)] = 144258, - [SMALL_STATE(3003)] = 144308, - [SMALL_STATE(3004)] = 144340, - [SMALL_STATE(3005)] = 144390, - [SMALL_STATE(3006)] = 144440, - [SMALL_STATE(3007)] = 144490, - [SMALL_STATE(3008)] = 144542, - [SMALL_STATE(3009)] = 144592, - [SMALL_STATE(3010)] = 144644, - [SMALL_STATE(3011)] = 144696, - [SMALL_STATE(3012)] = 144734, - [SMALL_STATE(3013)] = 144764, - [SMALL_STATE(3014)] = 144794, - [SMALL_STATE(3015)] = 144844, - [SMALL_STATE(3016)] = 144894, - [SMALL_STATE(3017)] = 144944, - [SMALL_STATE(3018)] = 144974, - [SMALL_STATE(3019)] = 145024, - [SMALL_STATE(3020)] = 145062, - [SMALL_STATE(3021)] = 145092, - [SMALL_STATE(3022)] = 145121, - [SMALL_STATE(3023)] = 145158, - [SMALL_STATE(3024)] = 145187, - [SMALL_STATE(3025)] = 145234, - [SMALL_STATE(3026)] = 145271, - [SMALL_STATE(3027)] = 145320, - [SMALL_STATE(3028)] = 145345, - [SMALL_STATE(3029)] = 145392, - [SMALL_STATE(3030)] = 145439, - [SMALL_STATE(3031)] = 145488, - [SMALL_STATE(3032)] = 145517, - [SMALL_STATE(3033)] = 145564, - [SMALL_STATE(3034)] = 145593, - [SMALL_STATE(3035)] = 145622, - [SMALL_STATE(3036)] = 145651, - [SMALL_STATE(3037)] = 145700, - [SMALL_STATE(3038)] = 145725, - [SMALL_STATE(3039)] = 145772, - [SMALL_STATE(3040)] = 145819, - [SMALL_STATE(3041)] = 145856, - [SMALL_STATE(3042)] = 145897, - [SMALL_STATE(3043)] = 145934, - [SMALL_STATE(3044)] = 145973, - [SMALL_STATE(3045)] = 146020, - [SMALL_STATE(3046)] = 146065, - [SMALL_STATE(3047)] = 146108, - [SMALL_STATE(3048)] = 146155, - [SMALL_STATE(3049)] = 146202, - [SMALL_STATE(3050)] = 146251, - [SMALL_STATE(3051)] = 146298, - [SMALL_STATE(3052)] = 146345, - [SMALL_STATE(3053)] = 146392, - [SMALL_STATE(3054)] = 146439, - [SMALL_STATE(3055)] = 146486, - [SMALL_STATE(3056)] = 146533, - [SMALL_STATE(3057)] = 146580, - [SMALL_STATE(3058)] = 146627, - [SMALL_STATE(3059)] = 146674, - [SMALL_STATE(3060)] = 146723, - [SMALL_STATE(3061)] = 146770, - [SMALL_STATE(3062)] = 146817, - [SMALL_STATE(3063)] = 146842, - [SMALL_STATE(3064)] = 146889, - [SMALL_STATE(3065)] = 146936, - [SMALL_STATE(3066)] = 146983, - [SMALL_STATE(3067)] = 147030, - [SMALL_STATE(3068)] = 147057, - [SMALL_STATE(3069)] = 147082, - [SMALL_STATE(3070)] = 147129, - [SMALL_STATE(3071)] = 147170, - [SMALL_STATE(3072)] = 147195, - [SMALL_STATE(3073)] = 147242, - [SMALL_STATE(3074)] = 147267, - [SMALL_STATE(3075)] = 147314, - [SMALL_STATE(3076)] = 147343, - [SMALL_STATE(3077)] = 147368, - [SMALL_STATE(3078)] = 147397, - [SMALL_STATE(3079)] = 147422, - [SMALL_STATE(3080)] = 147451, - [SMALL_STATE(3081)] = 147486, - [SMALL_STATE(3082)] = 147527, - [SMALL_STATE(3083)] = 147556, - [SMALL_STATE(3084)] = 147605, - [SMALL_STATE(3085)] = 147652, - [SMALL_STATE(3086)] = 147699, - [SMALL_STATE(3087)] = 147743, - [SMALL_STATE(3088)] = 147787, - [SMALL_STATE(3089)] = 147831, - [SMALL_STATE(3090)] = 147875, - [SMALL_STATE(3091)] = 147907, - [SMALL_STATE(3092)] = 147951, - [SMALL_STATE(3093)] = 147979, - [SMALL_STATE(3094)] = 148023, - [SMALL_STATE(3095)] = 148067, - [SMALL_STATE(3096)] = 148111, - [SMALL_STATE(3097)] = 148155, - [SMALL_STATE(3098)] = 148199, - [SMALL_STATE(3099)] = 148243, - [SMALL_STATE(3100)] = 148287, - [SMALL_STATE(3101)] = 148333, - [SMALL_STATE(3102)] = 148377, - [SMALL_STATE(3103)] = 148421, - [SMALL_STATE(3104)] = 148465, - [SMALL_STATE(3105)] = 148509, - [SMALL_STATE(3106)] = 148553, - [SMALL_STATE(3107)] = 148585, - [SMALL_STATE(3108)] = 148615, - [SMALL_STATE(3109)] = 148643, - [SMALL_STATE(3110)] = 148671, - [SMALL_STATE(3111)] = 148715, - [SMALL_STATE(3112)] = 148759, - [SMALL_STATE(3113)] = 148803, - [SMALL_STATE(3114)] = 148847, - [SMALL_STATE(3115)] = 148891, - [SMALL_STATE(3116)] = 148935, - [SMALL_STATE(3117)] = 148979, - [SMALL_STATE(3118)] = 149023, - [SMALL_STATE(3119)] = 149051, - [SMALL_STATE(3120)] = 149095, - [SMALL_STATE(3121)] = 149125, - [SMALL_STATE(3122)] = 149169, - [SMALL_STATE(3123)] = 149213, - [SMALL_STATE(3124)] = 149261, - [SMALL_STATE(3125)] = 149305, - [SMALL_STATE(3126)] = 149349, - [SMALL_STATE(3127)] = 149393, - [SMALL_STATE(3128)] = 149437, - [SMALL_STATE(3129)] = 149481, - [SMALL_STATE(3130)] = 149525, - [SMALL_STATE(3131)] = 149569, - [SMALL_STATE(3132)] = 149613, - [SMALL_STATE(3133)] = 149657, - [SMALL_STATE(3134)] = 149701, - [SMALL_STATE(3135)] = 149745, - [SMALL_STATE(3136)] = 149789, - [SMALL_STATE(3137)] = 149833, - [SMALL_STATE(3138)] = 149877, - [SMALL_STATE(3139)] = 149921, - [SMALL_STATE(3140)] = 149965, - [SMALL_STATE(3141)] = 150009, - [SMALL_STATE(3142)] = 150053, - [SMALL_STATE(3143)] = 150097, - [SMALL_STATE(3144)] = 150141, - [SMALL_STATE(3145)] = 150185, - [SMALL_STATE(3146)] = 150229, - [SMALL_STATE(3147)] = 150273, - [SMALL_STATE(3148)] = 150317, - [SMALL_STATE(3149)] = 150361, - [SMALL_STATE(3150)] = 150389, - [SMALL_STATE(3151)] = 150433, - [SMALL_STATE(3152)] = 150477, - [SMALL_STATE(3153)] = 150521, - [SMALL_STATE(3154)] = 150565, - [SMALL_STATE(3155)] = 150609, - [SMALL_STATE(3156)] = 150653, - [SMALL_STATE(3157)] = 150697, - [SMALL_STATE(3158)] = 150741, - [SMALL_STATE(3159)] = 150785, - [SMALL_STATE(3160)] = 150829, - [SMALL_STATE(3161)] = 150873, - [SMALL_STATE(3162)] = 150917, - [SMALL_STATE(3163)] = 150947, - [SMALL_STATE(3164)] = 150991, - [SMALL_STATE(3165)] = 151035, - [SMALL_STATE(3166)] = 151079, - [SMALL_STATE(3167)] = 151123, - [SMALL_STATE(3168)] = 151167, - [SMALL_STATE(3169)] = 151208, - [SMALL_STATE(3170)] = 151235, - [SMALL_STATE(3171)] = 151282, - [SMALL_STATE(3172)] = 151323, - [SMALL_STATE(3173)] = 151364, - [SMALL_STATE(3174)] = 151407, - [SMALL_STATE(3175)] = 151450, - [SMALL_STATE(3176)] = 151493, - [SMALL_STATE(3177)] = 151536, - [SMALL_STATE(3178)] = 151561, - [SMALL_STATE(3179)] = 151588, - [SMALL_STATE(3180)] = 151627, - [SMALL_STATE(3181)] = 151654, - [SMALL_STATE(3182)] = 151681, - [SMALL_STATE(3183)] = 151706, - [SMALL_STATE(3184)] = 151747, - [SMALL_STATE(3185)] = 151788, - [SMALL_STATE(3186)] = 151815, - [SMALL_STATE(3187)] = 151856, - [SMALL_STATE(3188)] = 151881, - [SMALL_STATE(3189)] = 151922, - [SMALL_STATE(3190)] = 151963, - [SMALL_STATE(3191)] = 152004, - [SMALL_STATE(3192)] = 152045, - [SMALL_STATE(3193)] = 152074, - [SMALL_STATE(3194)] = 152117, - [SMALL_STATE(3195)] = 152162, - [SMALL_STATE(3196)] = 152201, - [SMALL_STATE(3197)] = 152242, - [SMALL_STATE(3198)] = 152285, - [SMALL_STATE(3199)] = 152328, - [SMALL_STATE(3200)] = 152371, - [SMALL_STATE(3201)] = 152398, - [SMALL_STATE(3202)] = 152423, - [SMALL_STATE(3203)] = 152456, - [SMALL_STATE(3204)] = 152494, - [SMALL_STATE(3205)] = 152532, - [SMALL_STATE(3206)] = 152570, - [SMALL_STATE(3207)] = 152608, - [SMALL_STATE(3208)] = 152646, - [SMALL_STATE(3209)] = 152682, - [SMALL_STATE(3210)] = 152706, - [SMALL_STATE(3211)] = 152740, - [SMALL_STATE(3212)] = 152780, - [SMALL_STATE(3213)] = 152804, - [SMALL_STATE(3214)] = 152828, - [SMALL_STATE(3215)] = 152852, - [SMALL_STATE(3216)] = 152892, - [SMALL_STATE(3217)] = 152930, - [SMALL_STATE(3218)] = 152968, - [SMALL_STATE(3219)] = 153006, - [SMALL_STATE(3220)] = 153034, - [SMALL_STATE(3221)] = 153072, - [SMALL_STATE(3222)] = 153096, - [SMALL_STATE(3223)] = 153132, - [SMALL_STATE(3224)] = 153168, - [SMALL_STATE(3225)] = 153206, - [SMALL_STATE(3226)] = 153244, - [SMALL_STATE(3227)] = 153268, - [SMALL_STATE(3228)] = 153306, - [SMALL_STATE(3229)] = 153344, - [SMALL_STATE(3230)] = 153382, - [SMALL_STATE(3231)] = 153420, - [SMALL_STATE(3232)] = 153456, - [SMALL_STATE(3233)] = 153490, - [SMALL_STATE(3234)] = 153528, - [SMALL_STATE(3235)] = 153566, - [SMALL_STATE(3236)] = 153606, - [SMALL_STATE(3237)] = 153644, - [SMALL_STATE(3238)] = 153682, - [SMALL_STATE(3239)] = 153722, - [SMALL_STATE(3240)] = 153758, - [SMALL_STATE(3241)] = 153796, - [SMALL_STATE(3242)] = 153822, - [SMALL_STATE(3243)] = 153860, - [SMALL_STATE(3244)] = 153898, - [SMALL_STATE(3245)] = 153922, - [SMALL_STATE(3246)] = 153960, - [SMALL_STATE(3247)] = 153984, - [SMALL_STATE(3248)] = 154022, - [SMALL_STATE(3249)] = 154046, - [SMALL_STATE(3250)] = 154084, - [SMALL_STATE(3251)] = 154122, - [SMALL_STATE(3252)] = 154160, - [SMALL_STATE(3253)] = 154196, - [SMALL_STATE(3254)] = 154220, - [SMALL_STATE(3255)] = 154258, - [SMALL_STATE(3256)] = 154284, - [SMALL_STATE(3257)] = 154312, - [SMALL_STATE(3258)] = 154351, - [SMALL_STATE(3259)] = 154378, - [SMALL_STATE(3260)] = 154399, - [SMALL_STATE(3261)] = 154422, - [SMALL_STATE(3262)] = 154449, - [SMALL_STATE(3263)] = 154472, - [SMALL_STATE(3264)] = 154505, - [SMALL_STATE(3265)] = 154532, - [SMALL_STATE(3266)] = 154565, - [SMALL_STATE(3267)] = 154590, - [SMALL_STATE(3268)] = 154611, - [SMALL_STATE(3269)] = 154638, - [SMALL_STATE(3270)] = 154675, - [SMALL_STATE(3271)] = 154708, - [SMALL_STATE(3272)] = 154741, - [SMALL_STATE(3273)] = 154780, - [SMALL_STATE(3274)] = 154801, - [SMALL_STATE(3275)] = 154824, - [SMALL_STATE(3276)] = 154857, - [SMALL_STATE(3277)] = 154878, - [SMALL_STATE(3278)] = 154913, - [SMALL_STATE(3279)] = 154940, - [SMALL_STATE(3280)] = 154963, - [SMALL_STATE(3281)] = 154986, - [SMALL_STATE(3282)] = 155019, - [SMALL_STATE(3283)] = 155054, - [SMALL_STATE(3284)] = 155077, - [SMALL_STATE(3285)] = 155104, - [SMALL_STATE(3286)] = 155131, - [SMALL_STATE(3287)] = 155156, - [SMALL_STATE(3288)] = 155183, - [SMALL_STATE(3289)] = 155222, - [SMALL_STATE(3290)] = 155255, - [SMALL_STATE(3291)] = 155278, - [SMALL_STATE(3292)] = 155305, - [SMALL_STATE(3293)] = 155338, - [SMALL_STATE(3294)] = 155365, - [SMALL_STATE(3295)] = 155404, - [SMALL_STATE(3296)] = 155437, - [SMALL_STATE(3297)] = 155477, - [SMALL_STATE(3298)] = 155499, - [SMALL_STATE(3299)] = 155529, - [SMALL_STATE(3300)] = 155567, - [SMALL_STATE(3301)] = 155605, - [SMALL_STATE(3302)] = 155645, - [SMALL_STATE(3303)] = 155675, - [SMALL_STATE(3304)] = 155707, - [SMALL_STATE(3305)] = 155739, - [SMALL_STATE(3306)] = 155771, - [SMALL_STATE(3307)] = 155809, - [SMALL_STATE(3308)] = 155835, - [SMALL_STATE(3309)] = 155859, - [SMALL_STATE(3310)] = 155899, - [SMALL_STATE(3311)] = 155929, - [SMALL_STATE(3312)] = 155955, - [SMALL_STATE(3313)] = 155987, - [SMALL_STATE(3314)] = 156011, - [SMALL_STATE(3315)] = 156049, - [SMALL_STATE(3316)] = 156071, - [SMALL_STATE(3317)] = 156097, - [SMALL_STATE(3318)] = 156127, - [SMALL_STATE(3319)] = 156153, - [SMALL_STATE(3320)] = 156183, - [SMALL_STATE(3321)] = 156223, - [SMALL_STATE(3322)] = 156259, - [SMALL_STATE(3323)] = 156283, - [SMALL_STATE(3324)] = 156313, - [SMALL_STATE(3325)] = 156335, - [SMALL_STATE(3326)] = 156367, - [SMALL_STATE(3327)] = 156401, - [SMALL_STATE(3328)] = 156433, - [SMALL_STATE(3329)] = 156465, - [SMALL_STATE(3330)] = 156497, - [SMALL_STATE(3331)] = 156527, - [SMALL_STATE(3332)] = 156549, - [SMALL_STATE(3333)] = 156571, - [SMALL_STATE(3334)] = 156603, - [SMALL_STATE(3335)] = 156637, - [SMALL_STATE(3336)] = 156667, - [SMALL_STATE(3337)] = 156699, - [SMALL_STATE(3338)] = 156733, - [SMALL_STATE(3339)] = 156771, - [SMALL_STATE(3340)] = 156811, - [SMALL_STATE(3341)] = 156841, - [SMALL_STATE(3342)] = 156867, - [SMALL_STATE(3343)] = 156897, - [SMALL_STATE(3344)] = 156919, - [SMALL_STATE(3345)] = 156943, - [SMALL_STATE(3346)] = 156975, - [SMALL_STATE(3347)] = 157007, - [SMALL_STATE(3348)] = 157039, - [SMALL_STATE(3349)] = 157071, - [SMALL_STATE(3350)] = 157109, - [SMALL_STATE(3351)] = 157147, - [SMALL_STATE(3352)] = 157177, - [SMALL_STATE(3353)] = 157199, - [SMALL_STATE(3354)] = 157227, - [SMALL_STATE(3355)] = 157249, - [SMALL_STATE(3356)] = 157271, - [SMALL_STATE(3357)] = 157305, - [SMALL_STATE(3358)] = 157327, - [SMALL_STATE(3359)] = 157355, - [SMALL_STATE(3360)] = 157395, - [SMALL_STATE(3361)] = 157427, - [SMALL_STATE(3362)] = 157455, - [SMALL_STATE(3363)] = 157484, - [SMALL_STATE(3364)] = 157505, - [SMALL_STATE(3365)] = 157534, - [SMALL_STATE(3366)] = 157563, - [SMALL_STATE(3367)] = 157592, - [SMALL_STATE(3368)] = 157621, - [SMALL_STATE(3369)] = 157642, - [SMALL_STATE(3370)] = 157673, - [SMALL_STATE(3371)] = 157702, - [SMALL_STATE(3372)] = 157731, - [SMALL_STATE(3373)] = 157760, - [SMALL_STATE(3374)] = 157789, - [SMALL_STATE(3375)] = 157818, - [SMALL_STATE(3376)] = 157859, - [SMALL_STATE(3377)] = 157888, - [SMALL_STATE(3378)] = 157909, - [SMALL_STATE(3379)] = 157938, - [SMALL_STATE(3380)] = 157959, - [SMALL_STATE(3381)] = 157988, - [SMALL_STATE(3382)] = 158017, - [SMALL_STATE(3383)] = 158046, - [SMALL_STATE(3384)] = 158075, - [SMALL_STATE(3385)] = 158104, - [SMALL_STATE(3386)] = 158133, - [SMALL_STATE(3387)] = 158162, - [SMALL_STATE(3388)] = 158193, - [SMALL_STATE(3389)] = 158222, - [SMALL_STATE(3390)] = 158245, - [SMALL_STATE(3391)] = 158274, - [SMALL_STATE(3392)] = 158315, - [SMALL_STATE(3393)] = 158336, - [SMALL_STATE(3394)] = 158367, - [SMALL_STATE(3395)] = 158396, - [SMALL_STATE(3396)] = 158425, - [SMALL_STATE(3397)] = 158454, - [SMALL_STATE(3398)] = 158483, - [SMALL_STATE(3399)] = 158512, - [SMALL_STATE(3400)] = 158543, - [SMALL_STATE(3401)] = 158572, - [SMALL_STATE(3402)] = 158601, - [SMALL_STATE(3403)] = 158632, - [SMALL_STATE(3404)] = 158661, - [SMALL_STATE(3405)] = 158694, - [SMALL_STATE(3406)] = 158723, - [SMALL_STATE(3407)] = 158752, - [SMALL_STATE(3408)] = 158793, - [SMALL_STATE(3409)] = 158816, - [SMALL_STATE(3410)] = 158847, - [SMALL_STATE(3411)] = 158878, - [SMALL_STATE(3412)] = 158907, - [SMALL_STATE(3413)] = 158936, - [SMALL_STATE(3414)] = 158965, - [SMALL_STATE(3415)] = 158994, - [SMALL_STATE(3416)] = 159035, - [SMALL_STATE(3417)] = 159064, - [SMALL_STATE(3418)] = 159095, - [SMALL_STATE(3419)] = 159124, - [SMALL_STATE(3420)] = 159153, - [SMALL_STATE(3421)] = 159182, - [SMALL_STATE(3422)] = 159223, - [SMALL_STATE(3423)] = 159252, - [SMALL_STATE(3424)] = 159281, - [SMALL_STATE(3425)] = 159302, - [SMALL_STATE(3426)] = 159343, - [SMALL_STATE(3427)] = 159384, - [SMALL_STATE(3428)] = 159413, - [SMALL_STATE(3429)] = 159444, - [SMALL_STATE(3430)] = 159473, - [SMALL_STATE(3431)] = 159514, - [SMALL_STATE(3432)] = 159545, - [SMALL_STATE(3433)] = 159576, - [SMALL_STATE(3434)] = 159607, - [SMALL_STATE(3435)] = 159636, - [SMALL_STATE(3436)] = 159665, - [SMALL_STATE(3437)] = 159694, - [SMALL_STATE(3438)] = 159725, - [SMALL_STATE(3439)] = 159754, - [SMALL_STATE(3440)] = 159785, - [SMALL_STATE(3441)] = 159814, - [SMALL_STATE(3442)] = 159843, - [SMALL_STATE(3443)] = 159864, - [SMALL_STATE(3444)] = 159893, - [SMALL_STATE(3445)] = 159914, - [SMALL_STATE(3446)] = 159943, - [SMALL_STATE(3447)] = 159972, - [SMALL_STATE(3448)] = 160001, - [SMALL_STATE(3449)] = 160030, - [SMALL_STATE(3450)] = 160051, - [SMALL_STATE(3451)] = 160080, - [SMALL_STATE(3452)] = 160111, - [SMALL_STATE(3453)] = 160142, - [SMALL_STATE(3454)] = 160173, - [SMALL_STATE(3455)] = 160202, - [SMALL_STATE(3456)] = 160231, - [SMALL_STATE(3457)] = 160260, - [SMALL_STATE(3458)] = 160291, - [SMALL_STATE(3459)] = 160320, - [SMALL_STATE(3460)] = 160353, - [SMALL_STATE(3461)] = 160384, - [SMALL_STATE(3462)] = 160413, - [SMALL_STATE(3463)] = 160442, - [SMALL_STATE(3464)] = 160473, - [SMALL_STATE(3465)] = 160504, - [SMALL_STATE(3466)] = 160535, - [SMALL_STATE(3467)] = 160566, - [SMALL_STATE(3468)] = 160587, - [SMALL_STATE(3469)] = 160616, - [SMALL_STATE(3470)] = 160645, - [SMALL_STATE(3471)] = 160676, - [SMALL_STATE(3472)] = 160706, - [SMALL_STATE(3473)] = 160744, - [SMALL_STATE(3474)] = 160778, - [SMALL_STATE(3475)] = 160816, - [SMALL_STATE(3476)] = 160848, - [SMALL_STATE(3477)] = 160882, - [SMALL_STATE(3478)] = 160912, - [SMALL_STATE(3479)] = 160944, - [SMALL_STATE(3480)] = 160964, - [SMALL_STATE(3481)] = 160996, - [SMALL_STATE(3482)] = 161020, - [SMALL_STATE(3483)] = 161038, - [SMALL_STATE(3484)] = 161066, - [SMALL_STATE(3485)] = 161094, - [SMALL_STATE(3486)] = 161124, - [SMALL_STATE(3487)] = 161152, - [SMALL_STATE(3488)] = 161182, - [SMALL_STATE(3489)] = 161212, - [SMALL_STATE(3490)] = 161240, - [SMALL_STATE(3491)] = 161270, - [SMALL_STATE(3492)] = 161298, - [SMALL_STATE(3493)] = 161326, - [SMALL_STATE(3494)] = 161358, - [SMALL_STATE(3495)] = 161388, - [SMALL_STATE(3496)] = 161418, - [SMALL_STATE(3497)] = 161448, - [SMALL_STATE(3498)] = 161478, - [SMALL_STATE(3499)] = 161516, - [SMALL_STATE(3500)] = 161544, - [SMALL_STATE(3501)] = 161582, - [SMALL_STATE(3502)] = 161612, - [SMALL_STATE(3503)] = 161642, - [SMALL_STATE(3504)] = 161670, - [SMALL_STATE(3505)] = 161694, - [SMALL_STATE(3506)] = 161724, - [SMALL_STATE(3507)] = 161754, - [SMALL_STATE(3508)] = 161788, - [SMALL_STATE(3509)] = 161818, - [SMALL_STATE(3510)] = 161856, - [SMALL_STATE(3511)] = 161884, - [SMALL_STATE(3512)] = 161918, - [SMALL_STATE(3513)] = 161956, - [SMALL_STATE(3514)] = 161986, - [SMALL_STATE(3515)] = 162024, - [SMALL_STATE(3516)] = 162054, - [SMALL_STATE(3517)] = 162092, - [SMALL_STATE(3518)] = 162130, - [SMALL_STATE(3519)] = 162160, - [SMALL_STATE(3520)] = 162194, - [SMALL_STATE(3521)] = 162224, - [SMALL_STATE(3522)] = 162254, - [SMALL_STATE(3523)] = 162292, - [SMALL_STATE(3524)] = 162330, - [SMALL_STATE(3525)] = 162360, - [SMALL_STATE(3526)] = 162390, - [SMALL_STATE(3527)] = 162428, - [SMALL_STATE(3528)] = 162466, - [SMALL_STATE(3529)] = 162496, - [SMALL_STATE(3530)] = 162528, - [SMALL_STATE(3531)] = 162558, - [SMALL_STATE(3532)] = 162588, - [SMALL_STATE(3533)] = 162618, - [SMALL_STATE(3534)] = 162648, - [SMALL_STATE(3535)] = 162678, - [SMALL_STATE(3536)] = 162716, - [SMALL_STATE(3537)] = 162754, - [SMALL_STATE(3538)] = 162788, - [SMALL_STATE(3539)] = 162826, - [SMALL_STATE(3540)] = 162856, - [SMALL_STATE(3541)] = 162894, - [SMALL_STATE(3542)] = 162922, - [SMALL_STATE(3543)] = 162952, - [SMALL_STATE(3544)] = 162976, - [SMALL_STATE(3545)] = 163014, - [SMALL_STATE(3546)] = 163052, - [SMALL_STATE(3547)] = 163090, - [SMALL_STATE(3548)] = 163122, - [SMALL_STATE(3549)] = 163160, - [SMALL_STATE(3550)] = 163190, - [SMALL_STATE(3551)] = 163228, - [SMALL_STATE(3552)] = 163266, - [SMALL_STATE(3553)] = 163304, - [SMALL_STATE(3554)] = 163336, - [SMALL_STATE(3555)] = 163366, - [SMALL_STATE(3556)] = 163396, - [SMALL_STATE(3557)] = 163434, - [SMALL_STATE(3558)] = 163458, - [SMALL_STATE(3559)] = 163486, - [SMALL_STATE(3560)] = 163516, - [SMALL_STATE(3561)] = 163548, - [SMALL_STATE(3562)] = 163580, - [SMALL_STATE(3563)] = 163609, - [SMALL_STATE(3564)] = 163638, - [SMALL_STATE(3565)] = 163659, - [SMALL_STATE(3566)] = 163678, - [SMALL_STATE(3567)] = 163707, - [SMALL_STATE(3568)] = 163736, - [SMALL_STATE(3569)] = 163765, - [SMALL_STATE(3570)] = 163794, - [SMALL_STATE(3571)] = 163825, - [SMALL_STATE(3572)] = 163844, - [SMALL_STATE(3573)] = 163873, - [SMALL_STATE(3574)] = 163904, - [SMALL_STATE(3575)] = 163923, - [SMALL_STATE(3576)] = 163952, - [SMALL_STATE(3577)] = 163981, - [SMALL_STATE(3578)] = 164010, - [SMALL_STATE(3579)] = 164031, - [SMALL_STATE(3580)] = 164050, - [SMALL_STATE(3581)] = 164079, - [SMALL_STATE(3582)] = 164108, - [SMALL_STATE(3583)] = 164137, - [SMALL_STATE(3584)] = 164158, - [SMALL_STATE(3585)] = 164175, - [SMALL_STATE(3586)] = 164198, - [SMALL_STATE(3587)] = 164215, - [SMALL_STATE(3588)] = 164246, - [SMALL_STATE(3589)] = 164269, - [SMALL_STATE(3590)] = 164300, - [SMALL_STATE(3591)] = 164325, - [SMALL_STATE(3592)] = 164354, - [SMALL_STATE(3593)] = 164373, - [SMALL_STATE(3594)] = 164396, - [SMALL_STATE(3595)] = 164421, - [SMALL_STATE(3596)] = 164452, - [SMALL_STATE(3597)] = 164477, - [SMALL_STATE(3598)] = 164506, - [SMALL_STATE(3599)] = 164531, - [SMALL_STATE(3600)] = 164554, - [SMALL_STATE(3601)] = 164573, - [SMALL_STATE(3602)] = 164602, - [SMALL_STATE(3603)] = 164621, - [SMALL_STATE(3604)] = 164640, - [SMALL_STATE(3605)] = 164671, - [SMALL_STATE(3606)] = 164702, - [SMALL_STATE(3607)] = 164721, - [SMALL_STATE(3608)] = 164750, - [SMALL_STATE(3609)] = 164779, - [SMALL_STATE(3610)] = 164798, - [SMALL_STATE(3611)] = 164827, - [SMALL_STATE(3612)] = 164844, - [SMALL_STATE(3613)] = 164873, - [SMALL_STATE(3614)] = 164902, - [SMALL_STATE(3615)] = 164921, - [SMALL_STATE(3616)] = 164940, - [SMALL_STATE(3617)] = 164959, - [SMALL_STATE(3618)] = 164988, - [SMALL_STATE(3619)] = 165009, - [SMALL_STATE(3620)] = 165028, - [SMALL_STATE(3621)] = 165051, - [SMALL_STATE(3622)] = 165074, - [SMALL_STATE(3623)] = 165099, - [SMALL_STATE(3624)] = 165124, - [SMALL_STATE(3625)] = 165143, - [SMALL_STATE(3626)] = 165172, - [SMALL_STATE(3627)] = 165197, - [SMALL_STATE(3628)] = 165214, - [SMALL_STATE(3629)] = 165239, - [SMALL_STATE(3630)] = 165256, - [SMALL_STATE(3631)] = 165279, - [SMALL_STATE(3632)] = 165300, - [SMALL_STATE(3633)] = 165319, - [SMALL_STATE(3634)] = 165344, - [SMALL_STATE(3635)] = 165361, - [SMALL_STATE(3636)] = 165386, - [SMALL_STATE(3637)] = 165409, - [SMALL_STATE(3638)] = 165438, - [SMALL_STATE(3639)] = 165463, - [SMALL_STATE(3640)] = 165492, - [SMALL_STATE(3641)] = 165508, - [SMALL_STATE(3642)] = 165536, - [SMALL_STATE(3643)] = 165560, - [SMALL_STATE(3644)] = 165588, - [SMALL_STATE(3645)] = 165616, - [SMALL_STATE(3646)] = 165646, - [SMALL_STATE(3647)] = 165670, - [SMALL_STATE(3648)] = 165698, - [SMALL_STATE(3649)] = 165730, - [SMALL_STATE(3650)] = 165748, - [SMALL_STATE(3651)] = 165764, - [SMALL_STATE(3652)] = 165784, - [SMALL_STATE(3653)] = 165814, - [SMALL_STATE(3654)] = 165832, - [SMALL_STATE(3655)] = 165862, - [SMALL_STATE(3656)] = 165880, - [SMALL_STATE(3657)] = 165908, - [SMALL_STATE(3658)] = 165924, - [SMALL_STATE(3659)] = 165952, - [SMALL_STATE(3660)] = 165974, - [SMALL_STATE(3661)] = 166004, - [SMALL_STATE(3662)] = 166032, - [SMALL_STATE(3663)] = 166062, - [SMALL_STATE(3664)] = 166092, - [SMALL_STATE(3665)] = 166116, - [SMALL_STATE(3666)] = 166134, - [SMALL_STATE(3667)] = 166152, - [SMALL_STATE(3668)] = 166184, - [SMALL_STATE(3669)] = 166208, - [SMALL_STATE(3670)] = 166232, - [SMALL_STATE(3671)] = 166262, - [SMALL_STATE(3672)] = 166280, - [SMALL_STATE(3673)] = 166300, - [SMALL_STATE(3674)] = 166324, - [SMALL_STATE(3675)] = 166346, - [SMALL_STATE(3676)] = 166374, - [SMALL_STATE(3677)] = 166390, - [SMALL_STATE(3678)] = 166414, - [SMALL_STATE(3679)] = 166446, - [SMALL_STATE(3680)] = 166476, - [SMALL_STATE(3681)] = 166500, - [SMALL_STATE(3682)] = 166528, - [SMALL_STATE(3683)] = 166544, - [SMALL_STATE(3684)] = 166566, - [SMALL_STATE(3685)] = 166582, - [SMALL_STATE(3686)] = 166598, - [SMALL_STATE(3687)] = 166614, - [SMALL_STATE(3688)] = 166630, - [SMALL_STATE(3689)] = 166660, - [SMALL_STATE(3690)] = 166684, - [SMALL_STATE(3691)] = 166712, - [SMALL_STATE(3692)] = 166730, - [SMALL_STATE(3693)] = 166758, - [SMALL_STATE(3694)] = 166782, - [SMALL_STATE(3695)] = 166812, - [SMALL_STATE(3696)] = 166840, - [SMALL_STATE(3697)] = 166870, - [SMALL_STATE(3698)] = 166888, - [SMALL_STATE(3699)] = 166912, - [SMALL_STATE(3700)] = 166942, - [SMALL_STATE(3701)] = 166970, - [SMALL_STATE(3702)] = 166994, - [SMALL_STATE(3703)] = 167016, - [SMALL_STATE(3704)] = 167044, - [SMALL_STATE(3705)] = 167076, - [SMALL_STATE(3706)] = 167108, - [SMALL_STATE(3707)] = 167128, - [SMALL_STATE(3708)] = 167146, - [SMALL_STATE(3709)] = 167168, - [SMALL_STATE(3710)] = 167192, - [SMALL_STATE(3711)] = 167212, - [SMALL_STATE(3712)] = 167230, - [SMALL_STATE(3713)] = 167258, - [SMALL_STATE(3714)] = 167282, - [SMALL_STATE(3715)] = 167312, - [SMALL_STATE(3716)] = 167336, - [SMALL_STATE(3717)] = 167358, - [SMALL_STATE(3718)] = 167390, - [SMALL_STATE(3719)] = 167408, - [SMALL_STATE(3720)] = 167424, - [SMALL_STATE(3721)] = 167439, - [SMALL_STATE(3722)] = 167462, - [SMALL_STATE(3723)] = 167485, - [SMALL_STATE(3724)] = 167514, - [SMALL_STATE(3725)] = 167535, - [SMALL_STATE(3726)] = 167550, - [SMALL_STATE(3727)] = 167579, - [SMALL_STATE(3728)] = 167600, - [SMALL_STATE(3729)] = 167621, - [SMALL_STATE(3730)] = 167650, - [SMALL_STATE(3731)] = 167679, - [SMALL_STATE(3732)] = 167708, - [SMALL_STATE(3733)] = 167737, - [SMALL_STATE(3734)] = 167766, - [SMALL_STATE(3735)] = 167789, - [SMALL_STATE(3736)] = 167818, - [SMALL_STATE(3737)] = 167837, - [SMALL_STATE(3738)] = 167866, - [SMALL_STATE(3739)] = 167887, - [SMALL_STATE(3740)] = 167908, - [SMALL_STATE(3741)] = 167927, - [SMALL_STATE(3742)] = 167948, - [SMALL_STATE(3743)] = 167977, - [SMALL_STATE(3744)] = 168006, - [SMALL_STATE(3745)] = 168021, - [SMALL_STATE(3746)] = 168048, - [SMALL_STATE(3747)] = 168077, - [SMALL_STATE(3748)] = 168106, - [SMALL_STATE(3749)] = 168127, - [SMALL_STATE(3750)] = 168152, - [SMALL_STATE(3751)] = 168167, - [SMALL_STATE(3752)] = 168190, - [SMALL_STATE(3753)] = 168217, - [SMALL_STATE(3754)] = 168246, - [SMALL_STATE(3755)] = 168275, - [SMALL_STATE(3756)] = 168304, - [SMALL_STATE(3757)] = 168327, - [SMALL_STATE(3758)] = 168350, - [SMALL_STATE(3759)] = 168375, - [SMALL_STATE(3760)] = 168394, - [SMALL_STATE(3761)] = 168423, - [SMALL_STATE(3762)] = 168450, - [SMALL_STATE(3763)] = 168471, - [SMALL_STATE(3764)] = 168486, - [SMALL_STATE(3765)] = 168515, - [SMALL_STATE(3766)] = 168530, - [SMALL_STATE(3767)] = 168551, - [SMALL_STATE(3768)] = 168574, - [SMALL_STATE(3769)] = 168603, - [SMALL_STATE(3770)] = 168626, - [SMALL_STATE(3771)] = 168655, - [SMALL_STATE(3772)] = 168684, - [SMALL_STATE(3773)] = 168707, - [SMALL_STATE(3774)] = 168734, - [SMALL_STATE(3775)] = 168761, - [SMALL_STATE(3776)] = 168790, - [SMALL_STATE(3777)] = 168811, - [SMALL_STATE(3778)] = 168840, - [SMALL_STATE(3779)] = 168861, - [SMALL_STATE(3780)] = 168890, - [SMALL_STATE(3781)] = 168919, - [SMALL_STATE(3782)] = 168948, - [SMALL_STATE(3783)] = 168973, - [SMALL_STATE(3784)] = 168996, - [SMALL_STATE(3785)] = 169025, - [SMALL_STATE(3786)] = 169048, - [SMALL_STATE(3787)] = 169073, - [SMALL_STATE(3788)] = 169096, - [SMALL_STATE(3789)] = 169125, - [SMALL_STATE(3790)] = 169154, - [SMALL_STATE(3791)] = 169175, - [SMALL_STATE(3792)] = 169196, - [SMALL_STATE(3793)] = 169215, - [SMALL_STATE(3794)] = 169244, - [SMALL_STATE(3795)] = 169273, - [SMALL_STATE(3796)] = 169294, - [SMALL_STATE(3797)] = 169323, - [SMALL_STATE(3798)] = 169346, - [SMALL_STATE(3799)] = 169369, - [SMALL_STATE(3800)] = 169398, - [SMALL_STATE(3801)] = 169421, - [SMALL_STATE(3802)] = 169442, - [SMALL_STATE(3803)] = 169461, - [SMALL_STATE(3804)] = 169478, - [SMALL_STATE(3805)] = 169501, - [SMALL_STATE(3806)] = 169524, - [SMALL_STATE(3807)] = 169553, - [SMALL_STATE(3808)] = 169582, - [SMALL_STATE(3809)] = 169609, - [SMALL_STATE(3810)] = 169628, - [SMALL_STATE(3811)] = 169655, - [SMALL_STATE(3812)] = 169684, - [SMALL_STATE(3813)] = 169705, - [SMALL_STATE(3814)] = 169726, - [SMALL_STATE(3815)] = 169755, - [SMALL_STATE(3816)] = 169784, - [SMALL_STATE(3817)] = 169813, - [SMALL_STATE(3818)] = 169842, - [SMALL_STATE(3819)] = 169869, - [SMALL_STATE(3820)] = 169894, - [SMALL_STATE(3821)] = 169923, - [SMALL_STATE(3822)] = 169952, - [SMALL_STATE(3823)] = 169976, - [SMALL_STATE(3824)] = 170002, - [SMALL_STATE(3825)] = 170028, - [SMALL_STATE(3826)] = 170048, - [SMALL_STATE(3827)] = 170072, - [SMALL_STATE(3828)] = 170094, - [SMALL_STATE(3829)] = 170118, - [SMALL_STATE(3830)] = 170144, - [SMALL_STATE(3831)] = 170170, - [SMALL_STATE(3832)] = 170194, - [SMALL_STATE(3833)] = 170210, - [SMALL_STATE(3834)] = 170236, - [SMALL_STATE(3835)] = 170260, - [SMALL_STATE(3836)] = 170286, - [SMALL_STATE(3837)] = 170312, - [SMALL_STATE(3838)] = 170338, - [SMALL_STATE(3839)] = 170364, - [SMALL_STATE(3840)] = 170390, - [SMALL_STATE(3841)] = 170416, - [SMALL_STATE(3842)] = 170440, - [SMALL_STATE(3843)] = 170466, - [SMALL_STATE(3844)] = 170492, - [SMALL_STATE(3845)] = 170516, - [SMALL_STATE(3846)] = 170542, - [SMALL_STATE(3847)] = 170564, - [SMALL_STATE(3848)] = 170590, - [SMALL_STATE(3849)] = 170612, - [SMALL_STATE(3850)] = 170636, - [SMALL_STATE(3851)] = 170662, - [SMALL_STATE(3852)] = 170688, - [SMALL_STATE(3853)] = 170712, - [SMALL_STATE(3854)] = 170736, - [SMALL_STATE(3855)] = 170762, - [SMALL_STATE(3856)] = 170780, - [SMALL_STATE(3857)] = 170806, - [SMALL_STATE(3858)] = 170824, - [SMALL_STATE(3859)] = 170850, - [SMALL_STATE(3860)] = 170868, - [SMALL_STATE(3861)] = 170894, - [SMALL_STATE(3862)] = 170920, - [SMALL_STATE(3863)] = 170946, - [SMALL_STATE(3864)] = 170972, - [SMALL_STATE(3865)] = 170998, - [SMALL_STATE(3866)] = 171024, - [SMALL_STATE(3867)] = 171050, - [SMALL_STATE(3868)] = 171076, - [SMALL_STATE(3869)] = 171102, - [SMALL_STATE(3870)] = 171128, - [SMALL_STATE(3871)] = 171150, - [SMALL_STATE(3872)] = 171174, - [SMALL_STATE(3873)] = 171200, - [SMALL_STATE(3874)] = 171226, - [SMALL_STATE(3875)] = 171252, - [SMALL_STATE(3876)] = 171278, - [SMALL_STATE(3877)] = 171302, - [SMALL_STATE(3878)] = 171328, - [SMALL_STATE(3879)] = 171352, - [SMALL_STATE(3880)] = 171376, - [SMALL_STATE(3881)] = 171400, - [SMALL_STATE(3882)] = 171422, - [SMALL_STATE(3883)] = 171446, - [SMALL_STATE(3884)] = 171464, - [SMALL_STATE(3885)] = 171488, - [SMALL_STATE(3886)] = 171512, - [SMALL_STATE(3887)] = 171536, - [SMALL_STATE(3888)] = 171560, - [SMALL_STATE(3889)] = 171584, - [SMALL_STATE(3890)] = 171608, - [SMALL_STATE(3891)] = 171632, - [SMALL_STATE(3892)] = 171658, - [SMALL_STATE(3893)] = 171672, - [SMALL_STATE(3894)] = 171688, - [SMALL_STATE(3895)] = 171708, - [SMALL_STATE(3896)] = 171730, - [SMALL_STATE(3897)] = 171756, - [SMALL_STATE(3898)] = 171778, - [SMALL_STATE(3899)] = 171804, - [SMALL_STATE(3900)] = 171828, - [SMALL_STATE(3901)] = 171850, - [SMALL_STATE(3902)] = 171872, - [SMALL_STATE(3903)] = 171898, - [SMALL_STATE(3904)] = 171922, - [SMALL_STATE(3905)] = 171948, - [SMALL_STATE(3906)] = 171974, - [SMALL_STATE(3907)] = 172000, - [SMALL_STATE(3908)] = 172026, - [SMALL_STATE(3909)] = 172052, - [SMALL_STATE(3910)] = 172078, - [SMALL_STATE(3911)] = 172102, - [SMALL_STATE(3912)] = 172126, - [SMALL_STATE(3913)] = 172150, - [SMALL_STATE(3914)] = 172176, - [SMALL_STATE(3915)] = 172202, - [SMALL_STATE(3916)] = 172226, - [SMALL_STATE(3917)] = 172250, - [SMALL_STATE(3918)] = 172274, - [SMALL_STATE(3919)] = 172300, - [SMALL_STATE(3920)] = 172324, - [SMALL_STATE(3921)] = 172348, - [SMALL_STATE(3922)] = 172372, - [SMALL_STATE(3923)] = 172396, - [SMALL_STATE(3924)] = 172422, - [SMALL_STATE(3925)] = 172448, - [SMALL_STATE(3926)] = 172466, - [SMALL_STATE(3927)] = 172492, - [SMALL_STATE(3928)] = 172512, - [SMALL_STATE(3929)] = 172534, - [SMALL_STATE(3930)] = 172552, - [SMALL_STATE(3931)] = 172578, - [SMALL_STATE(3932)] = 172604, - [SMALL_STATE(3933)] = 172630, - [SMALL_STATE(3934)] = 172654, - [SMALL_STATE(3935)] = 172678, - [SMALL_STATE(3936)] = 172704, - [SMALL_STATE(3937)] = 172722, - [SMALL_STATE(3938)] = 172744, - [SMALL_STATE(3939)] = 172770, - [SMALL_STATE(3940)] = 172796, - [SMALL_STATE(3941)] = 172820, - [SMALL_STATE(3942)] = 172846, - [SMALL_STATE(3943)] = 172870, - [SMALL_STATE(3944)] = 172894, - [SMALL_STATE(3945)] = 172918, - [SMALL_STATE(3946)] = 172932, - [SMALL_STATE(3947)] = 172956, - [SMALL_STATE(3948)] = 172982, - [SMALL_STATE(3949)] = 173004, - [SMALL_STATE(3950)] = 173030, - [SMALL_STATE(3951)] = 173056, - [SMALL_STATE(3952)] = 173082, - [SMALL_STATE(3953)] = 173106, - [SMALL_STATE(3954)] = 173130, - [SMALL_STATE(3955)] = 173156, - [SMALL_STATE(3956)] = 173182, - [SMALL_STATE(3957)] = 173206, - [SMALL_STATE(3958)] = 173232, - [SMALL_STATE(3959)] = 173258, - [SMALL_STATE(3960)] = 173284, - [SMALL_STATE(3961)] = 173310, - [SMALL_STATE(3962)] = 173328, - [SMALL_STATE(3963)] = 173354, - [SMALL_STATE(3964)] = 173380, - [SMALL_STATE(3965)] = 173398, - [SMALL_STATE(3966)] = 173424, - [SMALL_STATE(3967)] = 173450, - [SMALL_STATE(3968)] = 173476, - [SMALL_STATE(3969)] = 173502, - [SMALL_STATE(3970)] = 173528, - [SMALL_STATE(3971)] = 173554, - [SMALL_STATE(3972)] = 173572, - [SMALL_STATE(3973)] = 173598, - [SMALL_STATE(3974)] = 173620, - [SMALL_STATE(3975)] = 173642, - [SMALL_STATE(3976)] = 173668, - [SMALL_STATE(3977)] = 173694, - [SMALL_STATE(3978)] = 173718, - [SMALL_STATE(3979)] = 173744, - [SMALL_STATE(3980)] = 173770, - [SMALL_STATE(3981)] = 173796, - [SMALL_STATE(3982)] = 173822, - [SMALL_STATE(3983)] = 173848, - [SMALL_STATE(3984)] = 173874, - [SMALL_STATE(3985)] = 173900, - [SMALL_STATE(3986)] = 173926, - [SMALL_STATE(3987)] = 173952, - [SMALL_STATE(3988)] = 173978, - [SMALL_STATE(3989)] = 174004, - [SMALL_STATE(3990)] = 174030, - [SMALL_STATE(3991)] = 174054, - [SMALL_STATE(3992)] = 174080, - [SMALL_STATE(3993)] = 174104, - [SMALL_STATE(3994)] = 174128, - [SMALL_STATE(3995)] = 174152, - [SMALL_STATE(3996)] = 174178, - [SMALL_STATE(3997)] = 174201, - [SMALL_STATE(3998)] = 174214, - [SMALL_STATE(3999)] = 174237, - [SMALL_STATE(4000)] = 174260, - [SMALL_STATE(4001)] = 174281, - [SMALL_STATE(4002)] = 174300, - [SMALL_STATE(4003)] = 174317, - [SMALL_STATE(4004)] = 174338, - [SMALL_STATE(4005)] = 174353, - [SMALL_STATE(4006)] = 174368, - [SMALL_STATE(4007)] = 174391, - [SMALL_STATE(4008)] = 174412, - [SMALL_STATE(4009)] = 174433, - [SMALL_STATE(4010)] = 174454, - [SMALL_STATE(4011)] = 174475, - [SMALL_STATE(4012)] = 174488, - [SMALL_STATE(4013)] = 174505, - [SMALL_STATE(4014)] = 174520, - [SMALL_STATE(4015)] = 174537, - [SMALL_STATE(4016)] = 174554, - [SMALL_STATE(4017)] = 174567, - [SMALL_STATE(4018)] = 174584, - [SMALL_STATE(4019)] = 174601, - [SMALL_STATE(4020)] = 174622, - [SMALL_STATE(4021)] = 174645, - [SMALL_STATE(4022)] = 174666, - [SMALL_STATE(4023)] = 174687, - [SMALL_STATE(4024)] = 174708, - [SMALL_STATE(4025)] = 174729, - [SMALL_STATE(4026)] = 174750, - [SMALL_STATE(4027)] = 174767, - [SMALL_STATE(4028)] = 174784, - [SMALL_STATE(4029)] = 174805, - [SMALL_STATE(4030)] = 174820, - [SMALL_STATE(4031)] = 174837, - [SMALL_STATE(4032)] = 174850, - [SMALL_STATE(4033)] = 174871, - [SMALL_STATE(4034)] = 174888, - [SMALL_STATE(4035)] = 174905, - [SMALL_STATE(4036)] = 174922, - [SMALL_STATE(4037)] = 174943, - [SMALL_STATE(4038)] = 174966, - [SMALL_STATE(4039)] = 174979, - [SMALL_STATE(4040)] = 175002, - [SMALL_STATE(4041)] = 175019, - [SMALL_STATE(4042)] = 175036, - [SMALL_STATE(4043)] = 175059, - [SMALL_STATE(4044)] = 175082, - [SMALL_STATE(4045)] = 175097, - [SMALL_STATE(4046)] = 175118, - [SMALL_STATE(4047)] = 175135, - [SMALL_STATE(4048)] = 175152, - [SMALL_STATE(4049)] = 175169, - [SMALL_STATE(4050)] = 175192, - [SMALL_STATE(4051)] = 175209, - [SMALL_STATE(4052)] = 175232, - [SMALL_STATE(4053)] = 175245, - [SMALL_STATE(4054)] = 175258, - [SMALL_STATE(4055)] = 175273, - [SMALL_STATE(4056)] = 175294, - [SMALL_STATE(4057)] = 175311, - [SMALL_STATE(4058)] = 175334, - [SMALL_STATE(4059)] = 175351, - [SMALL_STATE(4060)] = 175368, - [SMALL_STATE(4061)] = 175383, - [SMALL_STATE(4062)] = 175404, - [SMALL_STATE(4063)] = 175427, - [SMALL_STATE(4064)] = 175444, - [SMALL_STATE(4065)] = 175461, - [SMALL_STATE(4066)] = 175484, - [SMALL_STATE(4067)] = 175501, - [SMALL_STATE(4068)] = 175522, - [SMALL_STATE(4069)] = 175539, - [SMALL_STATE(4070)] = 175560, - [SMALL_STATE(4071)] = 175581, - [SMALL_STATE(4072)] = 175594, - [SMALL_STATE(4073)] = 175607, - [SMALL_STATE(4074)] = 175628, - [SMALL_STATE(4075)] = 175649, - [SMALL_STATE(4076)] = 175670, - [SMALL_STATE(4077)] = 175691, - [SMALL_STATE(4078)] = 175712, - [SMALL_STATE(4079)] = 175735, - [SMALL_STATE(4080)] = 175752, - [SMALL_STATE(4081)] = 175773, - [SMALL_STATE(4082)] = 175794, - [SMALL_STATE(4083)] = 175815, - [SMALL_STATE(4084)] = 175836, - [SMALL_STATE(4085)] = 175857, - [SMALL_STATE(4086)] = 175878, - [SMALL_STATE(4087)] = 175899, - [SMALL_STATE(4088)] = 175920, - [SMALL_STATE(4089)] = 175941, - [SMALL_STATE(4090)] = 175962, - [SMALL_STATE(4091)] = 175983, - [SMALL_STATE(4092)] = 175996, - [SMALL_STATE(4093)] = 176013, - [SMALL_STATE(4094)] = 176032, - [SMALL_STATE(4095)] = 176045, - [SMALL_STATE(4096)] = 176068, - [SMALL_STATE(4097)] = 176089, - [SMALL_STATE(4098)] = 176112, - [SMALL_STATE(4099)] = 176133, - [SMALL_STATE(4100)] = 176154, - [SMALL_STATE(4101)] = 176171, - [SMALL_STATE(4102)] = 176192, - [SMALL_STATE(4103)] = 176215, - [SMALL_STATE(4104)] = 176232, - [SMALL_STATE(4105)] = 176253, - [SMALL_STATE(4106)] = 176274, - [SMALL_STATE(4107)] = 176297, - [SMALL_STATE(4108)] = 176318, - [SMALL_STATE(4109)] = 176341, - [SMALL_STATE(4110)] = 176362, - [SMALL_STATE(4111)] = 176383, - [SMALL_STATE(4112)] = 176400, - [SMALL_STATE(4113)] = 176421, - [SMALL_STATE(4114)] = 176444, - [SMALL_STATE(4115)] = 176467, - [SMALL_STATE(4116)] = 176484, - [SMALL_STATE(4117)] = 176497, - [SMALL_STATE(4118)] = 176512, - [SMALL_STATE(4119)] = 176535, - [SMALL_STATE(4120)] = 176552, - [SMALL_STATE(4121)] = 176569, - [SMALL_STATE(4122)] = 176586, - [SMALL_STATE(4123)] = 176603, - [SMALL_STATE(4124)] = 176624, - [SMALL_STATE(4125)] = 176643, - [SMALL_STATE(4126)] = 176660, - [SMALL_STATE(4127)] = 176675, - [SMALL_STATE(4128)] = 176696, - [SMALL_STATE(4129)] = 176717, - [SMALL_STATE(4130)] = 176734, - [SMALL_STATE(4131)] = 176749, - [SMALL_STATE(4132)] = 176762, - [SMALL_STATE(4133)] = 176785, - [SMALL_STATE(4134)] = 176806, - [SMALL_STATE(4135)] = 176827, - [SMALL_STATE(4136)] = 176839, - [SMALL_STATE(4137)] = 176851, - [SMALL_STATE(4138)] = 176871, - [SMALL_STATE(4139)] = 176885, - [SMALL_STATE(4140)] = 176905, - [SMALL_STATE(4141)] = 176925, - [SMALL_STATE(4142)] = 176941, - [SMALL_STATE(4143)] = 176961, - [SMALL_STATE(4144)] = 176973, - [SMALL_STATE(4145)] = 176993, - [SMALL_STATE(4146)] = 177013, - [SMALL_STATE(4147)] = 177029, - [SMALL_STATE(4148)] = 177041, - [SMALL_STATE(4149)] = 177053, - [SMALL_STATE(4150)] = 177071, - [SMALL_STATE(4151)] = 177083, - [SMALL_STATE(4152)] = 177103, - [SMALL_STATE(4153)] = 177121, - [SMALL_STATE(4154)] = 177141, - [SMALL_STATE(4155)] = 177159, - [SMALL_STATE(4156)] = 177173, - [SMALL_STATE(4157)] = 177189, - [SMALL_STATE(4158)] = 177209, - [SMALL_STATE(4159)] = 177221, - [SMALL_STATE(4160)] = 177239, - [SMALL_STATE(4161)] = 177257, - [SMALL_STATE(4162)] = 177275, - [SMALL_STATE(4163)] = 177291, - [SMALL_STATE(4164)] = 177303, - [SMALL_STATE(4165)] = 177323, - [SMALL_STATE(4166)] = 177335, - [SMALL_STATE(4167)] = 177355, - [SMALL_STATE(4168)] = 177367, - [SMALL_STATE(4169)] = 177387, - [SMALL_STATE(4170)] = 177407, - [SMALL_STATE(4171)] = 177427, - [SMALL_STATE(4172)] = 177439, - [SMALL_STATE(4173)] = 177451, - [SMALL_STATE(4174)] = 177463, - [SMALL_STATE(4175)] = 177483, - [SMALL_STATE(4176)] = 177503, - [SMALL_STATE(4177)] = 177523, - [SMALL_STATE(4178)] = 177543, - [SMALL_STATE(4179)] = 177561, - [SMALL_STATE(4180)] = 177573, - [SMALL_STATE(4181)] = 177593, - [SMALL_STATE(4182)] = 177613, - [SMALL_STATE(4183)] = 177633, - [SMALL_STATE(4184)] = 177645, - [SMALL_STATE(4185)] = 177657, - [SMALL_STATE(4186)] = 177669, - [SMALL_STATE(4187)] = 177689, - [SMALL_STATE(4188)] = 177709, - [SMALL_STATE(4189)] = 177725, - [SMALL_STATE(4190)] = 177745, - [SMALL_STATE(4191)] = 177761, - [SMALL_STATE(4192)] = 177781, - [SMALL_STATE(4193)] = 177801, - [SMALL_STATE(4194)] = 177821, - [SMALL_STATE(4195)] = 177841, - [SMALL_STATE(4196)] = 177861, - [SMALL_STATE(4197)] = 177881, - [SMALL_STATE(4198)] = 177899, - [SMALL_STATE(4199)] = 177917, - [SMALL_STATE(4200)] = 177937, - [SMALL_STATE(4201)] = 177953, - [SMALL_STATE(4202)] = 177973, - [SMALL_STATE(4203)] = 177993, - [SMALL_STATE(4204)] = 178013, - [SMALL_STATE(4205)] = 178033, - [SMALL_STATE(4206)] = 178049, - [SMALL_STATE(4207)] = 178069, - [SMALL_STATE(4208)] = 178081, - [SMALL_STATE(4209)] = 178093, - [SMALL_STATE(4210)] = 178109, - [SMALL_STATE(4211)] = 178121, - [SMALL_STATE(4212)] = 178133, - [SMALL_STATE(4213)] = 178145, - [SMALL_STATE(4214)] = 178165, - [SMALL_STATE(4215)] = 178185, - [SMALL_STATE(4216)] = 178205, - [SMALL_STATE(4217)] = 178225, - [SMALL_STATE(4218)] = 178245, - [SMALL_STATE(4219)] = 178257, - [SMALL_STATE(4220)] = 178277, - [SMALL_STATE(4221)] = 178297, - [SMALL_STATE(4222)] = 178317, - [SMALL_STATE(4223)] = 178337, - [SMALL_STATE(4224)] = 178357, - [SMALL_STATE(4225)] = 178377, - [SMALL_STATE(4226)] = 178397, - [SMALL_STATE(4227)] = 178409, - [SMALL_STATE(4228)] = 178429, - [SMALL_STATE(4229)] = 178449, - [SMALL_STATE(4230)] = 178461, - [SMALL_STATE(4231)] = 178481, - [SMALL_STATE(4232)] = 178499, - [SMALL_STATE(4233)] = 178511, - [SMALL_STATE(4234)] = 178523, - [SMALL_STATE(4235)] = 178543, - [SMALL_STATE(4236)] = 178563, - [SMALL_STATE(4237)] = 178583, - [SMALL_STATE(4238)] = 178603, - [SMALL_STATE(4239)] = 178623, - [SMALL_STATE(4240)] = 178635, - [SMALL_STATE(4241)] = 178655, - [SMALL_STATE(4242)] = 178675, - [SMALL_STATE(4243)] = 178687, - [SMALL_STATE(4244)] = 178707, - [SMALL_STATE(4245)] = 178719, - [SMALL_STATE(4246)] = 178735, - [SMALL_STATE(4247)] = 178755, - [SMALL_STATE(4248)] = 178767, - [SMALL_STATE(4249)] = 178785, - [SMALL_STATE(4250)] = 178797, - [SMALL_STATE(4251)] = 178809, - [SMALL_STATE(4252)] = 178821, - [SMALL_STATE(4253)] = 178837, - [SMALL_STATE(4254)] = 178849, - [SMALL_STATE(4255)] = 178861, - [SMALL_STATE(4256)] = 178873, - [SMALL_STATE(4257)] = 178893, - [SMALL_STATE(4258)] = 178913, - [SMALL_STATE(4259)] = 178931, - [SMALL_STATE(4260)] = 178943, - [SMALL_STATE(4261)] = 178955, - [SMALL_STATE(4262)] = 178975, - [SMALL_STATE(4263)] = 178995, - [SMALL_STATE(4264)] = 179015, - [SMALL_STATE(4265)] = 179031, - [SMALL_STATE(4266)] = 179051, - [SMALL_STATE(4267)] = 179071, - [SMALL_STATE(4268)] = 179091, - [SMALL_STATE(4269)] = 179109, - [SMALL_STATE(4270)] = 179123, - [SMALL_STATE(4271)] = 179135, - [SMALL_STATE(4272)] = 179147, - [SMALL_STATE(4273)] = 179167, - [SMALL_STATE(4274)] = 179179, - [SMALL_STATE(4275)] = 179191, - [SMALL_STATE(4276)] = 179211, - [SMALL_STATE(4277)] = 179229, - [SMALL_STATE(4278)] = 179249, - [SMALL_STATE(4279)] = 179269, - [SMALL_STATE(4280)] = 179289, - [SMALL_STATE(4281)] = 179309, - [SMALL_STATE(4282)] = 179329, - [SMALL_STATE(4283)] = 179345, - [SMALL_STATE(4284)] = 179365, - [SMALL_STATE(4285)] = 179381, - [SMALL_STATE(4286)] = 179399, - [SMALL_STATE(4287)] = 179419, - [SMALL_STATE(4288)] = 179439, - [SMALL_STATE(4289)] = 179453, - [SMALL_STATE(4290)] = 179469, - [SMALL_STATE(4291)] = 179485, - [SMALL_STATE(4292)] = 179503, - [SMALL_STATE(4293)] = 179515, - [SMALL_STATE(4294)] = 179535, - [SMALL_STATE(4295)] = 179553, - [SMALL_STATE(4296)] = 179567, - [SMALL_STATE(4297)] = 179587, - [SMALL_STATE(4298)] = 179607, - [SMALL_STATE(4299)] = 179627, - [SMALL_STATE(4300)] = 179643, - [SMALL_STATE(4301)] = 179659, - [SMALL_STATE(4302)] = 179671, - [SMALL_STATE(4303)] = 179689, - [SMALL_STATE(4304)] = 179703, - [SMALL_STATE(4305)] = 179723, - [SMALL_STATE(4306)] = 179739, - [SMALL_STATE(4307)] = 179751, - [SMALL_STATE(4308)] = 179763, - [SMALL_STATE(4309)] = 179783, - [SMALL_STATE(4310)] = 179795, - [SMALL_STATE(4311)] = 179807, - [SMALL_STATE(4312)] = 179827, - [SMALL_STATE(4313)] = 179845, - [SMALL_STATE(4314)] = 179857, - [SMALL_STATE(4315)] = 179877, - [SMALL_STATE(4316)] = 179897, - [SMALL_STATE(4317)] = 179914, - [SMALL_STATE(4318)] = 179929, - [SMALL_STATE(4319)] = 179944, - [SMALL_STATE(4320)] = 179955, - [SMALL_STATE(4321)] = 179970, - [SMALL_STATE(4322)] = 179981, - [SMALL_STATE(4323)] = 179998, - [SMALL_STATE(4324)] = 180013, - [SMALL_STATE(4325)] = 180028, - [SMALL_STATE(4326)] = 180045, - [SMALL_STATE(4327)] = 180062, - [SMALL_STATE(4328)] = 180075, - [SMALL_STATE(4329)] = 180086, - [SMALL_STATE(4330)] = 180101, - [SMALL_STATE(4331)] = 180112, - [SMALL_STATE(4332)] = 180129, - [SMALL_STATE(4333)] = 180146, - [SMALL_STATE(4334)] = 180157, - [SMALL_STATE(4335)] = 180172, - [SMALL_STATE(4336)] = 180183, - [SMALL_STATE(4337)] = 180194, - [SMALL_STATE(4338)] = 180211, - [SMALL_STATE(4339)] = 180222, - [SMALL_STATE(4340)] = 180233, - [SMALL_STATE(4341)] = 180244, - [SMALL_STATE(4342)] = 180261, - [SMALL_STATE(4343)] = 180272, - [SMALL_STATE(4344)] = 180283, - [SMALL_STATE(4345)] = 180300, - [SMALL_STATE(4346)] = 180311, - [SMALL_STATE(4347)] = 180322, - [SMALL_STATE(4348)] = 180333, - [SMALL_STATE(4349)] = 180344, - [SMALL_STATE(4350)] = 180355, - [SMALL_STATE(4351)] = 180366, - [SMALL_STATE(4352)] = 180377, - [SMALL_STATE(4353)] = 180388, - [SMALL_STATE(4354)] = 180399, - [SMALL_STATE(4355)] = 180416, - [SMALL_STATE(4356)] = 180433, - [SMALL_STATE(4357)] = 180444, - [SMALL_STATE(4358)] = 180459, - [SMALL_STATE(4359)] = 180476, - [SMALL_STATE(4360)] = 180487, - [SMALL_STATE(4361)] = 180498, - [SMALL_STATE(4362)] = 180515, - [SMALL_STATE(4363)] = 180530, - [SMALL_STATE(4364)] = 180547, - [SMALL_STATE(4365)] = 180564, - [SMALL_STATE(4366)] = 180579, - [SMALL_STATE(4367)] = 180590, - [SMALL_STATE(4368)] = 180607, - [SMALL_STATE(4369)] = 180622, - [SMALL_STATE(4370)] = 180633, - [SMALL_STATE(4371)] = 180648, - [SMALL_STATE(4372)] = 180663, - [SMALL_STATE(4373)] = 180674, - [SMALL_STATE(4374)] = 180685, - [SMALL_STATE(4375)] = 180696, - [SMALL_STATE(4376)] = 180707, - [SMALL_STATE(4377)] = 180720, - [SMALL_STATE(4378)] = 180735, - [SMALL_STATE(4379)] = 180752, - [SMALL_STATE(4380)] = 180763, - [SMALL_STATE(4381)] = 180780, - [SMALL_STATE(4382)] = 180791, - [SMALL_STATE(4383)] = 180802, - [SMALL_STATE(4384)] = 180819, - [SMALL_STATE(4385)] = 180836, - [SMALL_STATE(4386)] = 180847, - [SMALL_STATE(4387)] = 180862, - [SMALL_STATE(4388)] = 180873, - [SMALL_STATE(4389)] = 180884, - [SMALL_STATE(4390)] = 180897, - [SMALL_STATE(4391)] = 180908, - [SMALL_STATE(4392)] = 180919, - [SMALL_STATE(4393)] = 180934, - [SMALL_STATE(4394)] = 180945, - [SMALL_STATE(4395)] = 180956, - [SMALL_STATE(4396)] = 180973, - [SMALL_STATE(4397)] = 180984, - [SMALL_STATE(4398)] = 180995, - [SMALL_STATE(4399)] = 181010, - [SMALL_STATE(4400)] = 181021, - [SMALL_STATE(4401)] = 181032, - [SMALL_STATE(4402)] = 181043, - [SMALL_STATE(4403)] = 181060, - [SMALL_STATE(4404)] = 181071, - [SMALL_STATE(4405)] = 181088, - [SMALL_STATE(4406)] = 181099, - [SMALL_STATE(4407)] = 181114, - [SMALL_STATE(4408)] = 181125, - [SMALL_STATE(4409)] = 181136, - [SMALL_STATE(4410)] = 181147, - [SMALL_STATE(4411)] = 181158, - [SMALL_STATE(4412)] = 181169, - [SMALL_STATE(4413)] = 181180, - [SMALL_STATE(4414)] = 181191, - [SMALL_STATE(4415)] = 181206, - [SMALL_STATE(4416)] = 181223, - [SMALL_STATE(4417)] = 181234, - [SMALL_STATE(4418)] = 181251, - [SMALL_STATE(4419)] = 181268, - [SMALL_STATE(4420)] = 181283, - [SMALL_STATE(4421)] = 181298, - [SMALL_STATE(4422)] = 181315, - [SMALL_STATE(4423)] = 181332, - [SMALL_STATE(4424)] = 181347, - [SMALL_STATE(4425)] = 181362, - [SMALL_STATE(4426)] = 181379, - [SMALL_STATE(4427)] = 181396, - [SMALL_STATE(4428)] = 181413, - [SMALL_STATE(4429)] = 181424, - [SMALL_STATE(4430)] = 181439, - [SMALL_STATE(4431)] = 181456, - [SMALL_STATE(4432)] = 181473, - [SMALL_STATE(4433)] = 181484, - [SMALL_STATE(4434)] = 181501, - [SMALL_STATE(4435)] = 181516, - [SMALL_STATE(4436)] = 181533, - [SMALL_STATE(4437)] = 181544, - [SMALL_STATE(4438)] = 181557, - [SMALL_STATE(4439)] = 181572, - [SMALL_STATE(4440)] = 181583, - [SMALL_STATE(4441)] = 181600, - [SMALL_STATE(4442)] = 181611, - [SMALL_STATE(4443)] = 181626, - [SMALL_STATE(4444)] = 181637, - [SMALL_STATE(4445)] = 181652, - [SMALL_STATE(4446)] = 181669, - [SMALL_STATE(4447)] = 181684, - [SMALL_STATE(4448)] = 181699, - [SMALL_STATE(4449)] = 181716, - [SMALL_STATE(4450)] = 181733, - [SMALL_STATE(4451)] = 181744, - [SMALL_STATE(4452)] = 181755, - [SMALL_STATE(4453)] = 181766, - [SMALL_STATE(4454)] = 181777, - [SMALL_STATE(4455)] = 181794, - [SMALL_STATE(4456)] = 181805, - [SMALL_STATE(4457)] = 181816, - [SMALL_STATE(4458)] = 181833, - [SMALL_STATE(4459)] = 181848, - [SMALL_STATE(4460)] = 181865, - [SMALL_STATE(4461)] = 181878, - [SMALL_STATE(4462)] = 181889, - [SMALL_STATE(4463)] = 181900, - [SMALL_STATE(4464)] = 181911, - [SMALL_STATE(4465)] = 181922, - [SMALL_STATE(4466)] = 181933, - [SMALL_STATE(4467)] = 181948, - [SMALL_STATE(4468)] = 181963, - [SMALL_STATE(4469)] = 181980, - [SMALL_STATE(4470)] = 181995, - [SMALL_STATE(4471)] = 182010, - [SMALL_STATE(4472)] = 182021, - [SMALL_STATE(4473)] = 182032, - [SMALL_STATE(4474)] = 182043, - [SMALL_STATE(4475)] = 182054, - [SMALL_STATE(4476)] = 182065, - [SMALL_STATE(4477)] = 182080, - [SMALL_STATE(4478)] = 182091, - [SMALL_STATE(4479)] = 182102, - [SMALL_STATE(4480)] = 182117, - [SMALL_STATE(4481)] = 182128, - [SMALL_STATE(4482)] = 182139, - [SMALL_STATE(4483)] = 182153, - [SMALL_STATE(4484)] = 182167, - [SMALL_STATE(4485)] = 182181, - [SMALL_STATE(4486)] = 182195, - [SMALL_STATE(4487)] = 182209, - [SMALL_STATE(4488)] = 182223, - [SMALL_STATE(4489)] = 182237, - [SMALL_STATE(4490)] = 182251, - [SMALL_STATE(4491)] = 182265, - [SMALL_STATE(4492)] = 182279, - [SMALL_STATE(4493)] = 182293, - [SMALL_STATE(4494)] = 182307, - [SMALL_STATE(4495)] = 182321, - [SMALL_STATE(4496)] = 182335, - [SMALL_STATE(4497)] = 182349, - [SMALL_STATE(4498)] = 182363, - [SMALL_STATE(4499)] = 182377, - [SMALL_STATE(4500)] = 182391, - [SMALL_STATE(4501)] = 182405, - [SMALL_STATE(4502)] = 182419, - [SMALL_STATE(4503)] = 182433, - [SMALL_STATE(4504)] = 182447, - [SMALL_STATE(4505)] = 182461, - [SMALL_STATE(4506)] = 182475, - [SMALL_STATE(4507)] = 182489, - [SMALL_STATE(4508)] = 182503, - [SMALL_STATE(4509)] = 182517, - [SMALL_STATE(4510)] = 182527, - [SMALL_STATE(4511)] = 182539, - [SMALL_STATE(4512)] = 182549, - [SMALL_STATE(4513)] = 182563, - [SMALL_STATE(4514)] = 182577, - [SMALL_STATE(4515)] = 182591, - [SMALL_STATE(4516)] = 182605, - [SMALL_STATE(4517)] = 182619, - [SMALL_STATE(4518)] = 182633, - [SMALL_STATE(4519)] = 182647, - [SMALL_STATE(4520)] = 182661, - [SMALL_STATE(4521)] = 182675, - [SMALL_STATE(4522)] = 182689, - [SMALL_STATE(4523)] = 182703, - [SMALL_STATE(4524)] = 182717, - [SMALL_STATE(4525)] = 182727, - [SMALL_STATE(4526)] = 182741, - [SMALL_STATE(4527)] = 182755, - [SMALL_STATE(4528)] = 182769, - [SMALL_STATE(4529)] = 182783, - [SMALL_STATE(4530)] = 182797, - [SMALL_STATE(4531)] = 182811, - [SMALL_STATE(4532)] = 182825, - [SMALL_STATE(4533)] = 182839, - [SMALL_STATE(4534)] = 182853, - [SMALL_STATE(4535)] = 182867, - [SMALL_STATE(4536)] = 182881, - [SMALL_STATE(4537)] = 182895, - [SMALL_STATE(4538)] = 182909, - [SMALL_STATE(4539)] = 182921, - [SMALL_STATE(4540)] = 182935, - [SMALL_STATE(4541)] = 182949, - [SMALL_STATE(4542)] = 182961, - [SMALL_STATE(4543)] = 182975, - [SMALL_STATE(4544)] = 182987, - [SMALL_STATE(4545)] = 183001, - [SMALL_STATE(4546)] = 183015, - [SMALL_STATE(4547)] = 183029, - [SMALL_STATE(4548)] = 183043, - [SMALL_STATE(4549)] = 183057, - [SMALL_STATE(4550)] = 183071, - [SMALL_STATE(4551)] = 183085, - [SMALL_STATE(4552)] = 183099, - [SMALL_STATE(4553)] = 183113, - [SMALL_STATE(4554)] = 183125, - [SMALL_STATE(4555)] = 183139, - [SMALL_STATE(4556)] = 183153, - [SMALL_STATE(4557)] = 183167, - [SMALL_STATE(4558)] = 183181, - [SMALL_STATE(4559)] = 183195, - [SMALL_STATE(4560)] = 183209, - [SMALL_STATE(4561)] = 183223, - [SMALL_STATE(4562)] = 183237, - [SMALL_STATE(4563)] = 183251, - [SMALL_STATE(4564)] = 183265, - [SMALL_STATE(4565)] = 183279, - [SMALL_STATE(4566)] = 183293, - [SMALL_STATE(4567)] = 183307, - [SMALL_STATE(4568)] = 183321, - [SMALL_STATE(4569)] = 183335, - [SMALL_STATE(4570)] = 183349, - [SMALL_STATE(4571)] = 183363, - [SMALL_STATE(4572)] = 183375, - [SMALL_STATE(4573)] = 183389, - [SMALL_STATE(4574)] = 183399, - [SMALL_STATE(4575)] = 183413, - [SMALL_STATE(4576)] = 183427, - [SMALL_STATE(4577)] = 183441, - [SMALL_STATE(4578)] = 183455, - [SMALL_STATE(4579)] = 183469, - [SMALL_STATE(4580)] = 183483, - [SMALL_STATE(4581)] = 183497, - [SMALL_STATE(4582)] = 183511, - [SMALL_STATE(4583)] = 183525, - [SMALL_STATE(4584)] = 183539, - [SMALL_STATE(4585)] = 183553, - [SMALL_STATE(4586)] = 183567, - [SMALL_STATE(4587)] = 183581, - [SMALL_STATE(4588)] = 183595, - [SMALL_STATE(4589)] = 183609, - [SMALL_STATE(4590)] = 183623, - [SMALL_STATE(4591)] = 183635, - [SMALL_STATE(4592)] = 183649, - [SMALL_STATE(4593)] = 183663, - [SMALL_STATE(4594)] = 183677, - [SMALL_STATE(4595)] = 183691, - [SMALL_STATE(4596)] = 183705, - [SMALL_STATE(4597)] = 183719, - [SMALL_STATE(4598)] = 183733, - [SMALL_STATE(4599)] = 183747, - [SMALL_STATE(4600)] = 183761, - [SMALL_STATE(4601)] = 183775, - [SMALL_STATE(4602)] = 183787, - [SMALL_STATE(4603)] = 183801, - [SMALL_STATE(4604)] = 183815, - [SMALL_STATE(4605)] = 183829, - [SMALL_STATE(4606)] = 183843, - [SMALL_STATE(4607)] = 183857, - [SMALL_STATE(4608)] = 183871, - [SMALL_STATE(4609)] = 183885, - [SMALL_STATE(4610)] = 183899, - [SMALL_STATE(4611)] = 183913, - [SMALL_STATE(4612)] = 183927, - [SMALL_STATE(4613)] = 183941, - [SMALL_STATE(4614)] = 183955, - [SMALL_STATE(4615)] = 183969, - [SMALL_STATE(4616)] = 183983, - [SMALL_STATE(4617)] = 183997, - [SMALL_STATE(4618)] = 184011, - [SMALL_STATE(4619)] = 184025, - [SMALL_STATE(4620)] = 184039, - [SMALL_STATE(4621)] = 184053, - [SMALL_STATE(4622)] = 184067, - [SMALL_STATE(4623)] = 184081, - [SMALL_STATE(4624)] = 184095, - [SMALL_STATE(4625)] = 184109, - [SMALL_STATE(4626)] = 184123, - [SMALL_STATE(4627)] = 184137, - [SMALL_STATE(4628)] = 184151, - [SMALL_STATE(4629)] = 184165, - [SMALL_STATE(4630)] = 184179, - [SMALL_STATE(4631)] = 184193, - [SMALL_STATE(4632)] = 184207, - [SMALL_STATE(4633)] = 184219, - [SMALL_STATE(4634)] = 184233, - [SMALL_STATE(4635)] = 184247, - [SMALL_STATE(4636)] = 184261, - [SMALL_STATE(4637)] = 184275, - [SMALL_STATE(4638)] = 184289, - [SMALL_STATE(4639)] = 184303, - [SMALL_STATE(4640)] = 184317, - [SMALL_STATE(4641)] = 184331, - [SMALL_STATE(4642)] = 184345, - [SMALL_STATE(4643)] = 184355, - [SMALL_STATE(4644)] = 184369, - [SMALL_STATE(4645)] = 184381, - [SMALL_STATE(4646)] = 184395, - [SMALL_STATE(4647)] = 184409, - [SMALL_STATE(4648)] = 184423, - [SMALL_STATE(4649)] = 184435, - [SMALL_STATE(4650)] = 184449, - [SMALL_STATE(4651)] = 184463, - [SMALL_STATE(4652)] = 184477, - [SMALL_STATE(4653)] = 184491, - [SMALL_STATE(4654)] = 184505, - [SMALL_STATE(4655)] = 184519, - [SMALL_STATE(4656)] = 184533, - [SMALL_STATE(4657)] = 184547, - [SMALL_STATE(4658)] = 184561, - [SMALL_STATE(4659)] = 184575, - [SMALL_STATE(4660)] = 184589, - [SMALL_STATE(4661)] = 184603, - [SMALL_STATE(4662)] = 184617, - [SMALL_STATE(4663)] = 184631, - [SMALL_STATE(4664)] = 184645, - [SMALL_STATE(4665)] = 184659, - [SMALL_STATE(4666)] = 184673, - [SMALL_STATE(4667)] = 184687, - [SMALL_STATE(4668)] = 184701, - [SMALL_STATE(4669)] = 184715, - [SMALL_STATE(4670)] = 184729, - [SMALL_STATE(4671)] = 184741, - [SMALL_STATE(4672)] = 184755, - [SMALL_STATE(4673)] = 184769, - [SMALL_STATE(4674)] = 184783, - [SMALL_STATE(4675)] = 184797, - [SMALL_STATE(4676)] = 184811, - [SMALL_STATE(4677)] = 184825, - [SMALL_STATE(4678)] = 184839, - [SMALL_STATE(4679)] = 184853, - [SMALL_STATE(4680)] = 184867, - [SMALL_STATE(4681)] = 184881, - [SMALL_STATE(4682)] = 184895, - [SMALL_STATE(4683)] = 184909, - [SMALL_STATE(4684)] = 184923, - [SMALL_STATE(4685)] = 184937, - [SMALL_STATE(4686)] = 184951, - [SMALL_STATE(4687)] = 184965, - [SMALL_STATE(4688)] = 184979, - [SMALL_STATE(4689)] = 184993, - [SMALL_STATE(4690)] = 185007, - [SMALL_STATE(4691)] = 185021, - [SMALL_STATE(4692)] = 185035, - [SMALL_STATE(4693)] = 185049, - [SMALL_STATE(4694)] = 185063, - [SMALL_STATE(4695)] = 185077, - [SMALL_STATE(4696)] = 185091, - [SMALL_STATE(4697)] = 185105, - [SMALL_STATE(4698)] = 185119, - [SMALL_STATE(4699)] = 185133, - [SMALL_STATE(4700)] = 185147, - [SMALL_STATE(4701)] = 185161, - [SMALL_STATE(4702)] = 185175, - [SMALL_STATE(4703)] = 185189, - [SMALL_STATE(4704)] = 185203, - [SMALL_STATE(4705)] = 185217, - [SMALL_STATE(4706)] = 185231, - [SMALL_STATE(4707)] = 185245, - [SMALL_STATE(4708)] = 185259, - [SMALL_STATE(4709)] = 185273, - [SMALL_STATE(4710)] = 185287, - [SMALL_STATE(4711)] = 185301, - [SMALL_STATE(4712)] = 185315, - [SMALL_STATE(4713)] = 185329, - [SMALL_STATE(4714)] = 185343, - [SMALL_STATE(4715)] = 185357, - [SMALL_STATE(4716)] = 185371, - [SMALL_STATE(4717)] = 185385, - [SMALL_STATE(4718)] = 185399, - [SMALL_STATE(4719)] = 185413, - [SMALL_STATE(4720)] = 185427, - [SMALL_STATE(4721)] = 185441, - [SMALL_STATE(4722)] = 185455, - [SMALL_STATE(4723)] = 185469, - [SMALL_STATE(4724)] = 185483, - [SMALL_STATE(4725)] = 185497, - [SMALL_STATE(4726)] = 185511, - [SMALL_STATE(4727)] = 185525, - [SMALL_STATE(4728)] = 185539, - [SMALL_STATE(4729)] = 185553, - [SMALL_STATE(4730)] = 185567, - [SMALL_STATE(4731)] = 185579, - [SMALL_STATE(4732)] = 185593, - [SMALL_STATE(4733)] = 185607, - [SMALL_STATE(4734)] = 185621, - [SMALL_STATE(4735)] = 185635, - [SMALL_STATE(4736)] = 185649, - [SMALL_STATE(4737)] = 185663, - [SMALL_STATE(4738)] = 185677, - [SMALL_STATE(4739)] = 185691, - [SMALL_STATE(4740)] = 185705, - [SMALL_STATE(4741)] = 185719, - [SMALL_STATE(4742)] = 185733, - [SMALL_STATE(4743)] = 185747, - [SMALL_STATE(4744)] = 185761, - [SMALL_STATE(4745)] = 185775, - [SMALL_STATE(4746)] = 185789, - [SMALL_STATE(4747)] = 185803, - [SMALL_STATE(4748)] = 185817, - [SMALL_STATE(4749)] = 185831, - [SMALL_STATE(4750)] = 185845, - [SMALL_STATE(4751)] = 185859, - [SMALL_STATE(4752)] = 185873, - [SMALL_STATE(4753)] = 185887, - [SMALL_STATE(4754)] = 185901, - [SMALL_STATE(4755)] = 185915, - [SMALL_STATE(4756)] = 185929, - [SMALL_STATE(4757)] = 185939, - [SMALL_STATE(4758)] = 185953, - [SMALL_STATE(4759)] = 185967, - [SMALL_STATE(4760)] = 185981, - [SMALL_STATE(4761)] = 185995, - [SMALL_STATE(4762)] = 186009, - [SMALL_STATE(4763)] = 186023, - [SMALL_STATE(4764)] = 186037, - [SMALL_STATE(4765)] = 186049, - [SMALL_STATE(4766)] = 186063, - [SMALL_STATE(4767)] = 186077, - [SMALL_STATE(4768)] = 186091, - [SMALL_STATE(4769)] = 186105, - [SMALL_STATE(4770)] = 186119, - [SMALL_STATE(4771)] = 186133, - [SMALL_STATE(4772)] = 186147, - [SMALL_STATE(4773)] = 186161, - [SMALL_STATE(4774)] = 186175, - [SMALL_STATE(4775)] = 186189, - [SMALL_STATE(4776)] = 186203, - [SMALL_STATE(4777)] = 186217, - [SMALL_STATE(4778)] = 186231, - [SMALL_STATE(4779)] = 186245, - [SMALL_STATE(4780)] = 186259, - [SMALL_STATE(4781)] = 186273, - [SMALL_STATE(4782)] = 186287, - [SMALL_STATE(4783)] = 186301, - [SMALL_STATE(4784)] = 186315, - [SMALL_STATE(4785)] = 186329, - [SMALL_STATE(4786)] = 186343, - [SMALL_STATE(4787)] = 186357, - [SMALL_STATE(4788)] = 186371, - [SMALL_STATE(4789)] = 186385, - [SMALL_STATE(4790)] = 186399, - [SMALL_STATE(4791)] = 186413, - [SMALL_STATE(4792)] = 186427, - [SMALL_STATE(4793)] = 186441, - [SMALL_STATE(4794)] = 186455, - [SMALL_STATE(4795)] = 186469, - [SMALL_STATE(4796)] = 186483, - [SMALL_STATE(4797)] = 186497, - [SMALL_STATE(4798)] = 186511, - [SMALL_STATE(4799)] = 186525, - [SMALL_STATE(4800)] = 186539, - [SMALL_STATE(4801)] = 186551, - [SMALL_STATE(4802)] = 186565, - [SMALL_STATE(4803)] = 186577, - [SMALL_STATE(4804)] = 186589, - [SMALL_STATE(4805)] = 186603, - [SMALL_STATE(4806)] = 186615, - [SMALL_STATE(4807)] = 186627, - [SMALL_STATE(4808)] = 186641, - [SMALL_STATE(4809)] = 186653, - [SMALL_STATE(4810)] = 186667, - [SMALL_STATE(4811)] = 186681, - [SMALL_STATE(4812)] = 186695, - [SMALL_STATE(4813)] = 186709, - [SMALL_STATE(4814)] = 186723, - [SMALL_STATE(4815)] = 186737, - [SMALL_STATE(4816)] = 186751, - [SMALL_STATE(4817)] = 186765, - [SMALL_STATE(4818)] = 186779, - [SMALL_STATE(4819)] = 186793, - [SMALL_STATE(4820)] = 186807, - [SMALL_STATE(4821)] = 186821, - [SMALL_STATE(4822)] = 186833, - [SMALL_STATE(4823)] = 186847, - [SMALL_STATE(4824)] = 186861, - [SMALL_STATE(4825)] = 186875, - [SMALL_STATE(4826)] = 186889, - [SMALL_STATE(4827)] = 186903, - [SMALL_STATE(4828)] = 186917, - [SMALL_STATE(4829)] = 186931, - [SMALL_STATE(4830)] = 186945, - [SMALL_STATE(4831)] = 186959, - [SMALL_STATE(4832)] = 186973, - [SMALL_STATE(4833)] = 186987, - [SMALL_STATE(4834)] = 187001, - [SMALL_STATE(4835)] = 187015, - [SMALL_STATE(4836)] = 187029, - [SMALL_STATE(4837)] = 187043, - [SMALL_STATE(4838)] = 187055, - [SMALL_STATE(4839)] = 187069, - [SMALL_STATE(4840)] = 187083, - [SMALL_STATE(4841)] = 187097, - [SMALL_STATE(4842)] = 187111, - [SMALL_STATE(4843)] = 187125, - [SMALL_STATE(4844)] = 187139, - [SMALL_STATE(4845)] = 187153, - [SMALL_STATE(4846)] = 187167, - [SMALL_STATE(4847)] = 187181, - [SMALL_STATE(4848)] = 187195, - [SMALL_STATE(4849)] = 187209, - [SMALL_STATE(4850)] = 187223, - [SMALL_STATE(4851)] = 187237, - [SMALL_STATE(4852)] = 187249, - [SMALL_STATE(4853)] = 187259, - [SMALL_STATE(4854)] = 187273, - [SMALL_STATE(4855)] = 187287, - [SMALL_STATE(4856)] = 187301, - [SMALL_STATE(4857)] = 187315, - [SMALL_STATE(4858)] = 187329, - [SMALL_STATE(4859)] = 187343, - [SMALL_STATE(4860)] = 187357, - [SMALL_STATE(4861)] = 187371, - [SMALL_STATE(4862)] = 187385, - [SMALL_STATE(4863)] = 187399, - [SMALL_STATE(4864)] = 187413, - [SMALL_STATE(4865)] = 187427, - [SMALL_STATE(4866)] = 187441, - [SMALL_STATE(4867)] = 187455, - [SMALL_STATE(4868)] = 187469, - [SMALL_STATE(4869)] = 187483, - [SMALL_STATE(4870)] = 187497, - [SMALL_STATE(4871)] = 187509, - [SMALL_STATE(4872)] = 187523, - [SMALL_STATE(4873)] = 187537, - [SMALL_STATE(4874)] = 187551, - [SMALL_STATE(4875)] = 187565, - [SMALL_STATE(4876)] = 187579, - [SMALL_STATE(4877)] = 187593, - [SMALL_STATE(4878)] = 187607, - [SMALL_STATE(4879)] = 187621, - [SMALL_STATE(4880)] = 187635, - [SMALL_STATE(4881)] = 187649, - [SMALL_STATE(4882)] = 187663, - [SMALL_STATE(4883)] = 187673, - [SMALL_STATE(4884)] = 187687, - [SMALL_STATE(4885)] = 187701, - [SMALL_STATE(4886)] = 187715, - [SMALL_STATE(4887)] = 187729, - [SMALL_STATE(4888)] = 187743, - [SMALL_STATE(4889)] = 187757, - [SMALL_STATE(4890)] = 187771, - [SMALL_STATE(4891)] = 187785, - [SMALL_STATE(4892)] = 187799, - [SMALL_STATE(4893)] = 187813, - [SMALL_STATE(4894)] = 187827, - [SMALL_STATE(4895)] = 187841, - [SMALL_STATE(4896)] = 187855, - [SMALL_STATE(4897)] = 187869, - [SMALL_STATE(4898)] = 187883, - [SMALL_STATE(4899)] = 187897, - [SMALL_STATE(4900)] = 187911, - [SMALL_STATE(4901)] = 187925, - [SMALL_STATE(4902)] = 187939, - [SMALL_STATE(4903)] = 187953, - [SMALL_STATE(4904)] = 187967, - [SMALL_STATE(4905)] = 187981, - [SMALL_STATE(4906)] = 187995, - [SMALL_STATE(4907)] = 188007, - [SMALL_STATE(4908)] = 188021, - [SMALL_STATE(4909)] = 188035, - [SMALL_STATE(4910)] = 188045, - [SMALL_STATE(4911)] = 188055, - [SMALL_STATE(4912)] = 188069, - [SMALL_STATE(4913)] = 188083, - [SMALL_STATE(4914)] = 188097, - [SMALL_STATE(4915)] = 188109, - [SMALL_STATE(4916)] = 188123, - [SMALL_STATE(4917)] = 188137, - [SMALL_STATE(4918)] = 188151, - [SMALL_STATE(4919)] = 188165, - [SMALL_STATE(4920)] = 188179, - [SMALL_STATE(4921)] = 188191, - [SMALL_STATE(4922)] = 188203, - [SMALL_STATE(4923)] = 188215, - [SMALL_STATE(4924)] = 188229, - [SMALL_STATE(4925)] = 188243, - [SMALL_STATE(4926)] = 188257, - [SMALL_STATE(4927)] = 188271, - [SMALL_STATE(4928)] = 188281, - [SMALL_STATE(4929)] = 188295, - [SMALL_STATE(4930)] = 188307, - [SMALL_STATE(4931)] = 188321, - [SMALL_STATE(4932)] = 188335, - [SMALL_STATE(4933)] = 188349, - [SMALL_STATE(4934)] = 188363, - [SMALL_STATE(4935)] = 188377, - [SMALL_STATE(4936)] = 188387, - [SMALL_STATE(4937)] = 188401, - [SMALL_STATE(4938)] = 188415, - [SMALL_STATE(4939)] = 188429, - [SMALL_STATE(4940)] = 188443, - [SMALL_STATE(4941)] = 188457, - [SMALL_STATE(4942)] = 188471, - [SMALL_STATE(4943)] = 188485, - [SMALL_STATE(4944)] = 188499, - [SMALL_STATE(4945)] = 188513, - [SMALL_STATE(4946)] = 188527, - [SMALL_STATE(4947)] = 188541, - [SMALL_STATE(4948)] = 188551, - [SMALL_STATE(4949)] = 188561, - [SMALL_STATE(4950)] = 188575, - [SMALL_STATE(4951)] = 188589, - [SMALL_STATE(4952)] = 188603, - [SMALL_STATE(4953)] = 188617, - [SMALL_STATE(4954)] = 188631, - [SMALL_STATE(4955)] = 188645, - [SMALL_STATE(4956)] = 188659, - [SMALL_STATE(4957)] = 188673, - [SMALL_STATE(4958)] = 188687, - [SMALL_STATE(4959)] = 188701, - [SMALL_STATE(4960)] = 188715, - [SMALL_STATE(4961)] = 188729, - [SMALL_STATE(4962)] = 188743, - [SMALL_STATE(4963)] = 188757, - [SMALL_STATE(4964)] = 188771, - [SMALL_STATE(4965)] = 188785, - [SMALL_STATE(4966)] = 188799, - [SMALL_STATE(4967)] = 188813, - [SMALL_STATE(4968)] = 188827, - [SMALL_STATE(4969)] = 188841, - [SMALL_STATE(4970)] = 188855, - [SMALL_STATE(4971)] = 188869, - [SMALL_STATE(4972)] = 188880, - [SMALL_STATE(4973)] = 188889, - [SMALL_STATE(4974)] = 188898, - [SMALL_STATE(4975)] = 188907, - [SMALL_STATE(4976)] = 188916, - [SMALL_STATE(4977)] = 188925, - [SMALL_STATE(4978)] = 188936, - [SMALL_STATE(4979)] = 188947, - [SMALL_STATE(4980)] = 188956, - [SMALL_STATE(4981)] = 188967, - [SMALL_STATE(4982)] = 188978, - [SMALL_STATE(4983)] = 188989, - [SMALL_STATE(4984)] = 188998, - [SMALL_STATE(4985)] = 189009, - [SMALL_STATE(4986)] = 189020, - [SMALL_STATE(4987)] = 189031, - [SMALL_STATE(4988)] = 189042, - [SMALL_STATE(4989)] = 189053, - [SMALL_STATE(4990)] = 189064, - [SMALL_STATE(4991)] = 189075, - [SMALL_STATE(4992)] = 189084, - [SMALL_STATE(4993)] = 189093, - [SMALL_STATE(4994)] = 189102, - [SMALL_STATE(4995)] = 189113, - [SMALL_STATE(4996)] = 189124, - [SMALL_STATE(4997)] = 189133, - [SMALL_STATE(4998)] = 189144, - [SMALL_STATE(4999)] = 189155, - [SMALL_STATE(5000)] = 189166, - [SMALL_STATE(5001)] = 189175, - [SMALL_STATE(5002)] = 189184, - [SMALL_STATE(5003)] = 189193, - [SMALL_STATE(5004)] = 189204, - [SMALL_STATE(5005)] = 189213, - [SMALL_STATE(5006)] = 189224, - [SMALL_STATE(5007)] = 189233, - [SMALL_STATE(5008)] = 189244, - [SMALL_STATE(5009)] = 189255, - [SMALL_STATE(5010)] = 189264, - [SMALL_STATE(5011)] = 189275, - [SMALL_STATE(5012)] = 189286, - [SMALL_STATE(5013)] = 189295, - [SMALL_STATE(5014)] = 189304, - [SMALL_STATE(5015)] = 189315, - [SMALL_STATE(5016)] = 189326, - [SMALL_STATE(5017)] = 189335, - [SMALL_STATE(5018)] = 189346, - [SMALL_STATE(5019)] = 189355, - [SMALL_STATE(5020)] = 189364, - [SMALL_STATE(5021)] = 189375, - [SMALL_STATE(5022)] = 189384, - [SMALL_STATE(5023)] = 189393, - [SMALL_STATE(5024)] = 189402, - [SMALL_STATE(5025)] = 189413, - [SMALL_STATE(5026)] = 189424, - [SMALL_STATE(5027)] = 189435, - [SMALL_STATE(5028)] = 189446, - [SMALL_STATE(5029)] = 189455, - [SMALL_STATE(5030)] = 189464, - [SMALL_STATE(5031)] = 189475, - [SMALL_STATE(5032)] = 189484, - [SMALL_STATE(5033)] = 189493, - [SMALL_STATE(5034)] = 189504, - [SMALL_STATE(5035)] = 189513, - [SMALL_STATE(5036)] = 189522, - [SMALL_STATE(5037)] = 189533, - [SMALL_STATE(5038)] = 189544, - [SMALL_STATE(5039)] = 189555, - [SMALL_STATE(5040)] = 189566, - [SMALL_STATE(5041)] = 189577, - [SMALL_STATE(5042)] = 189586, - [SMALL_STATE(5043)] = 189595, - [SMALL_STATE(5044)] = 189604, - [SMALL_STATE(5045)] = 189613, - [SMALL_STATE(5046)] = 189624, - [SMALL_STATE(5047)] = 189635, - [SMALL_STATE(5048)] = 189644, - [SMALL_STATE(5049)] = 189655, - [SMALL_STATE(5050)] = 189666, - [SMALL_STATE(5051)] = 189677, - [SMALL_STATE(5052)] = 189688, - [SMALL_STATE(5053)] = 189699, - [SMALL_STATE(5054)] = 189710, - [SMALL_STATE(5055)] = 189719, - [SMALL_STATE(5056)] = 189728, - [SMALL_STATE(5057)] = 189739, - [SMALL_STATE(5058)] = 189748, - [SMALL_STATE(5059)] = 189759, - [SMALL_STATE(5060)] = 189768, - [SMALL_STATE(5061)] = 189779, - [SMALL_STATE(5062)] = 189790, - [SMALL_STATE(5063)] = 189799, - [SMALL_STATE(5064)] = 189810, - [SMALL_STATE(5065)] = 189819, - [SMALL_STATE(5066)] = 189828, - [SMALL_STATE(5067)] = 189837, - [SMALL_STATE(5068)] = 189848, - [SMALL_STATE(5069)] = 189859, - [SMALL_STATE(5070)] = 189870, - [SMALL_STATE(5071)] = 189881, - [SMALL_STATE(5072)] = 189892, - [SMALL_STATE(5073)] = 189903, - [SMALL_STATE(5074)] = 189914, - [SMALL_STATE(5075)] = 189925, - [SMALL_STATE(5076)] = 189934, - [SMALL_STATE(5077)] = 189945, - [SMALL_STATE(5078)] = 189954, - [SMALL_STATE(5079)] = 189963, - [SMALL_STATE(5080)] = 189972, - [SMALL_STATE(5081)] = 189983, - [SMALL_STATE(5082)] = 189994, - [SMALL_STATE(5083)] = 190003, - [SMALL_STATE(5084)] = 190014, - [SMALL_STATE(5085)] = 190025, - [SMALL_STATE(5086)] = 190036, - [SMALL_STATE(5087)] = 190045, - [SMALL_STATE(5088)] = 190054, - [SMALL_STATE(5089)] = 190065, - [SMALL_STATE(5090)] = 190074, - [SMALL_STATE(5091)] = 190085, - [SMALL_STATE(5092)] = 190096, - [SMALL_STATE(5093)] = 190107, - [SMALL_STATE(5094)] = 190118, - [SMALL_STATE(5095)] = 190129, - [SMALL_STATE(5096)] = 190138, - [SMALL_STATE(5097)] = 190149, - [SMALL_STATE(5098)] = 190160, - [SMALL_STATE(5099)] = 190171, - [SMALL_STATE(5100)] = 190182, - [SMALL_STATE(5101)] = 190193, - [SMALL_STATE(5102)] = 190204, - [SMALL_STATE(5103)] = 190215, - [SMALL_STATE(5104)] = 190224, - [SMALL_STATE(5105)] = 190235, - [SMALL_STATE(5106)] = 190244, - [SMALL_STATE(5107)] = 190255, - [SMALL_STATE(5108)] = 190266, - [SMALL_STATE(5109)] = 190275, - [SMALL_STATE(5110)] = 190284, - [SMALL_STATE(5111)] = 190293, - [SMALL_STATE(5112)] = 190302, - [SMALL_STATE(5113)] = 190311, - [SMALL_STATE(5114)] = 190322, - [SMALL_STATE(5115)] = 190333, - [SMALL_STATE(5116)] = 190344, - [SMALL_STATE(5117)] = 190355, - [SMALL_STATE(5118)] = 190366, - [SMALL_STATE(5119)] = 190375, - [SMALL_STATE(5120)] = 190384, - [SMALL_STATE(5121)] = 190395, - [SMALL_STATE(5122)] = 190406, - [SMALL_STATE(5123)] = 190417, - [SMALL_STATE(5124)] = 190428, - [SMALL_STATE(5125)] = 190439, - [SMALL_STATE(5126)] = 190450, - [SMALL_STATE(5127)] = 190459, - [SMALL_STATE(5128)] = 190468, - [SMALL_STATE(5129)] = 190479, - [SMALL_STATE(5130)] = 190490, - [SMALL_STATE(5131)] = 190501, - [SMALL_STATE(5132)] = 190510, - [SMALL_STATE(5133)] = 190521, - [SMALL_STATE(5134)] = 190530, - [SMALL_STATE(5135)] = 190541, - [SMALL_STATE(5136)] = 190550, - [SMALL_STATE(5137)] = 190561, - [SMALL_STATE(5138)] = 190572, - [SMALL_STATE(5139)] = 190581, - [SMALL_STATE(5140)] = 190590, - [SMALL_STATE(5141)] = 190601, - [SMALL_STATE(5142)] = 190612, - [SMALL_STATE(5143)] = 190623, - [SMALL_STATE(5144)] = 190634, - [SMALL_STATE(5145)] = 190645, - [SMALL_STATE(5146)] = 190654, - [SMALL_STATE(5147)] = 190663, - [SMALL_STATE(5148)] = 190674, - [SMALL_STATE(5149)] = 190685, - [SMALL_STATE(5150)] = 190694, - [SMALL_STATE(5151)] = 190703, - [SMALL_STATE(5152)] = 190712, - [SMALL_STATE(5153)] = 190721, - [SMALL_STATE(5154)] = 190730, - [SMALL_STATE(5155)] = 190739, - [SMALL_STATE(5156)] = 190748, - [SMALL_STATE(5157)] = 190759, - [SMALL_STATE(5158)] = 190768, - [SMALL_STATE(5159)] = 190779, - [SMALL_STATE(5160)] = 190790, - [SMALL_STATE(5161)] = 190799, - [SMALL_STATE(5162)] = 190808, - [SMALL_STATE(5163)] = 190819, - [SMALL_STATE(5164)] = 190828, - [SMALL_STATE(5165)] = 190839, - [SMALL_STATE(5166)] = 190848, - [SMALL_STATE(5167)] = 190859, - [SMALL_STATE(5168)] = 190870, - [SMALL_STATE(5169)] = 190881, - [SMALL_STATE(5170)] = 190892, - [SMALL_STATE(5171)] = 190903, - [SMALL_STATE(5172)] = 190914, - [SMALL_STATE(5173)] = 190923, - [SMALL_STATE(5174)] = 190932, - [SMALL_STATE(5175)] = 190943, - [SMALL_STATE(5176)] = 190954, - [SMALL_STATE(5177)] = 190963, - [SMALL_STATE(5178)] = 190972, - [SMALL_STATE(5179)] = 190981, - [SMALL_STATE(5180)] = 190992, - [SMALL_STATE(5181)] = 191001, - [SMALL_STATE(5182)] = 191010, - [SMALL_STATE(5183)] = 191021, - [SMALL_STATE(5184)] = 191032, - [SMALL_STATE(5185)] = 191043, - [SMALL_STATE(5186)] = 191052, - [SMALL_STATE(5187)] = 191063, - [SMALL_STATE(5188)] = 191071, - [SMALL_STATE(5189)] = 191079, - [SMALL_STATE(5190)] = 191087, - [SMALL_STATE(5191)] = 191095, - [SMALL_STATE(5192)] = 191103, - [SMALL_STATE(5193)] = 191111, - [SMALL_STATE(5194)] = 191119, - [SMALL_STATE(5195)] = 191127, - [SMALL_STATE(5196)] = 191135, - [SMALL_STATE(5197)] = 191143, - [SMALL_STATE(5198)] = 191151, - [SMALL_STATE(5199)] = 191159, - [SMALL_STATE(5200)] = 191167, - [SMALL_STATE(5201)] = 191175, - [SMALL_STATE(5202)] = 191183, - [SMALL_STATE(5203)] = 191191, - [SMALL_STATE(5204)] = 191199, - [SMALL_STATE(5205)] = 191207, - [SMALL_STATE(5206)] = 191215, - [SMALL_STATE(5207)] = 191223, - [SMALL_STATE(5208)] = 191231, - [SMALL_STATE(5209)] = 191239, - [SMALL_STATE(5210)] = 191247, - [SMALL_STATE(5211)] = 191255, - [SMALL_STATE(5212)] = 191263, - [SMALL_STATE(5213)] = 191271, - [SMALL_STATE(5214)] = 191279, - [SMALL_STATE(5215)] = 191287, - [SMALL_STATE(5216)] = 191295, - [SMALL_STATE(5217)] = 191303, - [SMALL_STATE(5218)] = 191311, - [SMALL_STATE(5219)] = 191319, - [SMALL_STATE(5220)] = 191327, - [SMALL_STATE(5221)] = 191335, - [SMALL_STATE(5222)] = 191343, - [SMALL_STATE(5223)] = 191351, - [SMALL_STATE(5224)] = 191359, - [SMALL_STATE(5225)] = 191367, - [SMALL_STATE(5226)] = 191375, - [SMALL_STATE(5227)] = 191383, - [SMALL_STATE(5228)] = 191391, - [SMALL_STATE(5229)] = 191399, - [SMALL_STATE(5230)] = 191407, - [SMALL_STATE(5231)] = 191415, - [SMALL_STATE(5232)] = 191423, - [SMALL_STATE(5233)] = 191431, - [SMALL_STATE(5234)] = 191439, - [SMALL_STATE(5235)] = 191447, - [SMALL_STATE(5236)] = 191455, - [SMALL_STATE(5237)] = 191463, - [SMALL_STATE(5238)] = 191471, - [SMALL_STATE(5239)] = 191479, - [SMALL_STATE(5240)] = 191487, - [SMALL_STATE(5241)] = 191495, - [SMALL_STATE(5242)] = 191503, - [SMALL_STATE(5243)] = 191511, - [SMALL_STATE(5244)] = 191519, - [SMALL_STATE(5245)] = 191527, - [SMALL_STATE(5246)] = 191535, - [SMALL_STATE(5247)] = 191543, - [SMALL_STATE(5248)] = 191551, - [SMALL_STATE(5249)] = 191559, - [SMALL_STATE(5250)] = 191567, - [SMALL_STATE(5251)] = 191575, - [SMALL_STATE(5252)] = 191583, - [SMALL_STATE(5253)] = 191591, - [SMALL_STATE(5254)] = 191599, - [SMALL_STATE(5255)] = 191607, - [SMALL_STATE(5256)] = 191615, - [SMALL_STATE(5257)] = 191623, - [SMALL_STATE(5258)] = 191631, - [SMALL_STATE(5259)] = 191639, - [SMALL_STATE(5260)] = 191647, - [SMALL_STATE(5261)] = 191655, - [SMALL_STATE(5262)] = 191663, - [SMALL_STATE(5263)] = 191671, - [SMALL_STATE(5264)] = 191679, - [SMALL_STATE(5265)] = 191687, - [SMALL_STATE(5266)] = 191695, - [SMALL_STATE(5267)] = 191703, - [SMALL_STATE(5268)] = 191711, - [SMALL_STATE(5269)] = 191719, - [SMALL_STATE(5270)] = 191727, - [SMALL_STATE(5271)] = 191735, - [SMALL_STATE(5272)] = 191743, - [SMALL_STATE(5273)] = 191751, - [SMALL_STATE(5274)] = 191759, - [SMALL_STATE(5275)] = 191767, - [SMALL_STATE(5276)] = 191775, - [SMALL_STATE(5277)] = 191783, - [SMALL_STATE(5278)] = 191791, - [SMALL_STATE(5279)] = 191799, - [SMALL_STATE(5280)] = 191807, - [SMALL_STATE(5281)] = 191815, - [SMALL_STATE(5282)] = 191823, - [SMALL_STATE(5283)] = 191831, - [SMALL_STATE(5284)] = 191839, - [SMALL_STATE(5285)] = 191847, - [SMALL_STATE(5286)] = 191855, - [SMALL_STATE(5287)] = 191863, - [SMALL_STATE(5288)] = 191871, - [SMALL_STATE(5289)] = 191879, - [SMALL_STATE(5290)] = 191887, - [SMALL_STATE(5291)] = 191895, - [SMALL_STATE(5292)] = 191903, - [SMALL_STATE(5293)] = 191911, - [SMALL_STATE(5294)] = 191919, - [SMALL_STATE(5295)] = 191927, - [SMALL_STATE(5296)] = 191935, - [SMALL_STATE(5297)] = 191943, - [SMALL_STATE(5298)] = 191951, - [SMALL_STATE(5299)] = 191959, - [SMALL_STATE(5300)] = 191967, - [SMALL_STATE(5301)] = 191975, - [SMALL_STATE(5302)] = 191983, - [SMALL_STATE(5303)] = 191991, - [SMALL_STATE(5304)] = 191999, - [SMALL_STATE(5305)] = 192007, - [SMALL_STATE(5306)] = 192015, - [SMALL_STATE(5307)] = 192023, - [SMALL_STATE(5308)] = 192031, - [SMALL_STATE(5309)] = 192039, - [SMALL_STATE(5310)] = 192047, - [SMALL_STATE(5311)] = 192055, - [SMALL_STATE(5312)] = 192063, - [SMALL_STATE(5313)] = 192071, - [SMALL_STATE(5314)] = 192079, - [SMALL_STATE(5315)] = 192087, - [SMALL_STATE(5316)] = 192095, - [SMALL_STATE(5317)] = 192103, - [SMALL_STATE(5318)] = 192111, - [SMALL_STATE(5319)] = 192119, - [SMALL_STATE(5320)] = 192127, - [SMALL_STATE(5321)] = 192135, - [SMALL_STATE(5322)] = 192143, - [SMALL_STATE(5323)] = 192151, - [SMALL_STATE(5324)] = 192159, - [SMALL_STATE(5325)] = 192167, - [SMALL_STATE(5326)] = 192175, - [SMALL_STATE(5327)] = 192183, - [SMALL_STATE(5328)] = 192191, - [SMALL_STATE(5329)] = 192199, - [SMALL_STATE(5330)] = 192207, - [SMALL_STATE(5331)] = 192215, - [SMALL_STATE(5332)] = 192223, - [SMALL_STATE(5333)] = 192231, - [SMALL_STATE(5334)] = 192239, - [SMALL_STATE(5335)] = 192247, - [SMALL_STATE(5336)] = 192255, - [SMALL_STATE(5337)] = 192263, - [SMALL_STATE(5338)] = 192271, - [SMALL_STATE(5339)] = 192279, - [SMALL_STATE(5340)] = 192287, - [SMALL_STATE(5341)] = 192295, - [SMALL_STATE(5342)] = 192303, - [SMALL_STATE(5343)] = 192311, - [SMALL_STATE(5344)] = 192319, - [SMALL_STATE(5345)] = 192327, - [SMALL_STATE(5346)] = 192335, - [SMALL_STATE(5347)] = 192343, - [SMALL_STATE(5348)] = 192351, - [SMALL_STATE(5349)] = 192359, - [SMALL_STATE(5350)] = 192367, - [SMALL_STATE(5351)] = 192375, - [SMALL_STATE(5352)] = 192383, - [SMALL_STATE(5353)] = 192391, - [SMALL_STATE(5354)] = 192399, - [SMALL_STATE(5355)] = 192407, - [SMALL_STATE(5356)] = 192415, - [SMALL_STATE(5357)] = 192423, - [SMALL_STATE(5358)] = 192431, - [SMALL_STATE(5359)] = 192439, - [SMALL_STATE(5360)] = 192447, - [SMALL_STATE(5361)] = 192455, - [SMALL_STATE(5362)] = 192463, - [SMALL_STATE(5363)] = 192471, - [SMALL_STATE(5364)] = 192479, - [SMALL_STATE(5365)] = 192487, - [SMALL_STATE(5366)] = 192495, - [SMALL_STATE(5367)] = 192503, - [SMALL_STATE(5368)] = 192511, - [SMALL_STATE(5369)] = 192519, - [SMALL_STATE(5370)] = 192527, - [SMALL_STATE(5371)] = 192535, - [SMALL_STATE(5372)] = 192543, - [SMALL_STATE(5373)] = 192551, - [SMALL_STATE(5374)] = 192559, - [SMALL_STATE(5375)] = 192567, - [SMALL_STATE(5376)] = 192575, - [SMALL_STATE(5377)] = 192583, - [SMALL_STATE(5378)] = 192591, - [SMALL_STATE(5379)] = 192599, - [SMALL_STATE(5380)] = 192607, - [SMALL_STATE(5381)] = 192615, - [SMALL_STATE(5382)] = 192623, - [SMALL_STATE(5383)] = 192631, - [SMALL_STATE(5384)] = 192639, - [SMALL_STATE(5385)] = 192647, - [SMALL_STATE(5386)] = 192655, - [SMALL_STATE(5387)] = 192663, - [SMALL_STATE(5388)] = 192671, - [SMALL_STATE(5389)] = 192679, - [SMALL_STATE(5390)] = 192687, - [SMALL_STATE(5391)] = 192695, - [SMALL_STATE(5392)] = 192703, - [SMALL_STATE(5393)] = 192711, - [SMALL_STATE(5394)] = 192719, - [SMALL_STATE(5395)] = 192727, - [SMALL_STATE(5396)] = 192735, - [SMALL_STATE(5397)] = 192743, - [SMALL_STATE(5398)] = 192751, - [SMALL_STATE(5399)] = 192759, - [SMALL_STATE(5400)] = 192767, - [SMALL_STATE(5401)] = 192775, - [SMALL_STATE(5402)] = 192783, - [SMALL_STATE(5403)] = 192791, - [SMALL_STATE(5404)] = 192799, - [SMALL_STATE(5405)] = 192807, - [SMALL_STATE(5406)] = 192815, - [SMALL_STATE(5407)] = 192823, - [SMALL_STATE(5408)] = 192831, - [SMALL_STATE(5409)] = 192839, - [SMALL_STATE(5410)] = 192847, - [SMALL_STATE(5411)] = 192855, - [SMALL_STATE(5412)] = 192863, - [SMALL_STATE(5413)] = 192871, - [SMALL_STATE(5414)] = 192879, - [SMALL_STATE(5415)] = 192887, - [SMALL_STATE(5416)] = 192895, - [SMALL_STATE(5417)] = 192903, - [SMALL_STATE(5418)] = 192911, - [SMALL_STATE(5419)] = 192919, - [SMALL_STATE(5420)] = 192927, - [SMALL_STATE(5421)] = 192935, - [SMALL_STATE(5422)] = 192943, - [SMALL_STATE(5423)] = 192951, - [SMALL_STATE(5424)] = 192959, - [SMALL_STATE(5425)] = 192967, - [SMALL_STATE(5426)] = 192975, - [SMALL_STATE(5427)] = 192983, - [SMALL_STATE(5428)] = 192991, - [SMALL_STATE(5429)] = 192999, - [SMALL_STATE(5430)] = 193007, - [SMALL_STATE(5431)] = 193015, - [SMALL_STATE(5432)] = 193023, - [SMALL_STATE(5433)] = 193031, - [SMALL_STATE(5434)] = 193039, - [SMALL_STATE(5435)] = 193047, - [SMALL_STATE(5436)] = 193055, - [SMALL_STATE(5437)] = 193063, - [SMALL_STATE(5438)] = 193071, - [SMALL_STATE(5439)] = 193079, - [SMALL_STATE(5440)] = 193087, - [SMALL_STATE(5441)] = 193095, - [SMALL_STATE(5442)] = 193103, - [SMALL_STATE(5443)] = 193111, - [SMALL_STATE(5444)] = 193119, - [SMALL_STATE(5445)] = 193127, - [SMALL_STATE(5446)] = 193135, - [SMALL_STATE(5447)] = 193143, - [SMALL_STATE(5448)] = 193151, - [SMALL_STATE(5449)] = 193159, - [SMALL_STATE(5450)] = 193167, - [SMALL_STATE(5451)] = 193175, - [SMALL_STATE(5452)] = 193183, - [SMALL_STATE(5453)] = 193191, - [SMALL_STATE(5454)] = 193199, - [SMALL_STATE(5455)] = 193207, - [SMALL_STATE(5456)] = 193215, - [SMALL_STATE(5457)] = 193223, - [SMALL_STATE(5458)] = 193231, - [SMALL_STATE(5459)] = 193239, - [SMALL_STATE(5460)] = 193247, - [SMALL_STATE(5461)] = 193255, - [SMALL_STATE(5462)] = 193263, - [SMALL_STATE(5463)] = 193271, - [SMALL_STATE(5464)] = 193279, - [SMALL_STATE(5465)] = 193287, - [SMALL_STATE(5466)] = 193295, - [SMALL_STATE(5467)] = 193303, - [SMALL_STATE(5468)] = 193311, - [SMALL_STATE(5469)] = 193319, - [SMALL_STATE(5470)] = 193327, - [SMALL_STATE(5471)] = 193335, - [SMALL_STATE(5472)] = 193343, - [SMALL_STATE(5473)] = 193351, - [SMALL_STATE(5474)] = 193359, - [SMALL_STATE(5475)] = 193367, - [SMALL_STATE(5476)] = 193375, - [SMALL_STATE(5477)] = 193383, - [SMALL_STATE(5478)] = 193391, - [SMALL_STATE(5479)] = 193399, - [SMALL_STATE(5480)] = 193407, - [SMALL_STATE(5481)] = 193415, - [SMALL_STATE(5482)] = 193423, - [SMALL_STATE(5483)] = 193431, - [SMALL_STATE(5484)] = 193439, - [SMALL_STATE(5485)] = 193447, - [SMALL_STATE(5486)] = 193455, - [SMALL_STATE(5487)] = 193463, - [SMALL_STATE(5488)] = 193471, - [SMALL_STATE(5489)] = 193479, - [SMALL_STATE(5490)] = 193487, - [SMALL_STATE(5491)] = 193495, - [SMALL_STATE(5492)] = 193503, - [SMALL_STATE(5493)] = 193511, - [SMALL_STATE(5494)] = 193519, - [SMALL_STATE(5495)] = 193527, - [SMALL_STATE(5496)] = 193535, - [SMALL_STATE(5497)] = 193543, - [SMALL_STATE(5498)] = 193551, - [SMALL_STATE(5499)] = 193559, - [SMALL_STATE(5500)] = 193567, - [SMALL_STATE(5501)] = 193575, - [SMALL_STATE(5502)] = 193583, - [SMALL_STATE(5503)] = 193591, - [SMALL_STATE(5504)] = 193599, - [SMALL_STATE(5505)] = 193607, - [SMALL_STATE(5506)] = 193615, - [SMALL_STATE(5507)] = 193623, - [SMALL_STATE(5508)] = 193631, - [SMALL_STATE(5509)] = 193639, - [SMALL_STATE(5510)] = 193647, - [SMALL_STATE(5511)] = 193655, - [SMALL_STATE(5512)] = 193663, - [SMALL_STATE(5513)] = 193671, - [SMALL_STATE(5514)] = 193679, - [SMALL_STATE(5515)] = 193687, - [SMALL_STATE(5516)] = 193695, - [SMALL_STATE(5517)] = 193703, - [SMALL_STATE(5518)] = 193711, - [SMALL_STATE(5519)] = 193719, - [SMALL_STATE(5520)] = 193727, - [SMALL_STATE(5521)] = 193735, - [SMALL_STATE(5522)] = 193743, - [SMALL_STATE(5523)] = 193751, - [SMALL_STATE(5524)] = 193759, - [SMALL_STATE(5525)] = 193767, - [SMALL_STATE(5526)] = 193775, - [SMALL_STATE(5527)] = 193783, - [SMALL_STATE(5528)] = 193791, - [SMALL_STATE(5529)] = 193799, - [SMALL_STATE(5530)] = 193807, - [SMALL_STATE(5531)] = 193815, - [SMALL_STATE(5532)] = 193823, - [SMALL_STATE(5533)] = 193831, - [SMALL_STATE(5534)] = 193839, - [SMALL_STATE(5535)] = 193847, - [SMALL_STATE(5536)] = 193855, - [SMALL_STATE(5537)] = 193863, - [SMALL_STATE(5538)] = 193871, - [SMALL_STATE(5539)] = 193879, - [SMALL_STATE(5540)] = 193887, - [SMALL_STATE(5541)] = 193895, - [SMALL_STATE(5542)] = 193903, - [SMALL_STATE(5543)] = 193911, - [SMALL_STATE(5544)] = 193919, - [SMALL_STATE(5545)] = 193927, - [SMALL_STATE(5546)] = 193935, - [SMALL_STATE(5547)] = 193943, - [SMALL_STATE(5548)] = 193951, - [SMALL_STATE(5549)] = 193959, - [SMALL_STATE(5550)] = 193967, - [SMALL_STATE(5551)] = 193975, - [SMALL_STATE(5552)] = 193983, + [SMALL_STATE(978)] = 0, + [SMALL_STATE(979)] = 111, + [SMALL_STATE(980)] = 232, + [SMALL_STATE(981)] = 351, + [SMALL_STATE(982)] = 470, + [SMALL_STATE(983)] = 545, + [SMALL_STATE(984)] = 620, + [SMALL_STATE(985)] = 691, + [SMALL_STATE(986)] = 762, + [SMALL_STATE(987)] = 837, + [SMALL_STATE(988)] = 912, + [SMALL_STATE(989)] = 1031, + [SMALL_STATE(990)] = 1150, + [SMALL_STATE(991)] = 1225, + [SMALL_STATE(992)] = 1300, + [SMALL_STATE(993)] = 1375, + [SMALL_STATE(994)] = 1494, + [SMALL_STATE(995)] = 1603, + [SMALL_STATE(996)] = 1678, + [SMALL_STATE(997)] = 1753, + [SMALL_STATE(998)] = 1828, + [SMALL_STATE(999)] = 1947, + [SMALL_STATE(1000)] = 2056, + [SMALL_STATE(1001)] = 2175, + [SMALL_STATE(1002)] = 2296, + [SMALL_STATE(1003)] = 2371, + [SMALL_STATE(1004)] = 2492, + [SMALL_STATE(1005)] = 2611, + [SMALL_STATE(1006)] = 2682, + [SMALL_STATE(1007)] = 2801, + [SMALL_STATE(1008)] = 2920, + [SMALL_STATE(1009)] = 3039, + [SMALL_STATE(1010)] = 3114, + [SMALL_STATE(1011)] = 3233, + [SMALL_STATE(1012)] = 3352, + [SMALL_STATE(1013)] = 3471, + [SMALL_STATE(1014)] = 3546, + [SMALL_STATE(1015)] = 3621, + [SMALL_STATE(1016)] = 3696, + [SMALL_STATE(1017)] = 3815, + [SMALL_STATE(1018)] = 3890, + [SMALL_STATE(1019)] = 4009, + [SMALL_STATE(1020)] = 4084, + [SMALL_STATE(1021)] = 4203, + [SMALL_STATE(1022)] = 4274, + [SMALL_STATE(1023)] = 4395, + [SMALL_STATE(1024)] = 4514, + [SMALL_STATE(1025)] = 4635, + [SMALL_STATE(1026)] = 4710, + [SMALL_STATE(1027)] = 4831, + [SMALL_STATE(1028)] = 4952, + [SMALL_STATE(1029)] = 5071, + [SMALL_STATE(1030)] = 5146, + [SMALL_STATE(1031)] = 5221, + [SMALL_STATE(1032)] = 5340, + [SMALL_STATE(1033)] = 5459, + [SMALL_STATE(1034)] = 5578, + [SMALL_STATE(1035)] = 5649, + [SMALL_STATE(1036)] = 5720, + [SMALL_STATE(1037)] = 5839, + [SMALL_STATE(1038)] = 5914, + [SMALL_STATE(1039)] = 6033, + [SMALL_STATE(1040)] = 6152, + [SMALL_STATE(1041)] = 6227, + [SMALL_STATE(1042)] = 6348, + [SMALL_STATE(1043)] = 6459, + [SMALL_STATE(1044)] = 6578, + [SMALL_STATE(1045)] = 6697, + [SMALL_STATE(1046)] = 6818, + [SMALL_STATE(1047)] = 6937, + [SMALL_STATE(1048)] = 7058, + [SMALL_STATE(1049)] = 7179, + [SMALL_STATE(1050)] = 7300, + [SMALL_STATE(1051)] = 7421, + [SMALL_STATE(1052)] = 7542, + [SMALL_STATE(1053)] = 7663, + [SMALL_STATE(1054)] = 7784, + [SMALL_STATE(1055)] = 7905, + [SMALL_STATE(1056)] = 8026, + [SMALL_STATE(1057)] = 8147, + [SMALL_STATE(1058)] = 8268, + [SMALL_STATE(1059)] = 8387, + [SMALL_STATE(1060)] = 8508, + [SMALL_STATE(1061)] = 8583, + [SMALL_STATE(1062)] = 8702, + [SMALL_STATE(1063)] = 8821, + [SMALL_STATE(1064)] = 8940, + [SMALL_STATE(1065)] = 9015, + [SMALL_STATE(1066)] = 9085, + [SMALL_STATE(1067)] = 9155, + [SMALL_STATE(1068)] = 9225, + [SMALL_STATE(1069)] = 9295, + [SMALL_STATE(1070)] = 9365, + [SMALL_STATE(1071)] = 9435, + [SMALL_STATE(1072)] = 9553, + [SMALL_STATE(1073)] = 9623, + [SMALL_STATE(1074)] = 9693, + [SMALL_STATE(1075)] = 9763, + [SMALL_STATE(1076)] = 9833, + [SMALL_STATE(1077)] = 9903, + [SMALL_STATE(1078)] = 9973, + [SMALL_STATE(1079)] = 10043, + [SMALL_STATE(1080)] = 10113, + [SMALL_STATE(1081)] = 10183, + [SMALL_STATE(1082)] = 10253, + [SMALL_STATE(1083)] = 10323, + [SMALL_STATE(1084)] = 10393, + [SMALL_STATE(1085)] = 10463, + [SMALL_STATE(1086)] = 10533, + [SMALL_STATE(1087)] = 10603, + [SMALL_STATE(1088)] = 10673, + [SMALL_STATE(1089)] = 10743, + [SMALL_STATE(1090)] = 10813, + [SMALL_STATE(1091)] = 10883, + [SMALL_STATE(1092)] = 10953, + [SMALL_STATE(1093)] = 11023, + [SMALL_STATE(1094)] = 11093, + [SMALL_STATE(1095)] = 11163, + [SMALL_STATE(1096)] = 11233, + [SMALL_STATE(1097)] = 11303, + [SMALL_STATE(1098)] = 11373, + [SMALL_STATE(1099)] = 11443, + [SMALL_STATE(1100)] = 11513, + [SMALL_STATE(1101)] = 11583, + [SMALL_STATE(1102)] = 11693, + [SMALL_STATE(1103)] = 11763, + [SMALL_STATE(1104)] = 11833, + [SMALL_STATE(1105)] = 11903, + [SMALL_STATE(1106)] = 11973, + [SMALL_STATE(1107)] = 12043, + [SMALL_STATE(1108)] = 12113, + [SMALL_STATE(1109)] = 12183, + [SMALL_STATE(1110)] = 12253, + [SMALL_STATE(1111)] = 12323, + [SMALL_STATE(1112)] = 12393, + [SMALL_STATE(1113)] = 12463, + [SMALL_STATE(1114)] = 12533, + [SMALL_STATE(1115)] = 12603, + [SMALL_STATE(1116)] = 12673, + [SMALL_STATE(1117)] = 12743, + [SMALL_STATE(1118)] = 12813, + [SMALL_STATE(1119)] = 12883, + [SMALL_STATE(1120)] = 12953, + [SMALL_STATE(1121)] = 13023, + [SMALL_STATE(1122)] = 13093, + [SMALL_STATE(1123)] = 13163, + [SMALL_STATE(1124)] = 13233, + [SMALL_STATE(1125)] = 13303, + [SMALL_STATE(1126)] = 13373, + [SMALL_STATE(1127)] = 13443, + [SMALL_STATE(1128)] = 13513, + [SMALL_STATE(1129)] = 13583, + [SMALL_STATE(1130)] = 13653, + [SMALL_STATE(1131)] = 13723, + [SMALL_STATE(1132)] = 13793, + [SMALL_STATE(1133)] = 13863, + [SMALL_STATE(1134)] = 13933, + [SMALL_STATE(1135)] = 14003, + [SMALL_STATE(1136)] = 14073, + [SMALL_STATE(1137)] = 14143, + [SMALL_STATE(1138)] = 14213, + [SMALL_STATE(1139)] = 14283, + [SMALL_STATE(1140)] = 14353, + [SMALL_STATE(1141)] = 14423, + [SMALL_STATE(1142)] = 14493, + [SMALL_STATE(1143)] = 14611, + [SMALL_STATE(1144)] = 14729, + [SMALL_STATE(1145)] = 14799, + [SMALL_STATE(1146)] = 14869, + [SMALL_STATE(1147)] = 14939, + [SMALL_STATE(1148)] = 15009, + [SMALL_STATE(1149)] = 15127, + [SMALL_STATE(1150)] = 15197, + [SMALL_STATE(1151)] = 15267, + [SMALL_STATE(1152)] = 15337, + [SMALL_STATE(1153)] = 15407, + [SMALL_STATE(1154)] = 15477, + [SMALL_STATE(1155)] = 15547, + [SMALL_STATE(1156)] = 15617, + [SMALL_STATE(1157)] = 15687, + [SMALL_STATE(1158)] = 15757, + [SMALL_STATE(1159)] = 15827, + [SMALL_STATE(1160)] = 15897, + [SMALL_STATE(1161)] = 15967, + [SMALL_STATE(1162)] = 16077, + [SMALL_STATE(1163)] = 16147, + [SMALL_STATE(1164)] = 16217, + [SMALL_STATE(1165)] = 16287, + [SMALL_STATE(1166)] = 16357, + [SMALL_STATE(1167)] = 16427, + [SMALL_STATE(1168)] = 16497, + [SMALL_STATE(1169)] = 16567, + [SMALL_STATE(1170)] = 16637, + [SMALL_STATE(1171)] = 16707, + [SMALL_STATE(1172)] = 16777, + [SMALL_STATE(1173)] = 16847, + [SMALL_STATE(1174)] = 16917, + [SMALL_STATE(1175)] = 16987, + [SMALL_STATE(1176)] = 17057, + [SMALL_STATE(1177)] = 17127, + [SMALL_STATE(1178)] = 17197, + [SMALL_STATE(1179)] = 17267, + [SMALL_STATE(1180)] = 17387, + [SMALL_STATE(1181)] = 17457, + [SMALL_STATE(1182)] = 17527, + [SMALL_STATE(1183)] = 17597, + [SMALL_STATE(1184)] = 17715, + [SMALL_STATE(1185)] = 17785, + [SMALL_STATE(1186)] = 17855, + [SMALL_STATE(1187)] = 17925, + [SMALL_STATE(1188)] = 17995, + [SMALL_STATE(1189)] = 18065, + [SMALL_STATE(1190)] = 18135, + [SMALL_STATE(1191)] = 18205, + [SMALL_STATE(1192)] = 18275, + [SMALL_STATE(1193)] = 18393, + [SMALL_STATE(1194)] = 18463, + [SMALL_STATE(1195)] = 18533, + [SMALL_STATE(1196)] = 18603, + [SMALL_STATE(1197)] = 18721, + [SMALL_STATE(1198)] = 18791, + [SMALL_STATE(1199)] = 18861, + [SMALL_STATE(1200)] = 18931, + [SMALL_STATE(1201)] = 19001, + [SMALL_STATE(1202)] = 19119, + [SMALL_STATE(1203)] = 19189, + [SMALL_STATE(1204)] = 19259, + [SMALL_STATE(1205)] = 19331, + [SMALL_STATE(1206)] = 19401, + [SMALL_STATE(1207)] = 19471, + [SMALL_STATE(1208)] = 19541, + [SMALL_STATE(1209)] = 19611, + [SMALL_STATE(1210)] = 19729, + [SMALL_STATE(1211)] = 19799, + [SMALL_STATE(1212)] = 19869, + [SMALL_STATE(1213)] = 19939, + [SMALL_STATE(1214)] = 20009, + [SMALL_STATE(1215)] = 20079, + [SMALL_STATE(1216)] = 20149, + [SMALL_STATE(1217)] = 20267, + [SMALL_STATE(1218)] = 20337, + [SMALL_STATE(1219)] = 20407, + [SMALL_STATE(1220)] = 20477, + [SMALL_STATE(1221)] = 20547, + [SMALL_STATE(1222)] = 20665, + [SMALL_STATE(1223)] = 20735, + [SMALL_STATE(1224)] = 20805, + [SMALL_STATE(1225)] = 20875, + [SMALL_STATE(1226)] = 20945, + [SMALL_STATE(1227)] = 21015, + [SMALL_STATE(1228)] = 21085, + [SMALL_STATE(1229)] = 21203, + [SMALL_STATE(1230)] = 21273, + [SMALL_STATE(1231)] = 21343, + [SMALL_STATE(1232)] = 21413, + [SMALL_STATE(1233)] = 21531, + [SMALL_STATE(1234)] = 21601, + [SMALL_STATE(1235)] = 21671, + [SMALL_STATE(1236)] = 21741, + [SMALL_STATE(1237)] = 21811, + [SMALL_STATE(1238)] = 21881, + [SMALL_STATE(1239)] = 21951, + [SMALL_STATE(1240)] = 22021, + [SMALL_STATE(1241)] = 22091, + [SMALL_STATE(1242)] = 22161, + [SMALL_STATE(1243)] = 22231, + [SMALL_STATE(1244)] = 22301, + [SMALL_STATE(1245)] = 22371, + [SMALL_STATE(1246)] = 22441, + [SMALL_STATE(1247)] = 22511, + [SMALL_STATE(1248)] = 22581, + [SMALL_STATE(1249)] = 22651, + [SMALL_STATE(1250)] = 22769, + [SMALL_STATE(1251)] = 22839, + [SMALL_STATE(1252)] = 22909, + [SMALL_STATE(1253)] = 22979, + [SMALL_STATE(1254)] = 23097, + [SMALL_STATE(1255)] = 23167, + [SMALL_STATE(1256)] = 23237, + [SMALL_STATE(1257)] = 23307, + [SMALL_STATE(1258)] = 23377, + [SMALL_STATE(1259)] = 23447, + [SMALL_STATE(1260)] = 23517, + [SMALL_STATE(1261)] = 23587, + [SMALL_STATE(1262)] = 23657, + [SMALL_STATE(1263)] = 23727, + [SMALL_STATE(1264)] = 23797, + [SMALL_STATE(1265)] = 23867, + [SMALL_STATE(1266)] = 23937, + [SMALL_STATE(1267)] = 24007, + [SMALL_STATE(1268)] = 24077, + [SMALL_STATE(1269)] = 24147, + [SMALL_STATE(1270)] = 24217, + [SMALL_STATE(1271)] = 24287, + [SMALL_STATE(1272)] = 24357, + [SMALL_STATE(1273)] = 24472, + [SMALL_STATE(1274)] = 24587, + [SMALL_STATE(1275)] = 24702, + [SMALL_STATE(1276)] = 24771, + [SMALL_STATE(1277)] = 24840, + [SMALL_STATE(1278)] = 24909, + [SMALL_STATE(1279)] = 25024, + [SMALL_STATE(1280)] = 25139, + [SMALL_STATE(1281)] = 25208, + [SMALL_STATE(1282)] = 25277, + [SMALL_STATE(1283)] = 25346, + [SMALL_STATE(1284)] = 25461, + [SMALL_STATE(1285)] = 25576, + [SMALL_STATE(1286)] = 25691, + [SMALL_STATE(1287)] = 25806, + [SMALL_STATE(1288)] = 25921, + [SMALL_STATE(1289)] = 26036, + [SMALL_STATE(1290)] = 26151, + [SMALL_STATE(1291)] = 26266, + [SMALL_STATE(1292)] = 26381, + [SMALL_STATE(1293)] = 26496, + [SMALL_STATE(1294)] = 26611, + [SMALL_STATE(1295)] = 26726, + [SMALL_STATE(1296)] = 26841, + [SMALL_STATE(1297)] = 26956, + [SMALL_STATE(1298)] = 27025, + [SMALL_STATE(1299)] = 27140, + [SMALL_STATE(1300)] = 27249, + [SMALL_STATE(1301)] = 27364, + [SMALL_STATE(1302)] = 27479, + [SMALL_STATE(1303)] = 27594, + [SMALL_STATE(1304)] = 27709, + [SMALL_STATE(1305)] = 27824, + [SMALL_STATE(1306)] = 27939, + [SMALL_STATE(1307)] = 28054, + [SMALL_STATE(1308)] = 28123, + [SMALL_STATE(1309)] = 28192, + [SMALL_STATE(1310)] = 28261, + [SMALL_STATE(1311)] = 28376, + [SMALL_STATE(1312)] = 28445, + [SMALL_STATE(1313)] = 28560, + [SMALL_STATE(1314)] = 28629, + [SMALL_STATE(1315)] = 28698, + [SMALL_STATE(1316)] = 28767, + [SMALL_STATE(1317)] = 28882, + [SMALL_STATE(1318)] = 28951, + [SMALL_STATE(1319)] = 29020, + [SMALL_STATE(1320)] = 29089, + [SMALL_STATE(1321)] = 29204, + [SMALL_STATE(1322)] = 29319, + [SMALL_STATE(1323)] = 29434, + [SMALL_STATE(1324)] = 29503, + [SMALL_STATE(1325)] = 29620, + [SMALL_STATE(1326)] = 29689, + [SMALL_STATE(1327)] = 29758, + [SMALL_STATE(1328)] = 29873, + [SMALL_STATE(1329)] = 29942, + [SMALL_STATE(1330)] = 30057, + [SMALL_STATE(1331)] = 30126, + [SMALL_STATE(1332)] = 30241, + [SMALL_STATE(1333)] = 30310, + [SMALL_STATE(1334)] = 30425, + [SMALL_STATE(1335)] = 30540, + [SMALL_STATE(1336)] = 30609, + [SMALL_STATE(1337)] = 30724, + [SMALL_STATE(1338)] = 30839, + [SMALL_STATE(1339)] = 30954, + [SMALL_STATE(1340)] = 31069, + [SMALL_STATE(1341)] = 31184, + [SMALL_STATE(1342)] = 31299, + [SMALL_STATE(1343)] = 31414, + [SMALL_STATE(1344)] = 31529, + [SMALL_STATE(1345)] = 31644, + [SMALL_STATE(1346)] = 31759, + [SMALL_STATE(1347)] = 31874, + [SMALL_STATE(1348)] = 31989, + [SMALL_STATE(1349)] = 32104, + [SMALL_STATE(1350)] = 32219, + [SMALL_STATE(1351)] = 32334, + [SMALL_STATE(1352)] = 32449, + [SMALL_STATE(1353)] = 32564, + [SMALL_STATE(1354)] = 32679, + [SMALL_STATE(1355)] = 32794, + [SMALL_STATE(1356)] = 32909, + [SMALL_STATE(1357)] = 33024, + [SMALL_STATE(1358)] = 33139, + [SMALL_STATE(1359)] = 33254, + [SMALL_STATE(1360)] = 33369, + [SMALL_STATE(1361)] = 33484, + [SMALL_STATE(1362)] = 33553, + [SMALL_STATE(1363)] = 33622, + [SMALL_STATE(1364)] = 33691, + [SMALL_STATE(1365)] = 33806, + [SMALL_STATE(1366)] = 33921, + [SMALL_STATE(1367)] = 34036, + [SMALL_STATE(1368)] = 34151, + [SMALL_STATE(1369)] = 34266, + [SMALL_STATE(1370)] = 34381, + [SMALL_STATE(1371)] = 34496, + [SMALL_STATE(1372)] = 34611, + [SMALL_STATE(1373)] = 34680, + [SMALL_STATE(1374)] = 34795, + [SMALL_STATE(1375)] = 34864, + [SMALL_STATE(1376)] = 34979, + [SMALL_STATE(1377)] = 35048, + [SMALL_STATE(1378)] = 35117, + [SMALL_STATE(1379)] = 35232, + [SMALL_STATE(1380)] = 35347, + [SMALL_STATE(1381)] = 35462, + [SMALL_STATE(1382)] = 35577, + [SMALL_STATE(1383)] = 35692, + [SMALL_STATE(1384)] = 35807, + [SMALL_STATE(1385)] = 35922, + [SMALL_STATE(1386)] = 36037, + [SMALL_STATE(1387)] = 36152, + [SMALL_STATE(1388)] = 36267, + [SMALL_STATE(1389)] = 36382, + [SMALL_STATE(1390)] = 36497, + [SMALL_STATE(1391)] = 36612, + [SMALL_STATE(1392)] = 36727, + [SMALL_STATE(1393)] = 36842, + [SMALL_STATE(1394)] = 36957, + [SMALL_STATE(1395)] = 37072, + [SMALL_STATE(1396)] = 37187, + [SMALL_STATE(1397)] = 37302, + [SMALL_STATE(1398)] = 37417, + [SMALL_STATE(1399)] = 37532, + [SMALL_STATE(1400)] = 37647, + [SMALL_STATE(1401)] = 37716, + [SMALL_STATE(1402)] = 37831, + [SMALL_STATE(1403)] = 37948, + [SMALL_STATE(1404)] = 38063, + [SMALL_STATE(1405)] = 38178, + [SMALL_STATE(1406)] = 38293, + [SMALL_STATE(1407)] = 38408, + [SMALL_STATE(1408)] = 38523, + [SMALL_STATE(1409)] = 38638, + [SMALL_STATE(1410)] = 38753, + [SMALL_STATE(1411)] = 38868, + [SMALL_STATE(1412)] = 38983, + [SMALL_STATE(1413)] = 39052, + [SMALL_STATE(1414)] = 39167, + [SMALL_STATE(1415)] = 39282, + [SMALL_STATE(1416)] = 39397, + [SMALL_STATE(1417)] = 39512, + [SMALL_STATE(1418)] = 39627, + [SMALL_STATE(1419)] = 39742, + [SMALL_STATE(1420)] = 39811, + [SMALL_STATE(1421)] = 39926, + [SMALL_STATE(1422)] = 40041, + [SMALL_STATE(1423)] = 40156, + [SMALL_STATE(1424)] = 40271, + [SMALL_STATE(1425)] = 40386, + [SMALL_STATE(1426)] = 40455, + [SMALL_STATE(1427)] = 40524, + [SMALL_STATE(1428)] = 40593, + [SMALL_STATE(1429)] = 40708, + [SMALL_STATE(1430)] = 40823, + [SMALL_STATE(1431)] = 40892, + [SMALL_STATE(1432)] = 40961, + [SMALL_STATE(1433)] = 41030, + [SMALL_STATE(1434)] = 41099, + [SMALL_STATE(1435)] = 41168, + [SMALL_STATE(1436)] = 41237, + [SMALL_STATE(1437)] = 41346, + [SMALL_STATE(1438)] = 41415, + [SMALL_STATE(1439)] = 41530, + [SMALL_STATE(1440)] = 41645, + [SMALL_STATE(1441)] = 41714, + [SMALL_STATE(1442)] = 41829, + [SMALL_STATE(1443)] = 41944, + [SMALL_STATE(1444)] = 42059, + [SMALL_STATE(1445)] = 42174, + [SMALL_STATE(1446)] = 42243, + [SMALL_STATE(1447)] = 42358, + [SMALL_STATE(1448)] = 42473, + [SMALL_STATE(1449)] = 42588, + [SMALL_STATE(1450)] = 42703, + [SMALL_STATE(1451)] = 42772, + [SMALL_STATE(1452)] = 42887, + [SMALL_STATE(1453)] = 42956, + [SMALL_STATE(1454)] = 43071, + [SMALL_STATE(1455)] = 43186, + [SMALL_STATE(1456)] = 43301, + [SMALL_STATE(1457)] = 43416, + [SMALL_STATE(1458)] = 43531, + [SMALL_STATE(1459)] = 43646, + [SMALL_STATE(1460)] = 43761, + [SMALL_STATE(1461)] = 43876, + [SMALL_STATE(1462)] = 43991, + [SMALL_STATE(1463)] = 44106, + [SMALL_STATE(1464)] = 44221, + [SMALL_STATE(1465)] = 44336, + [SMALL_STATE(1466)] = 44451, + [SMALL_STATE(1467)] = 44566, + [SMALL_STATE(1468)] = 44681, + [SMALL_STATE(1469)] = 44796, + [SMALL_STATE(1470)] = 44911, + [SMALL_STATE(1471)] = 45026, + [SMALL_STATE(1472)] = 45141, + [SMALL_STATE(1473)] = 45256, + [SMALL_STATE(1474)] = 45371, + [SMALL_STATE(1475)] = 45486, + [SMALL_STATE(1476)] = 45601, + [SMALL_STATE(1477)] = 45716, + [SMALL_STATE(1478)] = 45831, + [SMALL_STATE(1479)] = 45946, + [SMALL_STATE(1480)] = 46061, + [SMALL_STATE(1481)] = 46176, + [SMALL_STATE(1482)] = 46291, + [SMALL_STATE(1483)] = 46406, + [SMALL_STATE(1484)] = 46521, + [SMALL_STATE(1485)] = 46636, + [SMALL_STATE(1486)] = 46751, + [SMALL_STATE(1487)] = 46866, + [SMALL_STATE(1488)] = 46981, + [SMALL_STATE(1489)] = 47096, + [SMALL_STATE(1490)] = 47211, + [SMALL_STATE(1491)] = 47326, + [SMALL_STATE(1492)] = 47441, + [SMALL_STATE(1493)] = 47556, + [SMALL_STATE(1494)] = 47671, + [SMALL_STATE(1495)] = 47786, + [SMALL_STATE(1496)] = 47901, + [SMALL_STATE(1497)] = 48016, + [SMALL_STATE(1498)] = 48131, + [SMALL_STATE(1499)] = 48246, + [SMALL_STATE(1500)] = 48361, + [SMALL_STATE(1501)] = 48476, + [SMALL_STATE(1502)] = 48591, + [SMALL_STATE(1503)] = 48706, + [SMALL_STATE(1504)] = 48821, + [SMALL_STATE(1505)] = 48936, + [SMALL_STATE(1506)] = 49051, + [SMALL_STATE(1507)] = 49166, + [SMALL_STATE(1508)] = 49281, + [SMALL_STATE(1509)] = 49398, + [SMALL_STATE(1510)] = 49467, + [SMALL_STATE(1511)] = 49582, + [SMALL_STATE(1512)] = 49651, + [SMALL_STATE(1513)] = 49720, + [SMALL_STATE(1514)] = 49789, + [SMALL_STATE(1515)] = 49858, + [SMALL_STATE(1516)] = 49927, + [SMALL_STATE(1517)] = 49996, + [SMALL_STATE(1518)] = 50111, + [SMALL_STATE(1519)] = 50180, + [SMALL_STATE(1520)] = 50295, + [SMALL_STATE(1521)] = 50364, + [SMALL_STATE(1522)] = 50479, + [SMALL_STATE(1523)] = 50548, + [SMALL_STATE(1524)] = 50617, + [SMALL_STATE(1525)] = 50686, + [SMALL_STATE(1526)] = 50755, + [SMALL_STATE(1527)] = 50824, + [SMALL_STATE(1528)] = 50893, + [SMALL_STATE(1529)] = 50962, + [SMALL_STATE(1530)] = 51031, + [SMALL_STATE(1531)] = 51100, + [SMALL_STATE(1532)] = 51169, + [SMALL_STATE(1533)] = 51238, + [SMALL_STATE(1534)] = 51307, + [SMALL_STATE(1535)] = 51422, + [SMALL_STATE(1536)] = 51537, + [SMALL_STATE(1537)] = 51606, + [SMALL_STATE(1538)] = 51675, + [SMALL_STATE(1539)] = 51744, + [SMALL_STATE(1540)] = 51859, + [SMALL_STATE(1541)] = 51974, + [SMALL_STATE(1542)] = 52089, + [SMALL_STATE(1543)] = 52204, + [SMALL_STATE(1544)] = 52319, + [SMALL_STATE(1545)] = 52434, + [SMALL_STATE(1546)] = 52549, + [SMALL_STATE(1547)] = 52664, + [SMALL_STATE(1548)] = 52779, + [SMALL_STATE(1549)] = 52896, + [SMALL_STATE(1550)] = 52965, + [SMALL_STATE(1551)] = 53080, + [SMALL_STATE(1552)] = 53149, + [SMALL_STATE(1553)] = 53218, + [SMALL_STATE(1554)] = 53287, + [SMALL_STATE(1555)] = 53402, + [SMALL_STATE(1556)] = 53471, + [SMALL_STATE(1557)] = 53540, + [SMALL_STATE(1558)] = 53655, + [SMALL_STATE(1559)] = 53772, + [SMALL_STATE(1560)] = 53841, + [SMALL_STATE(1561)] = 53910, + [SMALL_STATE(1562)] = 53979, + [SMALL_STATE(1563)] = 54048, + [SMALL_STATE(1564)] = 54117, + [SMALL_STATE(1565)] = 54186, + [SMALL_STATE(1566)] = 54255, + [SMALL_STATE(1567)] = 54370, + [SMALL_STATE(1568)] = 54439, + [SMALL_STATE(1569)] = 54508, + [SMALL_STATE(1570)] = 54577, + [SMALL_STATE(1571)] = 54646, + [SMALL_STATE(1572)] = 54715, + [SMALL_STATE(1573)] = 54830, + [SMALL_STATE(1574)] = 54947, + [SMALL_STATE(1575)] = 55016, + [SMALL_STATE(1576)] = 55085, + [SMALL_STATE(1577)] = 55200, + [SMALL_STATE(1578)] = 55269, + [SMALL_STATE(1579)] = 55338, + [SMALL_STATE(1580)] = 55407, + [SMALL_STATE(1581)] = 55476, + [SMALL_STATE(1582)] = 55591, + [SMALL_STATE(1583)] = 55660, + [SMALL_STATE(1584)] = 55729, + [SMALL_STATE(1585)] = 55844, + [SMALL_STATE(1586)] = 55913, + [SMALL_STATE(1587)] = 56028, + [SMALL_STATE(1588)] = 56097, + [SMALL_STATE(1589)] = 56166, + [SMALL_STATE(1590)] = 56235, + [SMALL_STATE(1591)] = 56304, + [SMALL_STATE(1592)] = 56373, + [SMALL_STATE(1593)] = 56488, + [SMALL_STATE(1594)] = 56557, + [SMALL_STATE(1595)] = 56672, + [SMALL_STATE(1596)] = 56787, + [SMALL_STATE(1597)] = 56856, + [SMALL_STATE(1598)] = 56925, + [SMALL_STATE(1599)] = 57040, + [SMALL_STATE(1600)] = 57155, + [SMALL_STATE(1601)] = 57224, + [SMALL_STATE(1602)] = 57339, + [SMALL_STATE(1603)] = 57454, + [SMALL_STATE(1604)] = 57569, + [SMALL_STATE(1605)] = 57638, + [SMALL_STATE(1606)] = 57753, + [SMALL_STATE(1607)] = 57822, + [SMALL_STATE(1608)] = 57937, + [SMALL_STATE(1609)] = 58006, + [SMALL_STATE(1610)] = 58121, + [SMALL_STATE(1611)] = 58190, + [SMALL_STATE(1612)] = 58305, + [SMALL_STATE(1613)] = 58420, + [SMALL_STATE(1614)] = 58535, + [SMALL_STATE(1615)] = 58650, + [SMALL_STATE(1616)] = 58719, + [SMALL_STATE(1617)] = 58788, + [SMALL_STATE(1618)] = 58857, + [SMALL_STATE(1619)] = 58972, + [SMALL_STATE(1620)] = 59087, + [SMALL_STATE(1621)] = 59202, + [SMALL_STATE(1622)] = 59317, + [SMALL_STATE(1623)] = 59432, + [SMALL_STATE(1624)] = 59547, + [SMALL_STATE(1625)] = 59662, + [SMALL_STATE(1626)] = 59777, + [SMALL_STATE(1627)] = 59892, + [SMALL_STATE(1628)] = 60007, + [SMALL_STATE(1629)] = 60122, + [SMALL_STATE(1630)] = 60237, + [SMALL_STATE(1631)] = 60352, + [SMALL_STATE(1632)] = 60467, + [SMALL_STATE(1633)] = 60582, + [SMALL_STATE(1634)] = 60697, + [SMALL_STATE(1635)] = 60812, + [SMALL_STATE(1636)] = 60927, + [SMALL_STATE(1637)] = 61042, + [SMALL_STATE(1638)] = 61157, + [SMALL_STATE(1639)] = 61272, + [SMALL_STATE(1640)] = 61387, + [SMALL_STATE(1641)] = 61502, + [SMALL_STATE(1642)] = 61617, + [SMALL_STATE(1643)] = 61732, + [SMALL_STATE(1644)] = 61847, + [SMALL_STATE(1645)] = 61962, + [SMALL_STATE(1646)] = 62077, + [SMALL_STATE(1647)] = 62192, + [SMALL_STATE(1648)] = 62307, + [SMALL_STATE(1649)] = 62422, + [SMALL_STATE(1650)] = 62537, + [SMALL_STATE(1651)] = 62652, + [SMALL_STATE(1652)] = 62767, + [SMALL_STATE(1653)] = 62882, + [SMALL_STATE(1654)] = 62997, + [SMALL_STATE(1655)] = 63112, + [SMALL_STATE(1656)] = 63227, + [SMALL_STATE(1657)] = 63342, + [SMALL_STATE(1658)] = 63457, + [SMALL_STATE(1659)] = 63572, + [SMALL_STATE(1660)] = 63687, + [SMALL_STATE(1661)] = 63802, + [SMALL_STATE(1662)] = 63917, + [SMALL_STATE(1663)] = 64032, + [SMALL_STATE(1664)] = 64147, + [SMALL_STATE(1665)] = 64262, + [SMALL_STATE(1666)] = 64331, + [SMALL_STATE(1667)] = 64446, + [SMALL_STATE(1668)] = 64561, + [SMALL_STATE(1669)] = 64676, + [SMALL_STATE(1670)] = 64745, + [SMALL_STATE(1671)] = 64860, + [SMALL_STATE(1672)] = 64975, + [SMALL_STATE(1673)] = 65090, + [SMALL_STATE(1674)] = 65159, + [SMALL_STATE(1675)] = 65274, + [SMALL_STATE(1676)] = 65389, + [SMALL_STATE(1677)] = 65504, + [SMALL_STATE(1678)] = 65619, + [SMALL_STATE(1679)] = 65734, + [SMALL_STATE(1680)] = 65803, + [SMALL_STATE(1681)] = 65918, + [SMALL_STATE(1682)] = 66033, + [SMALL_STATE(1683)] = 66148, + [SMALL_STATE(1684)] = 66217, + [SMALL_STATE(1685)] = 66286, + [SMALL_STATE(1686)] = 66401, + [SMALL_STATE(1687)] = 66470, + [SMALL_STATE(1688)] = 66585, + [SMALL_STATE(1689)] = 66654, + [SMALL_STATE(1690)] = 66723, + [SMALL_STATE(1691)] = 66792, + [SMALL_STATE(1692)] = 66907, + [SMALL_STATE(1693)] = 67022, + [SMALL_STATE(1694)] = 67137, + [SMALL_STATE(1695)] = 67252, + [SMALL_STATE(1696)] = 67367, + [SMALL_STATE(1697)] = 67482, + [SMALL_STATE(1698)] = 67597, + [SMALL_STATE(1699)] = 67712, + [SMALL_STATE(1700)] = 67781, + [SMALL_STATE(1701)] = 67896, + [SMALL_STATE(1702)] = 67965, + [SMALL_STATE(1703)] = 68080, + [SMALL_STATE(1704)] = 68195, + [SMALL_STATE(1705)] = 68310, + [SMALL_STATE(1706)] = 68425, + [SMALL_STATE(1707)] = 68540, + [SMALL_STATE(1708)] = 68655, + [SMALL_STATE(1709)] = 68770, + [SMALL_STATE(1710)] = 68885, + [SMALL_STATE(1711)] = 69000, + [SMALL_STATE(1712)] = 69115, + [SMALL_STATE(1713)] = 69230, + [SMALL_STATE(1714)] = 69345, + [SMALL_STATE(1715)] = 69460, + [SMALL_STATE(1716)] = 69529, + [SMALL_STATE(1717)] = 69644, + [SMALL_STATE(1718)] = 69759, + [SMALL_STATE(1719)] = 69874, + [SMALL_STATE(1720)] = 69989, + [SMALL_STATE(1721)] = 70104, + [SMALL_STATE(1722)] = 70219, + [SMALL_STATE(1723)] = 70334, + [SMALL_STATE(1724)] = 70440, + [SMALL_STATE(1725)] = 70546, + [SMALL_STATE(1726)] = 70652, + [SMALL_STATE(1727)] = 70758, + [SMALL_STATE(1728)] = 70860, + [SMALL_STATE(1729)] = 70952, + [SMALL_STATE(1730)] = 71026, + [SMALL_STATE(1731)] = 71131, + [SMALL_STATE(1732)] = 71198, + [SMALL_STATE(1733)] = 71265, + [SMALL_STATE(1734)] = 71370, + [SMALL_STATE(1735)] = 71445, + [SMALL_STATE(1736)] = 71520, + [SMALL_STATE(1737)] = 71597, + [SMALL_STATE(1738)] = 71672, + [SMALL_STATE(1739)] = 71775, + [SMALL_STATE(1740)] = 71878, + [SMALL_STATE(1741)] = 71980, + [SMALL_STATE(1742)] = 72080, + [SMALL_STATE(1743)] = 72182, + [SMALL_STATE(1744)] = 72284, + [SMALL_STATE(1745)] = 72386, + [SMALL_STATE(1746)] = 72488, + [SMALL_STATE(1747)] = 72586, + [SMALL_STATE(1748)] = 72688, + [SMALL_STATE(1749)] = 72790, + [SMALL_STATE(1750)] = 72892, + [SMALL_STATE(1751)] = 72994, + [SMALL_STATE(1752)] = 73096, + [SMALL_STATE(1753)] = 73195, + [SMALL_STATE(1754)] = 73296, + [SMALL_STATE(1755)] = 73395, + [SMALL_STATE(1756)] = 73494, + [SMALL_STATE(1757)] = 73593, + [SMALL_STATE(1758)] = 73694, + [SMALL_STATE(1759)] = 73767, + [SMALL_STATE(1760)] = 73866, + [SMALL_STATE(1761)] = 73965, + [SMALL_STATE(1762)] = 74061, + [SMALL_STATE(1763)] = 74127, + [SMALL_STATE(1764)] = 74193, + [SMALL_STATE(1765)] = 74261, + [SMALL_STATE(1766)] = 74357, + [SMALL_STATE(1767)] = 74453, + [SMALL_STATE(1768)] = 74549, + [SMALL_STATE(1769)] = 74640, + [SMALL_STATE(1770)] = 74701, + [SMALL_STATE(1771)] = 74792, + [SMALL_STATE(1772)] = 74849, + [SMALL_STATE(1773)] = 74940, + [SMALL_STATE(1774)] = 75005, + [SMALL_STATE(1775)] = 75096, + [SMALL_STATE(1776)] = 75187, + [SMALL_STATE(1777)] = 75250, + [SMALL_STATE(1778)] = 75307, + [SMALL_STATE(1779)] = 75370, + [SMALL_STATE(1780)] = 75433, + [SMALL_STATE(1781)] = 75496, + [SMALL_STATE(1782)] = 75553, + [SMALL_STATE(1783)] = 75610, + [SMALL_STATE(1784)] = 75667, + [SMALL_STATE(1785)] = 75730, + [SMALL_STATE(1786)] = 75793, + [SMALL_STATE(1787)] = 75884, + [SMALL_STATE(1788)] = 75947, + [SMALL_STATE(1789)] = 76004, + [SMALL_STATE(1790)] = 76095, + [SMALL_STATE(1791)] = 76158, + [SMALL_STATE(1792)] = 76215, + [SMALL_STATE(1793)] = 76276, + [SMALL_STATE(1794)] = 76367, + [SMALL_STATE(1795)] = 76455, + [SMALL_STATE(1796)] = 76543, + [SMALL_STATE(1797)] = 76631, + [SMALL_STATE(1798)] = 76723, + [SMALL_STATE(1799)] = 76811, + [SMALL_STATE(1800)] = 76903, + [SMALL_STATE(1801)] = 76991, + [SMALL_STATE(1802)] = 77079, + [SMALL_STATE(1803)] = 77167, + [SMALL_STATE(1804)] = 77255, + [SMALL_STATE(1805)] = 77343, + [SMALL_STATE(1806)] = 77431, + [SMALL_STATE(1807)] = 77519, + [SMALL_STATE(1808)] = 77607, + [SMALL_STATE(1809)] = 77695, + [SMALL_STATE(1810)] = 77787, + [SMALL_STATE(1811)] = 77875, + [SMALL_STATE(1812)] = 77967, + [SMALL_STATE(1813)] = 78055, + [SMALL_STATE(1814)] = 78143, + [SMALL_STATE(1815)] = 78235, + [SMALL_STATE(1816)] = 78327, + [SMALL_STATE(1817)] = 78415, + [SMALL_STATE(1818)] = 78507, + [SMALL_STATE(1819)] = 78599, + [SMALL_STATE(1820)] = 78687, + [SMALL_STATE(1821)] = 78779, + [SMALL_STATE(1822)] = 78867, + [SMALL_STATE(1823)] = 78959, + [SMALL_STATE(1824)] = 79047, + [SMALL_STATE(1825)] = 79135, + [SMALL_STATE(1826)] = 79223, + [SMALL_STATE(1827)] = 79311, + [SMALL_STATE(1828)] = 79399, + [SMALL_STATE(1829)] = 79487, + [SMALL_STATE(1830)] = 79575, + [SMALL_STATE(1831)] = 79667, + [SMALL_STATE(1832)] = 79755, + [SMALL_STATE(1833)] = 79847, + [SMALL_STATE(1834)] = 79935, + [SMALL_STATE(1835)] = 80027, + [SMALL_STATE(1836)] = 80115, + [SMALL_STATE(1837)] = 80203, + [SMALL_STATE(1838)] = 80295, + [SMALL_STATE(1839)] = 80383, + [SMALL_STATE(1840)] = 80475, + [SMALL_STATE(1841)] = 80563, + [SMALL_STATE(1842)] = 80651, + [SMALL_STATE(1843)] = 80739, + [SMALL_STATE(1844)] = 80831, + [SMALL_STATE(1845)] = 80919, + [SMALL_STATE(1846)] = 81007, + [SMALL_STATE(1847)] = 81095, + [SMALL_STATE(1848)] = 81187, + [SMALL_STATE(1849)] = 81279, + [SMALL_STATE(1850)] = 81371, + [SMALL_STATE(1851)] = 81463, + [SMALL_STATE(1852)] = 81555, + [SMALL_STATE(1853)] = 81659, + [SMALL_STATE(1854)] = 81747, + [SMALL_STATE(1855)] = 81835, + [SMALL_STATE(1856)] = 81923, + [SMALL_STATE(1857)] = 82011, + [SMALL_STATE(1858)] = 82099, + [SMALL_STATE(1859)] = 82187, + [SMALL_STATE(1860)] = 82275, + [SMALL_STATE(1861)] = 82363, + [SMALL_STATE(1862)] = 82451, + [SMALL_STATE(1863)] = 82539, + [SMALL_STATE(1864)] = 82627, + [SMALL_STATE(1865)] = 82715, + [SMALL_STATE(1866)] = 82803, + [SMALL_STATE(1867)] = 82907, + [SMALL_STATE(1868)] = 82995, + [SMALL_STATE(1869)] = 83083, + [SMALL_STATE(1870)] = 83171, + [SMALL_STATE(1871)] = 83259, + [SMALL_STATE(1872)] = 83347, + [SMALL_STATE(1873)] = 83435, + [SMALL_STATE(1874)] = 83523, + [SMALL_STATE(1875)] = 83611, + [SMALL_STATE(1876)] = 83699, + [SMALL_STATE(1877)] = 83787, + [SMALL_STATE(1878)] = 83875, + [SMALL_STATE(1879)] = 83963, + [SMALL_STATE(1880)] = 84051, + [SMALL_STATE(1881)] = 84139, + [SMALL_STATE(1882)] = 84227, + [SMALL_STATE(1883)] = 84315, + [SMALL_STATE(1884)] = 84403, + [SMALL_STATE(1885)] = 84491, + [SMALL_STATE(1886)] = 84579, + [SMALL_STATE(1887)] = 84667, + [SMALL_STATE(1888)] = 84755, + [SMALL_STATE(1889)] = 84847, + [SMALL_STATE(1890)] = 84951, + [SMALL_STATE(1891)] = 85039, + [SMALL_STATE(1892)] = 85127, + [SMALL_STATE(1893)] = 85215, + [SMALL_STATE(1894)] = 85303, + [SMALL_STATE(1895)] = 85391, + [SMALL_STATE(1896)] = 85479, + [SMALL_STATE(1897)] = 85567, + [SMALL_STATE(1898)] = 85655, + [SMALL_STATE(1899)] = 85743, + [SMALL_STATE(1900)] = 85835, + [SMALL_STATE(1901)] = 85938, + [SMALL_STATE(1902)] = 86039, + [SMALL_STATE(1903)] = 86140, + [SMALL_STATE(1904)] = 86241, + [SMALL_STATE(1905)] = 86344, + [SMALL_STATE(1906)] = 86445, + [SMALL_STATE(1907)] = 86544, + [SMALL_STATE(1908)] = 86643, + [SMALL_STATE(1909)] = 86742, + [SMALL_STATE(1910)] = 86841, + [SMALL_STATE(1911)] = 86940, + [SMALL_STATE(1912)] = 87039, + [SMALL_STATE(1913)] = 87138, + [SMALL_STATE(1914)] = 87237, + [SMALL_STATE(1915)] = 87336, + [SMALL_STATE(1916)] = 87435, + [SMALL_STATE(1917)] = 87534, + [SMALL_STATE(1918)] = 87630, + [SMALL_STATE(1919)] = 87726, + [SMALL_STATE(1920)] = 87822, + [SMALL_STATE(1921)] = 87918, + [SMALL_STATE(1922)] = 88006, + [SMALL_STATE(1923)] = 88102, + [SMALL_STATE(1924)] = 88198, + [SMALL_STATE(1925)] = 88294, + [SMALL_STATE(1926)] = 88390, + [SMALL_STATE(1927)] = 88486, + [SMALL_STATE(1928)] = 88574, + [SMALL_STATE(1929)] = 88670, + [SMALL_STATE(1930)] = 88724, + [SMALL_STATE(1931)] = 88794, + [SMALL_STATE(1932)] = 88848, + [SMALL_STATE(1933)] = 88902, + [SMALL_STATE(1934)] = 88956, + [SMALL_STATE(1935)] = 89018, + [SMALL_STATE(1936)] = 89090, + [SMALL_STATE(1937)] = 89161, + [SMALL_STATE(1938)] = 89228, + [SMALL_STATE(1939)] = 89313, + [SMALL_STATE(1940)] = 89386, + [SMALL_STATE(1941)] = 89449, + [SMALL_STATE(1942)] = 89520, + [SMALL_STATE(1943)] = 89605, + [SMALL_STATE(1944)] = 89664, + [SMALL_STATE(1945)] = 89723, + [SMALL_STATE(1946)] = 89808, + [SMALL_STATE(1947)] = 89873, + [SMALL_STATE(1948)] = 89932, + [SMALL_STATE(1949)] = 90003, + [SMALL_STATE(1950)] = 90072, + [SMALL_STATE(1951)] = 90131, + [SMALL_STATE(1952)] = 90186, + [SMALL_STATE(1953)] = 90271, + [SMALL_STATE(1954)] = 90355, + [SMALL_STATE(1955)] = 90439, + [SMALL_STATE(1956)] = 90489, + [SMALL_STATE(1957)] = 90573, + [SMALL_STATE(1958)] = 90657, + [SMALL_STATE(1959)] = 90707, + [SMALL_STATE(1960)] = 90755, + [SMALL_STATE(1961)] = 90839, + [SMALL_STATE(1962)] = 90887, + [SMALL_STATE(1963)] = 90969, + [SMALL_STATE(1964)] = 91053, + [SMALL_STATE(1965)] = 91100, + [SMALL_STATE(1966)] = 91147, + [SMALL_STATE(1967)] = 91202, + [SMALL_STATE(1968)] = 91249, + [SMALL_STATE(1969)] = 91302, + [SMALL_STATE(1970)] = 91349, + [SMALL_STATE(1971)] = 91400, + [SMALL_STATE(1972)] = 91447, + [SMALL_STATE(1973)] = 91498, + [SMALL_STATE(1974)] = 91545, + [SMALL_STATE(1975)] = 91594, + [SMALL_STATE(1976)] = 91641, + [SMALL_STATE(1977)] = 91692, + [SMALL_STATE(1978)] = 91747, + [SMALL_STATE(1979)] = 91794, + [SMALL_STATE(1980)] = 91849, + [SMALL_STATE(1981)] = 91896, + [SMALL_STATE(1982)] = 91943, + [SMALL_STATE(1983)] = 91990, + [SMALL_STATE(1984)] = 92037, + [SMALL_STATE(1985)] = 92084, + [SMALL_STATE(1986)] = 92131, + [SMALL_STATE(1987)] = 92178, + [SMALL_STATE(1988)] = 92225, + [SMALL_STATE(1989)] = 92276, + [SMALL_STATE(1990)] = 92323, + [SMALL_STATE(1991)] = 92370, + [SMALL_STATE(1992)] = 92417, + [SMALL_STATE(1993)] = 92464, + [SMALL_STATE(1994)] = 92515, + [SMALL_STATE(1995)] = 92562, + [SMALL_STATE(1996)] = 92609, + [SMALL_STATE(1997)] = 92656, + [SMALL_STATE(1998)] = 92703, + [SMALL_STATE(1999)] = 92754, + [SMALL_STATE(2000)] = 92801, + [SMALL_STATE(2001)] = 92848, + [SMALL_STATE(2002)] = 92895, + [SMALL_STATE(2003)] = 92942, + [SMALL_STATE(2004)] = 92989, + [SMALL_STATE(2005)] = 93040, + [SMALL_STATE(2006)] = 93121, + [SMALL_STATE(2007)] = 93180, + [SMALL_STATE(2008)] = 93227, + [SMALL_STATE(2009)] = 93274, + [SMALL_STATE(2010)] = 93321, + [SMALL_STATE(2011)] = 93406, + [SMALL_STATE(2012)] = 93453, + [SMALL_STATE(2013)] = 93500, + [SMALL_STATE(2014)] = 93547, + [SMALL_STATE(2015)] = 93594, + [SMALL_STATE(2016)] = 93641, + [SMALL_STATE(2017)] = 93688, + [SMALL_STATE(2018)] = 93739, + [SMALL_STATE(2019)] = 93790, + [SMALL_STATE(2020)] = 93849, + [SMALL_STATE(2021)] = 93896, + [SMALL_STATE(2022)] = 93943, + [SMALL_STATE(2023)] = 93994, + [SMALL_STATE(2024)] = 94075, + [SMALL_STATE(2025)] = 94126, + [SMALL_STATE(2026)] = 94173, + [SMALL_STATE(2027)] = 94253, + [SMALL_STATE(2028)] = 94303, + [SMALL_STATE(2029)] = 94353, + [SMALL_STATE(2030)] = 94403, + [SMALL_STATE(2031)] = 94483, + [SMALL_STATE(2032)] = 94563, + [SMALL_STATE(2033)] = 94633, + [SMALL_STATE(2034)] = 94689, + [SMALL_STATE(2035)] = 94751, + [SMALL_STATE(2036)] = 94807, + [SMALL_STATE(2037)] = 94869, + [SMALL_STATE(2038)] = 94925, + [SMALL_STATE(2039)] = 94985, + [SMALL_STATE(2040)] = 95053, + [SMALL_STATE(2041)] = 95119, + [SMALL_STATE(2042)] = 95183, + [SMALL_STATE(2043)] = 95253, + [SMALL_STATE(2044)] = 95309, + [SMALL_STATE(2045)] = 95369, + [SMALL_STATE(2046)] = 95427, + [SMALL_STATE(2047)] = 95477, + [SMALL_STATE(2048)] = 95543, + [SMALL_STATE(2049)] = 95599, + [SMALL_STATE(2050)] = 95663, + [SMALL_STATE(2051)] = 95713, + [SMALL_STATE(2052)] = 95763, + [SMALL_STATE(2053)] = 95813, + [SMALL_STATE(2054)] = 95865, + [SMALL_STATE(2055)] = 95921, + [SMALL_STATE(2056)] = 95977, + [SMALL_STATE(2057)] = 96027, + [SMALL_STATE(2058)] = 96077, + [SMALL_STATE(2059)] = 96157, + [SMALL_STATE(2060)] = 96213, + [SMALL_STATE(2061)] = 96271, + [SMALL_STATE(2062)] = 96329, + [SMALL_STATE(2063)] = 96381, + [SMALL_STATE(2064)] = 96431, + [SMALL_STATE(2065)] = 96481, + [SMALL_STATE(2066)] = 96531, + [SMALL_STATE(2067)] = 96611, + [SMALL_STATE(2068)] = 96679, + [SMALL_STATE(2069)] = 96734, + [SMALL_STATE(2070)] = 96779, + [SMALL_STATE(2071)] = 96848, + [SMALL_STATE(2072)] = 96893, + [SMALL_STATE(2073)] = 96948, + [SMALL_STATE(2074)] = 97003, + [SMALL_STATE(2075)] = 97064, + [SMALL_STATE(2076)] = 97113, + [SMALL_STATE(2077)] = 97182, + [SMALL_STATE(2078)] = 97227, + [SMALL_STATE(2079)] = 97278, + [SMALL_STATE(2080)] = 97339, + [SMALL_STATE(2081)] = 97390, + [SMALL_STATE(2082)] = 97435, + [SMALL_STATE(2083)] = 97484, + [SMALL_STATE(2084)] = 97539, + [SMALL_STATE(2085)] = 97598, + [SMALL_STATE(2086)] = 97649, + [SMALL_STATE(2087)] = 97700, + [SMALL_STATE(2088)] = 97767, + [SMALL_STATE(2089)] = 97832, + [SMALL_STATE(2090)] = 97887, + [SMALL_STATE(2091)] = 97942, + [SMALL_STATE(2092)] = 98021, + [SMALL_STATE(2093)] = 98076, + [SMALL_STATE(2094)] = 98123, + [SMALL_STATE(2095)] = 98170, + [SMALL_STATE(2096)] = 98233, + [SMALL_STATE(2097)] = 98282, + [SMALL_STATE(2098)] = 98331, + [SMALL_STATE(2099)] = 98378, + [SMALL_STATE(2100)] = 98425, + [SMALL_STATE(2101)] = 98480, + [SMALL_STATE(2102)] = 98547, + [SMALL_STATE(2103)] = 98598, + [SMALL_STATE(2104)] = 98663, + [SMALL_STATE(2105)] = 98712, + [SMALL_STATE(2106)] = 98769, + [SMALL_STATE(2107)] = 98848, + [SMALL_STATE(2108)] = 98909, + [SMALL_STATE(2109)] = 98978, + [SMALL_STATE(2110)] = 99027, + [SMALL_STATE(2111)] = 99090, + [SMALL_STATE(2112)] = 99145, + [SMALL_STATE(2113)] = 99200, + [SMALL_STATE(2114)] = 99249, + [SMALL_STATE(2115)] = 99308, + [SMALL_STATE(2116)] = 99359, + [SMALL_STATE(2117)] = 99426, + [SMALL_STATE(2118)] = 99491, + [SMALL_STATE(2119)] = 99554, + [SMALL_STATE(2120)] = 99603, + [SMALL_STATE(2121)] = 99658, + [SMALL_STATE(2122)] = 99713, + [SMALL_STATE(2123)] = 99792, + [SMALL_STATE(2124)] = 99851, + [SMALL_STATE(2125)] = 99899, + [SMALL_STATE(2126)] = 99949, + [SMALL_STATE(2127)] = 99997, + [SMALL_STATE(2128)] = 100041, + [SMALL_STATE(2129)] = 100085, + [SMALL_STATE(2130)] = 100129, + [SMALL_STATE(2131)] = 100173, + [SMALL_STATE(2132)] = 100217, + [SMALL_STATE(2133)] = 100261, + [SMALL_STATE(2134)] = 100305, + [SMALL_STATE(2135)] = 100349, + [SMALL_STATE(2136)] = 100393, + [SMALL_STATE(2137)] = 100445, + [SMALL_STATE(2138)] = 100489, + [SMALL_STATE(2139)] = 100533, + [SMALL_STATE(2140)] = 100577, + [SMALL_STATE(2141)] = 100621, + [SMALL_STATE(2142)] = 100665, + [SMALL_STATE(2143)] = 100709, + [SMALL_STATE(2144)] = 100753, + [SMALL_STATE(2145)] = 100797, + [SMALL_STATE(2146)] = 100841, + [SMALL_STATE(2147)] = 100885, + [SMALL_STATE(2148)] = 100929, + [SMALL_STATE(2149)] = 100973, + [SMALL_STATE(2150)] = 101017, + [SMALL_STATE(2151)] = 101061, + [SMALL_STATE(2152)] = 101109, + [SMALL_STATE(2153)] = 101157, + [SMALL_STATE(2154)] = 101201, + [SMALL_STATE(2155)] = 101245, + [SMALL_STATE(2156)] = 101289, + [SMALL_STATE(2157)] = 101333, + [SMALL_STATE(2158)] = 101411, + [SMALL_STATE(2159)] = 101459, + [SMALL_STATE(2160)] = 101503, + [SMALL_STATE(2161)] = 101547, + [SMALL_STATE(2162)] = 101591, + [SMALL_STATE(2163)] = 101635, + [SMALL_STATE(2164)] = 101679, + [SMALL_STATE(2165)] = 101723, + [SMALL_STATE(2166)] = 101767, + [SMALL_STATE(2167)] = 101811, + [SMALL_STATE(2168)] = 101855, + [SMALL_STATE(2169)] = 101899, + [SMALL_STATE(2170)] = 101943, + [SMALL_STATE(2171)] = 101989, + [SMALL_STATE(2172)] = 102033, + [SMALL_STATE(2173)] = 102079, + [SMALL_STATE(2174)] = 102123, + [SMALL_STATE(2175)] = 102169, + [SMALL_STATE(2176)] = 102213, + [SMALL_STATE(2177)] = 102259, + [SMALL_STATE(2178)] = 102305, + [SMALL_STATE(2179)] = 102349, + [SMALL_STATE(2180)] = 102393, + [SMALL_STATE(2181)] = 102441, + [SMALL_STATE(2182)] = 102487, + [SMALL_STATE(2183)] = 102531, + [SMALL_STATE(2184)] = 102575, + [SMALL_STATE(2185)] = 102619, + [SMALL_STATE(2186)] = 102663, + [SMALL_STATE(2187)] = 102707, + [SMALL_STATE(2188)] = 102751, + [SMALL_STATE(2189)] = 102795, + [SMALL_STATE(2190)] = 102839, + [SMALL_STATE(2191)] = 102889, + [SMALL_STATE(2192)] = 102933, + [SMALL_STATE(2193)] = 102979, + [SMALL_STATE(2194)] = 103027, + [SMALL_STATE(2195)] = 103075, + [SMALL_STATE(2196)] = 103119, + [SMALL_STATE(2197)] = 103163, + [SMALL_STATE(2198)] = 103207, + [SMALL_STATE(2199)] = 103255, + [SMALL_STATE(2200)] = 103299, + [SMALL_STATE(2201)] = 103345, + [SMALL_STATE(2202)] = 103389, + [SMALL_STATE(2203)] = 103433, + [SMALL_STATE(2204)] = 103477, + [SMALL_STATE(2205)] = 103521, + [SMALL_STATE(2206)] = 103565, + [SMALL_STATE(2207)] = 103609, + [SMALL_STATE(2208)] = 103653, + [SMALL_STATE(2209)] = 103701, + [SMALL_STATE(2210)] = 103747, + [SMALL_STATE(2211)] = 103791, + [SMALL_STATE(2212)] = 103839, + [SMALL_STATE(2213)] = 103883, + [SMALL_STATE(2214)] = 103927, + [SMALL_STATE(2215)] = 103971, + [SMALL_STATE(2216)] = 104025, + [SMALL_STATE(2217)] = 104069, + [SMALL_STATE(2218)] = 104123, + [SMALL_STATE(2219)] = 104167, + [SMALL_STATE(2220)] = 104211, + [SMALL_STATE(2221)] = 104259, + [SMALL_STATE(2222)] = 104311, + [SMALL_STATE(2223)] = 104355, + [SMALL_STATE(2224)] = 104399, + [SMALL_STATE(2225)] = 104449, + [SMALL_STATE(2226)] = 104493, + [SMALL_STATE(2227)] = 104541, + [SMALL_STATE(2228)] = 104587, + [SMALL_STATE(2229)] = 104639, + [SMALL_STATE(2230)] = 104683, + [SMALL_STATE(2231)] = 104727, + [SMALL_STATE(2232)] = 104779, + [SMALL_STATE(2233)] = 104827, + [SMALL_STATE(2234)] = 104875, + [SMALL_STATE(2235)] = 104919, + [SMALL_STATE(2236)] = 104963, + [SMALL_STATE(2237)] = 105011, + [SMALL_STATE(2238)] = 105055, + [SMALL_STATE(2239)] = 105101, + [SMALL_STATE(2240)] = 105145, + [SMALL_STATE(2241)] = 105189, + [SMALL_STATE(2242)] = 105233, + [SMALL_STATE(2243)] = 105277, + [SMALL_STATE(2244)] = 105321, + [SMALL_STATE(2245)] = 105365, + [SMALL_STATE(2246)] = 105433, + [SMALL_STATE(2247)] = 105477, + [SMALL_STATE(2248)] = 105525, + [SMALL_STATE(2249)] = 105569, + [SMALL_STATE(2250)] = 105617, + [SMALL_STATE(2251)] = 105669, + [SMALL_STATE(2252)] = 105713, + [SMALL_STATE(2253)] = 105757, + [SMALL_STATE(2254)] = 105801, + [SMALL_STATE(2255)] = 105857, + [SMALL_STATE(2256)] = 105901, + [SMALL_STATE(2257)] = 105945, + [SMALL_STATE(2258)] = 105989, + [SMALL_STATE(2259)] = 106033, + [SMALL_STATE(2260)] = 106077, + [SMALL_STATE(2261)] = 106121, + [SMALL_STATE(2262)] = 106165, + [SMALL_STATE(2263)] = 106217, + [SMALL_STATE(2264)] = 106261, + [SMALL_STATE(2265)] = 106311, + [SMALL_STATE(2266)] = 106359, + [SMALL_STATE(2267)] = 106403, + [SMALL_STATE(2268)] = 106447, + [SMALL_STATE(2269)] = 106491, + [SMALL_STATE(2270)] = 106537, + [SMALL_STATE(2271)] = 106585, + [SMALL_STATE(2272)] = 106629, + [SMALL_STATE(2273)] = 106673, + [SMALL_STATE(2274)] = 106727, + [SMALL_STATE(2275)] = 106787, + [SMALL_STATE(2276)] = 106841, + [SMALL_STATE(2277)] = 106899, + [SMALL_STATE(2278)] = 106965, + [SMALL_STATE(2279)] = 107029, + [SMALL_STATE(2280)] = 107091, + [SMALL_STATE(2281)] = 107137, + [SMALL_STATE(2282)] = 107180, + [SMALL_STATE(2283)] = 107229, + [SMALL_STATE(2284)] = 107274, + [SMALL_STATE(2285)] = 107317, + [SMALL_STATE(2286)] = 107360, + [SMALL_STATE(2287)] = 107405, + [SMALL_STATE(2288)] = 107448, + [SMALL_STATE(2289)] = 107491, + [SMALL_STATE(2290)] = 107540, + [SMALL_STATE(2291)] = 107583, + [SMALL_STATE(2292)] = 107626, + [SMALL_STATE(2293)] = 107669, + [SMALL_STATE(2294)] = 107712, + [SMALL_STATE(2295)] = 107755, + [SMALL_STATE(2296)] = 107798, + [SMALL_STATE(2297)] = 107841, + [SMALL_STATE(2298)] = 107884, + [SMALL_STATE(2299)] = 107927, + [SMALL_STATE(2300)] = 107976, + [SMALL_STATE(2301)] = 108019, + [SMALL_STATE(2302)] = 108062, + [SMALL_STATE(2303)] = 108105, + [SMALL_STATE(2304)] = 108148, + [SMALL_STATE(2305)] = 108193, + [SMALL_STATE(2306)] = 108238, + [SMALL_STATE(2307)] = 108283, + [SMALL_STATE(2308)] = 108332, + [SMALL_STATE(2309)] = 108377, + [SMALL_STATE(2310)] = 108420, + [SMALL_STATE(2311)] = 108463, + [SMALL_STATE(2312)] = 108508, + [SMALL_STATE(2313)] = 108551, + [SMALL_STATE(2314)] = 108594, + [SMALL_STATE(2315)] = 108637, + [SMALL_STATE(2316)] = 108680, + [SMALL_STATE(2317)] = 108723, + [SMALL_STATE(2318)] = 108766, + [SMALL_STATE(2319)] = 108809, + [SMALL_STATE(2320)] = 108852, + [SMALL_STATE(2321)] = 108895, + [SMALL_STATE(2322)] = 108938, + [SMALL_STATE(2323)] = 108981, + [SMALL_STATE(2324)] = 109024, + [SMALL_STATE(2325)] = 109067, + [SMALL_STATE(2326)] = 109110, + [SMALL_STATE(2327)] = 109153, + [SMALL_STATE(2328)] = 109204, + [SMALL_STATE(2329)] = 109247, + [SMALL_STATE(2330)] = 109290, + [SMALL_STATE(2331)] = 109333, + [SMALL_STATE(2332)] = 109376, + [SMALL_STATE(2333)] = 109419, + [SMALL_STATE(2334)] = 109470, + [SMALL_STATE(2335)] = 109513, + [SMALL_STATE(2336)] = 109562, + [SMALL_STATE(2337)] = 109609, + [SMALL_STATE(2338)] = 109654, + [SMALL_STATE(2339)] = 109705, + [SMALL_STATE(2340)] = 109756, + [SMALL_STATE(2341)] = 109799, + [SMALL_STATE(2342)] = 109842, + [SMALL_STATE(2343)] = 109885, + [SMALL_STATE(2344)] = 109936, + [SMALL_STATE(2345)] = 109981, + [SMALL_STATE(2346)] = 110030, + [SMALL_STATE(2347)] = 110077, + [SMALL_STATE(2348)] = 110122, + [SMALL_STATE(2349)] = 110173, + [SMALL_STATE(2350)] = 110224, + [SMALL_STATE(2351)] = 110267, + [SMALL_STATE(2352)] = 110310, + [SMALL_STATE(2353)] = 110353, + [SMALL_STATE(2354)] = 110400, + [SMALL_STATE(2355)] = 110447, + [SMALL_STATE(2356)] = 110494, + [SMALL_STATE(2357)] = 110539, + [SMALL_STATE(2358)] = 110584, + [SMALL_STATE(2359)] = 110627, + [SMALL_STATE(2360)] = 110680, + [SMALL_STATE(2361)] = 110733, + [SMALL_STATE(2362)] = 110776, + [SMALL_STATE(2363)] = 110819, + [SMALL_STATE(2364)] = 110862, + [SMALL_STATE(2365)] = 110905, + [SMALL_STATE(2366)] = 110948, + [SMALL_STATE(2367)] = 110991, + [SMALL_STATE(2368)] = 111034, + [SMALL_STATE(2369)] = 111077, + [SMALL_STATE(2370)] = 111144, + [SMALL_STATE(2371)] = 111187, + [SMALL_STATE(2372)] = 111230, + [SMALL_STATE(2373)] = 111273, + [SMALL_STATE(2374)] = 111316, + [SMALL_STATE(2375)] = 111359, + [SMALL_STATE(2376)] = 111402, + [SMALL_STATE(2377)] = 111445, + [SMALL_STATE(2378)] = 111488, + [SMALL_STATE(2379)] = 111533, + [SMALL_STATE(2380)] = 111576, + [SMALL_STATE(2381)] = 111621, + [SMALL_STATE(2382)] = 111666, + [SMALL_STATE(2383)] = 111711, + [SMALL_STATE(2384)] = 111754, + [SMALL_STATE(2385)] = 111797, + [SMALL_STATE(2386)] = 111840, + [SMALL_STATE(2387)] = 111883, + [SMALL_STATE(2388)] = 111926, + [SMALL_STATE(2389)] = 111969, + [SMALL_STATE(2390)] = 112012, + [SMALL_STATE(2391)] = 112055, + [SMALL_STATE(2392)] = 112098, + [SMALL_STATE(2393)] = 112141, + [SMALL_STATE(2394)] = 112184, + [SMALL_STATE(2395)] = 112227, + [SMALL_STATE(2396)] = 112280, + [SMALL_STATE(2397)] = 112339, + [SMALL_STATE(2398)] = 112418, + [SMALL_STATE(2399)] = 112471, + [SMALL_STATE(2400)] = 112528, + [SMALL_STATE(2401)] = 112593, + [SMALL_STATE(2402)] = 112656, + [SMALL_STATE(2403)] = 112717, + [SMALL_STATE(2404)] = 112760, + [SMALL_STATE(2405)] = 112839, + [SMALL_STATE(2406)] = 112882, + [SMALL_STATE(2407)] = 112929, + [SMALL_STATE(2408)] = 112972, + [SMALL_STATE(2409)] = 113015, + [SMALL_STATE(2410)] = 113058, + [SMALL_STATE(2411)] = 113101, + [SMALL_STATE(2412)] = 113144, + [SMALL_STATE(2413)] = 113187, + [SMALL_STATE(2414)] = 113230, + [SMALL_STATE(2415)] = 113273, + [SMALL_STATE(2416)] = 113316, + [SMALL_STATE(2417)] = 113359, + [SMALL_STATE(2418)] = 113402, + [SMALL_STATE(2419)] = 113449, + [SMALL_STATE(2420)] = 113492, + [SMALL_STATE(2421)] = 113535, + [SMALL_STATE(2422)] = 113578, + [SMALL_STATE(2423)] = 113621, + [SMALL_STATE(2424)] = 113664, + [SMALL_STATE(2425)] = 113707, + [SMALL_STATE(2426)] = 113750, + [SMALL_STATE(2427)] = 113793, + [SMALL_STATE(2428)] = 113836, + [SMALL_STATE(2429)] = 113881, + [SMALL_STATE(2430)] = 113926, + [SMALL_STATE(2431)] = 113971, + [SMALL_STATE(2432)] = 114014, + [SMALL_STATE(2433)] = 114059, + [SMALL_STATE(2434)] = 114102, + [SMALL_STATE(2435)] = 114153, + [SMALL_STATE(2436)] = 114196, + [SMALL_STATE(2437)] = 114245, + [SMALL_STATE(2438)] = 114292, + [SMALL_STATE(2439)] = 114335, + [SMALL_STATE(2440)] = 114380, + [SMALL_STATE(2441)] = 114423, + [SMALL_STATE(2442)] = 114474, + [SMALL_STATE(2443)] = 114525, + [SMALL_STATE(2444)] = 114568, + [SMALL_STATE(2445)] = 114611, + [SMALL_STATE(2446)] = 114658, + [SMALL_STATE(2447)] = 114701, + [SMALL_STATE(2448)] = 114744, + [SMALL_STATE(2449)] = 114787, + [SMALL_STATE(2450)] = 114830, + [SMALL_STATE(2451)] = 114873, + [SMALL_STATE(2452)] = 114916, + [SMALL_STATE(2453)] = 114959, + [SMALL_STATE(2454)] = 115002, + [SMALL_STATE(2455)] = 115045, + [SMALL_STATE(2456)] = 115088, + [SMALL_STATE(2457)] = 115131, + [SMALL_STATE(2458)] = 115174, + [SMALL_STATE(2459)] = 115219, + [SMALL_STATE(2460)] = 115264, + [SMALL_STATE(2461)] = 115306, + [SMALL_STATE(2462)] = 115348, + [SMALL_STATE(2463)] = 115390, + [SMALL_STATE(2464)] = 115432, + [SMALL_STATE(2465)] = 115478, + [SMALL_STATE(2466)] = 115520, + [SMALL_STATE(2467)] = 115562, + [SMALL_STATE(2468)] = 115604, + [SMALL_STATE(2469)] = 115646, + [SMALL_STATE(2470)] = 115690, + [SMALL_STATE(2471)] = 115732, + [SMALL_STATE(2472)] = 115774, + [SMALL_STATE(2473)] = 115816, + [SMALL_STATE(2474)] = 115862, + [SMALL_STATE(2475)] = 115904, + [SMALL_STATE(2476)] = 115946, + [SMALL_STATE(2477)] = 115988, + [SMALL_STATE(2478)] = 116030, + [SMALL_STATE(2479)] = 116074, + [SMALL_STATE(2480)] = 116118, + [SMALL_STATE(2481)] = 116162, + [SMALL_STATE(2482)] = 116208, + [SMALL_STATE(2483)] = 116250, + [SMALL_STATE(2484)] = 116292, + [SMALL_STATE(2485)] = 116334, + [SMALL_STATE(2486)] = 116376, + [SMALL_STATE(2487)] = 116418, + [SMALL_STATE(2488)] = 116460, + [SMALL_STATE(2489)] = 116504, + [SMALL_STATE(2490)] = 116546, + [SMALL_STATE(2491)] = 116588, + [SMALL_STATE(2492)] = 116630, + [SMALL_STATE(2493)] = 116672, + [SMALL_STATE(2494)] = 116714, + [SMALL_STATE(2495)] = 116756, + [SMALL_STATE(2496)] = 116798, + [SMALL_STATE(2497)] = 116840, + [SMALL_STATE(2498)] = 116888, + [SMALL_STATE(2499)] = 116932, + [SMALL_STATE(2500)] = 116976, + [SMALL_STATE(2501)] = 117018, + [SMALL_STATE(2502)] = 117060, + [SMALL_STATE(2503)] = 117102, + [SMALL_STATE(2504)] = 117144, + [SMALL_STATE(2505)] = 117186, + [SMALL_STATE(2506)] = 117228, + [SMALL_STATE(2507)] = 117270, + [SMALL_STATE(2508)] = 117312, + [SMALL_STATE(2509)] = 117354, + [SMALL_STATE(2510)] = 117396, + [SMALL_STATE(2511)] = 117438, + [SMALL_STATE(2512)] = 117484, + [SMALL_STATE(2513)] = 117538, + [SMALL_STATE(2514)] = 117588, + [SMALL_STATE(2515)] = 117636, + [SMALL_STATE(2516)] = 117682, + [SMALL_STATE(2517)] = 117726, + [SMALL_STATE(2518)] = 117776, + [SMALL_STATE(2519)] = 117826, + [SMALL_STATE(2520)] = 117872, + [SMALL_STATE(2521)] = 117918, + [SMALL_STATE(2522)] = 117960, + [SMALL_STATE(2523)] = 118002, + [SMALL_STATE(2524)] = 118044, + [SMALL_STATE(2525)] = 118088, + [SMALL_STATE(2526)] = 118129, + [SMALL_STATE(2527)] = 118170, + [SMALL_STATE(2528)] = 118211, + [SMALL_STATE(2529)] = 118290, + [SMALL_STATE(2530)] = 118369, + [SMALL_STATE(2531)] = 118448, + [SMALL_STATE(2532)] = 118489, + [SMALL_STATE(2533)] = 118530, + [SMALL_STATE(2534)] = 118571, + [SMALL_STATE(2535)] = 118612, + [SMALL_STATE(2536)] = 118689, + [SMALL_STATE(2537)] = 118732, + [SMALL_STATE(2538)] = 118773, + [SMALL_STATE(2539)] = 118818, + [SMALL_STATE(2540)] = 118861, + [SMALL_STATE(2541)] = 118902, + [SMALL_STATE(2542)] = 118943, + [SMALL_STATE(2543)] = 118984, + [SMALL_STATE(2544)] = 119063, + [SMALL_STATE(2545)] = 119104, + [SMALL_STATE(2546)] = 119183, + [SMALL_STATE(2547)] = 119262, + [SMALL_STATE(2548)] = 119311, + [SMALL_STATE(2549)] = 119352, + [SMALL_STATE(2550)] = 119431, + [SMALL_STATE(2551)] = 119472, + [SMALL_STATE(2552)] = 119513, + [SMALL_STATE(2553)] = 119554, + [SMALL_STATE(2554)] = 119595, + [SMALL_STATE(2555)] = 119674, + [SMALL_STATE(2556)] = 119753, + [SMALL_STATE(2557)] = 119832, + [SMALL_STATE(2558)] = 119873, + [SMALL_STATE(2559)] = 119916, + [SMALL_STATE(2560)] = 119959, + [SMALL_STATE(2561)] = 120038, + [SMALL_STATE(2562)] = 120079, + [SMALL_STATE(2563)] = 120120, + [SMALL_STATE(2564)] = 120161, + [SMALL_STATE(2565)] = 120202, + [SMALL_STATE(2566)] = 120243, + [SMALL_STATE(2567)] = 120284, + [SMALL_STATE(2568)] = 120325, + [SMALL_STATE(2569)] = 120374, + [SMALL_STATE(2570)] = 120421, + [SMALL_STATE(2571)] = 120462, + [SMALL_STATE(2572)] = 120507, + [SMALL_STATE(2573)] = 120586, + [SMALL_STATE(2574)] = 120627, + [SMALL_STATE(2575)] = 120668, + [SMALL_STATE(2576)] = 120709, + [SMALL_STATE(2577)] = 120750, + [SMALL_STATE(2578)] = 120791, + [SMALL_STATE(2579)] = 120834, + [SMALL_STATE(2580)] = 120875, + [SMALL_STATE(2581)] = 120924, + [SMALL_STATE(2582)] = 120965, + [SMALL_STATE(2583)] = 121008, + [SMALL_STATE(2584)] = 121085, + [SMALL_STATE(2585)] = 121126, + [SMALL_STATE(2586)] = 121167, + [SMALL_STATE(2587)] = 121208, + [SMALL_STATE(2588)] = 121287, + [SMALL_STATE(2589)] = 121336, + [SMALL_STATE(2590)] = 121415, + [SMALL_STATE(2591)] = 121456, + [SMALL_STATE(2592)] = 121499, + [SMALL_STATE(2593)] = 121578, + [SMALL_STATE(2594)] = 121619, + [SMALL_STATE(2595)] = 121698, + [SMALL_STATE(2596)] = 121739, + [SMALL_STATE(2597)] = 121784, + [SMALL_STATE(2598)] = 121825, + [SMALL_STATE(2599)] = 121866, + [SMALL_STATE(2600)] = 121945, + [SMALL_STATE(2601)] = 121986, + [SMALL_STATE(2602)] = 122027, + [SMALL_STATE(2603)] = 122106, + [SMALL_STATE(2604)] = 122185, + [SMALL_STATE(2605)] = 122264, + [SMALL_STATE(2606)] = 122305, + [SMALL_STATE(2607)] = 122346, + [SMALL_STATE(2608)] = 122387, + [SMALL_STATE(2609)] = 122466, + [SMALL_STATE(2610)] = 122507, + [SMALL_STATE(2611)] = 122586, + [SMALL_STATE(2612)] = 122665, + [SMALL_STATE(2613)] = 122706, + [SMALL_STATE(2614)] = 122747, + [SMALL_STATE(2615)] = 122788, + [SMALL_STATE(2616)] = 122831, + [SMALL_STATE(2617)] = 122872, + [SMALL_STATE(2618)] = 122948, + [SMALL_STATE(2619)] = 123019, + [SMALL_STATE(2620)] = 123090, + [SMALL_STATE(2621)] = 123133, + [SMALL_STATE(2622)] = 123204, + [SMALL_STATE(2623)] = 123275, + [SMALL_STATE(2624)] = 123346, + [SMALL_STATE(2625)] = 123417, + [SMALL_STATE(2626)] = 123488, + [SMALL_STATE(2627)] = 123559, + [SMALL_STATE(2628)] = 123630, + [SMALL_STATE(2629)] = 123701, + [SMALL_STATE(2630)] = 123772, + [SMALL_STATE(2631)] = 123843, + [SMALL_STATE(2632)] = 123916, + [SMALL_STATE(2633)] = 123987, + [SMALL_STATE(2634)] = 124058, + [SMALL_STATE(2635)] = 124131, + [SMALL_STATE(2636)] = 124202, + [SMALL_STATE(2637)] = 124273, + [SMALL_STATE(2638)] = 124346, + [SMALL_STATE(2639)] = 124417, + [SMALL_STATE(2640)] = 124488, + [SMALL_STATE(2641)] = 124559, + [SMALL_STATE(2642)] = 124630, + [SMALL_STATE(2643)] = 124701, + [SMALL_STATE(2644)] = 124772, + [SMALL_STATE(2645)] = 124845, + [SMALL_STATE(2646)] = 124916, + [SMALL_STATE(2647)] = 124989, + [SMALL_STATE(2648)] = 125060, + [SMALL_STATE(2649)] = 125131, + [SMALL_STATE(2650)] = 125202, + [SMALL_STATE(2651)] = 125273, + [SMALL_STATE(2652)] = 125354, + [SMALL_STATE(2653)] = 125425, + [SMALL_STATE(2654)] = 125496, + [SMALL_STATE(2655)] = 125567, + [SMALL_STATE(2656)] = 125640, + [SMALL_STATE(2657)] = 125713, + [SMALL_STATE(2658)] = 125784, + [SMALL_STATE(2659)] = 125855, + [SMALL_STATE(2660)] = 125926, + [SMALL_STATE(2661)] = 125997, + [SMALL_STATE(2662)] = 126068, + [SMALL_STATE(2663)] = 126139, + [SMALL_STATE(2664)] = 126207, + [SMALL_STATE(2665)] = 126277, + [SMALL_STATE(2666)] = 126345, + [SMALL_STATE(2667)] = 126415, + [SMALL_STATE(2668)] = 126483, + [SMALL_STATE(2669)] = 126551, + [SMALL_STATE(2670)] = 126619, + [SMALL_STATE(2671)] = 126687, + [SMALL_STATE(2672)] = 126725, + [SMALL_STATE(2673)] = 126793, + [SMALL_STATE(2674)] = 126861, + [SMALL_STATE(2675)] = 126929, + [SMALL_STATE(2676)] = 126997, + [SMALL_STATE(2677)] = 127065, + [SMALL_STATE(2678)] = 127103, + [SMALL_STATE(2679)] = 127173, + [SMALL_STATE(2680)] = 127211, + [SMALL_STATE(2681)] = 127281, + [SMALL_STATE(2682)] = 127319, + [SMALL_STATE(2683)] = 127389, + [SMALL_STATE(2684)] = 127459, + [SMALL_STATE(2685)] = 127527, + [SMALL_STATE(2686)] = 127597, + [SMALL_STATE(2687)] = 127665, + [SMALL_STATE(2688)] = 127735, + [SMALL_STATE(2689)] = 127773, + [SMALL_STATE(2690)] = 127841, + [SMALL_STATE(2691)] = 127909, + [SMALL_STATE(2692)] = 127946, + [SMALL_STATE(2693)] = 127983, + [SMALL_STATE(2694)] = 128050, + [SMALL_STATE(2695)] = 128087, + [SMALL_STATE(2696)] = 128154, + [SMALL_STATE(2697)] = 128223, + [SMALL_STATE(2698)] = 128292, + [SMALL_STATE(2699)] = 128329, + [SMALL_STATE(2700)] = 128366, + [SMALL_STATE(2701)] = 128433, + [SMALL_STATE(2702)] = 128470, + [SMALL_STATE(2703)] = 128507, + [SMALL_STATE(2704)] = 128544, + [SMALL_STATE(2705)] = 128581, + [SMALL_STATE(2706)] = 128648, + [SMALL_STATE(2707)] = 128717, + [SMALL_STATE(2708)] = 128786, + [SMALL_STATE(2709)] = 128855, + [SMALL_STATE(2710)] = 128924, + [SMALL_STATE(2711)] = 128961, + [SMALL_STATE(2712)] = 128998, + [SMALL_STATE(2713)] = 129035, + [SMALL_STATE(2714)] = 129072, + [SMALL_STATE(2715)] = 129109, + [SMALL_STATE(2716)] = 129146, + [SMALL_STATE(2717)] = 129183, + [SMALL_STATE(2718)] = 129220, + [SMALL_STATE(2719)] = 129257, + [SMALL_STATE(2720)] = 129294, + [SMALL_STATE(2721)] = 129331, + [SMALL_STATE(2722)] = 129368, + [SMALL_STATE(2723)] = 129435, + [SMALL_STATE(2724)] = 129504, + [SMALL_STATE(2725)] = 129573, + [SMALL_STATE(2726)] = 129642, + [SMALL_STATE(2727)] = 129679, + [SMALL_STATE(2728)] = 129716, + [SMALL_STATE(2729)] = 129753, + [SMALL_STATE(2730)] = 129822, + [SMALL_STATE(2731)] = 129891, + [SMALL_STATE(2732)] = 129960, + [SMALL_STATE(2733)] = 130029, + [SMALL_STATE(2734)] = 130098, + [SMALL_STATE(2735)] = 130167, + [SMALL_STATE(2736)] = 130204, + [SMALL_STATE(2737)] = 130241, + [SMALL_STATE(2738)] = 130278, + [SMALL_STATE(2739)] = 130315, + [SMALL_STATE(2740)] = 130352, + [SMALL_STATE(2741)] = 130389, + [SMALL_STATE(2742)] = 130426, + [SMALL_STATE(2743)] = 130463, + [SMALL_STATE(2744)] = 130500, + [SMALL_STATE(2745)] = 130537, + [SMALL_STATE(2746)] = 130574, + [SMALL_STATE(2747)] = 130611, + [SMALL_STATE(2748)] = 130680, + [SMALL_STATE(2749)] = 130717, + [SMALL_STATE(2750)] = 130754, + [SMALL_STATE(2751)] = 130791, + [SMALL_STATE(2752)] = 130828, + [SMALL_STATE(2753)] = 130895, + [SMALL_STATE(2754)] = 130932, + [SMALL_STATE(2755)] = 130969, + [SMALL_STATE(2756)] = 131006, + [SMALL_STATE(2757)] = 131043, + [SMALL_STATE(2758)] = 131108, + [SMALL_STATE(2759)] = 131177, + [SMALL_STATE(2760)] = 131214, + [SMALL_STATE(2761)] = 131251, + [SMALL_STATE(2762)] = 131288, + [SMALL_STATE(2763)] = 131325, + [SMALL_STATE(2764)] = 131362, + [SMALL_STATE(2765)] = 131399, + [SMALL_STATE(2766)] = 131436, + [SMALL_STATE(2767)] = 131473, + [SMALL_STATE(2768)] = 131510, + [SMALL_STATE(2769)] = 131547, + [SMALL_STATE(2770)] = 131584, + [SMALL_STATE(2771)] = 131621, + [SMALL_STATE(2772)] = 131658, + [SMALL_STATE(2773)] = 131695, + [SMALL_STATE(2774)] = 131760, + [SMALL_STATE(2775)] = 131797, + [SMALL_STATE(2776)] = 131834, + [SMALL_STATE(2777)] = 131871, + [SMALL_STATE(2778)] = 131908, + [SMALL_STATE(2779)] = 131945, + [SMALL_STATE(2780)] = 131982, + [SMALL_STATE(2781)] = 132019, + [SMALL_STATE(2782)] = 132084, + [SMALL_STATE(2783)] = 132121, + [SMALL_STATE(2784)] = 132158, + [SMALL_STATE(2785)] = 132227, + [SMALL_STATE(2786)] = 132264, + [SMALL_STATE(2787)] = 132333, + [SMALL_STATE(2788)] = 132370, + [SMALL_STATE(2789)] = 132407, + [SMALL_STATE(2790)] = 132444, + [SMALL_STATE(2791)] = 132481, + [SMALL_STATE(2792)] = 132518, + [SMALL_STATE(2793)] = 132555, + [SMALL_STATE(2794)] = 132592, + [SMALL_STATE(2795)] = 132659, + [SMALL_STATE(2796)] = 132696, + [SMALL_STATE(2797)] = 132733, + [SMALL_STATE(2798)] = 132770, + [SMALL_STATE(2799)] = 132807, + [SMALL_STATE(2800)] = 132844, + [SMALL_STATE(2801)] = 132881, + [SMALL_STATE(2802)] = 132950, + [SMALL_STATE(2803)] = 132987, + [SMALL_STATE(2804)] = 133023, + [SMALL_STATE(2805)] = 133059, + [SMALL_STATE(2806)] = 133095, + [SMALL_STATE(2807)] = 133131, + [SMALL_STATE(2808)] = 133167, + [SMALL_STATE(2809)] = 133203, + [SMALL_STATE(2810)] = 133239, + [SMALL_STATE(2811)] = 133275, + [SMALL_STATE(2812)] = 133311, + [SMALL_STATE(2813)] = 133347, + [SMALL_STATE(2814)] = 133383, + [SMALL_STATE(2815)] = 133419, + [SMALL_STATE(2816)] = 133455, + [SMALL_STATE(2817)] = 133491, + [SMALL_STATE(2818)] = 133527, + [SMALL_STATE(2819)] = 133563, + [SMALL_STATE(2820)] = 133599, + [SMALL_STATE(2821)] = 133635, + [SMALL_STATE(2822)] = 133671, + [SMALL_STATE(2823)] = 133707, + [SMALL_STATE(2824)] = 133743, + [SMALL_STATE(2825)] = 133779, + [SMALL_STATE(2826)] = 133815, + [SMALL_STATE(2827)] = 133851, + [SMALL_STATE(2828)] = 133887, + [SMALL_STATE(2829)] = 133923, + [SMALL_STATE(2830)] = 133959, + [SMALL_STATE(2831)] = 133995, + [SMALL_STATE(2832)] = 134031, + [SMALL_STATE(2833)] = 134067, + [SMALL_STATE(2834)] = 134103, + [SMALL_STATE(2835)] = 134139, + [SMALL_STATE(2836)] = 134175, + [SMALL_STATE(2837)] = 134211, + [SMALL_STATE(2838)] = 134247, + [SMALL_STATE(2839)] = 134283, + [SMALL_STATE(2840)] = 134319, + [SMALL_STATE(2841)] = 134355, + [SMALL_STATE(2842)] = 134391, + [SMALL_STATE(2843)] = 134427, + [SMALL_STATE(2844)] = 134489, + [SMALL_STATE(2845)] = 134525, + [SMALL_STATE(2846)] = 134561, + [SMALL_STATE(2847)] = 134597, + [SMALL_STATE(2848)] = 134633, + [SMALL_STATE(2849)] = 134669, + [SMALL_STATE(2850)] = 134705, + [SMALL_STATE(2851)] = 134753, + [SMALL_STATE(2852)] = 134789, + [SMALL_STATE(2853)] = 134825, + [SMALL_STATE(2854)] = 134861, + [SMALL_STATE(2855)] = 134897, + [SMALL_STATE(2856)] = 134933, + [SMALL_STATE(2857)] = 134969, + [SMALL_STATE(2858)] = 135005, + [SMALL_STATE(2859)] = 135041, + [SMALL_STATE(2860)] = 135077, + [SMALL_STATE(2861)] = 135113, + [SMALL_STATE(2862)] = 135175, + [SMALL_STATE(2863)] = 135211, + [SMALL_STATE(2864)] = 135247, + [SMALL_STATE(2865)] = 135283, + [SMALL_STATE(2866)] = 135319, + [SMALL_STATE(2867)] = 135355, + [SMALL_STATE(2868)] = 135391, + [SMALL_STATE(2869)] = 135427, + [SMALL_STATE(2870)] = 135463, + [SMALL_STATE(2871)] = 135499, + [SMALL_STATE(2872)] = 135535, + [SMALL_STATE(2873)] = 135571, + [SMALL_STATE(2874)] = 135607, + [SMALL_STATE(2875)] = 135643, + [SMALL_STATE(2876)] = 135679, + [SMALL_STATE(2877)] = 135715, + [SMALL_STATE(2878)] = 135751, + [SMALL_STATE(2879)] = 135787, + [SMALL_STATE(2880)] = 135823, + [SMALL_STATE(2881)] = 135859, + [SMALL_STATE(2882)] = 135895, + [SMALL_STATE(2883)] = 135931, + [SMALL_STATE(2884)] = 135967, + [SMALL_STATE(2885)] = 136003, + [SMALL_STATE(2886)] = 136039, + [SMALL_STATE(2887)] = 136075, + [SMALL_STATE(2888)] = 136111, + [SMALL_STATE(2889)] = 136147, + [SMALL_STATE(2890)] = 136183, + [SMALL_STATE(2891)] = 136219, + [SMALL_STATE(2892)] = 136255, + [SMALL_STATE(2893)] = 136291, + [SMALL_STATE(2894)] = 136327, + [SMALL_STATE(2895)] = 136363, + [SMALL_STATE(2896)] = 136399, + [SMALL_STATE(2897)] = 136435, + [SMALL_STATE(2898)] = 136471, + [SMALL_STATE(2899)] = 136519, + [SMALL_STATE(2900)] = 136581, + [SMALL_STATE(2901)] = 136617, + [SMALL_STATE(2902)] = 136653, + [SMALL_STATE(2903)] = 136689, + [SMALL_STATE(2904)] = 136755, + [SMALL_STATE(2905)] = 136791, + [SMALL_STATE(2906)] = 136827, + [SMALL_STATE(2907)] = 136865, + [SMALL_STATE(2908)] = 136901, + [SMALL_STATE(2909)] = 136937, + [SMALL_STATE(2910)] = 136973, + [SMALL_STATE(2911)] = 137009, + [SMALL_STATE(2912)] = 137071, + [SMALL_STATE(2913)] = 137107, + [SMALL_STATE(2914)] = 137143, + [SMALL_STATE(2915)] = 137179, + [SMALL_STATE(2916)] = 137215, + [SMALL_STATE(2917)] = 137251, + [SMALL_STATE(2918)] = 137287, + [SMALL_STATE(2919)] = 137323, + [SMALL_STATE(2920)] = 137384, + [SMALL_STATE(2921)] = 137419, + [SMALL_STATE(2922)] = 137454, + [SMALL_STATE(2923)] = 137515, + [SMALL_STATE(2924)] = 137576, + [SMALL_STATE(2925)] = 137637, + [SMALL_STATE(2926)] = 137672, + [SMALL_STATE(2927)] = 137733, + [SMALL_STATE(2928)] = 137768, + [SMALL_STATE(2929)] = 137829, + [SMALL_STATE(2930)] = 137864, + [SMALL_STATE(2931)] = 137899, + [SMALL_STATE(2932)] = 137934, + [SMALL_STATE(2933)] = 137969, + [SMALL_STATE(2934)] = 138030, + [SMALL_STATE(2935)] = 138065, + [SMALL_STATE(2936)] = 138126, + [SMALL_STATE(2937)] = 138186, + [SMALL_STATE(2938)] = 138246, + [SMALL_STATE(2939)] = 138306, + [SMALL_STATE(2940)] = 138339, + [SMALL_STATE(2941)] = 138372, + [SMALL_STATE(2942)] = 138405, + [SMALL_STATE(2943)] = 138438, + [SMALL_STATE(2944)] = 138471, + [SMALL_STATE(2945)] = 138524, + [SMALL_STATE(2946)] = 138581, + [SMALL_STATE(2947)] = 138614, + [SMALL_STATE(2948)] = 138647, + [SMALL_STATE(2949)] = 138680, + [SMALL_STATE(2950)] = 138735, + [SMALL_STATE(2951)] = 138779, + [SMALL_STATE(2952)] = 138823, + [SMALL_STATE(2953)] = 138866, + [SMALL_STATE(2954)] = 138909, + [SMALL_STATE(2955)] = 138950, + [SMALL_STATE(2956)] = 138993, + [SMALL_STATE(2957)] = 139034, + [SMALL_STATE(2958)] = 139077, + [SMALL_STATE(2959)] = 139107, + [SMALL_STATE(2960)] = 139139, + [SMALL_STATE(2961)] = 139181, + [SMALL_STATE(2962)] = 139213, + [SMALL_STATE(2963)] = 139245, + [SMALL_STATE(2964)] = 139301, + [SMALL_STATE(2965)] = 139333, + [SMALL_STATE(2966)] = 139365, + [SMALL_STATE(2967)] = 139397, + [SMALL_STATE(2968)] = 139439, + [SMALL_STATE(2969)] = 139495, + [SMALL_STATE(2970)] = 139551, + [SMALL_STATE(2971)] = 139581, + [SMALL_STATE(2972)] = 139611, + [SMALL_STATE(2973)] = 139641, + [SMALL_STATE(2974)] = 139671, + [SMALL_STATE(2975)] = 139701, + [SMALL_STATE(2976)] = 139731, + [SMALL_STATE(2977)] = 139773, + [SMALL_STATE(2978)] = 139805, + [SMALL_STATE(2979)] = 139837, + [SMALL_STATE(2980)] = 139893, + [SMALL_STATE(2981)] = 139925, + [SMALL_STATE(2982)] = 139981, + [SMALL_STATE(2983)] = 140013, + [SMALL_STATE(2984)] = 140045, + [SMALL_STATE(2985)] = 140077, + [SMALL_STATE(2986)] = 140119, + [SMALL_STATE(2987)] = 140154, + [SMALL_STATE(2988)] = 140185, + [SMALL_STATE(2989)] = 140222, + [SMALL_STATE(2990)] = 140259, + [SMALL_STATE(2991)] = 140296, + [SMALL_STATE(2992)] = 140327, + [SMALL_STATE(2993)] = 140358, + [SMALL_STATE(2994)] = 140413, + [SMALL_STATE(2995)] = 140446, + [SMALL_STATE(2996)] = 140483, + [SMALL_STATE(2997)] = 140520, + [SMALL_STATE(2998)] = 140557, + [SMALL_STATE(2999)] = 140588, + [SMALL_STATE(3000)] = 140619, + [SMALL_STATE(3001)] = 140656, + [SMALL_STATE(3002)] = 140706, + [SMALL_STATE(3003)] = 140736, + [SMALL_STATE(3004)] = 140768, + [SMALL_STATE(3005)] = 140818, + [SMALL_STATE(3006)] = 140870, + [SMALL_STATE(3007)] = 140920, + [SMALL_STATE(3008)] = 140970, + [SMALL_STATE(3009)] = 141020, + [SMALL_STATE(3010)] = 141050, + [SMALL_STATE(3011)] = 141100, + [SMALL_STATE(3012)] = 141152, + [SMALL_STATE(3013)] = 141182, + [SMALL_STATE(3014)] = 141232, + [SMALL_STATE(3015)] = 141270, + [SMALL_STATE(3016)] = 141300, + [SMALL_STATE(3017)] = 141350, + [SMALL_STATE(3018)] = 141402, + [SMALL_STATE(3019)] = 141454, + [SMALL_STATE(3020)] = 141504, + [SMALL_STATE(3021)] = 141554, + [SMALL_STATE(3022)] = 141604, + [SMALL_STATE(3023)] = 141654, + [SMALL_STATE(3024)] = 141704, + [SMALL_STATE(3025)] = 141734, + [SMALL_STATE(3026)] = 141784, + [SMALL_STATE(3027)] = 141814, + [SMALL_STATE(3028)] = 141844, + [SMALL_STATE(3029)] = 141882, + [SMALL_STATE(3030)] = 141911, + [SMALL_STATE(3031)] = 141940, + [SMALL_STATE(3032)] = 141987, + [SMALL_STATE(3033)] = 142034, + [SMALL_STATE(3034)] = 142059, + [SMALL_STATE(3035)] = 142096, + [SMALL_STATE(3036)] = 142143, + [SMALL_STATE(3037)] = 142190, + [SMALL_STATE(3038)] = 142239, + [SMALL_STATE(3039)] = 142276, + [SMALL_STATE(3040)] = 142323, + [SMALL_STATE(3041)] = 142370, + [SMALL_STATE(3042)] = 142417, + [SMALL_STATE(3043)] = 142442, + [SMALL_STATE(3044)] = 142481, + [SMALL_STATE(3045)] = 142528, + [SMALL_STATE(3046)] = 142575, + [SMALL_STATE(3047)] = 142622, + [SMALL_STATE(3048)] = 142669, + [SMALL_STATE(3049)] = 142698, + [SMALL_STATE(3050)] = 142745, + [SMALL_STATE(3051)] = 142792, + [SMALL_STATE(3052)] = 142839, + [SMALL_STATE(3053)] = 142886, + [SMALL_STATE(3054)] = 142933, + [SMALL_STATE(3055)] = 142980, + [SMALL_STATE(3056)] = 143005, + [SMALL_STATE(3057)] = 143052, + [SMALL_STATE(3058)] = 143101, + [SMALL_STATE(3059)] = 143148, + [SMALL_STATE(3060)] = 143195, + [SMALL_STATE(3061)] = 143236, + [SMALL_STATE(3062)] = 143281, + [SMALL_STATE(3063)] = 143328, + [SMALL_STATE(3064)] = 143371, + [SMALL_STATE(3065)] = 143418, + [SMALL_STATE(3066)] = 143443, + [SMALL_STATE(3067)] = 143472, + [SMALL_STATE(3068)] = 143519, + [SMALL_STATE(3069)] = 143544, + [SMALL_STATE(3070)] = 143571, + [SMALL_STATE(3071)] = 143608, + [SMALL_STATE(3072)] = 143655, + [SMALL_STATE(3073)] = 143702, + [SMALL_STATE(3074)] = 143751, + [SMALL_STATE(3075)] = 143780, + [SMALL_STATE(3076)] = 143827, + [SMALL_STATE(3077)] = 143856, + [SMALL_STATE(3078)] = 143891, + [SMALL_STATE(3079)] = 143938, + [SMALL_STATE(3080)] = 143963, + [SMALL_STATE(3081)] = 143992, + [SMALL_STATE(3082)] = 144021, + [SMALL_STATE(3083)] = 144050, + [SMALL_STATE(3084)] = 144075, + [SMALL_STATE(3085)] = 144112, + [SMALL_STATE(3086)] = 144159, + [SMALL_STATE(3087)] = 144206, + [SMALL_STATE(3088)] = 144255, + [SMALL_STATE(3089)] = 144304, + [SMALL_STATE(3090)] = 144353, + [SMALL_STATE(3091)] = 144394, + [SMALL_STATE(3092)] = 144435, + [SMALL_STATE(3093)] = 144464, + [SMALL_STATE(3094)] = 144489, + [SMALL_STATE(3095)] = 144533, + [SMALL_STATE(3096)] = 144577, + [SMALL_STATE(3097)] = 144621, + [SMALL_STATE(3098)] = 144665, + [SMALL_STATE(3099)] = 144709, + [SMALL_STATE(3100)] = 144737, + [SMALL_STATE(3101)] = 144781, + [SMALL_STATE(3102)] = 144825, + [SMALL_STATE(3103)] = 144873, + [SMALL_STATE(3104)] = 144917, + [SMALL_STATE(3105)] = 144961, + [SMALL_STATE(3106)] = 145005, + [SMALL_STATE(3107)] = 145049, + [SMALL_STATE(3108)] = 145093, + [SMALL_STATE(3109)] = 145137, + [SMALL_STATE(3110)] = 145169, + [SMALL_STATE(3111)] = 145213, + [SMALL_STATE(3112)] = 145257, + [SMALL_STATE(3113)] = 145301, + [SMALL_STATE(3114)] = 145333, + [SMALL_STATE(3115)] = 145377, + [SMALL_STATE(3116)] = 145421, + [SMALL_STATE(3117)] = 145465, + [SMALL_STATE(3118)] = 145509, + [SMALL_STATE(3119)] = 145553, + [SMALL_STATE(3120)] = 145597, + [SMALL_STATE(3121)] = 145641, + [SMALL_STATE(3122)] = 145685, + [SMALL_STATE(3123)] = 145729, + [SMALL_STATE(3124)] = 145775, + [SMALL_STATE(3125)] = 145819, + [SMALL_STATE(3126)] = 145863, + [SMALL_STATE(3127)] = 145907, + [SMALL_STATE(3128)] = 145951, + [SMALL_STATE(3129)] = 145995, + [SMALL_STATE(3130)] = 146025, + [SMALL_STATE(3131)] = 146069, + [SMALL_STATE(3132)] = 146113, + [SMALL_STATE(3133)] = 146157, + [SMALL_STATE(3134)] = 146201, + [SMALL_STATE(3135)] = 146245, + [SMALL_STATE(3136)] = 146289, + [SMALL_STATE(3137)] = 146333, + [SMALL_STATE(3138)] = 146377, + [SMALL_STATE(3139)] = 146421, + [SMALL_STATE(3140)] = 146465, + [SMALL_STATE(3141)] = 146509, + [SMALL_STATE(3142)] = 146553, + [SMALL_STATE(3143)] = 146597, + [SMALL_STATE(3144)] = 146641, + [SMALL_STATE(3145)] = 146685, + [SMALL_STATE(3146)] = 146729, + [SMALL_STATE(3147)] = 146773, + [SMALL_STATE(3148)] = 146803, + [SMALL_STATE(3149)] = 146847, + [SMALL_STATE(3150)] = 146891, + [SMALL_STATE(3151)] = 146935, + [SMALL_STATE(3152)] = 146979, + [SMALL_STATE(3153)] = 147023, + [SMALL_STATE(3154)] = 147051, + [SMALL_STATE(3155)] = 147079, + [SMALL_STATE(3156)] = 147107, + [SMALL_STATE(3157)] = 147151, + [SMALL_STATE(3158)] = 147195, + [SMALL_STATE(3159)] = 147239, + [SMALL_STATE(3160)] = 147283, + [SMALL_STATE(3161)] = 147327, + [SMALL_STATE(3162)] = 147371, + [SMALL_STATE(3163)] = 147415, + [SMALL_STATE(3164)] = 147459, + [SMALL_STATE(3165)] = 147503, + [SMALL_STATE(3166)] = 147547, + [SMALL_STATE(3167)] = 147591, + [SMALL_STATE(3168)] = 147619, + [SMALL_STATE(3169)] = 147649, + [SMALL_STATE(3170)] = 147693, + [SMALL_STATE(3171)] = 147737, + [SMALL_STATE(3172)] = 147781, + [SMALL_STATE(3173)] = 147825, + [SMALL_STATE(3174)] = 147869, + [SMALL_STATE(3175)] = 147913, + [SMALL_STATE(3176)] = 147957, + [SMALL_STATE(3177)] = 148000, + [SMALL_STATE(3178)] = 148029, + [SMALL_STATE(3179)] = 148070, + [SMALL_STATE(3180)] = 148113, + [SMALL_STATE(3181)] = 148152, + [SMALL_STATE(3182)] = 148179, + [SMALL_STATE(3183)] = 148226, + [SMALL_STATE(3184)] = 148271, + [SMALL_STATE(3185)] = 148312, + [SMALL_STATE(3186)] = 148355, + [SMALL_STATE(3187)] = 148396, + [SMALL_STATE(3188)] = 148439, + [SMALL_STATE(3189)] = 148480, + [SMALL_STATE(3190)] = 148521, + [SMALL_STATE(3191)] = 148564, + [SMALL_STATE(3192)] = 148591, + [SMALL_STATE(3193)] = 148632, + [SMALL_STATE(3194)] = 148665, + [SMALL_STATE(3195)] = 148706, + [SMALL_STATE(3196)] = 148731, + [SMALL_STATE(3197)] = 148772, + [SMALL_STATE(3198)] = 148811, + [SMALL_STATE(3199)] = 148836, + [SMALL_STATE(3200)] = 148877, + [SMALL_STATE(3201)] = 148920, + [SMALL_STATE(3202)] = 148961, + [SMALL_STATE(3203)] = 148988, + [SMALL_STATE(3204)] = 149013, + [SMALL_STATE(3205)] = 149040, + [SMALL_STATE(3206)] = 149065, + [SMALL_STATE(3207)] = 149092, + [SMALL_STATE(3208)] = 149135, + [SMALL_STATE(3209)] = 149176, + [SMALL_STATE(3210)] = 149203, + [SMALL_STATE(3211)] = 149246, + [SMALL_STATE(3212)] = 149284, + [SMALL_STATE(3213)] = 149324, + [SMALL_STATE(3214)] = 149362, + [SMALL_STATE(3215)] = 149396, + [SMALL_STATE(3216)] = 149432, + [SMALL_STATE(3217)] = 149470, + [SMALL_STATE(3218)] = 149508, + [SMALL_STATE(3219)] = 149546, + [SMALL_STATE(3220)] = 149574, + [SMALL_STATE(3221)] = 149598, + [SMALL_STATE(3222)] = 149634, + [SMALL_STATE(3223)] = 149672, + [SMALL_STATE(3224)] = 149710, + [SMALL_STATE(3225)] = 149748, + [SMALL_STATE(3226)] = 149784, + [SMALL_STATE(3227)] = 149822, + [SMALL_STATE(3228)] = 149858, + [SMALL_STATE(3229)] = 149894, + [SMALL_STATE(3230)] = 149932, + [SMALL_STATE(3231)] = 149968, + [SMALL_STATE(3232)] = 149992, + [SMALL_STATE(3233)] = 150016, + [SMALL_STATE(3234)] = 150054, + [SMALL_STATE(3235)] = 150092, + [SMALL_STATE(3236)] = 150130, + [SMALL_STATE(3237)] = 150168, + [SMALL_STATE(3238)] = 150206, + [SMALL_STATE(3239)] = 150244, + [SMALL_STATE(3240)] = 150270, + [SMALL_STATE(3241)] = 150308, + [SMALL_STATE(3242)] = 150348, + [SMALL_STATE(3243)] = 150372, + [SMALL_STATE(3244)] = 150396, + [SMALL_STATE(3245)] = 150430, + [SMALL_STATE(3246)] = 150470, + [SMALL_STATE(3247)] = 150494, + [SMALL_STATE(3248)] = 150518, + [SMALL_STATE(3249)] = 150542, + [SMALL_STATE(3250)] = 150566, + [SMALL_STATE(3251)] = 150604, + [SMALL_STATE(3252)] = 150628, + [SMALL_STATE(3253)] = 150666, + [SMALL_STATE(3254)] = 150704, + [SMALL_STATE(3255)] = 150742, + [SMALL_STATE(3256)] = 150780, + [SMALL_STATE(3257)] = 150818, + [SMALL_STATE(3258)] = 150846, + [SMALL_STATE(3259)] = 150884, + [SMALL_STATE(3260)] = 150924, + [SMALL_STATE(3261)] = 150950, + [SMALL_STATE(3262)] = 150988, + [SMALL_STATE(3263)] = 151026, + [SMALL_STATE(3264)] = 151064, + [SMALL_STATE(3265)] = 151102, + [SMALL_STATE(3266)] = 151135, + [SMALL_STATE(3267)] = 151162, + [SMALL_STATE(3268)] = 151185, + [SMALL_STATE(3269)] = 151212, + [SMALL_STATE(3270)] = 151247, + [SMALL_STATE(3271)] = 151272, + [SMALL_STATE(3272)] = 151293, + [SMALL_STATE(3273)] = 151326, + [SMALL_STATE(3274)] = 151349, + [SMALL_STATE(3275)] = 151388, + [SMALL_STATE(3276)] = 151415, + [SMALL_STATE(3277)] = 151450, + [SMALL_STATE(3278)] = 151483, + [SMALL_STATE(3279)] = 151506, + [SMALL_STATE(3280)] = 151533, + [SMALL_STATE(3281)] = 151556, + [SMALL_STATE(3282)] = 151589, + [SMALL_STATE(3283)] = 151622, + [SMALL_STATE(3284)] = 151643, + [SMALL_STATE(3285)] = 151664, + [SMALL_STATE(3286)] = 151687, + [SMALL_STATE(3287)] = 151710, + [SMALL_STATE(3288)] = 151747, + [SMALL_STATE(3289)] = 151786, + [SMALL_STATE(3290)] = 151813, + [SMALL_STATE(3291)] = 151852, + [SMALL_STATE(3292)] = 151885, + [SMALL_STATE(3293)] = 151912, + [SMALL_STATE(3294)] = 151933, + [SMALL_STATE(3295)] = 151960, + [SMALL_STATE(3296)] = 151985, + [SMALL_STATE(3297)] = 152018, + [SMALL_STATE(3298)] = 152041, + [SMALL_STATE(3299)] = 152074, + [SMALL_STATE(3300)] = 152101, + [SMALL_STATE(3301)] = 152128, + [SMALL_STATE(3302)] = 152161, + [SMALL_STATE(3303)] = 152200, + [SMALL_STATE(3304)] = 152227, + [SMALL_STATE(3305)] = 152257, + [SMALL_STATE(3306)] = 152279, + [SMALL_STATE(3307)] = 152301, + [SMALL_STATE(3308)] = 152323, + [SMALL_STATE(3309)] = 152353, + [SMALL_STATE(3310)] = 152383, + [SMALL_STATE(3311)] = 152423, + [SMALL_STATE(3312)] = 152461, + [SMALL_STATE(3313)] = 152499, + [SMALL_STATE(3314)] = 152539, + [SMALL_STATE(3315)] = 152579, + [SMALL_STATE(3316)] = 152617, + [SMALL_STATE(3317)] = 152641, + [SMALL_STATE(3318)] = 152669, + [SMALL_STATE(3319)] = 152699, + [SMALL_STATE(3320)] = 152737, + [SMALL_STATE(3321)] = 152775, + [SMALL_STATE(3322)] = 152805, + [SMALL_STATE(3323)] = 152835, + [SMALL_STATE(3324)] = 152875, + [SMALL_STATE(3325)] = 152901, + [SMALL_STATE(3326)] = 152927, + [SMALL_STATE(3327)] = 152957, + [SMALL_STATE(3328)] = 152991, + [SMALL_STATE(3329)] = 153023, + [SMALL_STATE(3330)] = 153055, + [SMALL_STATE(3331)] = 153087, + [SMALL_STATE(3332)] = 153125, + [SMALL_STATE(3333)] = 153155, + [SMALL_STATE(3334)] = 153181, + [SMALL_STATE(3335)] = 153213, + [SMALL_STATE(3336)] = 153235, + [SMALL_STATE(3337)] = 153265, + [SMALL_STATE(3338)] = 153297, + [SMALL_STATE(3339)] = 153329, + [SMALL_STATE(3340)] = 153369, + [SMALL_STATE(3341)] = 153391, + [SMALL_STATE(3342)] = 153415, + [SMALL_STATE(3343)] = 153455, + [SMALL_STATE(3344)] = 153487, + [SMALL_STATE(3345)] = 153521, + [SMALL_STATE(3346)] = 153553, + [SMALL_STATE(3347)] = 153585, + [SMALL_STATE(3348)] = 153617, + [SMALL_STATE(3349)] = 153643, + [SMALL_STATE(3350)] = 153665, + [SMALL_STATE(3351)] = 153695, + [SMALL_STATE(3352)] = 153723, + [SMALL_STATE(3353)] = 153747, + [SMALL_STATE(3354)] = 153779, + [SMALL_STATE(3355)] = 153803, + [SMALL_STATE(3356)] = 153831, + [SMALL_STATE(3357)] = 153863, + [SMALL_STATE(3358)] = 153885, + [SMALL_STATE(3359)] = 153907, + [SMALL_STATE(3360)] = 153929, + [SMALL_STATE(3361)] = 153961, + [SMALL_STATE(3362)] = 153995, + [SMALL_STATE(3363)] = 154027, + [SMALL_STATE(3364)] = 154065, + [SMALL_STATE(3365)] = 154099, + [SMALL_STATE(3366)] = 154121, + [SMALL_STATE(3367)] = 154147, + [SMALL_STATE(3368)] = 154177, + [SMALL_STATE(3369)] = 154209, + [SMALL_STATE(3370)] = 154245, + [SMALL_STATE(3371)] = 154286, + [SMALL_STATE(3372)] = 154315, + [SMALL_STATE(3373)] = 154344, + [SMALL_STATE(3374)] = 154365, + [SMALL_STATE(3375)] = 154386, + [SMALL_STATE(3376)] = 154415, + [SMALL_STATE(3377)] = 154444, + [SMALL_STATE(3378)] = 154475, + [SMALL_STATE(3379)] = 154504, + [SMALL_STATE(3380)] = 154533, + [SMALL_STATE(3381)] = 154562, + [SMALL_STATE(3382)] = 154591, + [SMALL_STATE(3383)] = 154620, + [SMALL_STATE(3384)] = 154651, + [SMALL_STATE(3385)] = 154680, + [SMALL_STATE(3386)] = 154711, + [SMALL_STATE(3387)] = 154740, + [SMALL_STATE(3388)] = 154771, + [SMALL_STATE(3389)] = 154800, + [SMALL_STATE(3390)] = 154829, + [SMALL_STATE(3391)] = 154858, + [SMALL_STATE(3392)] = 154887, + [SMALL_STATE(3393)] = 154918, + [SMALL_STATE(3394)] = 154947, + [SMALL_STATE(3395)] = 154968, + [SMALL_STATE(3396)] = 154989, + [SMALL_STATE(3397)] = 155020, + [SMALL_STATE(3398)] = 155049, + [SMALL_STATE(3399)] = 155078, + [SMALL_STATE(3400)] = 155107, + [SMALL_STATE(3401)] = 155136, + [SMALL_STATE(3402)] = 155157, + [SMALL_STATE(3403)] = 155178, + [SMALL_STATE(3404)] = 155209, + [SMALL_STATE(3405)] = 155230, + [SMALL_STATE(3406)] = 155259, + [SMALL_STATE(3407)] = 155288, + [SMALL_STATE(3408)] = 155317, + [SMALL_STATE(3409)] = 155348, + [SMALL_STATE(3410)] = 155377, + [SMALL_STATE(3411)] = 155406, + [SMALL_STATE(3412)] = 155435, + [SMALL_STATE(3413)] = 155464, + [SMALL_STATE(3414)] = 155493, + [SMALL_STATE(3415)] = 155522, + [SMALL_STATE(3416)] = 155551, + [SMALL_STATE(3417)] = 155580, + [SMALL_STATE(3418)] = 155609, + [SMALL_STATE(3419)] = 155630, + [SMALL_STATE(3420)] = 155659, + [SMALL_STATE(3421)] = 155690, + [SMALL_STATE(3422)] = 155713, + [SMALL_STATE(3423)] = 155742, + [SMALL_STATE(3424)] = 155771, + [SMALL_STATE(3425)] = 155792, + [SMALL_STATE(3426)] = 155821, + [SMALL_STATE(3427)] = 155852, + [SMALL_STATE(3428)] = 155881, + [SMALL_STATE(3429)] = 155904, + [SMALL_STATE(3430)] = 155933, + [SMALL_STATE(3431)] = 155962, + [SMALL_STATE(3432)] = 155991, + [SMALL_STATE(3433)] = 156020, + [SMALL_STATE(3434)] = 156051, + [SMALL_STATE(3435)] = 156080, + [SMALL_STATE(3436)] = 156109, + [SMALL_STATE(3437)] = 156140, + [SMALL_STATE(3438)] = 156171, + [SMALL_STATE(3439)] = 156200, + [SMALL_STATE(3440)] = 156229, + [SMALL_STATE(3441)] = 156258, + [SMALL_STATE(3442)] = 156299, + [SMALL_STATE(3443)] = 156328, + [SMALL_STATE(3444)] = 156361, + [SMALL_STATE(3445)] = 156392, + [SMALL_STATE(3446)] = 156423, + [SMALL_STATE(3447)] = 156464, + [SMALL_STATE(3448)] = 156493, + [SMALL_STATE(3449)] = 156524, + [SMALL_STATE(3450)] = 156555, + [SMALL_STATE(3451)] = 156586, + [SMALL_STATE(3452)] = 156627, + [SMALL_STATE(3453)] = 156648, + [SMALL_STATE(3454)] = 156677, + [SMALL_STATE(3455)] = 156706, + [SMALL_STATE(3456)] = 156735, + [SMALL_STATE(3457)] = 156776, + [SMALL_STATE(3458)] = 156805, + [SMALL_STATE(3459)] = 156846, + [SMALL_STATE(3460)] = 156887, + [SMALL_STATE(3461)] = 156916, + [SMALL_STATE(3462)] = 156957, + [SMALL_STATE(3463)] = 156986, + [SMALL_STATE(3464)] = 157015, + [SMALL_STATE(3465)] = 157044, + [SMALL_STATE(3466)] = 157073, + [SMALL_STATE(3467)] = 157102, + [SMALL_STATE(3468)] = 157131, + [SMALL_STATE(3469)] = 157162, + [SMALL_STATE(3470)] = 157193, + [SMALL_STATE(3471)] = 157222, + [SMALL_STATE(3472)] = 157251, + [SMALL_STATE(3473)] = 157280, + [SMALL_STATE(3474)] = 157311, + [SMALL_STATE(3475)] = 157342, + [SMALL_STATE(3476)] = 157371, + [SMALL_STATE(3477)] = 157402, + [SMALL_STATE(3478)] = 157433, + [SMALL_STATE(3479)] = 157466, + [SMALL_STATE(3480)] = 157496, + [SMALL_STATE(3481)] = 157526, + [SMALL_STATE(3482)] = 157556, + [SMALL_STATE(3483)] = 157594, + [SMALL_STATE(3484)] = 157632, + [SMALL_STATE(3485)] = 157662, + [SMALL_STATE(3486)] = 157692, + [SMALL_STATE(3487)] = 157722, + [SMALL_STATE(3488)] = 157752, + [SMALL_STATE(3489)] = 157782, + [SMALL_STATE(3490)] = 157812, + [SMALL_STATE(3491)] = 157842, + [SMALL_STATE(3492)] = 157880, + [SMALL_STATE(3493)] = 157918, + [SMALL_STATE(3494)] = 157948, + [SMALL_STATE(3495)] = 157978, + [SMALL_STATE(3496)] = 158008, + [SMALL_STATE(3497)] = 158046, + [SMALL_STATE(3498)] = 158066, + [SMALL_STATE(3499)] = 158104, + [SMALL_STATE(3500)] = 158138, + [SMALL_STATE(3501)] = 158168, + [SMALL_STATE(3502)] = 158198, + [SMALL_STATE(3503)] = 158228, + [SMALL_STATE(3504)] = 158266, + [SMALL_STATE(3505)] = 158304, + [SMALL_STATE(3506)] = 158342, + [SMALL_STATE(3507)] = 158374, + [SMALL_STATE(3508)] = 158404, + [SMALL_STATE(3509)] = 158432, + [SMALL_STATE(3510)] = 158456, + [SMALL_STATE(3511)] = 158484, + [SMALL_STATE(3512)] = 158512, + [SMALL_STATE(3513)] = 158542, + [SMALL_STATE(3514)] = 158580, + [SMALL_STATE(3515)] = 158608, + [SMALL_STATE(3516)] = 158646, + [SMALL_STATE(3517)] = 158680, + [SMALL_STATE(3518)] = 158718, + [SMALL_STATE(3519)] = 158748, + [SMALL_STATE(3520)] = 158778, + [SMALL_STATE(3521)] = 158808, + [SMALL_STATE(3522)] = 158838, + [SMALL_STATE(3523)] = 158868, + [SMALL_STATE(3524)] = 158898, + [SMALL_STATE(3525)] = 158922, + [SMALL_STATE(3526)] = 158952, + [SMALL_STATE(3527)] = 158980, + [SMALL_STATE(3528)] = 159014, + [SMALL_STATE(3529)] = 159044, + [SMALL_STATE(3530)] = 159072, + [SMALL_STATE(3531)] = 159110, + [SMALL_STATE(3532)] = 159140, + [SMALL_STATE(3533)] = 159172, + [SMALL_STATE(3534)] = 159202, + [SMALL_STATE(3535)] = 159230, + [SMALL_STATE(3536)] = 159248, + [SMALL_STATE(3537)] = 159272, + [SMALL_STATE(3538)] = 159302, + [SMALL_STATE(3539)] = 159334, + [SMALL_STATE(3540)] = 159372, + [SMALL_STATE(3541)] = 159402, + [SMALL_STATE(3542)] = 159436, + [SMALL_STATE(3543)] = 159474, + [SMALL_STATE(3544)] = 159512, + [SMALL_STATE(3545)] = 159550, + [SMALL_STATE(3546)] = 159582, + [SMALL_STATE(3547)] = 159612, + [SMALL_STATE(3548)] = 159644, + [SMALL_STATE(3549)] = 159678, + [SMALL_STATE(3550)] = 159716, + [SMALL_STATE(3551)] = 159750, + [SMALL_STATE(3552)] = 159778, + [SMALL_STATE(3553)] = 159816, + [SMALL_STATE(3554)] = 159854, + [SMALL_STATE(3555)] = 159892, + [SMALL_STATE(3556)] = 159920, + [SMALL_STATE(3557)] = 159958, + [SMALL_STATE(3558)] = 159996, + [SMALL_STATE(3559)] = 160028, + [SMALL_STATE(3560)] = 160066, + [SMALL_STATE(3561)] = 160098, + [SMALL_STATE(3562)] = 160136, + [SMALL_STATE(3563)] = 160164, + [SMALL_STATE(3564)] = 160192, + [SMALL_STATE(3565)] = 160216, + [SMALL_STATE(3566)] = 160248, + [SMALL_STATE(3567)] = 160278, + [SMALL_STATE(3568)] = 160308, + [SMALL_STATE(3569)] = 160340, + [SMALL_STATE(3570)] = 160370, + [SMALL_STATE(3571)] = 160393, + [SMALL_STATE(3572)] = 160422, + [SMALL_STATE(3573)] = 160439, + [SMALL_STATE(3574)] = 160456, + [SMALL_STATE(3575)] = 160475, + [SMALL_STATE(3576)] = 160504, + [SMALL_STATE(3577)] = 160525, + [SMALL_STATE(3578)] = 160550, + [SMALL_STATE(3579)] = 160579, + [SMALL_STATE(3580)] = 160596, + [SMALL_STATE(3581)] = 160615, + [SMALL_STATE(3582)] = 160634, + [SMALL_STATE(3583)] = 160653, + [SMALL_STATE(3584)] = 160676, + [SMALL_STATE(3585)] = 160695, + [SMALL_STATE(3586)] = 160726, + [SMALL_STATE(3587)] = 160745, + [SMALL_STATE(3588)] = 160770, + [SMALL_STATE(3589)] = 160789, + [SMALL_STATE(3590)] = 160814, + [SMALL_STATE(3591)] = 160839, + [SMALL_STATE(3592)] = 160868, + [SMALL_STATE(3593)] = 160887, + [SMALL_STATE(3594)] = 160916, + [SMALL_STATE(3595)] = 160945, + [SMALL_STATE(3596)] = 160974, + [SMALL_STATE(3597)] = 160993, + [SMALL_STATE(3598)] = 161022, + [SMALL_STATE(3599)] = 161051, + [SMALL_STATE(3600)] = 161074, + [SMALL_STATE(3601)] = 161103, + [SMALL_STATE(3602)] = 161134, + [SMALL_STATE(3603)] = 161153, + [SMALL_STATE(3604)] = 161182, + [SMALL_STATE(3605)] = 161213, + [SMALL_STATE(3606)] = 161242, + [SMALL_STATE(3607)] = 161267, + [SMALL_STATE(3608)] = 161292, + [SMALL_STATE(3609)] = 161311, + [SMALL_STATE(3610)] = 161336, + [SMALL_STATE(3611)] = 161367, + [SMALL_STATE(3612)] = 161396, + [SMALL_STATE(3613)] = 161415, + [SMALL_STATE(3614)] = 161438, + [SMALL_STATE(3615)] = 161461, + [SMALL_STATE(3616)] = 161490, + [SMALL_STATE(3617)] = 161511, + [SMALL_STATE(3618)] = 161528, + [SMALL_STATE(3619)] = 161549, + [SMALL_STATE(3620)] = 161578, + [SMALL_STATE(3621)] = 161601, + [SMALL_STATE(3622)] = 161630, + [SMALL_STATE(3623)] = 161659, + [SMALL_STATE(3624)] = 161678, + [SMALL_STATE(3625)] = 161707, + [SMALL_STATE(3626)] = 161730, + [SMALL_STATE(3627)] = 161759, + [SMALL_STATE(3628)] = 161790, + [SMALL_STATE(3629)] = 161821, + [SMALL_STATE(3630)] = 161850, + [SMALL_STATE(3631)] = 161867, + [SMALL_STATE(3632)] = 161888, + [SMALL_STATE(3633)] = 161917, + [SMALL_STATE(3634)] = 161946, + [SMALL_STATE(3635)] = 161969, + [SMALL_STATE(3636)] = 161998, + [SMALL_STATE(3637)] = 162015, + [SMALL_STATE(3638)] = 162034, + [SMALL_STATE(3639)] = 162059, + [SMALL_STATE(3640)] = 162084, + [SMALL_STATE(3641)] = 162115, + [SMALL_STATE(3642)] = 162136, + [SMALL_STATE(3643)] = 162155, + [SMALL_STATE(3644)] = 162180, + [SMALL_STATE(3645)] = 162205, + [SMALL_STATE(3646)] = 162234, + [SMALL_STATE(3647)] = 162263, + [SMALL_STATE(3648)] = 162282, + [SMALL_STATE(3649)] = 162298, + [SMALL_STATE(3650)] = 162322, + [SMALL_STATE(3651)] = 162346, + [SMALL_STATE(3652)] = 162364, + [SMALL_STATE(3653)] = 162396, + [SMALL_STATE(3654)] = 162418, + [SMALL_STATE(3655)] = 162446, + [SMALL_STATE(3656)] = 162474, + [SMALL_STATE(3657)] = 162506, + [SMALL_STATE(3658)] = 162526, + [SMALL_STATE(3659)] = 162542, + [SMALL_STATE(3660)] = 162570, + [SMALL_STATE(3661)] = 162600, + [SMALL_STATE(3662)] = 162618, + [SMALL_STATE(3663)] = 162642, + [SMALL_STATE(3664)] = 162666, + [SMALL_STATE(3665)] = 162694, + [SMALL_STATE(3666)] = 162722, + [SMALL_STATE(3667)] = 162752, + [SMALL_STATE(3668)] = 162782, + [SMALL_STATE(3669)] = 162810, + [SMALL_STATE(3670)] = 162840, + [SMALL_STATE(3671)] = 162870, + [SMALL_STATE(3672)] = 162894, + [SMALL_STATE(3673)] = 162922, + [SMALL_STATE(3674)] = 162944, + [SMALL_STATE(3675)] = 162968, + [SMALL_STATE(3676)] = 162988, + [SMALL_STATE(3677)] = 163006, + [SMALL_STATE(3678)] = 163030, + [SMALL_STATE(3679)] = 163058, + [SMALL_STATE(3680)] = 163082, + [SMALL_STATE(3681)] = 163114, + [SMALL_STATE(3682)] = 163138, + [SMALL_STATE(3683)] = 163166, + [SMALL_STATE(3684)] = 163198, + [SMALL_STATE(3685)] = 163220, + [SMALL_STATE(3686)] = 163240, + [SMALL_STATE(3687)] = 163258, + [SMALL_STATE(3688)] = 163286, + [SMALL_STATE(3689)] = 163316, + [SMALL_STATE(3690)] = 163344, + [SMALL_STATE(3691)] = 163374, + [SMALL_STATE(3692)] = 163404, + [SMALL_STATE(3693)] = 163432, + [SMALL_STATE(3694)] = 163462, + [SMALL_STATE(3695)] = 163490, + [SMALL_STATE(3696)] = 163508, + [SMALL_STATE(3697)] = 163532, + [SMALL_STATE(3698)] = 163564, + [SMALL_STATE(3699)] = 163592, + [SMALL_STATE(3700)] = 163624, + [SMALL_STATE(3701)] = 163654, + [SMALL_STATE(3702)] = 163682, + [SMALL_STATE(3703)] = 163700, + [SMALL_STATE(3704)] = 163716, + [SMALL_STATE(3705)] = 163732, + [SMALL_STATE(3706)] = 163748, + [SMALL_STATE(3707)] = 163764, + [SMALL_STATE(3708)] = 163780, + [SMALL_STATE(3709)] = 163796, + [SMALL_STATE(3710)] = 163814, + [SMALL_STATE(3711)] = 163844, + [SMALL_STATE(3712)] = 163862, + [SMALL_STATE(3713)] = 163880, + [SMALL_STATE(3714)] = 163910, + [SMALL_STATE(3715)] = 163928, + [SMALL_STATE(3716)] = 163958, + [SMALL_STATE(3717)] = 163976, + [SMALL_STATE(3718)] = 164000, + [SMALL_STATE(3719)] = 164022, + [SMALL_STATE(3720)] = 164044, + [SMALL_STATE(3721)] = 164064, + [SMALL_STATE(3722)] = 164088, + [SMALL_STATE(3723)] = 164112, + [SMALL_STATE(3724)] = 164134, + [SMALL_STATE(3725)] = 164150, + [SMALL_STATE(3726)] = 164166, + [SMALL_STATE(3727)] = 164190, + [SMALL_STATE(3728)] = 164214, + [SMALL_STATE(3729)] = 164237, + [SMALL_STATE(3730)] = 164266, + [SMALL_STATE(3731)] = 164293, + [SMALL_STATE(3732)] = 164322, + [SMALL_STATE(3733)] = 164351, + [SMALL_STATE(3734)] = 164372, + [SMALL_STATE(3735)] = 164401, + [SMALL_STATE(3736)] = 164422, + [SMALL_STATE(3737)] = 164451, + [SMALL_STATE(3738)] = 164480, + [SMALL_STATE(3739)] = 164503, + [SMALL_STATE(3740)] = 164532, + [SMALL_STATE(3741)] = 164553, + [SMALL_STATE(3742)] = 164574, + [SMALL_STATE(3743)] = 164601, + [SMALL_STATE(3744)] = 164626, + [SMALL_STATE(3745)] = 164649, + [SMALL_STATE(3746)] = 164678, + [SMALL_STATE(3747)] = 164707, + [SMALL_STATE(3748)] = 164736, + [SMALL_STATE(3749)] = 164765, + [SMALL_STATE(3750)] = 164794, + [SMALL_STATE(3751)] = 164823, + [SMALL_STATE(3752)] = 164852, + [SMALL_STATE(3753)] = 164881, + [SMALL_STATE(3754)] = 164906, + [SMALL_STATE(3755)] = 164935, + [SMALL_STATE(3756)] = 164964, + [SMALL_STATE(3757)] = 164993, + [SMALL_STATE(3758)] = 165020, + [SMALL_STATE(3759)] = 165043, + [SMALL_STATE(3760)] = 165072, + [SMALL_STATE(3761)] = 165097, + [SMALL_STATE(3762)] = 165126, + [SMALL_STATE(3763)] = 165155, + [SMALL_STATE(3764)] = 165178, + [SMALL_STATE(3765)] = 165201, + [SMALL_STATE(3766)] = 165222, + [SMALL_STATE(3767)] = 165243, + [SMALL_STATE(3768)] = 165272, + [SMALL_STATE(3769)] = 165295, + [SMALL_STATE(3770)] = 165316, + [SMALL_STATE(3771)] = 165337, + [SMALL_STATE(3772)] = 165356, + [SMALL_STATE(3773)] = 165385, + [SMALL_STATE(3774)] = 165410, + [SMALL_STATE(3775)] = 165437, + [SMALL_STATE(3776)] = 165458, + [SMALL_STATE(3777)] = 165487, + [SMALL_STATE(3778)] = 165514, + [SMALL_STATE(3779)] = 165541, + [SMALL_STATE(3780)] = 165564, + [SMALL_STATE(3781)] = 165593, + [SMALL_STATE(3782)] = 165614, + [SMALL_STATE(3783)] = 165643, + [SMALL_STATE(3784)] = 165666, + [SMALL_STATE(3785)] = 165695, + [SMALL_STATE(3786)] = 165724, + [SMALL_STATE(3787)] = 165753, + [SMALL_STATE(3788)] = 165776, + [SMALL_STATE(3789)] = 165799, + [SMALL_STATE(3790)] = 165828, + [SMALL_STATE(3791)] = 165849, + [SMALL_STATE(3792)] = 165878, + [SMALL_STATE(3793)] = 165905, + [SMALL_STATE(3794)] = 165932, + [SMALL_STATE(3795)] = 165947, + [SMALL_STATE(3796)] = 165970, + [SMALL_STATE(3797)] = 165985, + [SMALL_STATE(3798)] = 166014, + [SMALL_STATE(3799)] = 166029, + [SMALL_STATE(3800)] = 166044, + [SMALL_STATE(3801)] = 166059, + [SMALL_STATE(3802)] = 166074, + [SMALL_STATE(3803)] = 166103, + [SMALL_STATE(3804)] = 166126, + [SMALL_STATE(3805)] = 166145, + [SMALL_STATE(3806)] = 166174, + [SMALL_STATE(3807)] = 166203, + [SMALL_STATE(3808)] = 166224, + [SMALL_STATE(3809)] = 166253, + [SMALL_STATE(3810)] = 166274, + [SMALL_STATE(3811)] = 166293, + [SMALL_STATE(3812)] = 166322, + [SMALL_STATE(3813)] = 166343, + [SMALL_STATE(3814)] = 166362, + [SMALL_STATE(3815)] = 166383, + [SMALL_STATE(3816)] = 166412, + [SMALL_STATE(3817)] = 166437, + [SMALL_STATE(3818)] = 166460, + [SMALL_STATE(3819)] = 166481, + [SMALL_STATE(3820)] = 166500, + [SMALL_STATE(3821)] = 166517, + [SMALL_STATE(3822)] = 166540, + [SMALL_STATE(3823)] = 166561, + [SMALL_STATE(3824)] = 166584, + [SMALL_STATE(3825)] = 166603, + [SMALL_STATE(3826)] = 166632, + [SMALL_STATE(3827)] = 166661, + [SMALL_STATE(3828)] = 166690, + [SMALL_STATE(3829)] = 166713, + [SMALL_STATE(3830)] = 166742, + [SMALL_STATE(3831)] = 166766, + [SMALL_STATE(3832)] = 166792, + [SMALL_STATE(3833)] = 166818, + [SMALL_STATE(3834)] = 166844, + [SMALL_STATE(3835)] = 166868, + [SMALL_STATE(3836)] = 166892, + [SMALL_STATE(3837)] = 166916, + [SMALL_STATE(3838)] = 166940, + [SMALL_STATE(3839)] = 166964, + [SMALL_STATE(3840)] = 166990, + [SMALL_STATE(3841)] = 167016, + [SMALL_STATE(3842)] = 167042, + [SMALL_STATE(3843)] = 167068, + [SMALL_STATE(3844)] = 167094, + [SMALL_STATE(3845)] = 167118, + [SMALL_STATE(3846)] = 167140, + [SMALL_STATE(3847)] = 167166, + [SMALL_STATE(3848)] = 167192, + [SMALL_STATE(3849)] = 167218, + [SMALL_STATE(3850)] = 167244, + [SMALL_STATE(3851)] = 167262, + [SMALL_STATE(3852)] = 167288, + [SMALL_STATE(3853)] = 167314, + [SMALL_STATE(3854)] = 167340, + [SMALL_STATE(3855)] = 167366, + [SMALL_STATE(3856)] = 167386, + [SMALL_STATE(3857)] = 167408, + [SMALL_STATE(3858)] = 167434, + [SMALL_STATE(3859)] = 167460, + [SMALL_STATE(3860)] = 167486, + [SMALL_STATE(3861)] = 167512, + [SMALL_STATE(3862)] = 167538, + [SMALL_STATE(3863)] = 167558, + [SMALL_STATE(3864)] = 167580, + [SMALL_STATE(3865)] = 167606, + [SMALL_STATE(3866)] = 167630, + [SMALL_STATE(3867)] = 167656, + [SMALL_STATE(3868)] = 167676, + [SMALL_STATE(3869)] = 167698, + [SMALL_STATE(3870)] = 167716, + [SMALL_STATE(3871)] = 167738, + [SMALL_STATE(3872)] = 167764, + [SMALL_STATE(3873)] = 167790, + [SMALL_STATE(3874)] = 167816, + [SMALL_STATE(3875)] = 167842, + [SMALL_STATE(3876)] = 167868, + [SMALL_STATE(3877)] = 167894, + [SMALL_STATE(3878)] = 167920, + [SMALL_STATE(3879)] = 167946, + [SMALL_STATE(3880)] = 167972, + [SMALL_STATE(3881)] = 167996, + [SMALL_STATE(3882)] = 168020, + [SMALL_STATE(3883)] = 168044, + [SMALL_STATE(3884)] = 168062, + [SMALL_STATE(3885)] = 168088, + [SMALL_STATE(3886)] = 168110, + [SMALL_STATE(3887)] = 168136, + [SMALL_STATE(3888)] = 168162, + [SMALL_STATE(3889)] = 168186, + [SMALL_STATE(3890)] = 168210, + [SMALL_STATE(3891)] = 168234, + [SMALL_STATE(3892)] = 168260, + [SMALL_STATE(3893)] = 168284, + [SMALL_STATE(3894)] = 168310, + [SMALL_STATE(3895)] = 168336, + [SMALL_STATE(3896)] = 168360, + [SMALL_STATE(3897)] = 168384, + [SMALL_STATE(3898)] = 168408, + [SMALL_STATE(3899)] = 168432, + [SMALL_STATE(3900)] = 168456, + [SMALL_STATE(3901)] = 168480, + [SMALL_STATE(3902)] = 168506, + [SMALL_STATE(3903)] = 168532, + [SMALL_STATE(3904)] = 168558, + [SMALL_STATE(3905)] = 168584, + [SMALL_STATE(3906)] = 168608, + [SMALL_STATE(3907)] = 168632, + [SMALL_STATE(3908)] = 168656, + [SMALL_STATE(3909)] = 168680, + [SMALL_STATE(3910)] = 168706, + [SMALL_STATE(3911)] = 168732, + [SMALL_STATE(3912)] = 168758, + [SMALL_STATE(3913)] = 168782, + [SMALL_STATE(3914)] = 168808, + [SMALL_STATE(3915)] = 168834, + [SMALL_STATE(3916)] = 168860, + [SMALL_STATE(3917)] = 168886, + [SMALL_STATE(3918)] = 168912, + [SMALL_STATE(3919)] = 168936, + [SMALL_STATE(3920)] = 168962, + [SMALL_STATE(3921)] = 168988, + [SMALL_STATE(3922)] = 169014, + [SMALL_STATE(3923)] = 169036, + [SMALL_STATE(3924)] = 169062, + [SMALL_STATE(3925)] = 169088, + [SMALL_STATE(3926)] = 169114, + [SMALL_STATE(3927)] = 169140, + [SMALL_STATE(3928)] = 169166, + [SMALL_STATE(3929)] = 169192, + [SMALL_STATE(3930)] = 169218, + [SMALL_STATE(3931)] = 169242, + [SMALL_STATE(3932)] = 169268, + [SMALL_STATE(3933)] = 169292, + [SMALL_STATE(3934)] = 169316, + [SMALL_STATE(3935)] = 169340, + [SMALL_STATE(3936)] = 169364, + [SMALL_STATE(3937)] = 169390, + [SMALL_STATE(3938)] = 169404, + [SMALL_STATE(3939)] = 169422, + [SMALL_STATE(3940)] = 169446, + [SMALL_STATE(3941)] = 169472, + [SMALL_STATE(3942)] = 169496, + [SMALL_STATE(3943)] = 169518, + [SMALL_STATE(3944)] = 169544, + [SMALL_STATE(3945)] = 169570, + [SMALL_STATE(3946)] = 169594, + [SMALL_STATE(3947)] = 169620, + [SMALL_STATE(3948)] = 169634, + [SMALL_STATE(3949)] = 169656, + [SMALL_STATE(3950)] = 169674, + [SMALL_STATE(3951)] = 169700, + [SMALL_STATE(3952)] = 169726, + [SMALL_STATE(3953)] = 169752, + [SMALL_STATE(3954)] = 169774, + [SMALL_STATE(3955)] = 169800, + [SMALL_STATE(3956)] = 169826, + [SMALL_STATE(3957)] = 169852, + [SMALL_STATE(3958)] = 169878, + [SMALL_STATE(3959)] = 169904, + [SMALL_STATE(3960)] = 169928, + [SMALL_STATE(3961)] = 169954, + [SMALL_STATE(3962)] = 169978, + [SMALL_STATE(3963)] = 170004, + [SMALL_STATE(3964)] = 170028, + [SMALL_STATE(3965)] = 170054, + [SMALL_STATE(3966)] = 170080, + [SMALL_STATE(3967)] = 170106, + [SMALL_STATE(3968)] = 170130, + [SMALL_STATE(3969)] = 170156, + [SMALL_STATE(3970)] = 170172, + [SMALL_STATE(3971)] = 170190, + [SMALL_STATE(3972)] = 170214, + [SMALL_STATE(3973)] = 170238, + [SMALL_STATE(3974)] = 170264, + [SMALL_STATE(3975)] = 170290, + [SMALL_STATE(3976)] = 170312, + [SMALL_STATE(3977)] = 170330, + [SMALL_STATE(3978)] = 170356, + [SMALL_STATE(3979)] = 170382, + [SMALL_STATE(3980)] = 170408, + [SMALL_STATE(3981)] = 170434, + [SMALL_STATE(3982)] = 170460, + [SMALL_STATE(3983)] = 170482, + [SMALL_STATE(3984)] = 170500, + [SMALL_STATE(3985)] = 170526, + [SMALL_STATE(3986)] = 170550, + [SMALL_STATE(3987)] = 170574, + [SMALL_STATE(3988)] = 170596, + [SMALL_STATE(3989)] = 170614, + [SMALL_STATE(3990)] = 170640, + [SMALL_STATE(3991)] = 170666, + [SMALL_STATE(3992)] = 170690, + [SMALL_STATE(3993)] = 170714, + [SMALL_STATE(3994)] = 170738, + [SMALL_STATE(3995)] = 170762, + [SMALL_STATE(3996)] = 170788, + [SMALL_STATE(3997)] = 170812, + [SMALL_STATE(3998)] = 170830, + [SMALL_STATE(3999)] = 170854, + [SMALL_STATE(4000)] = 170880, + [SMALL_STATE(4001)] = 170904, + [SMALL_STATE(4002)] = 170920, + [SMALL_STATE(4003)] = 170942, + [SMALL_STATE(4004)] = 170968, + [SMALL_STATE(4005)] = 170985, + [SMALL_STATE(4006)] = 171006, + [SMALL_STATE(4007)] = 171027, + [SMALL_STATE(4008)] = 171042, + [SMALL_STATE(4009)] = 171059, + [SMALL_STATE(4010)] = 171080, + [SMALL_STATE(4011)] = 171097, + [SMALL_STATE(4012)] = 171120, + [SMALL_STATE(4013)] = 171141, + [SMALL_STATE(4014)] = 171164, + [SMALL_STATE(4015)] = 171187, + [SMALL_STATE(4016)] = 171210, + [SMALL_STATE(4017)] = 171227, + [SMALL_STATE(4018)] = 171244, + [SMALL_STATE(4019)] = 171265, + [SMALL_STATE(4020)] = 171282, + [SMALL_STATE(4021)] = 171305, + [SMALL_STATE(4022)] = 171318, + [SMALL_STATE(4023)] = 171341, + [SMALL_STATE(4024)] = 171362, + [SMALL_STATE(4025)] = 171383, + [SMALL_STATE(4026)] = 171406, + [SMALL_STATE(4027)] = 171427, + [SMALL_STATE(4028)] = 171448, + [SMALL_STATE(4029)] = 171471, + [SMALL_STATE(4030)] = 171492, + [SMALL_STATE(4031)] = 171509, + [SMALL_STATE(4032)] = 171528, + [SMALL_STATE(4033)] = 171543, + [SMALL_STATE(4034)] = 171560, + [SMALL_STATE(4035)] = 171577, + [SMALL_STATE(4036)] = 171594, + [SMALL_STATE(4037)] = 171615, + [SMALL_STATE(4038)] = 171636, + [SMALL_STATE(4039)] = 171649, + [SMALL_STATE(4040)] = 171670, + [SMALL_STATE(4041)] = 171685, + [SMALL_STATE(4042)] = 171706, + [SMALL_STATE(4043)] = 171727, + [SMALL_STATE(4044)] = 171744, + [SMALL_STATE(4045)] = 171757, + [SMALL_STATE(4046)] = 171778, + [SMALL_STATE(4047)] = 171791, + [SMALL_STATE(4048)] = 171812, + [SMALL_STATE(4049)] = 171835, + [SMALL_STATE(4050)] = 171858, + [SMALL_STATE(4051)] = 171873, + [SMALL_STATE(4052)] = 171894, + [SMALL_STATE(4053)] = 171915, + [SMALL_STATE(4054)] = 171928, + [SMALL_STATE(4055)] = 171941, + [SMALL_STATE(4056)] = 171962, + [SMALL_STATE(4057)] = 171975, + [SMALL_STATE(4058)] = 171998, + [SMALL_STATE(4059)] = 172021, + [SMALL_STATE(4060)] = 172044, + [SMALL_STATE(4061)] = 172061, + [SMALL_STATE(4062)] = 172082, + [SMALL_STATE(4063)] = 172099, + [SMALL_STATE(4064)] = 172116, + [SMALL_STATE(4065)] = 172133, + [SMALL_STATE(4066)] = 172154, + [SMALL_STATE(4067)] = 172171, + [SMALL_STATE(4068)] = 172192, + [SMALL_STATE(4069)] = 172213, + [SMALL_STATE(4070)] = 172234, + [SMALL_STATE(4071)] = 172255, + [SMALL_STATE(4072)] = 172278, + [SMALL_STATE(4073)] = 172295, + [SMALL_STATE(4074)] = 172316, + [SMALL_STATE(4075)] = 172337, + [SMALL_STATE(4076)] = 172354, + [SMALL_STATE(4077)] = 172371, + [SMALL_STATE(4078)] = 172388, + [SMALL_STATE(4079)] = 172411, + [SMALL_STATE(4080)] = 172428, + [SMALL_STATE(4081)] = 172449, + [SMALL_STATE(4082)] = 172470, + [SMALL_STATE(4083)] = 172487, + [SMALL_STATE(4084)] = 172508, + [SMALL_STATE(4085)] = 172529, + [SMALL_STATE(4086)] = 172552, + [SMALL_STATE(4087)] = 172575, + [SMALL_STATE(4088)] = 172590, + [SMALL_STATE(4089)] = 172611, + [SMALL_STATE(4090)] = 172626, + [SMALL_STATE(4091)] = 172641, + [SMALL_STATE(4092)] = 172662, + [SMALL_STATE(4093)] = 172685, + [SMALL_STATE(4094)] = 172706, + [SMALL_STATE(4095)] = 172723, + [SMALL_STATE(4096)] = 172744, + [SMALL_STATE(4097)] = 172757, + [SMALL_STATE(4098)] = 172770, + [SMALL_STATE(4099)] = 172783, + [SMALL_STATE(4100)] = 172804, + [SMALL_STATE(4101)] = 172825, + [SMALL_STATE(4102)] = 172842, + [SMALL_STATE(4103)] = 172863, + [SMALL_STATE(4104)] = 172880, + [SMALL_STATE(4105)] = 172901, + [SMALL_STATE(4106)] = 172918, + [SMALL_STATE(4107)] = 172935, + [SMALL_STATE(4108)] = 172952, + [SMALL_STATE(4109)] = 172969, + [SMALL_STATE(4110)] = 172990, + [SMALL_STATE(4111)] = 173011, + [SMALL_STATE(4112)] = 173032, + [SMALL_STATE(4113)] = 173055, + [SMALL_STATE(4114)] = 173072, + [SMALL_STATE(4115)] = 173085, + [SMALL_STATE(4116)] = 173108, + [SMALL_STATE(4117)] = 173131, + [SMALL_STATE(4118)] = 173152, + [SMALL_STATE(4119)] = 173175, + [SMALL_STATE(4120)] = 173192, + [SMALL_STATE(4121)] = 173213, + [SMALL_STATE(4122)] = 173234, + [SMALL_STATE(4123)] = 173249, + [SMALL_STATE(4124)] = 173264, + [SMALL_STATE(4125)] = 173287, + [SMALL_STATE(4126)] = 173308, + [SMALL_STATE(4127)] = 173327, + [SMALL_STATE(4128)] = 173344, + [SMALL_STATE(4129)] = 173359, + [SMALL_STATE(4130)] = 173380, + [SMALL_STATE(4131)] = 173401, + [SMALL_STATE(4132)] = 173422, + [SMALL_STATE(4133)] = 173439, + [SMALL_STATE(4134)] = 173456, + [SMALL_STATE(4135)] = 173473, + [SMALL_STATE(4136)] = 173486, + [SMALL_STATE(4137)] = 173505, + [SMALL_STATE(4138)] = 173518, + [SMALL_STATE(4139)] = 173541, + [SMALL_STATE(4140)] = 173558, + [SMALL_STATE(4141)] = 173579, + [SMALL_STATE(4142)] = 173600, + [SMALL_STATE(4143)] = 173617, + [SMALL_STATE(4144)] = 173629, + [SMALL_STATE(4145)] = 173649, + [SMALL_STATE(4146)] = 173661, + [SMALL_STATE(4147)] = 173673, + [SMALL_STATE(4148)] = 173693, + [SMALL_STATE(4149)] = 173705, + [SMALL_STATE(4150)] = 173717, + [SMALL_STATE(4151)] = 173729, + [SMALL_STATE(4152)] = 173743, + [SMALL_STATE(4153)] = 173755, + [SMALL_STATE(4154)] = 173767, + [SMALL_STATE(4155)] = 173787, + [SMALL_STATE(4156)] = 173807, + [SMALL_STATE(4157)] = 173827, + [SMALL_STATE(4158)] = 173845, + [SMALL_STATE(4159)] = 173865, + [SMALL_STATE(4160)] = 173885, + [SMALL_STATE(4161)] = 173905, + [SMALL_STATE(4162)] = 173917, + [SMALL_STATE(4163)] = 173937, + [SMALL_STATE(4164)] = 173957, + [SMALL_STATE(4165)] = 173969, + [SMALL_STATE(4166)] = 173981, + [SMALL_STATE(4167)] = 174001, + [SMALL_STATE(4168)] = 174017, + [SMALL_STATE(4169)] = 174037, + [SMALL_STATE(4170)] = 174051, + [SMALL_STATE(4171)] = 174069, + [SMALL_STATE(4172)] = 174089, + [SMALL_STATE(4173)] = 174109, + [SMALL_STATE(4174)] = 174129, + [SMALL_STATE(4175)] = 174147, + [SMALL_STATE(4176)] = 174167, + [SMALL_STATE(4177)] = 174179, + [SMALL_STATE(4178)] = 174191, + [SMALL_STATE(4179)] = 174207, + [SMALL_STATE(4180)] = 174219, + [SMALL_STATE(4181)] = 174237, + [SMALL_STATE(4182)] = 174257, + [SMALL_STATE(4183)] = 174277, + [SMALL_STATE(4184)] = 174297, + [SMALL_STATE(4185)] = 174317, + [SMALL_STATE(4186)] = 174337, + [SMALL_STATE(4187)] = 174349, + [SMALL_STATE(4188)] = 174369, + [SMALL_STATE(4189)] = 174389, + [SMALL_STATE(4190)] = 174401, + [SMALL_STATE(4191)] = 174421, + [SMALL_STATE(4192)] = 174441, + [SMALL_STATE(4193)] = 174461, + [SMALL_STATE(4194)] = 174481, + [SMALL_STATE(4195)] = 174497, + [SMALL_STATE(4196)] = 174509, + [SMALL_STATE(4197)] = 174529, + [SMALL_STATE(4198)] = 174541, + [SMALL_STATE(4199)] = 174561, + [SMALL_STATE(4200)] = 174573, + [SMALL_STATE(4201)] = 174593, + [SMALL_STATE(4202)] = 174613, + [SMALL_STATE(4203)] = 174631, + [SMALL_STATE(4204)] = 174649, + [SMALL_STATE(4205)] = 174669, + [SMALL_STATE(4206)] = 174689, + [SMALL_STATE(4207)] = 174709, + [SMALL_STATE(4208)] = 174729, + [SMALL_STATE(4209)] = 174749, + [SMALL_STATE(4210)] = 174761, + [SMALL_STATE(4211)] = 174781, + [SMALL_STATE(4212)] = 174801, + [SMALL_STATE(4213)] = 174821, + [SMALL_STATE(4214)] = 174839, + [SMALL_STATE(4215)] = 174859, + [SMALL_STATE(4216)] = 174877, + [SMALL_STATE(4217)] = 174889, + [SMALL_STATE(4218)] = 174901, + [SMALL_STATE(4219)] = 174913, + [SMALL_STATE(4220)] = 174925, + [SMALL_STATE(4221)] = 174937, + [SMALL_STATE(4222)] = 174955, + [SMALL_STATE(4223)] = 174967, + [SMALL_STATE(4224)] = 174987, + [SMALL_STATE(4225)] = 174999, + [SMALL_STATE(4226)] = 175011, + [SMALL_STATE(4227)] = 175023, + [SMALL_STATE(4228)] = 175041, + [SMALL_STATE(4229)] = 175053, + [SMALL_STATE(4230)] = 175073, + [SMALL_STATE(4231)] = 175093, + [SMALL_STATE(4232)] = 175113, + [SMALL_STATE(4233)] = 175133, + [SMALL_STATE(4234)] = 175153, + [SMALL_STATE(4235)] = 175173, + [SMALL_STATE(4236)] = 175193, + [SMALL_STATE(4237)] = 175209, + [SMALL_STATE(4238)] = 175229, + [SMALL_STATE(4239)] = 175241, + [SMALL_STATE(4240)] = 175259, + [SMALL_STATE(4241)] = 175273, + [SMALL_STATE(4242)] = 175285, + [SMALL_STATE(4243)] = 175297, + [SMALL_STATE(4244)] = 175309, + [SMALL_STATE(4245)] = 175329, + [SMALL_STATE(4246)] = 175349, + [SMALL_STATE(4247)] = 175365, + [SMALL_STATE(4248)] = 175379, + [SMALL_STATE(4249)] = 175395, + [SMALL_STATE(4250)] = 175415, + [SMALL_STATE(4251)] = 175435, + [SMALL_STATE(4252)] = 175453, + [SMALL_STATE(4253)] = 175473, + [SMALL_STATE(4254)] = 175493, + [SMALL_STATE(4255)] = 175513, + [SMALL_STATE(4256)] = 175525, + [SMALL_STATE(4257)] = 175545, + [SMALL_STATE(4258)] = 175565, + [SMALL_STATE(4259)] = 175581, + [SMALL_STATE(4260)] = 175601, + [SMALL_STATE(4261)] = 175617, + [SMALL_STATE(4262)] = 175637, + [SMALL_STATE(4263)] = 175651, + [SMALL_STATE(4264)] = 175667, + [SMALL_STATE(4265)] = 175687, + [SMALL_STATE(4266)] = 175699, + [SMALL_STATE(4267)] = 175711, + [SMALL_STATE(4268)] = 175727, + [SMALL_STATE(4269)] = 175741, + [SMALL_STATE(4270)] = 175757, + [SMALL_STATE(4271)] = 175777, + [SMALL_STATE(4272)] = 175795, + [SMALL_STATE(4273)] = 175811, + [SMALL_STATE(4274)] = 175827, + [SMALL_STATE(4275)] = 175839, + [SMALL_STATE(4276)] = 175855, + [SMALL_STATE(4277)] = 175867, + [SMALL_STATE(4278)] = 175879, + [SMALL_STATE(4279)] = 175899, + [SMALL_STATE(4280)] = 175911, + [SMALL_STATE(4281)] = 175931, + [SMALL_STATE(4282)] = 175951, + [SMALL_STATE(4283)] = 175971, + [SMALL_STATE(4284)] = 175983, + [SMALL_STATE(4285)] = 176003, + [SMALL_STATE(4286)] = 176015, + [SMALL_STATE(4287)] = 176027, + [SMALL_STATE(4288)] = 176047, + [SMALL_STATE(4289)] = 176067, + [SMALL_STATE(4290)] = 176083, + [SMALL_STATE(4291)] = 176095, + [SMALL_STATE(4292)] = 176107, + [SMALL_STATE(4293)] = 176127, + [SMALL_STATE(4294)] = 176143, + [SMALL_STATE(4295)] = 176163, + [SMALL_STATE(4296)] = 176183, + [SMALL_STATE(4297)] = 176195, + [SMALL_STATE(4298)] = 176215, + [SMALL_STATE(4299)] = 176233, + [SMALL_STATE(4300)] = 176245, + [SMALL_STATE(4301)] = 176265, + [SMALL_STATE(4302)] = 176285, + [SMALL_STATE(4303)] = 176305, + [SMALL_STATE(4304)] = 176323, + [SMALL_STATE(4305)] = 176343, + [SMALL_STATE(4306)] = 176363, + [SMALL_STATE(4307)] = 176383, + [SMALL_STATE(4308)] = 176401, + [SMALL_STATE(4309)] = 176413, + [SMALL_STATE(4310)] = 176433, + [SMALL_STATE(4311)] = 176453, + [SMALL_STATE(4312)] = 176473, + [SMALL_STATE(4313)] = 176493, + [SMALL_STATE(4314)] = 176511, + [SMALL_STATE(4315)] = 176531, + [SMALL_STATE(4316)] = 176551, + [SMALL_STATE(4317)] = 176571, + [SMALL_STATE(4318)] = 176587, + [SMALL_STATE(4319)] = 176599, + [SMALL_STATE(4320)] = 176615, + [SMALL_STATE(4321)] = 176633, + [SMALL_STATE(4322)] = 176649, + [SMALL_STATE(4323)] = 176667, + [SMALL_STATE(4324)] = 176687, + [SMALL_STATE(4325)] = 176704, + [SMALL_STATE(4326)] = 176721, + [SMALL_STATE(4327)] = 176732, + [SMALL_STATE(4328)] = 176749, + [SMALL_STATE(4329)] = 176766, + [SMALL_STATE(4330)] = 176777, + [SMALL_STATE(4331)] = 176788, + [SMALL_STATE(4332)] = 176799, + [SMALL_STATE(4333)] = 176816, + [SMALL_STATE(4334)] = 176827, + [SMALL_STATE(4335)] = 176838, + [SMALL_STATE(4336)] = 176849, + [SMALL_STATE(4337)] = 176860, + [SMALL_STATE(4338)] = 176871, + [SMALL_STATE(4339)] = 176886, + [SMALL_STATE(4340)] = 176897, + [SMALL_STATE(4341)] = 176908, + [SMALL_STATE(4342)] = 176919, + [SMALL_STATE(4343)] = 176930, + [SMALL_STATE(4344)] = 176941, + [SMALL_STATE(4345)] = 176952, + [SMALL_STATE(4346)] = 176963, + [SMALL_STATE(4347)] = 176974, + [SMALL_STATE(4348)] = 176985, + [SMALL_STATE(4349)] = 176996, + [SMALL_STATE(4350)] = 177007, + [SMALL_STATE(4351)] = 177018, + [SMALL_STATE(4352)] = 177033, + [SMALL_STATE(4353)] = 177044, + [SMALL_STATE(4354)] = 177055, + [SMALL_STATE(4355)] = 177066, + [SMALL_STATE(4356)] = 177077, + [SMALL_STATE(4357)] = 177088, + [SMALL_STATE(4358)] = 177099, + [SMALL_STATE(4359)] = 177110, + [SMALL_STATE(4360)] = 177121, + [SMALL_STATE(4361)] = 177138, + [SMALL_STATE(4362)] = 177153, + [SMALL_STATE(4363)] = 177168, + [SMALL_STATE(4364)] = 177185, + [SMALL_STATE(4365)] = 177202, + [SMALL_STATE(4366)] = 177217, + [SMALL_STATE(4367)] = 177228, + [SMALL_STATE(4368)] = 177243, + [SMALL_STATE(4369)] = 177254, + [SMALL_STATE(4370)] = 177265, + [SMALL_STATE(4371)] = 177282, + [SMALL_STATE(4372)] = 177297, + [SMALL_STATE(4373)] = 177308, + [SMALL_STATE(4374)] = 177325, + [SMALL_STATE(4375)] = 177336, + [SMALL_STATE(4376)] = 177351, + [SMALL_STATE(4377)] = 177366, + [SMALL_STATE(4378)] = 177383, + [SMALL_STATE(4379)] = 177394, + [SMALL_STATE(4380)] = 177411, + [SMALL_STATE(4381)] = 177428, + [SMALL_STATE(4382)] = 177443, + [SMALL_STATE(4383)] = 177454, + [SMALL_STATE(4384)] = 177471, + [SMALL_STATE(4385)] = 177484, + [SMALL_STATE(4386)] = 177501, + [SMALL_STATE(4387)] = 177512, + [SMALL_STATE(4388)] = 177523, + [SMALL_STATE(4389)] = 177536, + [SMALL_STATE(4390)] = 177551, + [SMALL_STATE(4391)] = 177566, + [SMALL_STATE(4392)] = 177577, + [SMALL_STATE(4393)] = 177594, + [SMALL_STATE(4394)] = 177605, + [SMALL_STATE(4395)] = 177622, + [SMALL_STATE(4396)] = 177633, + [SMALL_STATE(4397)] = 177648, + [SMALL_STATE(4398)] = 177661, + [SMALL_STATE(4399)] = 177678, + [SMALL_STATE(4400)] = 177693, + [SMALL_STATE(4401)] = 177708, + [SMALL_STATE(4402)] = 177719, + [SMALL_STATE(4403)] = 177730, + [SMALL_STATE(4404)] = 177741, + [SMALL_STATE(4405)] = 177756, + [SMALL_STATE(4406)] = 177771, + [SMALL_STATE(4407)] = 177782, + [SMALL_STATE(4408)] = 177799, + [SMALL_STATE(4409)] = 177814, + [SMALL_STATE(4410)] = 177829, + [SMALL_STATE(4411)] = 177846, + [SMALL_STATE(4412)] = 177857, + [SMALL_STATE(4413)] = 177868, + [SMALL_STATE(4414)] = 177883, + [SMALL_STATE(4415)] = 177900, + [SMALL_STATE(4416)] = 177917, + [SMALL_STATE(4417)] = 177928, + [SMALL_STATE(4418)] = 177939, + [SMALL_STATE(4419)] = 177950, + [SMALL_STATE(4420)] = 177961, + [SMALL_STATE(4421)] = 177974, + [SMALL_STATE(4422)] = 177991, + [SMALL_STATE(4423)] = 178002, + [SMALL_STATE(4424)] = 178019, + [SMALL_STATE(4425)] = 178034, + [SMALL_STATE(4426)] = 178049, + [SMALL_STATE(4427)] = 178064, + [SMALL_STATE(4428)] = 178079, + [SMALL_STATE(4429)] = 178090, + [SMALL_STATE(4430)] = 178101, + [SMALL_STATE(4431)] = 178112, + [SMALL_STATE(4432)] = 178129, + [SMALL_STATE(4433)] = 178140, + [SMALL_STATE(4434)] = 178151, + [SMALL_STATE(4435)] = 178162, + [SMALL_STATE(4436)] = 178173, + [SMALL_STATE(4437)] = 178190, + [SMALL_STATE(4438)] = 178207, + [SMALL_STATE(4439)] = 178224, + [SMALL_STATE(4440)] = 178241, + [SMALL_STATE(4441)] = 178252, + [SMALL_STATE(4442)] = 178263, + [SMALL_STATE(4443)] = 178274, + [SMALL_STATE(4444)] = 178291, + [SMALL_STATE(4445)] = 178306, + [SMALL_STATE(4446)] = 178323, + [SMALL_STATE(4447)] = 178334, + [SMALL_STATE(4448)] = 178345, + [SMALL_STATE(4449)] = 178356, + [SMALL_STATE(4450)] = 178367, + [SMALL_STATE(4451)] = 178384, + [SMALL_STATE(4452)] = 178399, + [SMALL_STATE(4453)] = 178416, + [SMALL_STATE(4454)] = 178431, + [SMALL_STATE(4455)] = 178448, + [SMALL_STATE(4456)] = 178459, + [SMALL_STATE(4457)] = 178470, + [SMALL_STATE(4458)] = 178487, + [SMALL_STATE(4459)] = 178502, + [SMALL_STATE(4460)] = 178513, + [SMALL_STATE(4461)] = 178524, + [SMALL_STATE(4462)] = 178535, + [SMALL_STATE(4463)] = 178550, + [SMALL_STATE(4464)] = 178567, + [SMALL_STATE(4465)] = 178582, + [SMALL_STATE(4466)] = 178597, + [SMALL_STATE(4467)] = 178614, + [SMALL_STATE(4468)] = 178625, + [SMALL_STATE(4469)] = 178640, + [SMALL_STATE(4470)] = 178657, + [SMALL_STATE(4471)] = 178674, + [SMALL_STATE(4472)] = 178685, + [SMALL_STATE(4473)] = 178700, + [SMALL_STATE(4474)] = 178711, + [SMALL_STATE(4475)] = 178722, + [SMALL_STATE(4476)] = 178737, + [SMALL_STATE(4477)] = 178752, + [SMALL_STATE(4478)] = 178763, + [SMALL_STATE(4479)] = 178778, + [SMALL_STATE(4480)] = 178791, + [SMALL_STATE(4481)] = 178802, + [SMALL_STATE(4482)] = 178819, + [SMALL_STATE(4483)] = 178830, + [SMALL_STATE(4484)] = 178841, + [SMALL_STATE(4485)] = 178858, + [SMALL_STATE(4486)] = 178873, + [SMALL_STATE(4487)] = 178884, + [SMALL_STATE(4488)] = 178901, + [SMALL_STATE(4489)] = 178912, + [SMALL_STATE(4490)] = 178929, + [SMALL_STATE(4491)] = 178943, + [SMALL_STATE(4492)] = 178955, + [SMALL_STATE(4493)] = 178965, + [SMALL_STATE(4494)] = 178979, + [SMALL_STATE(4495)] = 178993, + [SMALL_STATE(4496)] = 179007, + [SMALL_STATE(4497)] = 179021, + [SMALL_STATE(4498)] = 179035, + [SMALL_STATE(4499)] = 179049, + [SMALL_STATE(4500)] = 179063, + [SMALL_STATE(4501)] = 179077, + [SMALL_STATE(4502)] = 179091, + [SMALL_STATE(4503)] = 179105, + [SMALL_STATE(4504)] = 179119, + [SMALL_STATE(4505)] = 179133, + [SMALL_STATE(4506)] = 179147, + [SMALL_STATE(4507)] = 179161, + [SMALL_STATE(4508)] = 179175, + [SMALL_STATE(4509)] = 179189, + [SMALL_STATE(4510)] = 179203, + [SMALL_STATE(4511)] = 179217, + [SMALL_STATE(4512)] = 179231, + [SMALL_STATE(4513)] = 179245, + [SMALL_STATE(4514)] = 179259, + [SMALL_STATE(4515)] = 179273, + [SMALL_STATE(4516)] = 179287, + [SMALL_STATE(4517)] = 179301, + [SMALL_STATE(4518)] = 179315, + [SMALL_STATE(4519)] = 179329, + [SMALL_STATE(4520)] = 179343, + [SMALL_STATE(4521)] = 179357, + [SMALL_STATE(4522)] = 179371, + [SMALL_STATE(4523)] = 179385, + [SMALL_STATE(4524)] = 179399, + [SMALL_STATE(4525)] = 179409, + [SMALL_STATE(4526)] = 179423, + [SMALL_STATE(4527)] = 179437, + [SMALL_STATE(4528)] = 179451, + [SMALL_STATE(4529)] = 179465, + [SMALL_STATE(4530)] = 179477, + [SMALL_STATE(4531)] = 179491, + [SMALL_STATE(4532)] = 179503, + [SMALL_STATE(4533)] = 179517, + [SMALL_STATE(4534)] = 179531, + [SMALL_STATE(4535)] = 179545, + [SMALL_STATE(4536)] = 179559, + [SMALL_STATE(4537)] = 179573, + [SMALL_STATE(4538)] = 179587, + [SMALL_STATE(4539)] = 179601, + [SMALL_STATE(4540)] = 179615, + [SMALL_STATE(4541)] = 179629, + [SMALL_STATE(4542)] = 179643, + [SMALL_STATE(4543)] = 179657, + [SMALL_STATE(4544)] = 179671, + [SMALL_STATE(4545)] = 179685, + [SMALL_STATE(4546)] = 179699, + [SMALL_STATE(4547)] = 179713, + [SMALL_STATE(4548)] = 179727, + [SMALL_STATE(4549)] = 179741, + [SMALL_STATE(4550)] = 179755, + [SMALL_STATE(4551)] = 179769, + [SMALL_STATE(4552)] = 179783, + [SMALL_STATE(4553)] = 179797, + [SMALL_STATE(4554)] = 179811, + [SMALL_STATE(4555)] = 179825, + [SMALL_STATE(4556)] = 179839, + [SMALL_STATE(4557)] = 179853, + [SMALL_STATE(4558)] = 179867, + [SMALL_STATE(4559)] = 179881, + [SMALL_STATE(4560)] = 179895, + [SMALL_STATE(4561)] = 179909, + [SMALL_STATE(4562)] = 179923, + [SMALL_STATE(4563)] = 179937, + [SMALL_STATE(4564)] = 179951, + [SMALL_STATE(4565)] = 179965, + [SMALL_STATE(4566)] = 179979, + [SMALL_STATE(4567)] = 179993, + [SMALL_STATE(4568)] = 180007, + [SMALL_STATE(4569)] = 180021, + [SMALL_STATE(4570)] = 180035, + [SMALL_STATE(4571)] = 180049, + [SMALL_STATE(4572)] = 180063, + [SMALL_STATE(4573)] = 180077, + [SMALL_STATE(4574)] = 180087, + [SMALL_STATE(4575)] = 180101, + [SMALL_STATE(4576)] = 180115, + [SMALL_STATE(4577)] = 180127, + [SMALL_STATE(4578)] = 180141, + [SMALL_STATE(4579)] = 180155, + [SMALL_STATE(4580)] = 180169, + [SMALL_STATE(4581)] = 180183, + [SMALL_STATE(4582)] = 180197, + [SMALL_STATE(4583)] = 180211, + [SMALL_STATE(4584)] = 180225, + [SMALL_STATE(4585)] = 180239, + [SMALL_STATE(4586)] = 180253, + [SMALL_STATE(4587)] = 180267, + [SMALL_STATE(4588)] = 180281, + [SMALL_STATE(4589)] = 180295, + [SMALL_STATE(4590)] = 180309, + [SMALL_STATE(4591)] = 180323, + [SMALL_STATE(4592)] = 180337, + [SMALL_STATE(4593)] = 180351, + [SMALL_STATE(4594)] = 180365, + [SMALL_STATE(4595)] = 180379, + [SMALL_STATE(4596)] = 180393, + [SMALL_STATE(4597)] = 180407, + [SMALL_STATE(4598)] = 180421, + [SMALL_STATE(4599)] = 180435, + [SMALL_STATE(4600)] = 180449, + [SMALL_STATE(4601)] = 180463, + [SMALL_STATE(4602)] = 180477, + [SMALL_STATE(4603)] = 180491, + [SMALL_STATE(4604)] = 180505, + [SMALL_STATE(4605)] = 180519, + [SMALL_STATE(4606)] = 180533, + [SMALL_STATE(4607)] = 180547, + [SMALL_STATE(4608)] = 180561, + [SMALL_STATE(4609)] = 180575, + [SMALL_STATE(4610)] = 180589, + [SMALL_STATE(4611)] = 180603, + [SMALL_STATE(4612)] = 180617, + [SMALL_STATE(4613)] = 180631, + [SMALL_STATE(4614)] = 180645, + [SMALL_STATE(4615)] = 180659, + [SMALL_STATE(4616)] = 180673, + [SMALL_STATE(4617)] = 180687, + [SMALL_STATE(4618)] = 180701, + [SMALL_STATE(4619)] = 180715, + [SMALL_STATE(4620)] = 180729, + [SMALL_STATE(4621)] = 180743, + [SMALL_STATE(4622)] = 180757, + [SMALL_STATE(4623)] = 180771, + [SMALL_STATE(4624)] = 180785, + [SMALL_STATE(4625)] = 180799, + [SMALL_STATE(4626)] = 180811, + [SMALL_STATE(4627)] = 180823, + [SMALL_STATE(4628)] = 180837, + [SMALL_STATE(4629)] = 180851, + [SMALL_STATE(4630)] = 180865, + [SMALL_STATE(4631)] = 180879, + [SMALL_STATE(4632)] = 180893, + [SMALL_STATE(4633)] = 180907, + [SMALL_STATE(4634)] = 180921, + [SMALL_STATE(4635)] = 180935, + [SMALL_STATE(4636)] = 180949, + [SMALL_STATE(4637)] = 180963, + [SMALL_STATE(4638)] = 180977, + [SMALL_STATE(4639)] = 180991, + [SMALL_STATE(4640)] = 181005, + [SMALL_STATE(4641)] = 181019, + [SMALL_STATE(4642)] = 181033, + [SMALL_STATE(4643)] = 181047, + [SMALL_STATE(4644)] = 181061, + [SMALL_STATE(4645)] = 181075, + [SMALL_STATE(4646)] = 181087, + [SMALL_STATE(4647)] = 181101, + [SMALL_STATE(4648)] = 181115, + [SMALL_STATE(4649)] = 181129, + [SMALL_STATE(4650)] = 181143, + [SMALL_STATE(4651)] = 181157, + [SMALL_STATE(4652)] = 181169, + [SMALL_STATE(4653)] = 181183, + [SMALL_STATE(4654)] = 181197, + [SMALL_STATE(4655)] = 181211, + [SMALL_STATE(4656)] = 181225, + [SMALL_STATE(4657)] = 181239, + [SMALL_STATE(4658)] = 181253, + [SMALL_STATE(4659)] = 181267, + [SMALL_STATE(4660)] = 181281, + [SMALL_STATE(4661)] = 181295, + [SMALL_STATE(4662)] = 181309, + [SMALL_STATE(4663)] = 181323, + [SMALL_STATE(4664)] = 181337, + [SMALL_STATE(4665)] = 181351, + [SMALL_STATE(4666)] = 181365, + [SMALL_STATE(4667)] = 181379, + [SMALL_STATE(4668)] = 181393, + [SMALL_STATE(4669)] = 181407, + [SMALL_STATE(4670)] = 181421, + [SMALL_STATE(4671)] = 181433, + [SMALL_STATE(4672)] = 181447, + [SMALL_STATE(4673)] = 181461, + [SMALL_STATE(4674)] = 181475, + [SMALL_STATE(4675)] = 181489, + [SMALL_STATE(4676)] = 181503, + [SMALL_STATE(4677)] = 181517, + [SMALL_STATE(4678)] = 181531, + [SMALL_STATE(4679)] = 181545, + [SMALL_STATE(4680)] = 181559, + [SMALL_STATE(4681)] = 181573, + [SMALL_STATE(4682)] = 181587, + [SMALL_STATE(4683)] = 181601, + [SMALL_STATE(4684)] = 181615, + [SMALL_STATE(4685)] = 181629, + [SMALL_STATE(4686)] = 181643, + [SMALL_STATE(4687)] = 181657, + [SMALL_STATE(4688)] = 181671, + [SMALL_STATE(4689)] = 181685, + [SMALL_STATE(4690)] = 181699, + [SMALL_STATE(4691)] = 181713, + [SMALL_STATE(4692)] = 181727, + [SMALL_STATE(4693)] = 181741, + [SMALL_STATE(4694)] = 181755, + [SMALL_STATE(4695)] = 181769, + [SMALL_STATE(4696)] = 181783, + [SMALL_STATE(4697)] = 181797, + [SMALL_STATE(4698)] = 181811, + [SMALL_STATE(4699)] = 181823, + [SMALL_STATE(4700)] = 181837, + [SMALL_STATE(4701)] = 181851, + [SMALL_STATE(4702)] = 181865, + [SMALL_STATE(4703)] = 181879, + [SMALL_STATE(4704)] = 181893, + [SMALL_STATE(4705)] = 181907, + [SMALL_STATE(4706)] = 181921, + [SMALL_STATE(4707)] = 181935, + [SMALL_STATE(4708)] = 181949, + [SMALL_STATE(4709)] = 181963, + [SMALL_STATE(4710)] = 181977, + [SMALL_STATE(4711)] = 181991, + [SMALL_STATE(4712)] = 182005, + [SMALL_STATE(4713)] = 182019, + [SMALL_STATE(4714)] = 182033, + [SMALL_STATE(4715)] = 182045, + [SMALL_STATE(4716)] = 182059, + [SMALL_STATE(4717)] = 182073, + [SMALL_STATE(4718)] = 182087, + [SMALL_STATE(4719)] = 182101, + [SMALL_STATE(4720)] = 182115, + [SMALL_STATE(4721)] = 182129, + [SMALL_STATE(4722)] = 182143, + [SMALL_STATE(4723)] = 182157, + [SMALL_STATE(4724)] = 182171, + [SMALL_STATE(4725)] = 182185, + [SMALL_STATE(4726)] = 182199, + [SMALL_STATE(4727)] = 182213, + [SMALL_STATE(4728)] = 182227, + [SMALL_STATE(4729)] = 182241, + [SMALL_STATE(4730)] = 182255, + [SMALL_STATE(4731)] = 182269, + [SMALL_STATE(4732)] = 182283, + [SMALL_STATE(4733)] = 182297, + [SMALL_STATE(4734)] = 182311, + [SMALL_STATE(4735)] = 182325, + [SMALL_STATE(4736)] = 182339, + [SMALL_STATE(4737)] = 182353, + [SMALL_STATE(4738)] = 182367, + [SMALL_STATE(4739)] = 182381, + [SMALL_STATE(4740)] = 182395, + [SMALL_STATE(4741)] = 182409, + [SMALL_STATE(4742)] = 182423, + [SMALL_STATE(4743)] = 182437, + [SMALL_STATE(4744)] = 182447, + [SMALL_STATE(4745)] = 182461, + [SMALL_STATE(4746)] = 182475, + [SMALL_STATE(4747)] = 182489, + [SMALL_STATE(4748)] = 182503, + [SMALL_STATE(4749)] = 182515, + [SMALL_STATE(4750)] = 182529, + [SMALL_STATE(4751)] = 182543, + [SMALL_STATE(4752)] = 182557, + [SMALL_STATE(4753)] = 182571, + [SMALL_STATE(4754)] = 182585, + [SMALL_STATE(4755)] = 182599, + [SMALL_STATE(4756)] = 182613, + [SMALL_STATE(4757)] = 182627, + [SMALL_STATE(4758)] = 182641, + [SMALL_STATE(4759)] = 182655, + [SMALL_STATE(4760)] = 182665, + [SMALL_STATE(4761)] = 182679, + [SMALL_STATE(4762)] = 182693, + [SMALL_STATE(4763)] = 182707, + [SMALL_STATE(4764)] = 182721, + [SMALL_STATE(4765)] = 182735, + [SMALL_STATE(4766)] = 182749, + [SMALL_STATE(4767)] = 182763, + [SMALL_STATE(4768)] = 182777, + [SMALL_STATE(4769)] = 182791, + [SMALL_STATE(4770)] = 182805, + [SMALL_STATE(4771)] = 182817, + [SMALL_STATE(4772)] = 182829, + [SMALL_STATE(4773)] = 182843, + [SMALL_STATE(4774)] = 182857, + [SMALL_STATE(4775)] = 182871, + [SMALL_STATE(4776)] = 182885, + [SMALL_STATE(4777)] = 182897, + [SMALL_STATE(4778)] = 182911, + [SMALL_STATE(4779)] = 182923, + [SMALL_STATE(4780)] = 182937, + [SMALL_STATE(4781)] = 182951, + [SMALL_STATE(4782)] = 182965, + [SMALL_STATE(4783)] = 182979, + [SMALL_STATE(4784)] = 182993, + [SMALL_STATE(4785)] = 183007, + [SMALL_STATE(4786)] = 183021, + [SMALL_STATE(4787)] = 183035, + [SMALL_STATE(4788)] = 183049, + [SMALL_STATE(4789)] = 183063, + [SMALL_STATE(4790)] = 183077, + [SMALL_STATE(4791)] = 183091, + [SMALL_STATE(4792)] = 183105, + [SMALL_STATE(4793)] = 183119, + [SMALL_STATE(4794)] = 183133, + [SMALL_STATE(4795)] = 183147, + [SMALL_STATE(4796)] = 183161, + [SMALL_STATE(4797)] = 183175, + [SMALL_STATE(4798)] = 183189, + [SMALL_STATE(4799)] = 183203, + [SMALL_STATE(4800)] = 183217, + [SMALL_STATE(4801)] = 183231, + [SMALL_STATE(4802)] = 183245, + [SMALL_STATE(4803)] = 183259, + [SMALL_STATE(4804)] = 183273, + [SMALL_STATE(4805)] = 183287, + [SMALL_STATE(4806)] = 183301, + [SMALL_STATE(4807)] = 183315, + [SMALL_STATE(4808)] = 183329, + [SMALL_STATE(4809)] = 183343, + [SMALL_STATE(4810)] = 183357, + [SMALL_STATE(4811)] = 183369, + [SMALL_STATE(4812)] = 183383, + [SMALL_STATE(4813)] = 183393, + [SMALL_STATE(4814)] = 183407, + [SMALL_STATE(4815)] = 183421, + [SMALL_STATE(4816)] = 183435, + [SMALL_STATE(4817)] = 183449, + [SMALL_STATE(4818)] = 183463, + [SMALL_STATE(4819)] = 183477, + [SMALL_STATE(4820)] = 183491, + [SMALL_STATE(4821)] = 183505, + [SMALL_STATE(4822)] = 183519, + [SMALL_STATE(4823)] = 183533, + [SMALL_STATE(4824)] = 183547, + [SMALL_STATE(4825)] = 183561, + [SMALL_STATE(4826)] = 183571, + [SMALL_STATE(4827)] = 183585, + [SMALL_STATE(4828)] = 183599, + [SMALL_STATE(4829)] = 183613, + [SMALL_STATE(4830)] = 183627, + [SMALL_STATE(4831)] = 183641, + [SMALL_STATE(4832)] = 183655, + [SMALL_STATE(4833)] = 183669, + [SMALL_STATE(4834)] = 183683, + [SMALL_STATE(4835)] = 183697, + [SMALL_STATE(4836)] = 183711, + [SMALL_STATE(4837)] = 183725, + [SMALL_STATE(4838)] = 183739, + [SMALL_STATE(4839)] = 183753, + [SMALL_STATE(4840)] = 183767, + [SMALL_STATE(4841)] = 183779, + [SMALL_STATE(4842)] = 183789, + [SMALL_STATE(4843)] = 183803, + [SMALL_STATE(4844)] = 183817, + [SMALL_STATE(4845)] = 183831, + [SMALL_STATE(4846)] = 183845, + [SMALL_STATE(4847)] = 183859, + [SMALL_STATE(4848)] = 183873, + [SMALL_STATE(4849)] = 183887, + [SMALL_STATE(4850)] = 183901, + [SMALL_STATE(4851)] = 183915, + [SMALL_STATE(4852)] = 183929, + [SMALL_STATE(4853)] = 183943, + [SMALL_STATE(4854)] = 183957, + [SMALL_STATE(4855)] = 183971, + [SMALL_STATE(4856)] = 183981, + [SMALL_STATE(4857)] = 183995, + [SMALL_STATE(4858)] = 184007, + [SMALL_STATE(4859)] = 184021, + [SMALL_STATE(4860)] = 184035, + [SMALL_STATE(4861)] = 184045, + [SMALL_STATE(4862)] = 184059, + [SMALL_STATE(4863)] = 184073, + [SMALL_STATE(4864)] = 184087, + [SMALL_STATE(4865)] = 184101, + [SMALL_STATE(4866)] = 184115, + [SMALL_STATE(4867)] = 184129, + [SMALL_STATE(4868)] = 184143, + [SMALL_STATE(4869)] = 184157, + [SMALL_STATE(4870)] = 184171, + [SMALL_STATE(4871)] = 184185, + [SMALL_STATE(4872)] = 184199, + [SMALL_STATE(4873)] = 184213, + [SMALL_STATE(4874)] = 184227, + [SMALL_STATE(4875)] = 184241, + [SMALL_STATE(4876)] = 184255, + [SMALL_STATE(4877)] = 184269, + [SMALL_STATE(4878)] = 184283, + [SMALL_STATE(4879)] = 184297, + [SMALL_STATE(4880)] = 184311, + [SMALL_STATE(4881)] = 184325, + [SMALL_STATE(4882)] = 184339, + [SMALL_STATE(4883)] = 184353, + [SMALL_STATE(4884)] = 184367, + [SMALL_STATE(4885)] = 184377, + [SMALL_STATE(4886)] = 184391, + [SMALL_STATE(4887)] = 184405, + [SMALL_STATE(4888)] = 184419, + [SMALL_STATE(4889)] = 184431, + [SMALL_STATE(4890)] = 184445, + [SMALL_STATE(4891)] = 184459, + [SMALL_STATE(4892)] = 184473, + [SMALL_STATE(4893)] = 184483, + [SMALL_STATE(4894)] = 184497, + [SMALL_STATE(4895)] = 184511, + [SMALL_STATE(4896)] = 184525, + [SMALL_STATE(4897)] = 184539, + [SMALL_STATE(4898)] = 184553, + [SMALL_STATE(4899)] = 184567, + [SMALL_STATE(4900)] = 184581, + [SMALL_STATE(4901)] = 184595, + [SMALL_STATE(4902)] = 184607, + [SMALL_STATE(4903)] = 184619, + [SMALL_STATE(4904)] = 184631, + [SMALL_STATE(4905)] = 184645, + [SMALL_STATE(4906)] = 184659, + [SMALL_STATE(4907)] = 184673, + [SMALL_STATE(4908)] = 184685, + [SMALL_STATE(4909)] = 184697, + [SMALL_STATE(4910)] = 184711, + [SMALL_STATE(4911)] = 184723, + [SMALL_STATE(4912)] = 184735, + [SMALL_STATE(4913)] = 184749, + [SMALL_STATE(4914)] = 184763, + [SMALL_STATE(4915)] = 184777, + [SMALL_STATE(4916)] = 184791, + [SMALL_STATE(4917)] = 184805, + [SMALL_STATE(4918)] = 184819, + [SMALL_STATE(4919)] = 184833, + [SMALL_STATE(4920)] = 184847, + [SMALL_STATE(4921)] = 184861, + [SMALL_STATE(4922)] = 184875, + [SMALL_STATE(4923)] = 184889, + [SMALL_STATE(4924)] = 184903, + [SMALL_STATE(4925)] = 184917, + [SMALL_STATE(4926)] = 184931, + [SMALL_STATE(4927)] = 184945, + [SMALL_STATE(4928)] = 184957, + [SMALL_STATE(4929)] = 184969, + [SMALL_STATE(4930)] = 184983, + [SMALL_STATE(4931)] = 184997, + [SMALL_STATE(4932)] = 185011, + [SMALL_STATE(4933)] = 185025, + [SMALL_STATE(4934)] = 185039, + [SMALL_STATE(4935)] = 185053, + [SMALL_STATE(4936)] = 185067, + [SMALL_STATE(4937)] = 185081, + [SMALL_STATE(4938)] = 185095, + [SMALL_STATE(4939)] = 185109, + [SMALL_STATE(4940)] = 185123, + [SMALL_STATE(4941)] = 185137, + [SMALL_STATE(4942)] = 185151, + [SMALL_STATE(4943)] = 185165, + [SMALL_STATE(4944)] = 185179, + [SMALL_STATE(4945)] = 185193, + [SMALL_STATE(4946)] = 185207, + [SMALL_STATE(4947)] = 185221, + [SMALL_STATE(4948)] = 185235, + [SMALL_STATE(4949)] = 185249, + [SMALL_STATE(4950)] = 185263, + [SMALL_STATE(4951)] = 185277, + [SMALL_STATE(4952)] = 185291, + [SMALL_STATE(4953)] = 185305, + [SMALL_STATE(4954)] = 185319, + [SMALL_STATE(4955)] = 185333, + [SMALL_STATE(4956)] = 185347, + [SMALL_STATE(4957)] = 185361, + [SMALL_STATE(4958)] = 185373, + [SMALL_STATE(4959)] = 185387, + [SMALL_STATE(4960)] = 185401, + [SMALL_STATE(4961)] = 185415, + [SMALL_STATE(4962)] = 185429, + [SMALL_STATE(4963)] = 185443, + [SMALL_STATE(4964)] = 185457, + [SMALL_STATE(4965)] = 185471, + [SMALL_STATE(4966)] = 185485, + [SMALL_STATE(4967)] = 185495, + [SMALL_STATE(4968)] = 185509, + [SMALL_STATE(4969)] = 185523, + [SMALL_STATE(4970)] = 185537, + [SMALL_STATE(4971)] = 185551, + [SMALL_STATE(4972)] = 185565, + [SMALL_STATE(4973)] = 185579, + [SMALL_STATE(4974)] = 185593, + [SMALL_STATE(4975)] = 185607, + [SMALL_STATE(4976)] = 185621, + [SMALL_STATE(4977)] = 185631, + [SMALL_STATE(4978)] = 185645, + [SMALL_STATE(4979)] = 185659, + [SMALL_STATE(4980)] = 185668, + [SMALL_STATE(4981)] = 185677, + [SMALL_STATE(4982)] = 185686, + [SMALL_STATE(4983)] = 185695, + [SMALL_STATE(4984)] = 185706, + [SMALL_STATE(4985)] = 185715, + [SMALL_STATE(4986)] = 185726, + [SMALL_STATE(4987)] = 185737, + [SMALL_STATE(4988)] = 185746, + [SMALL_STATE(4989)] = 185755, + [SMALL_STATE(4990)] = 185766, + [SMALL_STATE(4991)] = 185777, + [SMALL_STATE(4992)] = 185788, + [SMALL_STATE(4993)] = 185797, + [SMALL_STATE(4994)] = 185806, + [SMALL_STATE(4995)] = 185817, + [SMALL_STATE(4996)] = 185828, + [SMALL_STATE(4997)] = 185839, + [SMALL_STATE(4998)] = 185848, + [SMALL_STATE(4999)] = 185859, + [SMALL_STATE(5000)] = 185868, + [SMALL_STATE(5001)] = 185879, + [SMALL_STATE(5002)] = 185890, + [SMALL_STATE(5003)] = 185901, + [SMALL_STATE(5004)] = 185912, + [SMALL_STATE(5005)] = 185923, + [SMALL_STATE(5006)] = 185932, + [SMALL_STATE(5007)] = 185941, + [SMALL_STATE(5008)] = 185950, + [SMALL_STATE(5009)] = 185961, + [SMALL_STATE(5010)] = 185970, + [SMALL_STATE(5011)] = 185981, + [SMALL_STATE(5012)] = 185992, + [SMALL_STATE(5013)] = 186003, + [SMALL_STATE(5014)] = 186012, + [SMALL_STATE(5015)] = 186023, + [SMALL_STATE(5016)] = 186032, + [SMALL_STATE(5017)] = 186041, + [SMALL_STATE(5018)] = 186052, + [SMALL_STATE(5019)] = 186061, + [SMALL_STATE(5020)] = 186072, + [SMALL_STATE(5021)] = 186081, + [SMALL_STATE(5022)] = 186092, + [SMALL_STATE(5023)] = 186101, + [SMALL_STATE(5024)] = 186110, + [SMALL_STATE(5025)] = 186119, + [SMALL_STATE(5026)] = 186130, + [SMALL_STATE(5027)] = 186139, + [SMALL_STATE(5028)] = 186150, + [SMALL_STATE(5029)] = 186161, + [SMALL_STATE(5030)] = 186172, + [SMALL_STATE(5031)] = 186183, + [SMALL_STATE(5032)] = 186194, + [SMALL_STATE(5033)] = 186205, + [SMALL_STATE(5034)] = 186216, + [SMALL_STATE(5035)] = 186225, + [SMALL_STATE(5036)] = 186236, + [SMALL_STATE(5037)] = 186247, + [SMALL_STATE(5038)] = 186256, + [SMALL_STATE(5039)] = 186267, + [SMALL_STATE(5040)] = 186276, + [SMALL_STATE(5041)] = 186287, + [SMALL_STATE(5042)] = 186298, + [SMALL_STATE(5043)] = 186309, + [SMALL_STATE(5044)] = 186320, + [SMALL_STATE(5045)] = 186329, + [SMALL_STATE(5046)] = 186340, + [SMALL_STATE(5047)] = 186351, + [SMALL_STATE(5048)] = 186360, + [SMALL_STATE(5049)] = 186371, + [SMALL_STATE(5050)] = 186382, + [SMALL_STATE(5051)] = 186393, + [SMALL_STATE(5052)] = 186404, + [SMALL_STATE(5053)] = 186413, + [SMALL_STATE(5054)] = 186424, + [SMALL_STATE(5055)] = 186435, + [SMALL_STATE(5056)] = 186444, + [SMALL_STATE(5057)] = 186455, + [SMALL_STATE(5058)] = 186466, + [SMALL_STATE(5059)] = 186477, + [SMALL_STATE(5060)] = 186486, + [SMALL_STATE(5061)] = 186497, + [SMALL_STATE(5062)] = 186508, + [SMALL_STATE(5063)] = 186519, + [SMALL_STATE(5064)] = 186530, + [SMALL_STATE(5065)] = 186541, + [SMALL_STATE(5066)] = 186552, + [SMALL_STATE(5067)] = 186563, + [SMALL_STATE(5068)] = 186574, + [SMALL_STATE(5069)] = 186585, + [SMALL_STATE(5070)] = 186596, + [SMALL_STATE(5071)] = 186607, + [SMALL_STATE(5072)] = 186618, + [SMALL_STATE(5073)] = 186629, + [SMALL_STATE(5074)] = 186640, + [SMALL_STATE(5075)] = 186651, + [SMALL_STATE(5076)] = 186660, + [SMALL_STATE(5077)] = 186671, + [SMALL_STATE(5078)] = 186680, + [SMALL_STATE(5079)] = 186689, + [SMALL_STATE(5080)] = 186700, + [SMALL_STATE(5081)] = 186711, + [SMALL_STATE(5082)] = 186722, + [SMALL_STATE(5083)] = 186733, + [SMALL_STATE(5084)] = 186744, + [SMALL_STATE(5085)] = 186755, + [SMALL_STATE(5086)] = 186766, + [SMALL_STATE(5087)] = 186777, + [SMALL_STATE(5088)] = 186788, + [SMALL_STATE(5089)] = 186799, + [SMALL_STATE(5090)] = 186808, + [SMALL_STATE(5091)] = 186819, + [SMALL_STATE(5092)] = 186828, + [SMALL_STATE(5093)] = 186839, + [SMALL_STATE(5094)] = 186850, + [SMALL_STATE(5095)] = 186859, + [SMALL_STATE(5096)] = 186870, + [SMALL_STATE(5097)] = 186879, + [SMALL_STATE(5098)] = 186888, + [SMALL_STATE(5099)] = 186899, + [SMALL_STATE(5100)] = 186910, + [SMALL_STATE(5101)] = 186921, + [SMALL_STATE(5102)] = 186930, + [SMALL_STATE(5103)] = 186939, + [SMALL_STATE(5104)] = 186948, + [SMALL_STATE(5105)] = 186957, + [SMALL_STATE(5106)] = 186966, + [SMALL_STATE(5107)] = 186975, + [SMALL_STATE(5108)] = 186984, + [SMALL_STATE(5109)] = 186995, + [SMALL_STATE(5110)] = 187006, + [SMALL_STATE(5111)] = 187017, + [SMALL_STATE(5112)] = 187026, + [SMALL_STATE(5113)] = 187035, + [SMALL_STATE(5114)] = 187044, + [SMALL_STATE(5115)] = 187055, + [SMALL_STATE(5116)] = 187066, + [SMALL_STATE(5117)] = 187077, + [SMALL_STATE(5118)] = 187088, + [SMALL_STATE(5119)] = 187097, + [SMALL_STATE(5120)] = 187106, + [SMALL_STATE(5121)] = 187117, + [SMALL_STATE(5122)] = 187128, + [SMALL_STATE(5123)] = 187137, + [SMALL_STATE(5124)] = 187148, + [SMALL_STATE(5125)] = 187157, + [SMALL_STATE(5126)] = 187166, + [SMALL_STATE(5127)] = 187175, + [SMALL_STATE(5128)] = 187186, + [SMALL_STATE(5129)] = 187195, + [SMALL_STATE(5130)] = 187206, + [SMALL_STATE(5131)] = 187215, + [SMALL_STATE(5132)] = 187224, + [SMALL_STATE(5133)] = 187235, + [SMALL_STATE(5134)] = 187246, + [SMALL_STATE(5135)] = 187255, + [SMALL_STATE(5136)] = 187266, + [SMALL_STATE(5137)] = 187275, + [SMALL_STATE(5138)] = 187286, + [SMALL_STATE(5139)] = 187295, + [SMALL_STATE(5140)] = 187304, + [SMALL_STATE(5141)] = 187315, + [SMALL_STATE(5142)] = 187326, + [SMALL_STATE(5143)] = 187337, + [SMALL_STATE(5144)] = 187346, + [SMALL_STATE(5145)] = 187357, + [SMALL_STATE(5146)] = 187368, + [SMALL_STATE(5147)] = 187379, + [SMALL_STATE(5148)] = 187390, + [SMALL_STATE(5149)] = 187399, + [SMALL_STATE(5150)] = 187408, + [SMALL_STATE(5151)] = 187417, + [SMALL_STATE(5152)] = 187428, + [SMALL_STATE(5153)] = 187437, + [SMALL_STATE(5154)] = 187446, + [SMALL_STATE(5155)] = 187457, + [SMALL_STATE(5156)] = 187468, + [SMALL_STATE(5157)] = 187477, + [SMALL_STATE(5158)] = 187486, + [SMALL_STATE(5159)] = 187497, + [SMALL_STATE(5160)] = 187506, + [SMALL_STATE(5161)] = 187515, + [SMALL_STATE(5162)] = 187526, + [SMALL_STATE(5163)] = 187535, + [SMALL_STATE(5164)] = 187544, + [SMALL_STATE(5165)] = 187555, + [SMALL_STATE(5166)] = 187566, + [SMALL_STATE(5167)] = 187577, + [SMALL_STATE(5168)] = 187588, + [SMALL_STATE(5169)] = 187599, + [SMALL_STATE(5170)] = 187608, + [SMALL_STATE(5171)] = 187617, + [SMALL_STATE(5172)] = 187628, + [SMALL_STATE(5173)] = 187639, + [SMALL_STATE(5174)] = 187650, + [SMALL_STATE(5175)] = 187659, + [SMALL_STATE(5176)] = 187670, + [SMALL_STATE(5177)] = 187681, + [SMALL_STATE(5178)] = 187690, + [SMALL_STATE(5179)] = 187699, + [SMALL_STATE(5180)] = 187708, + [SMALL_STATE(5181)] = 187717, + [SMALL_STATE(5182)] = 187728, + [SMALL_STATE(5183)] = 187739, + [SMALL_STATE(5184)] = 187748, + [SMALL_STATE(5185)] = 187757, + [SMALL_STATE(5186)] = 187766, + [SMALL_STATE(5187)] = 187775, + [SMALL_STATE(5188)] = 187786, + [SMALL_STATE(5189)] = 187795, + [SMALL_STATE(5190)] = 187806, + [SMALL_STATE(5191)] = 187815, + [SMALL_STATE(5192)] = 187824, + [SMALL_STATE(5193)] = 187835, + [SMALL_STATE(5194)] = 187844, + [SMALL_STATE(5195)] = 187853, + [SMALL_STATE(5196)] = 187861, + [SMALL_STATE(5197)] = 187869, + [SMALL_STATE(5198)] = 187877, + [SMALL_STATE(5199)] = 187885, + [SMALL_STATE(5200)] = 187893, + [SMALL_STATE(5201)] = 187901, + [SMALL_STATE(5202)] = 187909, + [SMALL_STATE(5203)] = 187917, + [SMALL_STATE(5204)] = 187925, + [SMALL_STATE(5205)] = 187933, + [SMALL_STATE(5206)] = 187941, + [SMALL_STATE(5207)] = 187949, + [SMALL_STATE(5208)] = 187957, + [SMALL_STATE(5209)] = 187965, + [SMALL_STATE(5210)] = 187973, + [SMALL_STATE(5211)] = 187981, + [SMALL_STATE(5212)] = 187989, + [SMALL_STATE(5213)] = 187997, + [SMALL_STATE(5214)] = 188005, + [SMALL_STATE(5215)] = 188013, + [SMALL_STATE(5216)] = 188021, + [SMALL_STATE(5217)] = 188029, + [SMALL_STATE(5218)] = 188037, + [SMALL_STATE(5219)] = 188045, + [SMALL_STATE(5220)] = 188053, + [SMALL_STATE(5221)] = 188061, + [SMALL_STATE(5222)] = 188069, + [SMALL_STATE(5223)] = 188077, + [SMALL_STATE(5224)] = 188085, + [SMALL_STATE(5225)] = 188093, + [SMALL_STATE(5226)] = 188101, + [SMALL_STATE(5227)] = 188109, + [SMALL_STATE(5228)] = 188117, + [SMALL_STATE(5229)] = 188125, + [SMALL_STATE(5230)] = 188133, + [SMALL_STATE(5231)] = 188141, + [SMALL_STATE(5232)] = 188149, + [SMALL_STATE(5233)] = 188157, + [SMALL_STATE(5234)] = 188165, + [SMALL_STATE(5235)] = 188173, + [SMALL_STATE(5236)] = 188181, + [SMALL_STATE(5237)] = 188189, + [SMALL_STATE(5238)] = 188197, + [SMALL_STATE(5239)] = 188205, + [SMALL_STATE(5240)] = 188213, + [SMALL_STATE(5241)] = 188221, + [SMALL_STATE(5242)] = 188229, + [SMALL_STATE(5243)] = 188237, + [SMALL_STATE(5244)] = 188245, + [SMALL_STATE(5245)] = 188253, + [SMALL_STATE(5246)] = 188261, + [SMALL_STATE(5247)] = 188269, + [SMALL_STATE(5248)] = 188277, + [SMALL_STATE(5249)] = 188285, + [SMALL_STATE(5250)] = 188293, + [SMALL_STATE(5251)] = 188301, + [SMALL_STATE(5252)] = 188309, + [SMALL_STATE(5253)] = 188317, + [SMALL_STATE(5254)] = 188325, + [SMALL_STATE(5255)] = 188333, + [SMALL_STATE(5256)] = 188341, + [SMALL_STATE(5257)] = 188349, + [SMALL_STATE(5258)] = 188357, + [SMALL_STATE(5259)] = 188365, + [SMALL_STATE(5260)] = 188373, + [SMALL_STATE(5261)] = 188381, + [SMALL_STATE(5262)] = 188389, + [SMALL_STATE(5263)] = 188397, + [SMALL_STATE(5264)] = 188405, + [SMALL_STATE(5265)] = 188413, + [SMALL_STATE(5266)] = 188421, + [SMALL_STATE(5267)] = 188429, + [SMALL_STATE(5268)] = 188437, + [SMALL_STATE(5269)] = 188445, + [SMALL_STATE(5270)] = 188453, + [SMALL_STATE(5271)] = 188461, + [SMALL_STATE(5272)] = 188469, + [SMALL_STATE(5273)] = 188477, + [SMALL_STATE(5274)] = 188485, + [SMALL_STATE(5275)] = 188493, + [SMALL_STATE(5276)] = 188501, + [SMALL_STATE(5277)] = 188509, + [SMALL_STATE(5278)] = 188517, + [SMALL_STATE(5279)] = 188525, + [SMALL_STATE(5280)] = 188533, + [SMALL_STATE(5281)] = 188541, + [SMALL_STATE(5282)] = 188549, + [SMALL_STATE(5283)] = 188557, + [SMALL_STATE(5284)] = 188565, + [SMALL_STATE(5285)] = 188573, + [SMALL_STATE(5286)] = 188581, + [SMALL_STATE(5287)] = 188589, + [SMALL_STATE(5288)] = 188597, + [SMALL_STATE(5289)] = 188605, + [SMALL_STATE(5290)] = 188613, + [SMALL_STATE(5291)] = 188621, + [SMALL_STATE(5292)] = 188629, + [SMALL_STATE(5293)] = 188637, + [SMALL_STATE(5294)] = 188645, + [SMALL_STATE(5295)] = 188653, + [SMALL_STATE(5296)] = 188661, + [SMALL_STATE(5297)] = 188669, + [SMALL_STATE(5298)] = 188677, + [SMALL_STATE(5299)] = 188685, + [SMALL_STATE(5300)] = 188693, + [SMALL_STATE(5301)] = 188701, + [SMALL_STATE(5302)] = 188709, + [SMALL_STATE(5303)] = 188717, + [SMALL_STATE(5304)] = 188725, + [SMALL_STATE(5305)] = 188733, + [SMALL_STATE(5306)] = 188741, + [SMALL_STATE(5307)] = 188749, + [SMALL_STATE(5308)] = 188757, + [SMALL_STATE(5309)] = 188765, + [SMALL_STATE(5310)] = 188773, + [SMALL_STATE(5311)] = 188781, + [SMALL_STATE(5312)] = 188789, + [SMALL_STATE(5313)] = 188797, + [SMALL_STATE(5314)] = 188805, + [SMALL_STATE(5315)] = 188813, + [SMALL_STATE(5316)] = 188821, + [SMALL_STATE(5317)] = 188829, + [SMALL_STATE(5318)] = 188837, + [SMALL_STATE(5319)] = 188845, + [SMALL_STATE(5320)] = 188853, + [SMALL_STATE(5321)] = 188861, + [SMALL_STATE(5322)] = 188869, + [SMALL_STATE(5323)] = 188877, + [SMALL_STATE(5324)] = 188885, + [SMALL_STATE(5325)] = 188893, + [SMALL_STATE(5326)] = 188901, + [SMALL_STATE(5327)] = 188909, + [SMALL_STATE(5328)] = 188917, + [SMALL_STATE(5329)] = 188925, + [SMALL_STATE(5330)] = 188933, + [SMALL_STATE(5331)] = 188941, + [SMALL_STATE(5332)] = 188949, + [SMALL_STATE(5333)] = 188957, + [SMALL_STATE(5334)] = 188965, + [SMALL_STATE(5335)] = 188973, + [SMALL_STATE(5336)] = 188981, + [SMALL_STATE(5337)] = 188989, + [SMALL_STATE(5338)] = 188997, + [SMALL_STATE(5339)] = 189005, + [SMALL_STATE(5340)] = 189013, + [SMALL_STATE(5341)] = 189021, + [SMALL_STATE(5342)] = 189029, + [SMALL_STATE(5343)] = 189037, + [SMALL_STATE(5344)] = 189045, + [SMALL_STATE(5345)] = 189053, + [SMALL_STATE(5346)] = 189061, + [SMALL_STATE(5347)] = 189069, + [SMALL_STATE(5348)] = 189077, + [SMALL_STATE(5349)] = 189085, + [SMALL_STATE(5350)] = 189093, + [SMALL_STATE(5351)] = 189101, + [SMALL_STATE(5352)] = 189109, + [SMALL_STATE(5353)] = 189117, + [SMALL_STATE(5354)] = 189125, + [SMALL_STATE(5355)] = 189133, + [SMALL_STATE(5356)] = 189141, + [SMALL_STATE(5357)] = 189149, + [SMALL_STATE(5358)] = 189157, + [SMALL_STATE(5359)] = 189165, + [SMALL_STATE(5360)] = 189173, + [SMALL_STATE(5361)] = 189181, + [SMALL_STATE(5362)] = 189189, + [SMALL_STATE(5363)] = 189197, + [SMALL_STATE(5364)] = 189205, + [SMALL_STATE(5365)] = 189213, + [SMALL_STATE(5366)] = 189221, + [SMALL_STATE(5367)] = 189229, + [SMALL_STATE(5368)] = 189237, + [SMALL_STATE(5369)] = 189245, + [SMALL_STATE(5370)] = 189253, + [SMALL_STATE(5371)] = 189261, + [SMALL_STATE(5372)] = 189269, + [SMALL_STATE(5373)] = 189277, + [SMALL_STATE(5374)] = 189285, + [SMALL_STATE(5375)] = 189293, + [SMALL_STATE(5376)] = 189301, + [SMALL_STATE(5377)] = 189309, + [SMALL_STATE(5378)] = 189317, + [SMALL_STATE(5379)] = 189325, + [SMALL_STATE(5380)] = 189333, + [SMALL_STATE(5381)] = 189341, + [SMALL_STATE(5382)] = 189349, + [SMALL_STATE(5383)] = 189357, + [SMALL_STATE(5384)] = 189365, + [SMALL_STATE(5385)] = 189373, + [SMALL_STATE(5386)] = 189381, + [SMALL_STATE(5387)] = 189389, + [SMALL_STATE(5388)] = 189397, + [SMALL_STATE(5389)] = 189405, + [SMALL_STATE(5390)] = 189413, + [SMALL_STATE(5391)] = 189421, + [SMALL_STATE(5392)] = 189429, + [SMALL_STATE(5393)] = 189437, + [SMALL_STATE(5394)] = 189445, + [SMALL_STATE(5395)] = 189453, + [SMALL_STATE(5396)] = 189461, + [SMALL_STATE(5397)] = 189469, + [SMALL_STATE(5398)] = 189477, + [SMALL_STATE(5399)] = 189485, + [SMALL_STATE(5400)] = 189493, + [SMALL_STATE(5401)] = 189501, + [SMALL_STATE(5402)] = 189509, + [SMALL_STATE(5403)] = 189517, + [SMALL_STATE(5404)] = 189525, + [SMALL_STATE(5405)] = 189533, + [SMALL_STATE(5406)] = 189541, + [SMALL_STATE(5407)] = 189549, + [SMALL_STATE(5408)] = 189557, + [SMALL_STATE(5409)] = 189565, + [SMALL_STATE(5410)] = 189573, + [SMALL_STATE(5411)] = 189581, + [SMALL_STATE(5412)] = 189589, + [SMALL_STATE(5413)] = 189597, + [SMALL_STATE(5414)] = 189605, + [SMALL_STATE(5415)] = 189613, + [SMALL_STATE(5416)] = 189621, + [SMALL_STATE(5417)] = 189629, + [SMALL_STATE(5418)] = 189637, + [SMALL_STATE(5419)] = 189645, + [SMALL_STATE(5420)] = 189653, + [SMALL_STATE(5421)] = 189661, + [SMALL_STATE(5422)] = 189669, + [SMALL_STATE(5423)] = 189677, + [SMALL_STATE(5424)] = 189685, + [SMALL_STATE(5425)] = 189693, + [SMALL_STATE(5426)] = 189701, + [SMALL_STATE(5427)] = 189709, + [SMALL_STATE(5428)] = 189717, + [SMALL_STATE(5429)] = 189725, + [SMALL_STATE(5430)] = 189733, + [SMALL_STATE(5431)] = 189741, + [SMALL_STATE(5432)] = 189749, + [SMALL_STATE(5433)] = 189757, + [SMALL_STATE(5434)] = 189765, + [SMALL_STATE(5435)] = 189773, + [SMALL_STATE(5436)] = 189781, + [SMALL_STATE(5437)] = 189789, + [SMALL_STATE(5438)] = 189797, + [SMALL_STATE(5439)] = 189805, + [SMALL_STATE(5440)] = 189813, + [SMALL_STATE(5441)] = 189821, + [SMALL_STATE(5442)] = 189829, + [SMALL_STATE(5443)] = 189837, + [SMALL_STATE(5444)] = 189845, + [SMALL_STATE(5445)] = 189853, + [SMALL_STATE(5446)] = 189861, + [SMALL_STATE(5447)] = 189869, + [SMALL_STATE(5448)] = 189877, + [SMALL_STATE(5449)] = 189885, + [SMALL_STATE(5450)] = 189893, + [SMALL_STATE(5451)] = 189901, + [SMALL_STATE(5452)] = 189909, + [SMALL_STATE(5453)] = 189917, + [SMALL_STATE(5454)] = 189925, + [SMALL_STATE(5455)] = 189933, + [SMALL_STATE(5456)] = 189941, + [SMALL_STATE(5457)] = 189949, + [SMALL_STATE(5458)] = 189957, + [SMALL_STATE(5459)] = 189965, + [SMALL_STATE(5460)] = 189973, + [SMALL_STATE(5461)] = 189981, + [SMALL_STATE(5462)] = 189989, + [SMALL_STATE(5463)] = 189997, + [SMALL_STATE(5464)] = 190005, + [SMALL_STATE(5465)] = 190013, + [SMALL_STATE(5466)] = 190021, + [SMALL_STATE(5467)] = 190029, + [SMALL_STATE(5468)] = 190037, + [SMALL_STATE(5469)] = 190045, + [SMALL_STATE(5470)] = 190053, + [SMALL_STATE(5471)] = 190061, + [SMALL_STATE(5472)] = 190069, + [SMALL_STATE(5473)] = 190077, + [SMALL_STATE(5474)] = 190085, + [SMALL_STATE(5475)] = 190093, + [SMALL_STATE(5476)] = 190101, + [SMALL_STATE(5477)] = 190109, + [SMALL_STATE(5478)] = 190117, + [SMALL_STATE(5479)] = 190125, + [SMALL_STATE(5480)] = 190133, + [SMALL_STATE(5481)] = 190141, + [SMALL_STATE(5482)] = 190149, + [SMALL_STATE(5483)] = 190157, + [SMALL_STATE(5484)] = 190165, + [SMALL_STATE(5485)] = 190173, + [SMALL_STATE(5486)] = 190181, + [SMALL_STATE(5487)] = 190189, + [SMALL_STATE(5488)] = 190197, + [SMALL_STATE(5489)] = 190205, + [SMALL_STATE(5490)] = 190213, + [SMALL_STATE(5491)] = 190221, + [SMALL_STATE(5492)] = 190229, + [SMALL_STATE(5493)] = 190237, + [SMALL_STATE(5494)] = 190245, + [SMALL_STATE(5495)] = 190253, + [SMALL_STATE(5496)] = 190261, + [SMALL_STATE(5497)] = 190269, + [SMALL_STATE(5498)] = 190277, + [SMALL_STATE(5499)] = 190285, + [SMALL_STATE(5500)] = 190293, + [SMALL_STATE(5501)] = 190301, + [SMALL_STATE(5502)] = 190309, + [SMALL_STATE(5503)] = 190317, + [SMALL_STATE(5504)] = 190325, + [SMALL_STATE(5505)] = 190333, + [SMALL_STATE(5506)] = 190341, + [SMALL_STATE(5507)] = 190349, + [SMALL_STATE(5508)] = 190357, + [SMALL_STATE(5509)] = 190365, + [SMALL_STATE(5510)] = 190373, + [SMALL_STATE(5511)] = 190381, + [SMALL_STATE(5512)] = 190389, + [SMALL_STATE(5513)] = 190397, + [SMALL_STATE(5514)] = 190405, + [SMALL_STATE(5515)] = 190413, + [SMALL_STATE(5516)] = 190421, + [SMALL_STATE(5517)] = 190429, + [SMALL_STATE(5518)] = 190437, + [SMALL_STATE(5519)] = 190445, + [SMALL_STATE(5520)] = 190453, + [SMALL_STATE(5521)] = 190461, + [SMALL_STATE(5522)] = 190469, + [SMALL_STATE(5523)] = 190477, + [SMALL_STATE(5524)] = 190485, + [SMALL_STATE(5525)] = 190493, + [SMALL_STATE(5526)] = 190501, + [SMALL_STATE(5527)] = 190509, + [SMALL_STATE(5528)] = 190517, + [SMALL_STATE(5529)] = 190525, + [SMALL_STATE(5530)] = 190533, + [SMALL_STATE(5531)] = 190541, + [SMALL_STATE(5532)] = 190549, + [SMALL_STATE(5533)] = 190557, + [SMALL_STATE(5534)] = 190565, + [SMALL_STATE(5535)] = 190573, + [SMALL_STATE(5536)] = 190581, + [SMALL_STATE(5537)] = 190589, + [SMALL_STATE(5538)] = 190597, + [SMALL_STATE(5539)] = 190605, + [SMALL_STATE(5540)] = 190613, + [SMALL_STATE(5541)] = 190621, + [SMALL_STATE(5542)] = 190629, + [SMALL_STATE(5543)] = 190637, + [SMALL_STATE(5544)] = 190645, + [SMALL_STATE(5545)] = 190653, + [SMALL_STATE(5546)] = 190661, + [SMALL_STATE(5547)] = 190669, + [SMALL_STATE(5548)] = 190677, + [SMALL_STATE(5549)] = 190685, + [SMALL_STATE(5550)] = 190693, + [SMALL_STATE(5551)] = 190701, + [SMALL_STATE(5552)] = 190709, + [SMALL_STATE(5553)] = 190717, + [SMALL_STATE(5554)] = 190725, + [SMALL_STATE(5555)] = 190733, + [SMALL_STATE(5556)] = 190741, + [SMALL_STATE(5557)] = 190749, + [SMALL_STATE(5558)] = 190757, + [SMALL_STATE(5559)] = 190765, + [SMALL_STATE(5560)] = 190773, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -269534,4806 +270490,4818 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5457), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5508), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1758), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4316), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3899), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(668), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1859), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(306), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1458), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(993), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1267), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(929), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5161), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5034), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5035), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1684), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(378), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1737), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(858), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1685), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5402), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1233), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5508), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5457), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5327), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1736), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(727), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5360), - [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(684), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1468), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1857), - [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(669), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1483), - [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3091), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2533), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(875), - [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1981), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1982), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1981), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(397), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1729), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5404), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4681), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5509), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1856), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3094), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2088), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2716), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5351), - [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3485), - [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 0), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1593), - [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(377), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(856), - [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1587), - [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5229), - [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1137), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5408), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5221), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5295), - [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5265), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1863), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2111), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(779), - [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1838), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), - [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), - [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(783), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1857), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1483), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3091), - [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), - [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), - [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), - [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 3, 0, 56), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 3, 0, 56), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 180), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 180), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 58), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 58), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 181), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 181), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 182), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 182), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 193), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 193), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 194), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 194), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 195), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 195), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 196), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 196), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 197), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 197), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 199), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 199), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pass_statement, 1, 0, 0), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 124), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 124), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 201), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 201), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 152), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 152), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 202), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 202), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 84), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 84), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 153), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 153), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 203), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 203), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 0), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 0), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 179), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 179), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 204), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 204), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 200), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 200), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 205), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 205), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 206), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 206), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 207), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 207), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 208), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 208), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 214), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 214), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 215), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 215), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 217), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 217), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 218), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 218), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 152), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 152), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 219), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 219), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 220), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 220), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 153), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 153), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 221), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 221), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 179), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 179), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 222), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 222), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 124), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 124), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 223), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 223), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 224), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 224), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 225), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 225), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 226), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 226), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 227), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 227), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 232), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 232), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 233), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 233), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 234), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 234), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 179), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 179), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 235), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 235), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 236), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 236), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 237), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 237), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 11, 0, 240), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 11, 0, 240), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 2, 0, 0), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 2, 0, 0), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 2, 0, 0), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 2, 0, 0), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 2, 0, 0), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 2, 0, 0), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 1, 0, 54), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 1, 0, 54), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 1, 0, 0), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 1, 0, 0), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 3, 0, 0), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 3, 0, 0), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 3, 0, 0), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 3, 0, 0), - [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 3, 0, 56), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 3, 0, 56), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 3, 0, 0), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 3, 0, 0), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 3, 0, 0), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 3, 0, 0), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 2, 0, 0), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 2, 0, 0), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 4, 0, 0), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 4, 0, 0), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 1, 0, 54), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 1, 0, 54), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 1, 0, 0), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 1, 0, 0), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 4, 0, 0), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 4, 0, 0), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 4, 0, 84), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 4, 0, 84), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 4, 0, 0), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 4, 0, 0), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 4, 0, 85), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 4, 0, 85), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 149), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 149), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 4, 0, 0), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 4, 0, 0), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 3, 0, 0), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 3, 0, 0), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 145), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 145), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 84), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 84), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 5, 0, 0), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 5, 0, 0), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 3, 0, 0), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 3, 0, 0), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 150), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 150), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 0), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 0), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 124), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 124), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 151), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 151), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 2, 0, 0), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 2, 0, 0), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 84), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 84), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 5, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 5, 0, 0), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 5, 0, 123), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 5, 0, 123), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fused, 5, 0, 0), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fused, 5, 0, 0), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 5, 0, 0), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 5, 0, 0), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 4, 0, 85), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 4, 0, 85), - [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 4, 0, 0), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 4, 0, 0), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 0), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 0), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 124), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 124), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 6, 0, 0), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 6, 0, 0), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 3, 0, 0), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 3, 0, 0), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 6, 0, 0), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 6, 0, 0), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 6, 0, 147), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 6, 0, 147), - [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 2, 0, 0), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 2, 0, 0), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fused, 6, 0, 0), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fused, 6, 0, 0), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 6, 0, 0), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 6, 0, 0), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, 0, 18), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, 0, 18), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 5, 0, 0), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 5, 0, 0), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 2, 0, 0), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 2, 0, 0), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 5, 0, 123), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 5, 0, 123), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 6, 0, 124), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 6, 0, 124), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 49), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 49), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 7, 0, 0), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 7, 0, 0), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 7, 0, 0), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 7, 0, 0), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 7, 0, 173), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 7, 0, 173), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 6, 0, 0), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 6, 0, 0), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 18), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 18), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 3, 0, 0), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 3, 0, 0), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 58), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 58), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 6, 0, 147), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 6, 0, 147), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 7, 0, 0), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 7, 0, 0), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 77), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 77), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 78), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 78), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 79), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 79), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 80), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 80), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 84), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 84), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 8, 0, 0), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 8, 0, 0), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 8, 0, 198), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 8, 0, 198), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 0), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 0), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 86), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 86), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 93), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 93), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 8, 0, 0), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 8, 0, 0), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 7, 0, 0), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 7, 0, 0), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 58), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 58), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 7, 0, 173), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 7, 0, 173), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 9, 0, 0), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 9, 0, 0), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 9, 0, 216), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 9, 0, 216), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 18), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 18), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 115), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 115), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 116), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 116), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 8, 0, 0), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 8, 0, 0), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 117), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 117), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 118), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 118), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 119), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 119), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 0), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 0), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 84), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 84), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 10, 0, 231), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 10, 0, 231), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 10, 0, 0), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 10, 0, 0), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 11, 0, 0), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 11, 0, 0), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 125), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 125), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 126), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 126), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 124), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 124), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 11, 0, 239), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 11, 0, 239), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 152), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 152), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 127), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 127), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 153), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 153), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 128), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 128), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 58), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 58), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 154), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 154), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 129), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 129), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 155), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 155), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 130), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 130), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 156), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 156), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 157), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 157), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 158), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 158), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 143), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 143), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 169), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 169), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 170), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 170), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 171), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 171), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 172), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 172), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 174), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 174), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 84), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 84), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 175), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 175), - [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 124), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 124), - [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 176), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 176), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 0), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 0), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 12, 0, 0), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 12, 0, 0), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 18), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 18), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 152), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 152), - [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 177), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 177), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 153), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 153), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 178), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 178), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 144), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 144), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 179), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 179), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 3, 0, 0), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 3, 0, 0), - [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cppclass_suite, 3, 0, 0), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cppclass_suite, 3, 0, 0), - [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 6, 0, 0), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 6, 0, 0), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_type_declaration, 1, 0, 0), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_type_declaration, 1, 0, 0), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 3, 0, 0), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 3, 0, 0), - [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cppclass_suite, 2, 0, 0), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cppclass_suite, 2, 0, 0), - [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctype_declaration, 1, 0, 0), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctype_declaration, 1, 0, 0), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 4, 0, 0), - [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 4, 0, 0), - [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 5, 0, 0), - [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 5, 0, 0), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 74), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 74), - [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), - [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 47), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 47), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), - [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 103), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 103), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1479), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 41), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 41), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 64), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 64), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 65), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 65), - [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1360), - [2629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1687), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 101), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 101), - [2728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 101), SHIFT_REPEAT(1410), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 99), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 99), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [2739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 101), SHIFT_REPEAT(1688), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 133), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 133), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 132), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 132), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 159), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 159), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 147), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 147), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 147), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 147), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 85), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 85), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 0), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 0), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 0), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 0), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 56), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 56), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 85), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 85), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), - [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 41), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 41), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 65), - [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 65), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 68), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 68), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 1, 0, 0), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 47), - [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 47), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 74), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 74), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 71), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 71), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 163), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 163), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 140), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 140), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 107), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 107), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 136), - [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 136), - [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 45), - [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 45), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 111), - [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 111), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 46), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 46), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), - [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 62), - [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 62), - [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 73), - [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 73), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 47), - [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 47), - [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), - [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), - [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), - [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 15), - [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 16), - [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 74), - [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 74), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 3, 0, 0), - [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 2, 0, 0), - [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 190), - [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 190), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 114), - [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 114), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 191), - [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 191), - [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 142), - [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 142), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 76), - [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 76), - [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 106), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 106), - [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 4, 0, 48), - [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 4, 0, 48), - [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 108), - [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 108), - [3138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 109), - [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 109), - [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 134), - [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 134), - [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), - [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), - [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 43), - [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 43), - [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_directive, 3, 0, 0), - [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_run_directive, 3, 0, 0), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 13), - [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 13), - [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 135), - [3164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 135), - [3166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 165), - [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 165), - [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 6, 0, 5), - [3172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 6, 0, 5), - [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 6, 0, 0), - [3176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 6, 0, 0), - [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 213), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 213), - [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 110), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 110), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 162), - [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 162), - [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 168), - [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 168), - [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 112), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 112), - [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 167), - [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 167), - [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 164), - [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 164), - [3206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 48), - [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 48), - [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 137), - [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 137), - [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 56), - [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 56), - [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 70), - [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 70), - [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 166), - [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 166), - [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 189), - [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 189), - [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 63), - [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 63), - [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 47), - [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 47), - [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 7, 0, 148), - [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 7, 0, 148), - [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 66), - [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 66), - [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 67), - [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 67), - [3256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 74), - [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 74), - [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 113), - [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 113), - [3264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 69), - [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 69), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 72), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 72), - [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 192), - [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 192), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 75), - [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 75), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 138), - [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 138), - [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5, 0, 75), - [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5, 0, 75), - [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_def_statement, 5, 0, 18), - [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_def_statement, 5, 0, 18), - [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 5, 0, 0), - [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 5, 0, 0), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 139), - [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 139), - [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 7, 0, 0), - [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 7, 0, 0), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 102), - [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 102), - [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 100), - [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 100), - [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 2, 0, 0), - [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 2, 0, 0), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), - [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), - [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 141), - [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 141), - [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 104), - [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 104), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 105), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 105), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 10), - [3444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), - [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 1, 0, 10), - [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storageclass, 1, 0, 0), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), - [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), - [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), - [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [3547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 2, 0, 0), - [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_value, 2, 0, 0), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 5, 0, 0), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 3, 0, 0), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), - [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), - [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), - [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 28), - [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 28), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [3598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [3601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 6, 0, 0), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 91), - [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 91), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), - [3611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), - [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), - [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 57), - [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 57), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 91), - [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 91), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 57), - [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 57), - [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 4, 0, 0), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), - [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), - [3657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), - [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), - [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3338), - [3696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3157), - [3699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5360), - [3702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2716), - [3705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2023), - [3708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3424), - [3711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3080), - [3714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3266), - [3717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3241), - [3720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3125), - [3723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2088), - [3726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5258), - [3729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4291), - [3732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5259), - [3735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5544), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), - [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3533), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [3879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3029), - [3882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5250), - [3885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2716), - [3888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2658), - [3891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3283), - [3894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), - [3897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2986), - [3900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3185), - [3903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3118), - [3906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3272), - [3909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2068), - [3912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5410), - [3915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4178), - [3918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5413), - [3921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5187), - [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [3978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [3980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3485), - [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), - [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), - [3987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1836), - [3990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(5476), - [3993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1787), - [3996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1836), - [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [4001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 12), - [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 12), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 26), - [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 26), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), - [4053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), - [4085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), - [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 29), - [4089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 29), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [4093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_function_pointer_type, 3, 0, 0), - [4096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_function_pointer_type, 3, 0, 0), - [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 3, 0, 0), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [4161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [4197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 27), - [4205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 27), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 26), - [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 26), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), - [4249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), - [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 21), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, 0, 21), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, 0, 0), - [4261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, 0, 0), - [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 37), - [4265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 37), - [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 0), - [4269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 0), - [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 38), - [4273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 38), - [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), - [4277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), - [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 38), - [4281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 38), - [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_none, 1, 0, 0), - [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_none, 1, 0, 0), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), - [4289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), - [4291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1801), - [4294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1789), - [4297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1801), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 38), - [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 38), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), - [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), - [4310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), - [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), - [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), - [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 11), - [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 11), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 0), - [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 0), - [4336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3520), - [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 52), - [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, 0, 52), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 38), - [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 38), - [4347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3513), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 37), - [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 37), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [4358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1894), - [4361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1790), - [4364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1894), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), - [4369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1455), - [4372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 23), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [4376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 37), - [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 37), - [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 0), - [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 0), - [4386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3505), - [4389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3539), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [4420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1883), - [4423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1794), - [4426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1883), - [4429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1871), - [4432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1791), - [4435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1871), - [4438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1826), - [4441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1795), - [4444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1826), - [4447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3554), - [4450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1866), - [4453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1793), - [4456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1866), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [4461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3528), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [4474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1535), - [4477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1804), - [4480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1796), - [4483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1804), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [4494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1529), - [4497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3524), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [4516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1579), - [4519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1521), - [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), - [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), - [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 3, 0, 0), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1505), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [4561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1549), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), - [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), - [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [4658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1542), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), - [4735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), - [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), - [4739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2716), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), - [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5093), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [4846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3029), - [4849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2716), - [4852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3283), - [4855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), - [4858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2986), - [4861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3185), - [4864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3118), - [4867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3272), - [4870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5413), - [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storageclass, 1, 0, 0), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), - [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [4995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3338), - [4998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3157), - [5001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2716), - [5004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3424), - [5007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3080), - [5010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3266), - [5013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3241), - [5016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3125), - [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), - [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), - [5051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), - [5053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), - [5055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), - [5059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 3, 0, 0), - [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [5099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 1, 0, 0), - [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 1, 0, 0), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [5117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1512), - [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), - [5134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1763), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 0), - [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), - [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1763), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4364), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3945), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(668), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1822), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(229), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1305), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(942), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1221), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(880), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5138), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5184), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5139), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1678), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(378), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(852), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5410), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1057), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5516), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5501), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5280), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1737), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(726), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5560), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1321), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1886), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3124), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2572), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1986), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1983), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2021), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2021), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(397), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1729), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5412), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4702), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5517), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1904), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3097), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2091), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2763), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5322), + [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), + [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 0), + [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1521), + [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(377), + [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(845), + [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5211), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1022), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5460), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5328), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5380), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5422), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1900), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2106), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(818), + [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1809), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), + [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), + [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(822), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1886), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1327), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3124), + [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), + [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 3, 0, 56), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 3, 0, 56), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 144), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 144), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 58), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 58), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 181), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 181), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 182), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 182), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 193), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 193), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 194), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 194), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 195), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 195), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 196), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 196), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 197), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 197), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 199), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 199), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pass_statement, 1, 0, 0), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 124), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 124), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 201), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 201), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 152), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 152), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 202), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 202), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 84), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 84), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 153), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 153), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 203), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 203), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 0), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 0), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 179), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 179), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 204), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 204), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 200), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 200), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 205), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 205), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 206), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 206), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 207), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 207), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 208), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 208), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 214), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 214), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 215), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 215), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 217), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 217), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 218), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 218), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 152), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 152), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 219), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 219), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 220), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 220), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 153), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 153), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 221), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 221), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 179), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 179), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 222), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 222), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 124), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 124), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 223), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 223), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 224), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 224), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 225), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 225), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 226), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 226), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 227), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 227), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 232), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 232), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 233), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 233), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 234), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 234), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 179), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 179), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 235), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 235), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 236), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 236), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 237), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 237), + [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 11, 0, 240), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 11, 0, 240), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 2, 0, 0), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 2, 0, 0), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 2, 0, 0), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 2, 0, 0), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 2, 0, 0), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 2, 0, 0), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 1, 0, 54), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 1, 0, 54), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 1, 0, 0), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 1, 0, 0), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 3, 0, 0), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 3, 0, 0), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 3, 0, 0), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 3, 0, 0), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 3, 0, 56), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 3, 0, 56), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 3, 0, 0), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 3, 0, 0), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 3, 0, 0), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 3, 0, 0), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 2, 0, 0), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 2, 0, 0), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 4, 0, 0), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 4, 0, 0), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 1, 0, 54), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 1, 0, 54), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 1, 0, 0), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 1, 0, 0), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 4, 0, 0), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 4, 0, 0), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 4, 0, 84), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 4, 0, 84), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 4, 0, 0), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 4, 0, 0), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 4, 0, 85), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 4, 0, 85), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 149), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 149), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 4, 0, 0), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 4, 0, 0), + [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 3, 0, 0), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 3, 0, 0), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 145), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 145), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 84), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 84), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 5, 0, 0), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 5, 0, 0), + [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 3, 0, 0), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 3, 0, 0), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 150), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 150), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 0), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 0), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 124), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 124), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 151), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 151), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 2, 0, 0), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 2, 0, 0), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 84), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 84), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 5, 0, 0), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 5, 0, 0), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 5, 0, 123), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 5, 0, 123), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fused, 5, 0, 0), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fused, 5, 0, 0), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 5, 0, 0), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 5, 0, 0), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 4, 0, 85), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 4, 0, 85), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 4, 0, 0), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 4, 0, 0), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 0), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 0), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 124), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 124), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 6, 0, 0), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 6, 0, 0), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 3, 0, 0), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 3, 0, 0), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 6, 0, 0), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 6, 0, 0), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 6, 0, 147), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 6, 0, 147), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 2, 0, 0), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 2, 0, 0), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fused, 6, 0, 0), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fused, 6, 0, 0), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 6, 0, 0), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 6, 0, 0), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, 0, 18), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, 0, 18), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 5, 0, 0), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 5, 0, 0), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 2, 0, 0), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 2, 0, 0), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 5, 0, 123), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 5, 0, 123), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 6, 0, 124), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 6, 0, 124), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 49), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 49), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 7, 0, 0), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 7, 0, 0), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 7, 0, 0), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 7, 0, 0), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 7, 0, 173), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 7, 0, 173), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 6, 0, 0), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 6, 0, 0), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 18), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 18), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 3, 0, 0), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 3, 0, 0), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 58), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 58), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 6, 0, 147), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 6, 0, 147), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 7, 0, 0), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 7, 0, 0), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 77), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 77), + [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 78), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 78), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 79), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 79), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 80), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 80), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 84), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 84), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 8, 0, 0), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 8, 0, 0), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 8, 0, 198), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 8, 0, 198), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 0), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 0), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 86), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 86), + [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 93), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 93), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 8, 0, 0), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 8, 0, 0), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 7, 0, 0), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 7, 0, 0), + [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 58), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 58), + [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 7, 0, 173), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 7, 0, 173), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 9, 0, 0), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 9, 0, 0), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 9, 0, 216), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 9, 0, 216), + [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 18), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 18), + [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 115), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 115), + [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 116), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 116), + [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 8, 0, 0), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 8, 0, 0), + [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 117), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 117), + [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 118), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 118), + [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 119), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 119), + [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 0), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 0), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 84), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 84), + [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 10, 0, 231), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 10, 0, 231), + [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 10, 0, 0), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 10, 0, 0), + [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 11, 0, 0), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 11, 0, 0), + [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 125), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 125), + [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 126), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 126), + [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 124), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 124), + [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 11, 0, 239), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 11, 0, 239), + [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 152), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 152), + [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 127), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 127), + [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 153), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 153), + [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 128), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 128), + [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 58), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 58), + [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 154), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 154), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 129), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 129), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 155), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 155), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 156), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 156), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 130), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 130), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 157), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 157), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 158), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 158), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 169), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 169), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 143), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 143), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 170), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 170), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 171), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 171), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 172), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 172), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 174), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 174), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 84), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 84), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 175), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 175), + [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 124), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 124), + [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 176), + [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 176), + [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 0), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 0), + [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 12, 0, 0), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 12, 0, 0), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 18), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 18), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 152), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 152), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 177), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 177), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 153), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 153), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 178), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 178), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 179), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 179), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 180), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 180), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cppclass_suite, 2, 0, 0), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cppclass_suite, 2, 0, 0), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 3, 0, 0), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 3, 0, 0), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_type_declaration, 1, 0, 0), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_type_declaration, 1, 0, 0), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctype_declaration, 1, 0, 0), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctype_declaration, 1, 0, 0), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 3, 0, 0), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 3, 0, 0), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 6, 0, 0), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 6, 0, 0), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 5, 0, 0), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 5, 0, 0), + [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 4, 0, 0), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 4, 0, 0), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cppclass_suite, 3, 0, 0), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cppclass_suite, 3, 0, 0), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 74), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 74), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 47), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 47), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5523), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 132), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 132), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 133), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 133), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 65), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 65), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1232), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 159), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 159), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [2762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1685), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 99), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 99), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 64), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 64), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 41), + [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 41), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 103), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 103), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1071), + [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1592), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 101), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 101), + [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 101), SHIFT_REPEAT(1687), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 101), SHIFT_REPEAT(1312), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 56), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 56), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 85), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 85), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 85), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 85), + [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 0), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 0), + [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 147), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 147), + [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 147), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 147), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 1, 0, 0), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 0), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 0), + [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 107), + [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 107), + [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 46), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 46), + [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 62), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 62), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 136), + [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 136), + [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 140), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 140), + [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 68), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 68), + [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 71), + [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 71), + [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 73), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 73), + [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 47), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 47), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 111), + [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 111), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 41), + [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 41), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 15), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 2, 0, 0), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 16), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 74), + [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 74), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 163), + [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 163), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 45), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 45), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 3, 0, 0), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 65), + [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 65), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), + [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 74), + [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 74), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 47), + [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 47), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 213), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 213), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 7, 0, 148), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 7, 0, 148), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 7, 0, 0), + [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 7, 0, 0), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 13), + [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 13), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 162), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 162), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 164), + [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 164), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 165), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 165), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 166), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 166), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 63), + [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 63), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 167), + [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 167), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 168), + [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 168), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 66), + [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 66), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), + [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 67), + [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 67), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 69), + [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 69), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 70), + [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 70), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 72), + [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 72), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 75), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 75), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 76), + [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 76), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 189), + [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 189), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 190), + [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 190), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 191), + [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 191), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5, 0, 75), + [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5, 0, 75), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 192), + [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 192), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_def_statement, 5, 0, 18), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_def_statement, 5, 0, 18), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 5, 0, 0), + [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 5, 0, 0), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_directive, 3, 0, 0), + [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_run_directive, 3, 0, 0), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 100), + [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 100), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 102), + [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 102), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 104), + [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 104), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 105), + [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 105), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 106), + [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 106), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 108), + [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 108), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 109), + [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 109), + [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 110), + [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 110), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 112), + [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 112), + [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 2, 0, 0), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 2, 0, 0), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 56), + [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 56), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 47), + [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 47), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 113), + [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 113), + [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 114), + [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 114), + [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), + [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 43), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 43), + [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 48), + [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 48), + [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 4, 0, 48), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 4, 0, 48), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 6, 0, 5), + [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 6, 0, 5), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 6, 0, 0), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 6, 0, 0), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 134), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 134), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 135), + [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 135), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 137), + [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 137), + [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 138), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 138), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 139), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 139), + [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), + [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), + [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 74), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 74), + [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 141), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 141), + [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 142), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 142), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 10), + [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), + [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 1, 0, 10), + [3474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storageclass, 1, 0, 0), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [3532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 2, 0, 0), + [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_value, 2, 0, 0), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 3, 0, 0), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 5, 0, 0), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [3596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), + [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 4, 0, 0), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 6, 0, 0), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 28), + [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 28), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), + [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [3632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [3637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), + [3641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 57), + [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 57), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [3652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), + [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [3657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [3663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 57), + [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 57), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 91), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 91), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 91), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 91), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), + [3814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3363), + [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3127), + [3820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5560), + [3823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2763), + [3826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2010), + [3829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3373), + [3832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3077), + [3835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3295), + [3838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3239), + [3841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3105), + [3844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2091), + [3847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5266), + [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4170), + [3853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5267), + [3856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5552), + [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), + [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3522), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5524), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [3906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3075), + [3909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5258), + [3912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2763), + [3915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2680), + [3918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3286), + [3921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1731), + [3924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3000), + [3927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3204), + [3930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3167), + [3933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3274), + [3936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2122), + [3939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5436), + [3942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4180), + [3945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5440), + [3948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5526), + [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cdef_statement_repeat1, 2, 0, 0), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [3975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [4013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 12), + [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 12), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), + [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), + [4024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1813), + [4027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(5444), + [4030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1786), + [4033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1813), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 26), + [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 26), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 29), + [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 29), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), + [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [4112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_function_pointer_type, 3, 0, 0), + [4115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_function_pointer_type, 3, 0, 0), + [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 3, 0, 0), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), + [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 21), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, 0, 21), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 0), + [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 0), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), + [4240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1409), + [4243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 23), + [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), + [4247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), + [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 27), + [4251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 27), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 26), + [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 26), + [4257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3493), + [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 38), + [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 38), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 52), + [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, 0, 52), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), + [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, 0, 0), + [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, 0, 0), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_none, 1, 0, 0), + [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_none, 1, 0, 0), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 0), + [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 0), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ellipsis, 1, 0, 0), + [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ellipsis, 1, 0, 0), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), + [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [4304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3500), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 37), + [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 37), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), + [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), + [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 11), + [4325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 11), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [4329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [4359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1802), + [4362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1775), + [4365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1802), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 37), + [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 37), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 38), + [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 38), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), + [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 38), + [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 38), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 38), + [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 38), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 0), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 0), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [4396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1824), + [4399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1768), + [4402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1824), + [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 37), + [4407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 37), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [4437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1853), + [4440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1772), + [4443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1853), + [4446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3485), + [4449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3523), + [4452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1877), + [4455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1774), + [4458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1877), + [4461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1868), + [4464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1770), + [4467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1868), + [4470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3489), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [4475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1876), + [4478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1793), + [4481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1876), + [4484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3518), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3507), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [4508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1481), + [4511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1859), + [4514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1789), + [4517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), SHIFT_REPEAT(1859), + [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1488), + [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1457), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1473), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 3, 0, 0), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1542), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1502), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1495), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), + [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), + [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2763), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [4775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3075), + [4904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2763), + [4907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3286), + [4910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(1731), + [4913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3000), + [4916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3204), + [4919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3167), + [4922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3274), + [4925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5440), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), + [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [5010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storageclass, 1, 0, 0), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [5022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3363), + [5025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3127), + [5028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2763), + [5031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3373), + [5034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3077), + [5037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3295), + [5040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3239), + [5043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3105), + [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [5076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), + [5078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), + [5080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), + [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [5104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 3, 0, 0), + [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [5122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1464), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 1, 0, 0), + [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 1, 0, 0), + [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), [5153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [5162] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(2963), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [5168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3321), - [5171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3167), - [5174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3283), - [5177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(2986), - [5180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3185), - [5183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3118), - [5186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3110), - [5189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), - [5191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), - [5193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5361), - [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 10), - [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), - [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [5212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 10), REDUCE(sym_c_type, 2, 0, 20), - [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 20), - [5217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 20), - [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [5158] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(2981), + [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [5164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), + [5166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5281), + [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), + [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [5179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 10), REDUCE(sym_c_type, 2, 0, 20), + [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 20), + [5184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 20), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [5197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 0), + [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [5205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 10), REDUCE(sym_c_type, 3, 0, 20), + [5208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 20), + [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 20), + [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), [5224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 0), REDUCE(sym_c_type, 2, 0, 0), [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 0), [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 20), - [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [5235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 10), REDUCE(sym_c_type, 3, 0, 20), - [5238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 20), - [5240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 20), - [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [5254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(2963), - [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), - [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 6, 0, 0), - [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [5279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 2, 0, 0), - [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 4, 0, 0), - [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [5291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(2963), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [5296] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 20), SHIFT(2963), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [5306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 20), SHIFT(2963), - [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 7, 0, 0), - [5311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [5339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 20), SHIFT(2963), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [5382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), - [5384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1753), + [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 10), + [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), + [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [5245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3369), + [5248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3135), + [5251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3286), + [5254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3000), + [5257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3204), + [5260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3167), + [5263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3162), + [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), + [5272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1754), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [5293] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 20), SHIFT(2981), + [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [5303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 6, 0, 0), + [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [5307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 20), SHIFT(2981), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [5314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(2981), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [5327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 7, 0, 0), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [5351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(2981), + [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [5368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 20), SHIFT(2981), + [5371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 4, 0, 0), + [5373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 2, 0, 0), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), [5387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__longness, 1, 0, 0), [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__longness, 1, 0, 0), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [5405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5383), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [5410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [5422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5397), - [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 0), - [5429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), - [5431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [5435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 10), - [5437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 20), - [5440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 0), REDUCE(sym_c_type, 3, 0, 0), - [5443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__longness, 2, 0, 19), - [5445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__longness, 2, 0, 19), - [5447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 2, 0, 0), - [5449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 2, 0, 0), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [5471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [5476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 10), REDUCE(sym_c_type, 5, 0, 20), - [5479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 20), - [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 20), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [5487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 10), - [5489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [5493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 10), REDUCE(sym_c_type, 4, 0, 20), - [5496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 20), - [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 20), - [5500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 0), REDUCE(sym_c_type, 4, 0, 0), - [5503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 0), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [5513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 20), SHIFT(2963), - [5516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), - [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), - [5520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 20), - [5523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3363), - [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3363), - [5529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2973), - [5532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 2, 0, 0), - [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 2, 0, 0), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [5538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 6, 0, 0), - [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 6, 0, 0), - [5542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 5, 0, 0), - [5544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 5, 0, 0), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [5548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 3, 0, 0), - [5550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 3, 0, 0), - [5552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 10), - [5555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 20), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [5560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(2963), - [5563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 6, 0, 20), - [5566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3467), - [5569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3467), - [5572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2963), - [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [5577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(2963), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [5582] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(2963), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [5588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 3, 0, 10), - [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [5593] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 20), SHIFT(2963), - [5597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 4, 0, 0), - [5599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 4, 0, 0), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [5605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 10), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [5610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 20), SHIFT(2963), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [5615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 2, 0, 0), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 2, 0, 0), - [5621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [5625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 3, 0, 0), - [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 3, 0, 0), - [5629] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(2963), - [5633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), - [5635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), - [5637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2973), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parameters, 2, 0, 0), - [5644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_parameters, 2, 0, 0), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [5648] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 10), SHIFT(2963), - [5652] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 20), SHIFT(2963), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [5658] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 20), SHIFT(2963), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [5670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2963), - [5673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5384), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [5680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), - [5683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), - [5686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2962), - [5689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5239), - [5692] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(2963), - [5696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5226), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [5701] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 6, 0, 20), SHIFT(2963), - [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [5711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 20), - [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [5715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 10), - [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 0), - [5723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 0), REDUCE(sym_c_type, 5, 0, 0), - [5726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 20), - [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [5730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1469), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [5739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2962), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [5746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5399), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), - [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [5757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 0), REDUCE(sym_c_type, 6, 0, 0), - [5760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 6, 0, 0), - [5762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_qualifier_repeat1, 3, 0, 0), - [5764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 3, 0, 0), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [5778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), - [5780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1468), - [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [5787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), - [5801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 121), - [5803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 122), - [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 22), - [5807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 146), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [5821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [5827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), SHIFT(2963), - [5830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 5, 0, 0), - [5832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 5, 0, 0), - [5834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 82), - [5836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 82), SHIFT(2963), - [5839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 4, 0, 0), - [5841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 4, 0, 0), - [5843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 121), - [5845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 121), SHIFT(2963), - [5848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 7, 0, 146), - [5850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 22), SHIFT(2963), - [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 53), - [5855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 53), SHIFT(2963), - [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 55), - [5860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 83), - [5862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 83), SHIFT(2963), - [5865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 53), - [5867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 82), - [5869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 122), - [5871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 122), SHIFT(2963), - [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 55), - [5876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 83), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [5884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 122), SHIFT(2963), - [5887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 55), SHIFT(2963), - [5890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 146), SHIFT(2963), - [5893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 53), SHIFT(2963), - [5896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 7, 0, 146), SHIFT(2963), - [5899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 22), - [5901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 22), SHIFT(2963), - [5904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 82), SHIFT(2963), - [5907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), SHIFT(2963), - [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [5914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), SHIFT(2963), - [5917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 83), SHIFT(2963), - [5920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), - [5922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 55), SHIFT(2963), - [5925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3697), - [5928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3697), - [5931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2972), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [5938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 121), SHIFT(2963), - [5941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), SHIFT(2963), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [5958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [5964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), SHIFT(2963), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [5969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), SHIFT(3496), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [5988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 0), - [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [5996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [5998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [6002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 0), - [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5228), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [6019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(714), - [6022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3798), - [6025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3798), - [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [6030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 0), - [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [6130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2972), - [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [6141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(848), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [6146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 1, 0, 0), - [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [6158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 5, 0, 0), - [6160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), - [6162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [6166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 10), - [6168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 20), - [6170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 10), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [6174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [6190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [6196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 6, 0, 0), - [6198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 5, 0, 20), - [6200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), - [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), - [6204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1716), - [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4929), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [6247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), - [6249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [6293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1414), - [6296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [5421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5454), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [5428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [5432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1752), + [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [5441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5340), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [5452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 10), REDUCE(sym_c_type, 4, 0, 20), + [5455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 20), + [5457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 20), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [5461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [5465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 20), + [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 0), + [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), + [5474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 0), REDUCE(sym_c_type, 3, 0, 0), + [5477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 10), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [5491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 10), REDUCE(sym_c_type, 5, 0, 20), + [5494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 20), + [5496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 20), + [5498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 2, 0, 0), + [5500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 2, 0, 0), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [5506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 10), + [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [5518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__longness, 2, 0, 19), + [5520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__longness, 2, 0, 19), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 0), REDUCE(sym_c_type, 4, 0, 0), + [5529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 0), + [5531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [5536] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(2981), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [5542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), + [5544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), + [5546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3452), + [5549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3452), + [5552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2981), + [5555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 3, 0, 10), + [5558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3374), + [5561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3374), + [5564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2963), + [5567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 4, 0, 0), + [5569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 4, 0, 0), + [5571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 10), + [5574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 20), + [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [5579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 20), SHIFT(2981), + [5582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 10), + [5585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 20), + [5588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 6, 0, 20), + [5591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 2, 0, 0), + [5593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 2, 0, 0), + [5595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 5, 0, 0), + [5597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 5, 0, 0), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [5601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(2981), + [5604] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 20), SHIFT(2981), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [5614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 6, 0, 0), + [5616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 6, 0, 0), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [5620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 3, 0, 0), + [5622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 3, 0, 0), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [5626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(2981), + [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [5631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 20), SHIFT(2981), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [5638] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 6, 0, 20), SHIFT(2981), + [5642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), + [5644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5218), + [5647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), + [5649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5312), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [5656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), + [5659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), + [5662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2979), + [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [5667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parameters, 2, 0, 0), + [5669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_parameters, 2, 0, 0), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [5673] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(2981), + [5677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 3, 0, 0), + [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 3, 0, 0), + [5681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [5689] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 20), SHIFT(2981), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [5697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5255), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [5704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2963), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [5709] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 10), SHIFT(2981), + [5713] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(2981), + [5717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 2, 0, 0), + [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 2, 0, 0), + [5721] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 20), SHIFT(2981), + [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [5727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2981), + [5730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_qualifier_repeat1, 3, 0, 0), + [5732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 3, 0, 0), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [5740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 10), + [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [5744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 20), + [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [5752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 20), + [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [5756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), + [5758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1321), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [5769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 0), + [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [5777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2979), + [5780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5263), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [5791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 0), REDUCE(sym_c_type, 5, 0, 0), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [5796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [5806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1612), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [5811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 0), REDUCE(sym_c_type, 6, 0, 0), + [5814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 6, 0, 0), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [5836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 83), + [5844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 83), SHIFT(2981), + [5847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 122), + [5849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 122), SHIFT(2981), + [5852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 7, 0, 146), + [5854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 7, 0, 146), SHIFT(2981), + [5857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 82), + [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 121), + [5861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 121), + [5863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 122), + [5865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 146), + [5867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 22), + [5869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 53), + [5871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 22), + [5873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 22), SHIFT(2981), + [5876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 55), + [5878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 4, 0, 0), + [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 4, 0, 0), + [5882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), + [5884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), SHIFT(2981), + [5887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 53), + [5889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 53), SHIFT(2981), + [5892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 82), + [5894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 82), SHIFT(2981), + [5897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 121), SHIFT(2981), + [5900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), + [5902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), SHIFT(2981), + [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), + [5907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), SHIFT(2981), + [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 55), + [5912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 55), SHIFT(2981), + [5915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 83), + [5917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 83), SHIFT(2981), + [5920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 122), SHIFT(2981), + [5923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 146), SHIFT(2981), + [5926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 22), SHIFT(2981), + [5929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 53), SHIFT(2981), + [5932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 5, 0, 0), + [5934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 5, 0, 0), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [5938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 55), SHIFT(2981), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [5943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [5947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3702), + [5950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3702), + [5953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2968), + [5956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), SHIFT(2981), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [5961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 82), SHIFT(2981), + [5964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 121), SHIFT(2981), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [5973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [6029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), SHIFT(2981), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [6034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), SHIFT(3480), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [6051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 1, 0, 0), + [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), + [6109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5251), + [6112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 0), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [6120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(849), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [6127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 0), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [6151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 0), + [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [6157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2968), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [6164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(703), + [6167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3803), + [6170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3803), + [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [6175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [6183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1717), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [6190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 5, 0, 0), + [6192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [6198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 20), + [6200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 5, 0, 20), + [6202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 10), + [6204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 6, 0, 0), + [6206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), + [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), + [6210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [6214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 10), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), + [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), + [6234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [6246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1366), + [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [6297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1290), + [6300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [6322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1439), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [6337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1560), - [6340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [6344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1698), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [6357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1609), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [6364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1499), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [6429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [6431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(3751), - [6434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(3751), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [6453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [6467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), - [6469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [6535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 50), - [6537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [6547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1694), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [6556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [6560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), - [6562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [6594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [6612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), - [6620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1466), - [6623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5393), - [6626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [6675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [6719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), - [6767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1464), - [6770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5524), - [6773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1750), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [6780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 2, 0, 10), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), - [6792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [6316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1390), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [6371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1352), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [6404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 50), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [6506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1342), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [6517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [6521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [6557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [6559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [6569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [6585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1442), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [6604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1694), + [6607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [6619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [6621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(3828), + [6624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(3828), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [6671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [6697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), + [6699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), + [6702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5553), + [6705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1750), + [6708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [6722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1534), + [6725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5292), + [6728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [6741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1418), + [6744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5532), + [6747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1748), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [6778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 2, 0, 10), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [6860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [6863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5545), - [6866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1752), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [6887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5421), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [6908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 90), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [7006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [7018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1426), - [7021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 4, 0, 81), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [7027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), - [7029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gil_spec, 2, 0, 0), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [7033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 99), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [7037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 31), - [7039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 31), - [7041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat1, 2, 0, 0), - [7043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(2963), - [7046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), - [7048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 60), - [7050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 60), - [7052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 61), - [7054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 61), - [7056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 120), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [7060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 89), - [7062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 23), - [7064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [7066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 17), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [7070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 132), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [7074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 133), - [7076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [7080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 159), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [7088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), - [7090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1015), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [7103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [7111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 94), - [7113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 94), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 95), - [7127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 95), - [7129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [7133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 96), - [7135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 96), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [7147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), - [7149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), - [7151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), - [7153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2913), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [7162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1060), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [7167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 5, 0, 0), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [7183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), - [7185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), - [7188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 4, 0, 0), - [7190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parameters, 3, 0, 0), - [7192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 40), - [7194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 4, 0, 0), - [7196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 5, 0, 84), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [7202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1755), - [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 23), - [7207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [7215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 24), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 4, 0, 0), - [7227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [7231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), - [7233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [7247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 42), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [7253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [7262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 4, 0, 0), - [7264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), - [7266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [7274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 31), - [7276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 31), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [7284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 131), - [7286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 131), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [7292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1705), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [7299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gil_spec, 1, 0, 0), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [7305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [7351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 52), - [7353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [7361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [7377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2916), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [7396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 0), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [7400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [7402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [7418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(708), - [7421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), - [7423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4170), - [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), - [7428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), - [7430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 183), - [7460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 160), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 10), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [7500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [7519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), - [7521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), - [7523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(4209), - [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [7546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [7558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 185), - [7560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [7570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), - [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 160), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [7582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 183), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [7588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), - [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 185), - [7592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [7598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [7614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 0), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 21), - [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), - [7624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [7632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 1, 0, 0), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [7644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [7648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 14), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [7652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2923), - [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [7663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [7673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2925), - [7676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [7688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2677), - [7691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), - [7693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 2, 0, 0), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [7709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 39), - [7711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1409), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [7748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 4, 0, 0), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [7756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 15), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [7760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 101), SHIFT_REPEAT(2679), - [7763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 101), - [7765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [7775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 16), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [7781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [7785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1756), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [7806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), - [7812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 2, 0, 0), - [7826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 14), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [7836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), - [7838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), - [7840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5329), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [7861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [7867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 18), - [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 32), - [7879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 32), SHIFT_REPEAT(4944), - [7882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 2, 0, 0), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [7900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [7912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 1, 0, 0), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [7954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(996), - [7957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [7979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_params, 4, 0, 0), - [7981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2671), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [8006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [8034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(857), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [8043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [8050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 3, 0, 0), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [8084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [8126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2673), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [8163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(721), - [8166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1762), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [8173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 3, 0, 0), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [8199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1568), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [8244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 92), SHIFT_REPEAT(1017), - [8247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 92), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [8271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_params, 3, 0, 0), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [8279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 51), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [8301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 2, 0, 0), SHIFT_REPEAT(3758), - [8304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 2, 0, 0), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [8308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 32), SHIFT_REPEAT(4923), - [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [8313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 2, 0, 0), SHIFT_REPEAT(3088), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [8318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_index_repeat2, 2, 0, 0), SHIFT_REPEAT(5101), - [8321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat2, 2, 0, 0), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [8333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [8341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3089), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [8376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(870), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [8381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(395), - [8384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), - [8386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1613), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [8395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [8419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2655), - [8422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [8490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1256), - [8493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [8509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1353), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [8530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 2, 0, 0), SHIFT_REPEAT(3100), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [8591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5445), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [8628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 3, 0, 84), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [8662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [8682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1759), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [8727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(883), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [8738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 50), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [8748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(912), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [8779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 184), SHIFT_REPEAT(2883), - [8782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 184), - [8784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2675), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [8805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5185), - [8808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 2, 0, 0), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [8812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5489), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [8831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 44), SHIFT_REPEAT(1435), - [8834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 44), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [8860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 59), - [8862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 59), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [8900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1697), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [8913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 33), - [8915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 87), SHIFT_REPEAT(5390), - [8918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 87), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [8986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 62), - [8988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [8990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 4, 0, 0), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [8996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [9004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [9016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 35), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [9028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [9034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 37), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [9048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [9052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 36), - [9054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 37), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [9072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 228), - [9074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 209), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [9078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), - [9080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [9082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [9106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 5, 0, 10), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [9126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [9128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [9154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 229), - [9156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 160), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [9162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [9168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 4, 0, 10), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [9172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [9182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 230), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [9206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 186), - [9208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 187), - [9210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), - [9212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 188), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [9228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 210), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [9238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [9242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 88), - [9244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 2, 0, 0), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [9256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 211), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [9260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 212), - [9262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [9266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [9272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 25), - [9274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 97), - [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [9282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 26), - [9284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 98), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [9288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), - [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), - [9292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 161), - [9294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [9302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 238), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [9306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 34), - [9308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [9312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [9316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [9372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [9546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_definition, 5, 0, 0), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [9632] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [9812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [9954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_definition, 4, 0, 0), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [6904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), + [6924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [6936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [6960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [6988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 90), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [7016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5354), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [7029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 133), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [7041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 31), + [7043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 31), + [7045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 5, 0, 84), + [7047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 60), + [7049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 60), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [7075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 159), + [7077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 61), + [7079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 61), + [7081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), + [7083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1031), + [7086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [7092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [7098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 4, 0, 0), + [7100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 4, 0, 81), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [7104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 4, 0, 0), + [7106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [7112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [7116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 99), + [7118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1380), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 132), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [7129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gil_spec, 1, 0, 0), + [7131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 120), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [7135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 4, 0, 0), + [7137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 5, 0, 0), + [7139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), + [7142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), + [7144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), + [7146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parameters, 3, 0, 0), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [7156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), + [7158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gil_spec, 2, 0, 0), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [7172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 131), + [7174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 131), + [7176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 4, 0, 0), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [7182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1756), + [7185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 24), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 23), + [7197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 42), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [7203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 40), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [7207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1032), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [7216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(989), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [7237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 89), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [7245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 23), + [7247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [7251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [7253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), + [7255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), + [7257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [7261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 94), + [7263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 94), + [7265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 95), + [7267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 95), + [7269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 96), + [7271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 96), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [7291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [7303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 23), SHIFT(1704), + [7306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 17), + [7308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), + [7310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2928), + [7313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 31), + [7315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 31), + [7317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), + [7319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), + [7321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [7325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat1, 2, 0, 0), + [7327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(2981), + [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [7338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 52), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [7346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), + [7348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [7352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), + [7354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 160), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [7358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [7360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [7372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 183), + [7394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [7416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 185), + [7418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), + [7420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2926), + [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [7437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 1, 0, 0), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [7447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 21), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4879), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [7471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [7509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 0), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [7513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), + [7515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), + [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [7521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), + [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), + [7525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [7545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 160), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [7551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), + [7553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [7559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2923), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [7590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2919), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [7595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), + [7597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 183), + [7599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1316), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 14), + [7606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 10), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [7612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), + [7614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), + [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 185), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [7624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [7634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(710), + [7637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), + [7639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4292), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [7654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [7674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4975), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [7686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [7690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 0), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [7698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [7704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), + [7706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(4321), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [7735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [7739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 1, 0, 0), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [7753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 14), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 16), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [7763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), + [7765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 39), + [7767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1310), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [7796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [7800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 15), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [7812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 4, 0, 0), + [7814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [7816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [7822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 2, 0, 0), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [7826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [7830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [7836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 2, 0, 0), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [7842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [7868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2672), + [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [7875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [7887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [7891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), + [7893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5327), + [7896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 101), SHIFT_REPEAT(2670), + [7899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 101), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [7909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1760), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 18), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 32), + [7928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 32), SHIFT_REPEAT(4662), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [7935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 2, 0, 0), + [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [7943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2663), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [7958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1755), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [8029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 3, 0, 0), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [8035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 3, 0, 84), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [8087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), + [8089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3119), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [8116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(890), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [8257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 51), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [8285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 44), SHIFT_REPEAT(1320), + [8288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 44), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [8296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5247), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [8303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 59), + [8305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 59), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [8353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 3, 0, 0), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [8373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 2, 0, 0), SHIFT_REPEAT(3760), + [8376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 2, 0, 0), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [8386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 2, 0, 0), SHIFT_REPEAT(3123), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [8473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(896), + [8476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [8488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [8500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(395), + [8503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [8539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1345), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [8550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_params, 3, 0, 0), + [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [8570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), + [8572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [8582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 50), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [8610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 184), SHIFT_REPEAT(2903), + [8613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 184), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [8645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 87), SHIFT_REPEAT(5408), + [8648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 87), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [8666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2689), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [8705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [8707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2678), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [8724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(878), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [8741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 2, 0, 0), SHIFT_REPEAT(3115), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [8758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(747), + [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_params, 4, 0, 0), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [8783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [8800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_index_repeat2, 2, 0, 0), SHIFT_REPEAT(5014), + [8803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat2, 2, 0, 0), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [8815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 92), SHIFT_REPEAT(979), + [8818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 92), + [8820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1196), + [8823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [8861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1476), + [8864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1759), + [8867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1448), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [8892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 32), SHIFT_REPEAT(4716), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [8911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1697), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [8926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(868), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [8961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1192), + [8964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5500), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [8979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2687), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [9002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 33), + [9004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5006), + [9007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 2, 0, 0), + [9009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 34), + [9011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 62), + [9013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 35), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [9017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 5, 0, 10), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [9031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 25), + [9033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 26), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [9041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 160), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [9057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [9061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 36), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [9071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [9075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), + [9077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 209), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [9081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 210), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [9085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 186), + [9087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 211), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [9093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 212), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [9097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [9115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 88), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [9119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 187), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [9135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 188), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [9151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [9201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 37), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [9223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 37), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [9231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), + [9233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [9235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 161), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [9241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [9245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 228), + [9247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [9257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [9261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 2, 0, 0), + [9263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 97), + [9265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [9269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 98), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [9275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 229), + [9277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 4, 0, 10), + [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [9283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 230), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [9289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [9293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [9313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [9325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [9347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [9357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [9363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 4, 0, 0), + [9365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 238), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [9369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [9381] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [9567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_definition, 4, 0, 0), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [9657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [9659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [9721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [9963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_definition, 5, 0, 0), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test/corpus/cython.txt b/test/corpus/cython.txt index 461d946..6f80051 100644 --- a/test/corpus/cython.txt +++ b/test/corpus/cython.txt @@ -587,3 +587,25 @@ cdef numeric add(numeric a, numeric b) (maybe_typed_name (identifier) (identifier))))))) + +================================================================================ +Cython ellipsis function +================================================================================ + +cdef cppclass Test: + int func(...) + +-------------------------------------------------------------------------------- + +(module + (cdef_statement + (cdef_type_declaration + (ctype_declaration + (cppclass + (identifier) + (cvar_def + (maybe_typed_name + (int_type) + (identifier)) + (c_function_definition + (c_parameters))))))))